Flip them around; define source my_computer before source no_auth. squidGuard doesn't care if an ip is defined in multiple sources, it simply takes the first match that it finds.
If everything else is OK flipping them around will solve your problem. Rick Matthews > -----Original Message----- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED]]On Behalf Of Tife Chan > Sent: Friday, August 16, 2002 9:52 PM > To: [EMAIL PROTECTED] > Subject: squidGuard is not redirecting as what I expected > > > 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 > } > } > >
