User Tools

Site Tools


check_igmp_version_on_an_interface

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
check_igmp_version_on_an_interface [2020/05/15 15:23] – created walkeradmincheck_igmp_version_on_an_interface [2023/03/09 22:35] (current) – external edit 127.0.0.1
Line 5: Line 5:
  
 ---- ----
-Multicast routes are a similar concept to IP Routes, but as the name implies they are for Multicast addresses (which are class D), rather than standard IP Addresses (which are class A, B and C). For Unicast would surmise you still use IP Routes.+This is from CentOS 7.7. It may work with other Linux distros, but I cannot guarantee that.
 \\  \\ 
 \\  \\ 
 +One way to check the IGMP version being used by an interface is to use the following command:
 +\\ 
 +\\ 
 +    cat /proc/net/igmp
 +\\ 
 +\\ 
 +Below is a sample output:
 +<file>
 +Idx     Device    : Count Querier       Group    Users Timer    Reporter
 +1       lo        :          V3
 +                                010000E0     1 0:00000000               0
 +2       eth0      :          V2
 +                                61FBDBED     1 0:00000000               1
 +                                FE7F02EB     3 0:00000000               1
 +                                120000E0     1 0:00000000               1
 +                                010000E0     1 0:00000000               0
 +3       eth1      :          V3
 +                                026400EF     1 0:00000000               0
 +                                016400EF     1 0:00000000               0
 +                                010000E0     1 0:00000000               0
 +4       eth2      :          V3
 +                                FE7F02EB     1 0:00000000               0
 +                                010000E0     1 0:00000000               0
 +
 +</file>
 +Here we can see that <color #ed1c24>eth0</color> is using <color #ed1c24>IGMP V2</color>, while <color #00a2e8>eth1</color> and <color #00a2e8>eth2</color> are using <color #00a2e8>IGMP V3</color>.
 +\\ 
 +\\ 
 +
check_igmp_version_on_an_interface.1589552637.txt.gz · Last modified: 2023/03/09 22:35 (external edit)