| Hi all,
|
| this is my squid.conf line
| acl password proxy_auth REQUIRED
| http_access allow password
|
| how do write the squid.conf so that certain IP addresses
can pass thru the
| proxy without being prompt for authentication?
| currently, all users who access the proxy have to be
authenticated first.


it should works...

acl USER_WITH_AUTH scr X1.X2.X3.X4/A.B.C.D
acl USER_WITHOUT_AUTH scr Y1.Y2.Y3.Y4/E.F.G.H
acl PASSWORD proxy_auth REQUIRED

http_access allow USER_WITHOUT_AUTH
http_access allow USER_WITH_AUTH PASSWORD
http_access deny all

Vadim...


Reply via email to