Advanced Squid

debug

Well-Known Member
Joined
Jul 18, 2006
Messages
199
Reaction score
0
Location
New Zealand
Hi all,

I've got quick question regarding squid acl's. What I'm trying to achieve is the following.

ACL for users with no access (which it gets from a list "/etc/whatever")
ACL for users who have full access (which it gets from a list "/etc/whatever")
ACL for users who have access to a limited list of sites (uses a list of users and a list of sites)
ACL to deny all users (def at the end of squid.conf)

Then put all of this into a http_access rule.

At the moment I have some http_access acl rules that allow full access to a list of users and a acl that denies all access to a list of users which works very well.

Any suggestions are welcome.
Regards
d
 
This should get you started...

to only allow access to certain domains to certain users:

Code:
acl SpecialUsers <your special users>
acl SpecialWebsites dstdomain .website1.com .website2.com [url]www.website3.org[/url]
http_access allow SpecialUsers SpecialWebsites
http_access deny SpecialWebsites
 
Last edited:
Top
Sign up to the MyBroadband newsletter
X