Network Troublshooting > Linux Proxy Server Support

Allow blocked sites to some IP's

(1/1)

ilyasmd:
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

kaushalpatel1982:
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

Navigation

[0] Message Index

Go to full version