April 19, 2024, 09:18:31 AM

News : LinuxSolved.com Linux Help Community Forum..


Author Topic: Allow blocked sites to some IP's  (Read 4661 times)

Offline 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

Offline 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