cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
1747
Views
5
Helpful
4
Replies

isr4331 fair-queue

chojongman
Level 1
Level 1

Hello all

 

I need to change the router from c2800 router to isr4331.

 

The c2800 router has the fair-queue 64 256 0 command.

but I can not find the fair-queue command on isr4331.

How can I use the fair-queue command in isr4331 interface?

 

C2800 router

interface Serial0/0/1
description ### x.x.x ###
bandwidth 64
ip address x.x.x.x 255.255.255.252

 

thank you
fair-queue 64 256 0

1 Accepted Solution

Accepted Solutions

Hello,

 

the fair-queue command has been deprecated in XE. You need to use a class map and the default class to configure it:

 

Router(config)# policy-map policy-map-name
Router(config-pmap)# class class-default
Router(config-pmap-c)# fair-queue
Router(config-pmap-c)# fair-queue dynamic-queues
Router(config-pmap-c)# fair-queue queue-limit packets

 

Check the link below and scroll down to the 'Configuring Weighted Fair Queueing' section...

 

https://www.cisco.com/c/en/us/td/docs/ios/ios_xe/qos/configuration/guide/convert/qos_mqc_xe/legacy_qos_cli_deprecation_xe.html

View solution in original post

4 Replies 4

Hello,

 

the fair-queue command has been deprecated in XE. You need to use a class map and the default class to configure it:

 

Router(config)# policy-map policy-map-name
Router(config-pmap)# class class-default
Router(config-pmap-c)# fair-queue
Router(config-pmap-c)# fair-queue dynamic-queues
Router(config-pmap-c)# fair-queue queue-limit packets

 

Check the link below and scroll down to the 'Configuring Weighted Fair Queueing' section...

 

https://www.cisco.com/c/en/us/td/docs/ios/ios_xe/qos/configuration/guide/convert/qos_mqc_xe/legacy_qos_cli_deprecation_xe.html

It's as Georg notes, i.e. FQ is no longer an interface command, instead we use CBWFQ (often with a simple policy, like the one Georg shows).

It's likely in the documentation that Georg references, but besides defining a policy map with FQ in it, you need to apply the policy to the interface (as an out policy).

BTW:

policy-may your-name
class class-default
fair-queue

Is likely all the policy defining commands you need.

Also, BTW, the later (since HQF) CBWFQ's classes FQ implementations are just FQ, not WFQ, which is what the interface FQ command provided. If this is an issue, you would need to define multiple classes and apportion their bandwidth allocations to obtain similar results.

Thank you for your reply.

Thank you for your reply.

Review Cisco Networking for a $25 gift card