1

Does anybody know of an open source solution that does HTTP proxying whilst providing NTLM authentication? I've tried to set up apache + mod_proxy + mod_ntlm. For HTTP GETs it works fine , i.e. the user is asked for a username+password and then the proxy retrieves the file. However, for HTTP CONNECTs this does not work. Remove mod_ntlm and apache + mod_proxy works fine with HTTP CONNECT.

janjust
  • 582
  • 2
  • 5

2 Answers2

1

Squid proxy does support ntlm authentication. Check this page for examples.

AlexD
  • 8,179
  • 2
  • 28
  • 38
1

Do you need to authenticate client to proxy or to destination server? For proxy authentication (= Apache in your case) you just say

<Proxy *>
    AuthType NTLM
    ...
    Require valid-user
</Proxy>

and that will require clients to authenticate also when using CONNECT.

dma_k
  • 121
  • 7