RE: [squid-users] Problems with ACL max_user_ip on squid2.5 stable3

From: Adam Aube <aaube@dont-contact.us>
Date: Thu, 10 Jul 2003 10:02:57 -0400

I would recommend you rewrite this section:

acl me src 192.168.0.0/24
http_access deny !me
acl authenticated proxy_auth REQUIRED
http_access deny !authenticated
acl onlyonce max_user_ip 1
http_access deny onlyonce
http_access allow authenticated
http_access deny all

to this:

[other acl lines]
acl onlyonce max_user_ip -s 1
acl me src 192.168.0.0/24
acl authenticated proxy_auth REQUIRED

[other http_access lines]
http_access deny onlyonce
http_access allow me authenticated
http_access deny all

This makes your squid.conf easier to read and a
little more efficient. However, I do not see any
reason why you are having the problem you report.

Is there any kind of NAT device between the clients
and Squid? That would mess up the user/IP mapping.

Adam

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.237 / Virus Database: 115 - Release Date: 3/7/2001
Received on Thu Jul 10 2003 - 08:03:02 MDT

This archive was generated by hypermail pre-2.1.9 : Tue Dec 09 2003 - 17:17:55 MST