I've got squid conf that looks a bit like the following snippet: # ... acl ip-192.168.1.2 myip 192.168.1.2 http_port 192.168.1.2:80 name=ip-192.168.1.2 http_port 192.168.1.2:8080 name=ip-192.168.1.2 tcp_outgoing_address 192.168.1.2 ip-192.168.1 # ... Question: do those http_port directives need to have unique 'name=' entries? Or can they all share the same name? Also - and perhaps more importantly, is there any similar(ish) problems with the way I've named the 'myip' acl the same as the http_port names? I tested the above and things _appear_ to be working as expected, but... I'm still wondering whether there might be subtle issues with the above config. Thanks!