Displaying 1 result from an estimated 1 matches for "qdiisc".
Did you mean:
qdisc
2004 Jun 28
1
IMQ htb question
...qdisc add dev imq0 handle 1: root htb default 99
tc class add dev imq0 parent 1: classid 1:1 htb rate 1mbit
tc class add dev imq0 parent 1:1 classid 1:10 htb rate 100kbit
tc class add dev imq0 parent 1:1 classid 1:99 htb rate 900kbit
tc qdisc add dev imq0 parent 1:10 handle 100 sfq perturb 10
tc qdiisc add dev imq0 parent 1:99 handle 9 sfq perturb 10
Can someone help me understand the first example and why would someone
create a root qdisc that redirects all traffic to a class and then
instead of attaching child classes to that class, one would create a
qdisc associated with that class and t...