I’m wondering what exactly the following commands from my core switch are accomplishing. I see only the following references, but no ACL definitions or any other references to these mapped names anywhere else in the configs. What are they doing?
class-map match-all REYCM_EDGE_PORTS
match input-interface FastEthernet1/0/1 - FastEthernet1/0/48
class-map match-all REYACL_VOICE
match access-group name REYACL_VOICE
class-map match-all REYCM_DMS
match access-group name REYACL_DMS
!
!
policy-map REYPM_WLAN
policy-map REYPM_WLAN_POLICE
class REYCM_EDGE_PORTS
police 12000000 60000 exceed-action policed-dscp-transmit
Understanding class and policy maps
Policy-map and class-map
Videos
I’m wondering what exactly the following commands from my core switch are accomplishing. I see only the following references, but no ACL definitions or any other references to these mapped names anywhere else in the configs. What are they doing?
class-map match-all REYCM_EDGE_PORTS
match input-interface FastEthernet1/0/1 - FastEthernet1/0/48
class-map match-all REYACL_VOICE
match access-group name REYACL_VOICE
class-map match-all REYCM_DMS
match access-group name REYACL_DMS
!
!
policy-map REYPM_WLAN
policy-map REYPM_WLAN_POLICE
class REYCM_EDGE_PORTS
police 12000000 60000 exceed-action policed-dscp-transmit
Policy Maps are containers inside which reside Class Maps.
Policy Maps are applied to things (interfaces etc) so that their actions/instructions (class maps) can be carried out. The class-maps are referring to ACL’s which will have the ip addresses/subnets and possibly tcp/udp traffic types/port numbers to be matched.
On the example there it looks like VoIP traffic is set to be transmitted even if the rate limits set have been reached/breached. All other traffic would be dropped.
I'm trying to decipher a router config and I am trying to figure out how these 2 command work together. I've been reading about it but I need someone to explain it to me like I'm 5.
Also, how would I go about determining which of these VLANs is identified as a voice VLAN? There is no obvious voice configurations it looks like all the voice data is being handled by the SIP trunk but I can't figure out which IP is the SIP trunk...
anyway..