08-02-2021 08:55 AM - edited 08-02-2021 08:57 AM
HI Community,
I am completly new to Qos on Cisco.
we would like to implement QoS on our network (based on 2960X - 15.2(2)E7 - license LAN BASE in use) for Teams communication so that to prioritize Teams traffic according to their specifications (port range and dscp value).
here is a my config :
EXTENDED ACL
ip access-list extended ACL-AUDIO
permit udp any range 50000 50019 any
permit tcp any range 50000 50019 any
ip access-list extended ACL-SHARING
permit udp any range 50040 50059 any
permit tcp any range 50040 50059 any
ip access-list extended ACL-VIDEO
permit udp any range 50020 50039 any
permit tcp any range 50020 50039 any
CLASS MAP
class-map match-any SHARING
match access-group name ACL-SHARING
class-map match-any AUDIO
match access-group name ACL-AUDIO
class-map match-any VIDEO
match access-group name ACL-VIDEO
POLICY-MAP
policy-map QOS-TEAMS
class AUDIO
set dscp ef
class VIDEO
set dscp af41
class SHARING
set dscp af21
ON LINK TO DISTRIB just set : mls qos trust dscp on trunk port
this is the config on LAN ACCESS.
on DISTRIB And interlink switch i've just put mls qos trust dscp.
i have apply this on some user interface port with the command
servicice-policy input QOS-TEAMS
but the show policy-map interface GiXXX is empty despite ( no match) some call via teams.
Do someboding can tell me what i'm missing ?
Thhanks in advance for you help.