How do I Implement VLAN Rate Limiting or QOS for a Cisco 2960?
- by evolvd
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