squid + squidguard
Hey all, time for the question of the day.
I'm setting up a small network for kids' use and want to use squidguard to filter out inappropriate content. Squid and squidguard are both installed and running, but none of the changes I've made to squidguard.conf have any effect.
I was wondering how it works. In squid.conf I have the following lines to allow access from my network :
in squidguard.conf I deny everything, just for testing :
running squidguard -d gives no complaints, syntax is okay, proxy is set on the clients, but all requests go through. what should I check from here?
Alright, a closer look. Running the bare bones file above does work, but when I try to add a section for rules it won't work, allowing everything through.
I'm setting up a small network for kids' use and want to use squidguard to filter out inappropriate content. Squid and squidguard are both installed and running, but none of the changes I've made to squidguard.conf have any effect.
I was wondering how it works. In squid.conf I have the following lines to allow access from my network :
acl marlenenet src 192.168.0.0/24
http_access allow marlenenetin squidguard.conf I deny everything, just for testing :
acl {
default {
pass none
redirect http://www.google.ca
}
}Alright, a closer look. Running the bare bones file above does work, but when I try to add a section for rules it won't work, allowing everything through.
acl marlenenet src 192.168.0.0/24
http_access allow marlenenet
in squidguard.conf I deny everything, just for testing :
acl {
dest bad {
domainlist dest/bad/domainlist
}
default {
pass !bad any
redirect http://www.google.ca
}
} 