- 论坛徽章:
- 0
|
本帖最后由 souldump 于 2012-03-08 12:39 编辑
本人在机器上配置如下tc规则:
tc qdisc add dev eth0 root handle 1: htb
tc class add dev eth0 parent 1:1 classid 1:4 htb rate 100kbps ceil 100kbps
tc class add dev eth0 parent 1:1 classid 1:5 htb rate 100kbps ceil 100kbps
tc filter add dev eth0 parent 1: prio 10 protocol ip u32 match ip src 192.168.10.208/32 match ip sport 80 0xffff flowid 1:4
tc filter add dev eth0 parent 1: prio 10 protocol ip u32 match ip dst 192.168.10.208/32 match ip dport 80 0xffff flowid 1:4
tc filter add dev eth0 parent 1: prio 10 protocol ip u32 match ip src 192.168.10.201/32 match ip sport 80 0xffff flowid 1:5
tc filter add dev eth0 parent 1: prio 10 protocol ip u32 match ip dst 192.168.10.201/32 match ip dport 80 0xffff flowid 1:5
目的是限制 192.168.10.201和192.168.10.208的带宽,各100K(不能借用),但是使用wget测试稳定时显示
21% [===========> ] 157,088,420 5.40M/s eta
。
请教配置哪里配置错误?本人对HTB不是很熟,请教如何实现。 |
|