linux QOS流量管理实例一
作者 佚名技术
来源 Linux系统
浏览
发布时间 2012-05-17
100Mbit
现在在子类上创建qdisc和filters的方法与CBQ类似,唯一不同的就是建立类,接下来看如何看home上创建class,qdisc和filter. tc class add dev eth1 parent 10:10 classid 10:100 htb rate 1Mbit tc qdisc add dev eth1 parent 10:100 sfq quantum 1514b perturb 15 tc filter add dev eth1 protocol ip parent 10:0 prio 5 u32 match ip dst 1.1.1.1 flowid 10:100 #the office tc class add dev eth1 parent 10:10 classid 10:200 htb rate 4Mbit tc qdisc add dev eth1 parent 10:200 sfq quantum 1514b perturb 15 tc filter add dev eth1 parent 10:0 protocol ip prio 5 u32 match ip dst 1.1.2.0/24 flowid 10:200 #the ISP tc class add dev eth1 parent 10:10 classid 10:300 htb rate 5Mbit tc qdisc add dev eth1 parent 10:300 sfq quantum 1514b perturb 15 tc filter add dev eth1 parent 10:0 protocol ip prio 5 u32 match ip dst 1.1.1.2 flowid 10:300 tc filter add dev eth1 parent 10:0 protocol ip prio 5 u32 match ip dst 1.1.3.0/24 flowid 10:300 在eth1上使用tc class命令检验配置. root@router:~# tc class show dev eth1 class htb 10:10 root rate 100000Kbit ceil 100000Kbit burst 126575b cburst 126575b class htb 10:100 parent 10:10 leaf 8072: prio 0 rate 1000Kbit ceil 1000Kbit burst 2849b cburst 2849b class htb 10:200 parent 10:10 leaf 8073: prio 0 rate 4000Kbit ceil 4000Kbit burst 6599b cburst 6599b class htb 10:300 parent 10:10 leaf 8074: prio 0 rate 5000Kbit ceil 5000Kbit burst 7849b cburst 7849b and after sending three ping packets to 1.1.1.1, we should see them . the 10:100 class:
class htb 10:100 parent 10:10 leaf 8072: prio 0 rate 1000Kbit ceil 1000Kbit burst 2849b cburst 2849b Sent 294 bytes 3 pkts (dropped 0, overlimits 0) rate 24bit lended: 3 borrowed: 0 giants: 0 tokens: 18048 ctokens: 18048
|
||
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |
你可能对下面的文章感兴趣
关于linux QOS流量管理实例一的所有评论