Squid configuration examples (ctd) Force certain clients to use a different source address Which really says "incoming pipe" acl clients src 192.168.0.0/255.255.0.0 acl badboy src 192.168.10.0/255.255.255.0 acl goodboy src 192.168.11.0/255.255.255.0 ; bad boys get the bad boy pipe tcp_outgoing_address 10.0.0.1 badboy ; expensive boys get the expensive pipe tcp_outgoing_address 10.0.1.1 goodboy ; normal clients get the default pipe ; (don't need to use 'clients' here..) tcp_outgoing_address 10.0.2.1