> Ok, I fixed it! It was a permission problem. > But now the squid gives all NT users access to the internet. > I used in my squid.conf:
> external_acl_type NT_global_group %LOGIN > /usr/local/squid/libexec/wb_group > acl ProxyUsers external NT_global_group Internet2 > acl password proxy_auth REQUIRED > http_access allow password > http_access allow ProxyUsers > http_access deny all The password acl is processed by http_access before the ProxyUsers acls, and allows access to any authenticated user before Squid even checks the user's group membership. Remove the password acl (and its corresponding http_access line) and you'll be all set there. > And in my cache.log everythings fine except: > ipcCreate: /usr/local/squid/libexec/: (13) Permission denied > ... > icmpRecv: recv: (111) Connection refused This is probably a permissions issue as well - make sure the user Squid runs as has read and execute rights to /usr/local/squid/libexec, all files in this directory, and all parent directories. Adam
