How do I Implement VLAN Rate Limiting or QOS for a Cisco 2960?

Posted by evolvd on Server Fault See other posts from Server Fault or by evolvd
Published on 2011-11-14T22:55:53Z Indexed on 2011/11/15 17:55 UTC
Read the original article Hit count: 240

Filed under:
|
|
|

I have a 2960 that I need to limit the uplink port to 50Mbps for 3 vlans and 350Mbps for another vlan. Would the following config achieve that or is this even possible for the 2960?

class-map match-any VLAN50-51-52
 match vlan 50-52
class-map match-any VLAN53
 match vlan 53

policy-map 50MB_RATE_LIMIT
class VLAN50-51-52
police 50000000 5000000 exceed-action drop
class VLAN53
police 350000000 35000000 exceed-action drop

!
interface GigabitEthernet0/23
service-policy output 50MB_RATE_LIMIT
service-policy input 50MB_RATE_LIMIT

© Server Fault or respective owner

Related posts about cisco

Related posts about qos