# IGMP：在VLAN 100上检测到报告抑制，组播组239.1.1.1

- **ID:** `networking/igmp-report-supression`
- **领域:** networking
- **类别:** protocol_error
- **验证级别:** ai_generated
- **修复率:** 78%

## 根因

由于查询器配置错误，同一VLAN上的多个主机抑制了IGMP报告，导致组播路由器丢失组成员信息并停止转发流量。

## 版本兼容性

| 版本 | 状态 | 引入 | 弃用 |
|------|------|------|------|
| Cisco IOS 15.7(3)M | active | — | — |
| Juniper Junos 21.4R2 | active | — | — |
| Linux kernel 5.15.0-91-generic | active | — | — |
| Arista EOS 4.29.1F | active | — | — |

## 解决方案

1. ```
   Configure IGMP snooping querier on the VLAN to ensure consistent query generation: `ip igmp snooping querier 10.0.100.1`
   ```
2. ```
   Enable IGMP explicit host tracking to bypass report suppression: `ip igmp snooping explicit-tracking`
   ```
3. ```
   Set the IGMP query interval to a lower value (e.g., 60 seconds) to reduce suppression window: `ip igmp query-interval 60`
   ```

## 无效尝试

- **** — This floods all multicast traffic to all ports, defeating the purpose of snooping and causing unnecessary bandwidth consumption. (70% 失败率)
- **** — Longer intervals actually increase the chance of suppression because hosts wait longer to respond, and the querier may time out before receiving reports. (60% 失败率)
- **** — Static entries do not account for dynamic group changes and require manual updates, leading to stale or missing entries. (80% 失败率)
