Symptoms - CPU of ASE switch and the network is slow or not responding
Diagnosis - LEDS show traffic is nearly constant, management access to the switch is slow to not responsive. Inter...
See more...
Symptoms - CPU of ASE switch and the network is slow or not responding
Diagnosis - LEDS show traffic is nearly constant, management access to the switch is slow to not responsive. Interface stats show a majority of multicast traffic or is counting up faster than other traffic.
Solution - IGMP Snooping
IGMP/MLD Snooping
IP multicast reduces the IP broadcasting data traffic efforts by forwarding the data frames to only those network devices that expect the designated frames proposing group registration. It is commonly deployed for triple play services (data, voice, and video), such as a network conference system and video on demand (VOD).
ASE IPMC, which includes IGMP and MLD protocol support, manages the IP multicast group registration. Snooping works at the layer 2 MAC level but it handles the IP IGMP (layer 3) control messages to dedicate a layer 2 MAC forwarding table. For IPMC snooping, the system needs to be in router mode where the following two roles are defined. • Querier transmits IPMC queries and is responsible for triggering multicast address determination. • Non-querier routers not selected as querier in the same broadcast domain, such as a VLAN.
ASE IGMP Defaults
IGMP Snooping Setup Using ICLI
IGMP Snooping Setup Using ICLI
Execute the following steps to set up IGMP snooping using ICLI.
Enters global configuration mode.
configure terminal
Example
# configure terminal
(config)#
Sets up unknown flooding, SSM range, or IPv4 multicast data forwarding. (Optional)
ip igmp { ssm-range <ipv4_mcast> | unknown-flooding }
Example
(config)# ip igmp unknown-flooding
(config)#
Creates and enters (IP) VLAN interface configuration mode with the specific VLAN ID or list.
interface vlan <vlan_list>
Example
(config)# interface vlan 1 (config-if-vlan)#
Enables the designated (IP) VLAN interface IGMP snooping function.
ip igmp snooping
Example
(config-if-vlan)# ip igmp snooping
(config-if-vlan)#
Sets up IGMP VLAN interface specific configurations. (Optional)
ip igmp snooping
{
compatibility { auto | v1 | v2 | v3 } | last-member-query-interval <0-31744>
| priority <0-7> |
querier address <ipv4_ucast> |
querier election |
query-interval <1-31744> |
query-max-response-time <0-31744> | robustness-variable <1-255> | unsolicitedreport-
interval <0-31744>
}
Example
(config-if-vlan)# ip igmp snooping querier election
(config-if-vlan)#
Exits from interface configuration mode and returns to global configuration mode.
exit
Example
(config-if-vlan)# exit
(config)#
Enables the global IGMP snooping function.
ip igmp snooping
Example
(config)# ip igmp snooping
(config)#
Returns to privileged EXEC mode.
end
Example
(config)# end
#
Saves settings in the configuration file. (Optional)
copy running-config startup-config
Example
# copy running-config startup-config
#