On 2017-05-15 20:53, erdosain9 wrote:
http_port 192.168.1.215:3128

Hi,

My guess is since you've declared it this way (I never did), you should try consequently:
squidclient -h 192.168.1.215 -p 3128 mgr:negotiateauthenticator
-h stands for host; running squidclient without this parameter makes it use loopback (127.0.0.1) I think. Since you've declared "http_port 192.168.1.215:3128", you've bound squid to this IP address only and my guess is that you're not allowed to use loopback
http://www.squid-cache.org/Doc/config/http_port/

But there is a directive then in your conf:
http_access allow localhost manager
http_access deny manager
you may not be able to connect to manager using 192.168.1.215 either, since it is not localhost - but I'm not sure. If so, my way is:

acl MGR-ALLOWED src "/etc/squid/mgr-allowed.hosts"
http_access allow MGR-ALLOWED manager
and put 192.168.1.215 or/and any other host allowed to use cachemgr to /etc/squid/mgr-allowed.hosts file

Good luck this time.

--
Greets, Dijx
_______________________________________________
squid-users mailing list
squid-users@lists.squid-cache.org
http://lists.squid-cache.org/listinfo/squid-users

Reply via email to