[squid-users] Access to a range of IP addresses

2004-07-12 Thread Philippe Dhont \(Sea-ro\)
Hello! Small question... I want to allow a range of ip addresses for some users to connect to via my squid proxy. I tried: acl test4login url_regex ^http://192.168.0. And further i have Http_access allow all test4login With this i thought that the users could access any address that starts

Re: [squid-users] Access to a range of IP addresses

2004-07-12 Thread Dieter Bloms
Hi, On Mon, Jul 12, Philippe Dhont (Sea-ro) wrote: > acl test4login url_regex ^http://192.168.0. try this line: acl test4login dst 192.168.0.0/255.255.255.0 > And further i have > > Http_access allow all test4login > > With this i thought that the users could access any address that starts

Re: [squid-users] Access to a range of IP addresses

2004-07-12 Thread Muthukumar
> I tried: > acl test4login url_regex ^http://192.168.0. We can not use url*_regex acl's for ip-address matching. You have to use dst or dstdomain or dstdom_regex acl's for this. > With this i thought that the users could access any address that starts > with 192.168.0.x but i get an "access de