December 2006
Intermediate to advanced
1188 pages
72h 8m
English
You want to configure your router to follow the RFC-defined Per-Hop Behaviors defined for different DSCP values.
This recipe constructs an approximate implementation of both Expedited Forwarding and Assured Forwarding, while still ensuring that network control packets do not suffer from delays due to application traffic. With the QoS enhancements provided in IOS Version 12.1(5)T and higher, there is a straightforward way to accomplish this using a combination of WRED, CBWFQ, and Low Latency Queuing (LLQ):
Router#configure terminalEnter configuration commands, one per line. End with CNTL/Z. Router(config)#class-mapRouter(config-cmap)#EFdescriptionRouter(config-cmap)#Real-time application trafficmatch ip precedenceRouter(config-cmap)#5exitRouter(config)#class-mapRouter(config-cmap)#AF1xdescriptionRouter(config-cmap)#Priority Class 1match ip precedenceRouter(config-cmap)#1exitRouter(config)#class-mapRouter(config-cmap)#AF2xdescriptionRouter(config-cmap)#Priority Class 2match ip precedenceRouter(config-cmap)#2exitRouter(config)#class-mapRouter(config-cmap)#AF3xdescriptionRouter(config-cmap)#Priority Class 3match ip precedenceRouter(config-cmap)#3exitRouter(config)#class-mapRouter(config-cmap)#AF4xdescriptionRouter(config-cmap)#Priority Class 4match ip precedenceRouter(config-cmap)#4exitRouter(config)#policy-mapRouter(config-pmap)#cbwfq_pqclassRouter(config-pmap-c)#EFpriority 58 800Router(config-pmap-c)# ...
Read now
Unlock full access