10-15-2018 01:03 PM - edited 03-08-2019 04:23 PM
We're have a handful of remote sites using 2960X's and running auto qos. They connect back to us over a provider / Ethernet service through a local company.
The CPE switch they have us plugging into is a Gig interface and our switch has a Gig interface, however we're paying for 100Mb service which they throttle somewhere on their network.
Should I be adjusting the qos commands for the uplink because it only has 100Mb/s throughput? I'd assume the queues are setup thinking this port has 1000Mb/s connectivity when in reality it's only 100Mb.
I thought about hard coding the speed to 100Mb but I'm concerned about speed mismatch as I believe the provider side is hard coded.
Should I add srr-queue bandwidth limit 10 to the gig uplink?
Any input would be great.
Thanks
10-15-2018 01:35 PM - edited 10-15-2018 01:37 PM
Hello
You should traffic shape to the negotiated CIR of your ISP to avoid any egress blocking from your ISP between your sites.
example:
Shaping your wan link to 100mb, provide LLQ for voice traffic and for traffic which cannot be characterize which will use the class class-default queue provide some fairness using WFQ
access-list 110 permit udp any any range 16384 32000
access-list 110 permit tcp any any eq 1720
class-map match-all voice
match access-group 110
Policy-map Voice_child
class voice
priority percent 5
class class-default
fair queue
policy-map WAN_Parent
class class-default
shape average 10240000
service-policy Voice_child
int x/x (wan)
service-policy output WAN_Parent
10-15-2018 02:35 PM
Hello,
typically, the interface command 'bandwidth' (100000 in your case - 100000 kilobits = 100 Megabits) would be used by auto qos to adjust the generated values...not sure if this works the same on the 2960x.
10-16-2018 12:21 AM - edited 10-16-2018 01:23 AM
Hello
just realised you are on about 2969x qos connecting to the isp and not a rtr
To limit the a interface in a shared capacity over the 4 egress queues of a switchport you can use
interface x/x
description gig interface
srr-queue bandwidth limit 10
(Which is 1/10th of 10000mb = 100mb)
10-16-2018 03:41 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