Welcome,
Guest
. Please
login
or
register
.
Did you miss your
activation email
?
1 Hour
1 Day
1 Week
1 Month
Forever
November 25, 2024, 02:45:29 PM
News
: LinuxSolved.com Linux Help Community Forum..
Home
Search
Login
Register
Linux Forums - Linux Help,Advice & support community:LinuxSolved.com
»
Network Troublshooting
»
Linux Proxy Server Support
»
Allow blocked sites to some IP's
« previous
next »
Print
Pages: [
1
]
Author
Topic: Allow blocked sites to some IP's (Read 7096 times)
ilyasmd
New Member
Posts: 1
Allow blocked sites to some IP's
«
on:
September 29, 2009, 08:22:04 AM »
Hi,
I am able to block sites using following.
acl PornSites url_regex "/usr/local/squid/etc/pornlist"
http_access deny PornSites
I would like to allow admin users or IP's to access blocked sites also, can anyone help..
Thanks in advance.
M.ilyas
Logged
kaushalpatel1982
LST CareTaker
Linux Learner
Posts: 87
Re: Allow blocked sites to some IP's
«
Reply #1 on:
September 30, 2009, 07:25:01 AM »
1. Create an ACL that give allowed IP Addresses like :
acl my_net src 10.10.10.0/255.255.255.0
acl allow_all src 10.10.10.1/255.255.255.255
acl PornSites url_regex "/usr/local/squid/etc/pornlist"
2. Apply HTTP access policy as give below :
http_access allow allow_all
http_access deny PornSites
http_access allow my_net
3. Restart squid proxy service and check you settings.
Best of Luck
Logged
Print
Pages: [
1
]
« previous
next »
Linux Forums - Linux Help,Advice & support community:LinuxSolved.com
»
Network Troublshooting
»
Linux Proxy Server Support
»
Allow blocked sites to some IP's