多个交换机中的 IGMP,在同一 VLAN 中具有多个发送器和接收器

网络工程 第 2 层 多播 igmp
2022-02-19 00:04:08

我正在尝试将多播流量从 3 个发送者发送到分布在 3 个交换机上的同一 VLAN(100)中的相应接收者。 3 个开关和 3 个发送器-接收器 我在其中一个交换机中设置了一个查询器,但它似乎没有按预期转发多播流量。

配置
AX-1:

interface tengigabitethernet 0/25
  switchport mode trunk
  switchport trunk allowed vlan 100
                                     
interface tengigabitethernet 0/27
  switchport mode access
  switchport access vlan 100

interface tengigabitethernet 0/28
  switchport mode access
  switchport access vlan 100

interface vlan 100
  ip igmp snooping

AX-2:

interface tengigabitethernet 0/25     
  switchport mode trunk               
  switchport trunk allowed vlan 100
                                 
interface tengigabitethernet 0/26     
  switchport mode trunk               
  switchport trunk allowed vlan 100
 
interface tengigabitethernet 0/27
  switchport mode access              
  switchport access vlan 100          

interface tengigabitethernet 0/28     
  switchport mode access              
  switchport access vlan 100          
                         
interface vlan 100                    
  ip address 192.168.100.20 255.255.255.0 
  ip igmp snooping                    
  ip igmp snooping querier

AX-3:

interface tengigabitethernet 0/25     
  switchport mode trunk               
  switchport trunk allowed vlan 100         
                               
interface tengigabitethernet 0/27     
  switchport mode access              
  switchport access vlan 100          
                                 
interface tengigabitethernet 0/28     
  switchport mode access              
  switchport access vlan 100          
         
interface vlan 100 
  ip igmp snooping

在 AX-3 中,Receiver-4 有一个 IGMP 组。

VLAN 100   Group counts: 1
  Group Address     MAC Address         Version      Mode
  232.58.164.221    0100.xxxx.xxxx      V2           -
    Port-list:0/27

在 AX-1 中,Receiver-1 和 Receiver-5 有两个 IGMP 组。

VLAN 100   Group counts: 2
  Group Address     MAC Address         Version      Mode
  225.97.166.93     0100.xxxx.xxxx      V2           -
    Port-list:0/27

  225.123.82.128    0100.xxxx.xxxx      V2           -
    Port-list:0/28

AX-2 没有。

我选择的查询器开关不正确还是我需要设置一个 mrouter?
注意:这些开关是 Alaxala(AX2500S 系列)开关。

1个回答

AX-2 上的表中没有任何内容,因为 AX-2 上没有消费者,只有发射器。因此,没有什么需要修剪的。传输者不会加入他们传输到的组,因此他们不会生成加入或在其成员报告中列出这些组。

(如果您正在运行多播路由,那么源将在表中。)