Squid Proxy IP Authentication per proxy
Hello everyone!
I have squid 3 running on centos 6.5 configured for multiple outgoing IPs. I need to define a client/whiteIP for each outgoing IP. So far I have:
acl user1 src 71.XXX.XX.246
http_access allow user1
http_port 3138
acl port11 myport 3138
tcp_outgoing_address 192.XX.XXX.203 port11
http_port 3139
acl port12 myport 3139
tcp_outgoing_address 192.XX.XXX.204 port12
http_port 3140
acl port13 myport 3140
tcp_outgoing_address 192.XX.XXX.205 port13
http_port 3141
acl port13 myport 3141
tcp_outgoing_address 192.XX.XXX.206 port13
This configuration works for the above proxies, but what I need to do is restrict access for user1, for example only give user1 access to 192.XX.XXX.205 and 192.XX.XXX.206 but not 192.XX.XXX.203 192.XX.XXX.204.
Anyone know how I can do this? Thank you!
|