Christoph Haas wrote:
Sorry... too lazy to fix other people's quoting style.
On Tue, Sep 06, 2005 at 01:33:25AM -0700, S.M.H. Hamidi wrote:
There is an external ACL helper in squid source tree
named ip_user which allows to restrict users to IP
addresses.
--- Varun <varun@xxxxxxxxxxxxxxxxxxxxxx> wrote:
Hello,
Can I combine ACL rules for IP based
and NCSA auth together and bind them
together ?
Thanks
Varun
@S.M.H.
No, external_acl's are overkill. ACLs can easily be combined.
acl sourceip src 10.0.0.1
acl authentication proxy_auth REQUIRED
http_access allow sourceip authentication
Christoph
Thanks Christoph,
Let me give it a quick try.
Varun