Re: [squid-users] ACL lists

2008-03-10 Thread Tim Bates
You want to restrict one of your local IPs from getting on the internet? Something like this: acl LAN_Range src192.168.1.0/24 acl No_Internet_For_You src192.168.1.X (replace the X with the IP you want to block). http_access deny No_Internet_For_You http_access all

RE: [squid-users] ACL lists

2008-03-11 Thread saul waizer
Garry, Here are some examples I prepared for you: acl badguys src 6.0.0.0/8 acl badguys2 src 2.0.0.0/8 acl intruder src 10.10.10.16 acl workstation src 10.10.10.19 acl our_networks src 192.168.1.0/24 http_access deny badguys http_access deny badguys2 http_access deny intruder http_access allow

RE: [squid-users] ACL lists

2008-03-11 Thread Garry D. Chapple
Thanks Saul, It works a treat mate and thanks again for a quick response. Regards, Garry Chapple -Original Message- From: saul waizer [mailto:[EMAIL PROTECTED] Sent: Wednesday, 12 March 2008 5:24 AM To: squid-users@squid-cache.org Cc: Garry D. Chapple Subject: RE: [squid-users] ACL