Squid configuration examples (ctd) Set ToS for certain IP ranges Note that ToS/Diffserv is only relevant inside your own network Not as useful as it sounds, but use your imagination acl managernet src 192.168.1.0/255.255.255.0 acl devnet src 192.168.2.0/255.255.255.0 acl supportnet src 192.168.3.0/255.255.255.0 acl all src 0.0.0.0/0.0.0.0 ; managers get the high-priority traffic tcp_outgoing_tos 0x40 managernet ; development get the next-priority traffic tcp_outgoing_tos 0x30 devnet ; support gets the low priority traffic tcp_outgoing_tos 0x00 supportnet ; The rest of the users get medium-priority traffic tcp_outgoing_tos 0x10 all