On 5/10/2012 12:59 a.m., muno wrote:
Thanks Amos,
I understand the problems and i will analyze the
alternative, but for while I need to configure the reverse
NTLM.
My squid version is: squid 3.2.1
The configuration file have a http_access allow. Sorry, but
i forget to copy!
Any suggestion?
tks
________________________________________________________
root@proxy:/usr/local/squid/etc# more squid.conf
<snip>
http_access allow manager localhost
http_access deny manager
http_access deny !Safe_ports
http_access deny CONNECT !SSL_ports
You need an authentiction test around about here somewhere (with any ACL
tests for non-auth'd visitors above it).
acl authenticated proxy_auth REQUIRED
http_access deny !authenticated
http_access allow localhost
http_access allow admin
http_access allow warp
http_access allow uninet
http_access allow xymon
http_access deny all
HTH
Amos