Hi,
I have been tasked to configure QoS policies on a LAN network made of Cisco IE4010 switches. The customer is requesting several vlans to be prioritized over the other vlans.
I was thinking to create one class-map per vlan that I need to prioritize and to set a CoS value for each Vlan. Below is the configuration I applied:
class-map match-any data
exit
class-map match-any vlan12
match vlan 12
exit
policy-map child-policy
class data
set cos 6
exit
policy-map parent-policy
class vlan12
service-policy child-policy
exit
interface gi 1/24
service-policy input parent-policy
The class-map data is left empty because I don't want to match any specific type of traffic within the vlan 12. I want all the traffic from Vlan12 to be prioritized over other Vlans.
Can you tell me if this configuration is correct?
Thanks