码迷,mamicode.com
首页 > 其他好文 > 详细

ISP_QoS小结

时间:2015-09-10 09:43:36      阅读:154      评论:0      收藏:0      [点我收藏+]

标签:qos

MQC policy-map action:

  limit HIGH bandwith:

   1. CB-Policing
   2. CB-Shape

  limit LOW badwidth:

   3. CB-WFQ
   4. CB-LLQ
   5. CB-Marking

IOS中Policy-Map对应的命令:

    CB-Policing--->policing
    CB-Shape--->shape

    CB-WFQ--->bandwith
    CB-LLQ--->priority

   另:WRED机制--->random-detct

WFQ:
 FB-WFQ by Flow 解决传输上公平性问题
 CB-WFQ by Class 真正解决带宽分类问题

Policy-map的应用Service-Policy可以应用在FR的流量整形中即Traffic-Shape,这点是和FR流量整形的区别。

在WFQ中,针对不同类设定的bandwidth的三种方法中注意:
  1. bandwidth 数值
  2. bandwidth 带宽占用百分比
  3. bandwidth 剩余带宽占用百分比
  在1和2中没有区别,3不同1和2。1和2是不对资源进行预留的,如你还有PQ队列的话,1和2是以总带宽进行计算;3是去掉PQ队列带宽后,设定占用的百分比。
QOS Queue(队列)


一、思科队列技术除了FIFO外,还有:

1、Weight fair queuing(WFQ)
2、Flow-based weighted fair queuing
3、Class-based weighted fair queuing(CBWFQ)
4、Low latency queuing(LLQ)


二、WFQ

1、WFQ在2M以下的链路上(E1)被默认激活,在x.25或compressed ppp上默认为disable。E3或T3以上的局域网链路或串行链路不支持WFQ

2、WFQ分4种类型:flow-based,distributed,class-based,distributed class-based

3、WFQ配置示例(1):
r1(config-if)# fair-queue {congestion-discard-threshold}   //拥塞丢弃门限值,可取1-512,默认为64

4、WFQ配置示例(2):
r2(config)#interface serial 1
r2(config-if)# encapsulation frame-relay
r2(config-if)# fair-queue 128
r2(config-if)# bandwidth 56


三、Class-based Weighted Fair Queuing(CBWFQ)

1、接口带宽/类带宽=weight                          //类带宽越大,权越小,优先级越高

2、配置示例(1):
step1(config)# class-map xxx
step1(config-cmap)# match access-group 101
step1(config-cmap)# match input-interface s0/0
step1(config-cmap)# match protocol tcp
step1(config-cmap)# match ip precedence tos

step2(config)# policy-map yyy
step2(config-pmap)# class xxx
step2(config-pmap-c)# bandwidth 64
step2(config-pmap-c)# queue-limit 128       //尾丢弃
step2(config-pmap-c)# random-detect 128  //WRED,随机早期检测 //默认情况下,class class-default 采用 flow-based WFQ

step3(config)# interface s0/0
step3(config-if)# service-policy output yyy

3、配置示例(2):
router(config)# access-list 101 permit udp host 10.10.10.10 host 10.10.10.20 range 16382 20000    //定义语音流量
router(config)# access-list 102 permit udp host 10.10.10.10 host 10.10.10.20 range 53000 56000  //定义视频流量
router(config)# class-map class1
router(config-cmap)# match access-group 101
router(config-cmap)# exit
router(config)# class-map class2
router(config-cmap)# match access-group 102
router(config-cmap)# exit

router(config)# policy-map policy1
router(config-pmap)# class class1
router(config-pmap-c)# bandwidth 3000 //3M带宽
router(config-pmap-c)# queue-limit 30   //尾丢弃,30个包
router(config-pmap-c)# exit
router(config-pmap)# class class2
router(config-pmap-c)# bandwidth 2000   //默认WFQ,64个包


四、LLQ
router(config)# policy yyy
router(config-pmap)# class xxx
router(config-pmap-c)# priority 30

在定义LLQ时,bandwidth,queue-limit,random-detect命令不能同时使用


本文出自 “Erick WAY” 博客,谢绝转载!

ISP_QoS小结

标签:qos

原文地址:http://ericfu.blog.51cto.com/416760/1693304

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!