Hello,
I want to limit the aggregate traffic of multiple VLANs on a trunk using an aggregate policer. I also need Per-Port Per-VLAN QoS for other VLANs on the same trunk.
To cut a long story short, will the example config below work?
qos aggregate-policer pol_aggr_10Mbit 10m 12.5k conform-action transmit exceed-action drop
!
policy-map Aggr_10Mbit
class class-default
police aggregate pol_aggr_10Mbit
!
policy-map Limit_10M
class class-default
police 10m 12.5k conform-action transmit exceed-action drop
!
interface GigabitEthernetx/y
switchport trunk encapsulation dot1q
switchport mode trunk
!
! Aggregate 10Mbit VLANs
vlan-range 208, 316, 909
service-policy output Aggr_10Mbit
!
! 10 Mbit VLANs
vlan range 20, 50-100
service-policy output Limit_10M
Regards, Jan