02-23-2016 06:15 AM - edited 03-08-2019 04:41 AM
we have 4 servers at a remote site that we just started backing up from our main site. the total bandwidth available to us is 100mb form our sp. since we started doing this it has greatly affected user traffic. since there is no effective way to rate limit thru the backup application, we are taking a look at implementing qos shaping. we are using shaping instead of rate limiting because we don't want to drop traffic. the servers connect to 1gb ports on the 3850 and we would like to shape the traffic to 12.5 mb per server or 50mb total (50% of total bw). what I would like to know is how to configure the qos shaping and queue buffer allocation. I would like the queue buffers to be able to hold 1gb - 12.5 mb of data. here is the current configuration I plan on using without the queue buffers. also it is my understanding that implementing the service policy is not supported on port-channel interfaces. these interfaces are port-channels. any help would be greatly appreciated. thanks.
Extended IP access list srvbackup-to-dp
10 permit ip host 10.0.253.100 host 159.233.91.240
20 permit ip host 10.0.253.101 host 159.233.91.240
Class Map match-any srvbackup-traffic (id 2)
Match access-group name srvbackup-to-dp
Policy Map srvbackup-shaping
Class srvbackup-traffic
Average Rate Traffic Shaping
cir 12500000 (bps)
05-31-2018 09:13 AM - edited 05-31-2018 09:14 AM
You can use the class map and setup a qos group. Then use the shapping command on the egress interface. There are different limitations on the 3850 switch since it use MQC QoS.
So you will need to do two things:
+ One is classify on ingress the traffic an set QoS groups per network segments. This will be your ingress policy
+ Two configure a egress policy. On this egress policy you will use shapping according to the QoS groups.
ingress -------> Interface Gi a/a/a |3850| Interface Gi b/b/b----------> egress
You can try to use this configuration. Let me know if it worked.
Ingress Ploicy
===============================================
ip access-list extended network-segment
permit ip any 192.168.0.10 0.0.0.255
!
class-map match-any network-class
match access-group name network-segment
!
policy-map QOS-marking-In
class network-class
set qos-group 10
interface Gia/a/a
service-policy input QOS-marking-In
Egress Policy
================================================
Class-map match-all QOS-limit-Out
match qos-group 10
policy-map QOS-Limit-egress
class QOS-limit-Out
shape average 100000000
interface TenGigabitEthernetb/b/b
service-policy output QOS-Limit-egress
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