tis 2007-02-06 klockan 23:49 +0100 skrev Bernd Schuhmacher:
> Hi
>
>
> I have a little problem getting someting done with squid.
> I need the names of the users of the internet connection logged within
> the squid logs.
>
> I have tried some thigs but nothing worked.
>
> I have the following setup at the moment:
>
> acl our_networks src 192.168.0.0/16
> http_access allow our_networks
> http_access allow localhost
> http_access deny all
> ...
> ident_lookup_access allow our_networks
> ident_lookup_access deny all
>
> The clients are running pidentd or gidentd.
> I can see at the mashines running gidentd that there are requests for
> ident. But the log of squid only shows up a "-" for username.
Maybe the request finishes before the client station identd responded.
Squid does not wait for the ident lookup to complete unless required by
acl processing..
try adding the following before the our_networks rule
acl req_ident ident REQUIRED
http_access deny req_ident !all
Regards
Henrik
This archive was generated by hypermail pre-2.1.9 : Thu Mar 01 2007 - 12:00:01 MST