03-21-2020 03:03 PM
Inherited a remote branch that has a 10MB circuit from ISP. There is a need to increase it to 20MB.
With respect to the router (2911)config does the bandwidth command need to be edited to reflect the new increased bandwidth? Below is what is currently configured. I also have a QoS applied to the interface, does the shape average have to be edited also?
interface GigabitEthernet0/0
description ATT-MPLS-PE
bandwidth 10000
no ip address
no ip redirects
no ip proxy-arp
duplex full
speed 100
!
interface GigabitEthernet0/0.50
description ATT-MPLS
bandwidth 10000
encapsulation dot1Q 50
ip address x.x.x.x
ip flow ingress
ip flow egress
service-policy input QoS_IN
service-policy output QoS_OUT_Parent
policy-map QoS_OUT
class VOIP
set ip dscp ef
priority percent 40
class INFRA_EGRESS
police cir percent 40
conform-action transmit
exceed-action drop
class class-default
queue-limit 1536 packets
policy-map QoS_OUT_Parent
class class-default
shape average 10000000
service-policy QoS_OUT
policy-map QoS_IN
class EMAIL_INGRESS
police cir percent 20
conform-action transmit
exceed-action drop
class WEBSERVER_INGRESS
police cir percent 20
conform-action transmit
exceed-action drop
class INFRA_INGRESS
police cir percent 20
conform-action transmit
exceed-action drop
03-21-2020 04:07 PM
Hello,
if you want to use the 'bandwidth' command for QoS purposes, add 'qos-reference'. The shaper needs to be adjustedif you increase the bandwidth:
interface GigabitEthernet0/0
description ATT-MPLS-PE
--> bandwidth qos-reference 20000
no ip address
no ip redirects
no ip proxy-arp
duplex full
speed 100
!
interface GigabitEthernet0/0.50
description ATT-MPLS
--> bandwidth qos-reference 20000
encapsulation dot1Q 50
ip address x.x.x.x
ip flow ingress
ip flow egress
service-policy input QoS_IN
service-policy output QoS_OUT_Parent
!
policy-map QoS_OUT
class VOIP
set ip dscp ef
priority percent 40
!
class INFRA_EGRESS
police cir percent 40
conform-action transmit
exceed-action drop
class class-default
queue-limit 1536 packets
!
policy-map QoS_OUT_Parent
class class-default
--> shape average 20000000
service-policy QoS_OUT
policy-map QoS_IN
!
class EMAIL_INGRESS
police cir percent 20
conform-action transmit
exceed-action drop
!
class WEBSERVER_INGRESS
police cir percent 20
conform-action transmit
exceed-action drop
!
class INFRA_INGRESS
police cir percent 20
conform-action transmit
exceed-action drop
03-21-2020 04:11 PM
What exactly does the command you provided change from what it is currently set at?
bandwidth qos-reference 20000
03-21-2020 11:43 PM
Hello @johnny_5 ,
Georg has provided you the commands to update the configuration of the router to reflect the new speed 20 Mbps.
you can use the bandwidth 20000 to change the bandwdith parameter of interfaces and subinterfaces (it is expressed in Kbps)
You need also to update the shaping rate of the parent QoS shaper policy-map.
the child policy will inherit the BW command from the parent policy
Hope to help
Giuseppe
03-22-2020 02:47 PM
03-22-2020 11:09 AM
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide