We manage some servers where we needed to limit outgoing bandwidth to 500mbps. The servers are used for streaming video content so we decided to limit the outgoing traffic on port 80 and port 443. We used the following bash script based on traffic control shapping (tc). #!/bin/bash TC=/sbin/tc IF=eth0 # Interface U32=”$TC filter add […]