Mark Atherton wrote:
> Ajayk wrote:
>
>> Thanks Chris...
>> And what about, if I need some "username & password" authentication
>> mechanism?
>> Say a web page must open first asking for Username and Password before
>> allowing you to access Internet.
>> Ajay
>
> Run an identd client on your workstations and use ident authorization on
> the server. So long as you can be sure that your workstations are secure
> - for an appropriate value of "secure".
Or use one of the authenticator modules available for squid
and use combined ACLs, like
acl WellKnownClients arp "/etc/squid/WellKnownClients"
acl AuthUserAsWell proxy_auth REQUIRED
http_access allow WellKnownClients AuthUserAsWell
http_access deny all
Ident authorization has been considered unsafe for more than 10 years
now, and I wouldn't recommend it to anyone for use in a productive
environment.
-Chris