Outbound QoS policy generic example
From DocWiki
(Difference between revisions)
Frankpetzold (Talk | contribs) (→Configuration) |
Frankpetzold (Talk | contribs) (→Introduction) |
||
| (One intermediate revision not shown) | |||
| Line 3: | Line 3: | ||
==Introduction== | ==Introduction== | ||
| - | Outbound Qos policy. This is an | + | Outbound Qos policy. This is an generic example of outbound QoS policy matching the tarffic using |
| - | different dscp bits | + | different dscp bits |
==Design== | ==Design== | ||
| Line 47: | Line 47: | ||
==Related show Commands== | ==Related show Commands== | ||
| - | show access-lists; | + | show access-lists; |
| - | show class-map; | + | show class-map; |
| - | show policy-map interface serial 0/1/0 | + | show policy-map interface serial 0/1/0 |
| - | + | ||
| - | + | ||
==Related Information== | ==Related Information== | ||
Latest revision as of 19:31, 2 February 2011
Contents |
Introduction
Outbound Qos policy. This is an generic example of outbound QoS policy matching the tarffic using different dscp bits
Design
LAN======router->--Internet
Configuration
access-list 100 permit icmp any any echo access-list 100 permit icmp any any echo-reply ! class-map match-any ef-traffic match dscp ef match access-group 100 class-map match-all af21-traffic match dscp af21 class-map match-all af31-traffic match dscp af31 class-map match-all af11-traffic match dscp af11 class-map match-all cs1-traffic match dscp cs1 class-map match-all class-default match any ! policy-map llq-policy class ef-traffic priority 168 class af31-traffic bandwidth remaining percent 40 class af21-traffic bandwidth remaining percent 20 class af11-traffic bandwidth remaining percent 13 class cs1-traffic bandwidth remaining percent 2 class class-default bandwidth remaining percent 25 ! interface Serial0/1/0 service-policy output llq-policy
Related show Commands
show access-lists; show class-map; show policy-map interface serial 0/1/0