Displaying 1 result from an estimated 1 matches for "shapiung".
Did you mean:
shaping
2005 Mar 23
2
limiting bandwidth on iface
...ed that does the real thing on the client-side:
- -----snip-----
~ 23 # now setup shaping to dsl-like-speed (up:128, down:1024 - this \
~ is the dsl-client)
~ 24 $tc qdisc del dev $tun root >&- 2>&-
~ 25 $tc qdisc add dev $tun root handle 1: htb
~ 26
~ 27 # shapiung class of root --> not more than 1mbit bandwidth
~ 28 $tc class add dev $tun parent 1: classid 1:1 htb rate 1mbit \
~ burst 0 cburst 128
~ 29
~ 30 # this is for downstream
~ 31 $tc class add dev $tun parent 1:1 classid 1:10 htb rate 1mbit
~ 32 # this does upstream
~...