----- Original Message ----- From: "Stephen J. McCracken" <[EMAIL PROTECTED]> To: "SquidUsers" <[EMAIL PROTECTED]> Sent: Thursday, July 10, 2003 7:52 AM Subject: [squid-users] Trouble connecting to site
> We can't seem to get Squid to connect to > > http://wxd.slu.edu:8900/SCRIPT/NR_N50020/scripts/serve_home > > Bypassing squid there is no problem. We have basically a default > install (not many modifications to squid.conf) Relevant lines follow: > > acl localhost src 127.0.0.1/255.255.255.255 > acl smccracken src aaa.bbb.ccc.ddd/32 # my ip for bypass of DG > acl Safe_ports port 1025-65535 # unregistered ports > http_access deny !Safe_ports > http_access allow smccracken > http_access allow localhost > > All of our connections are coming from localhost (being passed through > DansGuardian to squid). Any ideas as to what we are missing? Thanks! > Hi, My first time posting to this mailing list :-) Are you getting an access denied error? >From the Squid configuration page (http://squid.visolve.com/squid24s1/access_controls.htm#http_access), the default is: http_access allow manager localhost http_access deny manager http_access deny !Safe_ports http_access deny CONNECT !SSL_ports http_access deny all Notice how there's a "deny all" line at the end? I think you need to change that to "allow all" or create another access line specifying the list of IP addresses or clients that will connect to your proxy server. Hope that helps, howe81
