Dear all,
I have configured squid proxy on centos 5.5 and some of my squid.conf file has following lines
Code:
auth_param basic program /usr/lib/squid/ncsa_auth /etc/squid/squid_passwd
acl office src 192.168.1.0/24
acl ncsa_users proxy_auth REQUIRED
http_access allow ncsa_users office
There are 3 users called "user034, user035 and user050" in the /etc/squid/squid_passwd file need to restricted access to internet except sites
www.abc.com form anywhere in the lan. Once they logged in any ip, rule should apply.(that means no ip related acl, only user name related)
How can I configure this in squid. Your help highly appreciated.