Explain in Kratz how the TC works. Suppose there is a channel

tc class` add dev ${IFACE} parent 1: classid 1:1 htb rate 100Mbit burst 2k 

I create a class for example

 `tc class add dev ${IFACE} parent 1:1 classid 1:70 htb rate 1028kbit burst 2k tc qdisc add dev ${IFACE} parent 1:70 handle 70: sfq perturb 1 ` 

naturally filter

 tc filter add dev ${IFACE} parent 1:0 protocol ip prio 1 handle 70 fw flowid 1:70 

on the firewall mark packages say for 5 people with a marker 70! Attention question: Each of the 5 people will have a channel at 1028kbit / s or wakes at all 1028.

    1 answer 1

    at all 1028

    • ok I have already disassembled - e_klimin