02-05-2019 12:35 PM - edited 03-05-2019 11:14 AM
We have an office with a 5 up 5 down internet connection that is getting maxed out (100%) everyday. Today netflow showed a user consuming 75% of the bandwidth (Rx traffic) while downloading from dropbox while other connections used 25%. So the link got maxed out & one of our techs set up rate limiting to anything on the dropbox public IP prefix but was told that it would not work because the policy map (service policy) is applied to the WAN interface as "Output" (Tx traffic). Here are my questions...
1) Will rate limiting work for users downloading data (Rx traffic) when the service policy is applied as "output" on the WAN interface?
2) If not could rate limitting be set up for "input" at the same time without erasing the existing "output" policy being applied on the interface?
3) Should voice traffic be negatively affected in this scenario if QoS policy is properly configured?
Solved! Go to Solution.
02-05-2019 01:07 PM
Hello,
try the below (IP addresses in the access list need to reflect the ones you are using). Voice traffic should always be prioritized, as with the QoS policy below, all you do is police the Dropbox traffic, everything else will share the rest of the bandwidth, and voice traffic is usually the most sensitive. What voice devices/apps do you have ?
ip access-list extended DROPBOX_5MBPS
permit ip 192.168.1.0 0.0.0.255 host 100.100.100.1
!
class-map CLASS_5MBPS
match access-group DROPBOX_5MBPS
!
policy-map POLICE_5MBPS
class CLASS_5MBPS
police 5000000 8000 exceed-action drop
class class-default
fair-queue
!
interface gigabitethernet1/0
description WAN Link
service-policy input POLICE_5MBPS
service-policy output POLICE_5MBPS
02-05-2019 01:07 PM
Hello,
try the below (IP addresses in the access list need to reflect the ones you are using). Voice traffic should always be prioritized, as with the QoS policy below, all you do is police the Dropbox traffic, everything else will share the rest of the bandwidth, and voice traffic is usually the most sensitive. What voice devices/apps do you have ?
ip access-list extended DROPBOX_5MBPS
permit ip 192.168.1.0 0.0.0.255 host 100.100.100.1
!
class-map CLASS_5MBPS
match access-group DROPBOX_5MBPS
!
policy-map POLICE_5MBPS
class CLASS_5MBPS
police 5000000 8000 exceed-action drop
class class-default
fair-queue
!
interface gigabitethernet1/0
description WAN Link
service-policy input POLICE_5MBPS
service-policy output POLICE_5MBPS
02-06-2019 05:47 AM
02-06-2019 05:59 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