Squid limit browsing to specific range of IPs
Hello everyone,
I installed Squid 3.1.1 on a Centos 5.3 server.
I enabled Squid authentication.
To those who connect to our proxy, I'd like them to only be allowed to browse a certain subnet of IPs.
I've tried this, but it didn't do the job:
acl acceleratedhost dst x.y.z.0/24
acl acceleratedhost dst x.y.w.0/24
acl acceleratedport port 80
acl mynet src IPofSQUID
http_access allow acceleratedhost acceleratedport mynet
http_access deny all
Any ideas?
Thank you,