It's really in the documentation. Your config file has only the "default"
group. You need to create separate groups and put different blocks for them
in the acl. For instance:
src kids {
ip 192.168.1.10, 192.168.1.11
}
src adults {
ip 192.168.1.12 192.168.1.13
}
acl {
adults {
pass all
redirect http://whatever.cgi...
}
kids {
pass !bl_ads !bl_aggressive... all
redirect http://whatever.cgi
}
default {
pass none
redirect http://whatever.cgi
}
}
To use the user login name, you have to use some way to identify the user
to squid. You can do this with:
a) Squid authentication. The user must enter a username and password
whenever they start the browser for most authentication methods.
Transparent mode of squid will not work.
b) IDENT. The user computer must run an ident client. You set up an
ident acl in squid and require it for proxy access. Transparent
mode of squid will not work with this either.
-----Original Message-----
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]]On Behalf Of Dieter Kroemer
Sent: Tuesday, March 12, 2002 5:10 PM
To: Squidguard Mailing List
Subject: squidguard-filter doesn't block the group teacher
Hey,
once again my question, perhaps I can explain it in a better way:
Is there a possibilty, that only the group "teacher" (or better some single
users) passes squidguard and can see every url they want to see.
What I've got to?
Thanks
Dieter