I have a working Squid with authentication. How do I temporarily disable authentication? Can I just comment out the following lines below from squid.conf:
acl ncsa_u
I solved it.. I just commented out
#auth_param basic program /usr/lib/squid3/ncsa_auth /etc/squid3/passwd
and then commented out acl ncsa_users proxy_auth REQUIRED
#acl ncsa_users proxy_auth REQUIRED
acl ncsa_users dst 10.244.0.0/16 all
Then restarted squid
I hope someone may find this useful.