Hi, I am running squid 2.5 Stable 3 on mandrake 9.
I have managed to install squid and get it working without authentication. I then compiled and installed MSNT authentication program and this was fine (msnt_auth appeared in libexec folder and msntauth.conf in etc folder. Below is a copy of my squid.conf file, the problem is that the clients are able to browwse the web without any prompt for a username or password. I think I must have the ACL wrong but am struggling to do this.
Squid.conf begins
shutdown_lifetime 5 seconds
icp_port 0
http_port 172.16.0.75:8080
visible_hostname squid
auth_param basic program /usr/local/squid/libexec/m
snt_auth
auth_param basic children 5
auth_param basic realm Squid proxy-caching web server
auth_param basic credentialsttl 2 hours
acl proxy_auth REQUIRED
acl QUERY urlpath_regex cgi-bin \?
no_cache deny QUERY
cache_effective_user squid
cache_effective_group squid
pid_filename /var/run/squid.pid
cache_access_log /var/log/squid/access.log
cache_log /var/log/squid/cache.log
cache_store_log /var/log/squid/store.log
emulate_httpd_log on
log_mime_hdrs off
forwarded_for off
acl all src 0.0.0.0/0.0.0.0
acl localhost src 127.0.0.1/255.255.255.255
acl localnet src 172.16.0.0/255.255.0.0
acl SSL_ports port 443 563
acl Safe_ports port 80 # http
acl Safe_ports port 21 # ftp
acl Safe_ports port 443 563 # https, snews
acl Safe_ports port 70 # gopher
acl Safe_ports port 210 # wais
acl Safe_ports port 1025-65535 # unregistered ports
acl Safe_ports port 280 # http-mgmt
acl Safe_ports port 488 # gss-http
acl Safe_ports port 591 # filemaker
acl Safe_ports port 777 # multiling http
acl CONNECT method CONNECT
#http_access allow password
#http_access allow
#http_access allow localhost
#http_access deny !Safe_ports
#http_access deny CONNECT !SSL_ports
#http_access allow localnet
#http_access deny all
maximum_object_size 4096 KB
minimum_object_size 0 KB
SQUID.conf ENDS
My mistake is probably a simple one however I am new to squid and still learning any help will be appreciated.