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を通過するのを見ました。
私が作った構造に問題があるのでしょうか?