Step 1: Globally Define the Classification Methods
Router(config)# access-list 101 permit ip any any precedence internet | Creates an ACL to define interesting traffic. |
Step 2: Assign Traffic for Individual Queues
Step 3: Optionally Establish the Packet Limit for Each Queue
Router(config)# priority-list 5 queue-limit 20 40 60 100 | Specifies the maximum number of packets for each queue. |
Note
No packet in a priority queue is sent until all higher priority queues are empty. This can result in the starvation of the lower priority queues.
Step 4: Apply the Priority Queuing List to an Interface
Router(config)# interface serial0/0 | Enters interface programming mode. |
Router(config-if)# priority-group 5 | Applies the priority list. |