How to configure squid Allow Deny Limit IP based access control in http_access
Squid IP access control
To configure Squid ip based access control
Define the ACL allowedip and allow them in the http_access
acl allowedip src 10.5.5.1-10.5.5.100/32
acl deniedip src 10.5.6.1-10.5.6.100/32
http_access deny deniedip
http_access allow allowedip