tc CBQ가 작동하지 않습니다(트래픽 제한 없음).

tc CBQ가 작동하지 않습니다(트래픽 제한 없음).

cbq실패한 후 가중치 속성을 사용하려고 했습니다 . 작동하는지 확인하기 위해 예제에 있는 명령 세트를 사용해 보았습니다(HTB가 원활하게 실행됨).HTB

이것은 내가 사용하는 명령입니다:

# Attaching the Qdisc to the eth0 device.  The maximum available bandwidth is
# 10Mbit. 
tc qdisc add dev eth0 root handle 1: cbq bandwidth 10Mbit cell 8 avpkt 1000 \
mpu 64

# Adding the root class to the queuing discipline. The root has 10 Mbit
# completely. 
tc class add dev eth0 parent 1:0 classid 1:1 cbq bandwidth 10Mbit rate 10Mbit \
allot 1514 cell 8 weight 1Mbit prio 8 maxburst 20 avpkt 1000

# Traffic to testbed11. The priority is 3 and the allocation is 3 Mbit. 
tc class add dev eth0 parent 1:1 classid 1:2 cbq bandwidth 10Mbit rate 3Mbit \
allot 1514 cell 8 weight 100Kbit prio 3 maxburst 20 avpkt 1000 split 1:0 

# Traffic to testbed13. The priority is 7 and the allocation is 7 Mbit. 
tc class add dev eth0 parent 1:1 classid 1:3 cbq bandwidth 10Mbit rate 8Mbit \
allot 1514 cell 8 weight 800Kbit prio 7 maxburst 20 avpkt 1000 split 1:0

# Installing the route classifier on the root of the tree. 
tc filter add dev eth0 parent 1:0 prio 1 u32 match mark 0x123 0xfff flowid 1:2

속도가 제한될 것으로 예상했지만 그렇지 않았고(전체 대역폭을 얻었습니다)
사용했을 때 tc class show/ tc qdisc show패킷이 올바른 클래스/qdiscs를 통과하는 것을 보았습니다.
제가 만든 구조에 문제가 있는 걸까요?

관련 정보