|
I'd guess that you have been using Squid in the past and put an allow in for your IP space. I do it that way so the office users always work, but if you want to use the proxy from home, we use it for web server testing with the dev sites, then you have to enter a password. Easier than trying to keep up with everyone's dynamic IP's.
auth_param basic program /usr/lib/squid/ncsa_auth /etc/squid/squid.pass
acl our_networks src 10.0.0.0/8
acl ncsa_users proxy_auth REQUIRED
http_access allow our_networks
http_access allow ncsa_users
no_cache deny all
kashani
|