Matt wrote:
Is there a way to get Squid to listen and respond to client requests ONLY on a certain IP address and have it connect to websites ONLY on a certain other IP address? How do that? Matt
Listen: http_port 10.0.0.1:3128 Connect:acl all src 0.0.0.0/0.0.0.0 # Defined in the default squid.conf, only included for completeness
tcp_outgoing_address 10.0.0.2 all See the default squid.conf for more details. Chris