Below is my squidguard configuration. What I'm expecting is squidquard
should redirect all http request from 10.1.1.29 to http://a.home but it
lets 10.1.1.29 go anywhere. Should I explicitly exclude 10.1.1.29 in the
no_auth group?
Regards,
Tife
#### Configuration here ####
dbhome /usr/local/squidGuard/db
logdir /var/log/squidGuard
src no_auth {
ip 10.1.1.0/24
}
src my_computer {
ip 10.1.1.29
}
dest dest_local {
domainlist /usr/local/squidGuard/db/local/domains
}
acl {
my_computer {
pass none
redirect http://a.home
}
no_auth {
pass all
}
default {
pass dest_local none
redirect http://b.home
}
}