%May 4 21:28:24:309 2026 IDC-A-SW-S6805-1-D01_02-IRF IFMON/4/IFMON_INPUT_BC_RAPID_CHANGE: The incoming broadcast traffic of Ten-GigabitEthernet1/0/47 suddenly exceeds the threshold. Threshold=20000, current value=21007.
%May 4 21:28:34:402 2026 IDC-A-SW-S6805-1-D01_02-IRF IFMON/4/IFMON_INPUT_BC_RAPID_RECOVER: The incoming broadcast traffic of Ten-GigabitEthernet1/0/47 suddenly drops below the lower threshold. Threshold=20000, current value=366.
%May 4 21:37:29:815 2026 IDC-A-SW-S6805-1-D01_02-IRF IFMON/4/IFMON_INPUT_BC_RAPID_CHANGE: The incoming broadcast traffic of Ten-GigabitEthernet1/0/47 suddenly exceeds the threshold. Threshold=20000, current value=20876.
%May 4 21:37:39:920 2026 IDC-A-SW-S6805-1-D01_02-IRF IFMON/4/IFMON_INPUT_BC_RAPID_RECOVER: The incoming broadcast traffic of Ten-GigabitEthernet1/0/47 suddenly drops below the lower threshold. Threshold=20000, current value=375.
%May 4 21:38:52:646 2026 IDC-A-SW-S6805-1-D01_02-IRF IFMON/4/IFMON_INPUT_BC_RAPID_CHANGE: -Slot=2; The incoming broadcast traffic of Ten-GigabitEthernet2/0/47 suddenly exceeds the threshold. Threshold=20000, current value=20141.
%May 4 21:39:02:742 2026 IDC-A-SW-S6805-1-D01_02-IRF IFMON/4/IFMON_INPUT_BC_RAPID_RECOVER: -Slot=2; The incoming broadcast traffic of Ten-GigabitEthernet2/0/47 suddenly drops below the lower threshold. Threshold=20000, current value=108.
%May 4 21:46:25:126 2026 IDC-A-SW-S6805-1-D01_02-IRF IFMON/4/IFMON_INPUT_BC_RAPID_CHANGE: The incoming broadcast traffic of Ten-GigabitEthernet1/0/47 suddenly exceeds the threshold. Threshold=20000, current value=20531.
%May 4 21:46:35:219 2026 IDC-A-SW-S6805-1-D01_02-IRF IFMON/4/IFMON_INPUT_BC_RAPID_RECOVER: The incoming broadcast traffic of Ten-GigabitEthernet1/0/47 suddenly drops below the lower threshold. Threshold=20000, current value=441.
%May 4 21:55:20:504 2026 IDC-A-SW-S6805-1-D01_02-IRF IFMON/4/IFMON_INPUT_BC_RAPID_CHANGE: The incoming broadcast traffic of Ten-GigabitEthernet1/0/47 suddenly exceeds the threshold. Threshold=20000, current value=20476.
%May 4 21:55:30:600 2026 IDC-A-SW-S6805-1-D01_02-IRF IFMON/4/IFMON_INPUT_BC_RAPID_RECOVER: The incoming broadcast traffic of Ten-GigabitEthernet1/0/47 suddenly drops below the lower threshold. Threshold=20000, current value=405.
%May 4 22:04:15:850 2026 IDC-A-SW-S6805-1-D01_02-IRF IFMON/4/IFMON_INPUT_BC_RAPID_CHANGE: The incoming broadcast traffic of Ten-GigabitEthernet1/0/47 suddenly exceeds the threshold. Threshold=20000, current value=20422.
%May 4 22:04:25:976 2026 IDC-A-SW-S6805-1-D01_02-IRF IFMON/4/IFMON_INPUT_BC_RAPID_RECOVER: The incoming broadcast traffic of Ten-GigabitEthernet1/0/47 suddenly drops below the lower threshold. Threshold=20000, current value=415.
%May 4 22:10:01:576 2026 IDC-A-SW-S6805-1-D01_02-IRF IFMON/4/IFMON_INPUT_BC_RAPID_CHANGE: -Slot=2; The incoming broadcast traffic of Ten-GigabitEthernet2/0/47 suddenly exceeds the threshold. Threshold=20000, current value=20220.
%May 4 22:10:11:671 2026 IDC-A-SW-S6805-1-D01_02-IRF IFMON/4/IFMON_INPUT_BC_RAPID_RECOVER: -Slot=2; The incoming broadcast traffic of Ten-GigabitEthernet2/0/47 suddenly drops below the lower threshold. Threshold=20000, current value=111.
%May 4 22:13:11:280 2026 IDC-A-SW-S6805-1-D01_02-IRF IFMON/4/IFMON_INPUT_BC_RAPID_CHANGE: The incoming broadcast traffic of Ten-GigabitEthernet1/0/47 suddenly exceeds the threshold. Threshold=20000, current value=20541.
版本Release 8307P08,初步排查CPU、内存正常,TC正常,无环路
最佳答案
IFMON/4/IFMON_INPUT_BC_RAPID_CHANGE
入方向广播流量突然超过阈值 20000
很快又降到几百,恢复告警
display interface Ten-GigabitEthernet1/0/47
# 镜像本地抓流,或报文统计
display packet-filter statistics interface Ten-GigabitEthernet1/0/47 inbound
display ifmon configuration
interface Ten-GigabitEthernet1/0/47
ifmon disable broadcast inbound
interface Ten-GigabitEthernet2/0/47
ifmon disable broadcast inbound
system-view
ifmon broadcast threshold 100000
interface Ten-GigabitEthernet1/0/47
broadcast-suppression 10 # 限制广播占接口带宽10%
暂无评论
你这个情况很典型,别担心。日志里“反复超过阈值又迅速恢复”的模式通常不是网络环路,而更像是 广播风暴抑制功能(storm-constrain)生效的表现,根源大概率是下联设备某个应用在间歇性地大量发送广播包。
从日志来看,告警在“超过”和“低于”阈值间快速切换,超过时的广播流量也只是略高于阈值(仅超出5%左右)。这更像是流量偶尔触及临界值,而非严重风暴。
这其实是交换机 storm-constrain 功能在自动保护设备:
流量超限:交换机检测到广播流量超过了预设的 20000 pps 阈值。
保护动作:交换机随即启动流量抑制,将端口广播流量限制在阈值以下。
流量恢复:抑制后流量迅速降到阈值以下,告警消失。
再次超限:下一波广播流量涌来时,再次触发上述过程。
问题根源在于找到了广播源头并加以控制。可以按以下步骤操作:
1. 定位高广播端口
直接在交换机上查看接口的广播包速率,快速定位源头。首先执行 reset counters interface Ten-GigabitEthernet 1/0/47 和 Ten-GigabitEthernet 2/0/47 清除计数,然后多次执行 display interface Ten-GigabitEthernet x/0/47 查看广播包的增长速率。如果增长非常快(比如每秒增加数万个),就说明源头在这两个端口下联的网络。
2. 确认流量构成
在问题端口执行端口镜像配置,将流量复制到PC上,使用Wireshark抓包分析,重点看:
广播包都来自哪些源IP和源MAC?
具体是什么协议在发广播包?NetBIOS、ARP、还是特定应用?
这样就能精准定位到是哪台设备、哪个应用产生的广播。
3. 进一步排查下联设备
定位到故障端口后,可以检查其下联交换机是否存在环路(观察MAC地址漂移日志),或确认下联终端有无中毒、异常应用等情况。必要时,还可以对下联交换机也进行端口镜像抓包,进一步缩小范围。
根据业务情况,你可以选择以下一种或多种方式组合:
方案一:优化下联设备(治本)
根据排查结果,如果是某台终端或服务器频繁发广播包,建议对该设备进行杀毒、修复或隔离。如果是下联交换机存在环路,就需要开启STP等防环协议。这是最根本的解决办法。
方案二:设置更合理的广播抑制(推荐)storm-constrain 通过软件对广播报文进行抑制,对设备性能有一定影响。因此,推荐基于芯片的硬件抑制 broadcast-suppression,在连接终端或服务器的端口上使用百分比或 kbps 阈值来防止单端口占用过多带宽。如果你的应用对广播流量带宽有限制,比如希望将其限制在端口带宽的5%以内,可以配置:
首先确认当前配置的阈值。执行 display storm-constrain 查看当前广播风暴抑制的阈值和动作。如果当前阈值偏低(比如 20000 pps),但你的业务确实需要更高的广播流量,可以参考以下命令将其调整到更宽松的值(默认为 storm-constrain broadcast pps 20000)。你也可以尝试在接口下用 undo storm-constrain broadcast 禁用广播风暴抑制,以便优先采用 broadcast-suppression 方案。
暂无评论
亲~登录后才可以操作哦!
确定你的邮箱还未认证,请认证邮箱或绑定手机后进行当前操作
举报
×
侵犯我的权益
×
侵犯了我企业的权益
×
抄袭了我的内容
×
原文链接或出处
诽谤我
×
对根叔社区有害的内容
×
不规范转载
×
举报说明
暂无评论