On 24.07.2012 05:05, Alex Crow wrote:
Josh,

http_access deny requirentlmhosts

after the allow rule should do it I think.

Alex

If you have an "unprotected" requirentlmhosts ACL the auth challenge will be displayed to anyone being tested against it.

What you need is this:

  # require auth from a certain set of hosts
  acl requirentlm proxy_auth REQUIRED
  acl requirentlmhosts src 1.1.1.1/255.255.255.255

  http_acccess deny requirentlmhosts !requirentlm

... followed by any other policies you have. Such as possibly an "allow requirentlmhosts" to let these clients through with only authentication and then the allow/deny polciy bits for non-requirentlmhosts clients.

Amos

Reply via email to