Displaying 1 result from an estimated 1 matches for "1250kbps".
2011 Sep 20
1
Network traffic control/shaping of guest interfaces
...bandwidth as well as ensuring ssh always get reserved bandwidth.
However, when I try the good old tc/htb commands on the host, it fails
to do anything useful.
My script that works on the non-virtualized setup was this
TCADD="tc class add dev eth0 parent"
$TCADD 1:0 classid 1:1 htb rate 1250kbps ceil 1250kbps
$TCADD 1:1 classid 1:10 htb rate 25kbps ceil 150kbps prio 0
$TCADD 1:1 classid 1:11 htb rate 100kbps ceil 300kbps prio 1
$TCADD 1:1 classid 1:12 htb rate 300kbps ceil 600kbps prio 1
$TCADD 1:1 classid 1:19 htb rate 75kbps ceil 150kbps prio 2
TFADD="tc filter add dev eth0 protoco...