如何在 Brocade Fastiron 中仅监控 LACP 中继的单个端口上的(SPAN)流量

网络工程 监控 锦缎 以太通道
2021-07-24 03:41:22

如何仅在 Brocade Fastiron 上的 LACP 中继的主要端口或次要端口上监控(SPAN)流量?

我可以将 monitor 命令放在主端口 e15 上,它将允许我监控整个 LAG 的流量。似乎无法监控捆绑包中的单个链接。

滞后配置:

interface ethernet 15
 spanning-tree 802-1w admin-edge-port
 no flow-control
 link-aggregate active
!
interface ethernet 17
 link-aggregate active
!

尝试配置辅助端口时的错误消息:

telnet@s1(config)#int e 17
Error - cannot configure secondary ports of a trunk
2个回答

根据 FastIron 配置指南:

  If the primary interface of a trunk is enabled for monitoring, the entire trunk will be monitored. 
You can also enable an individual trunk port for monitoring using the config-trunk-ind command

从这个意义上说,Trunk 是聚合接口的 FastIron 术语。

如果这不起作用,您可以使用 TAP,或通过另一台交换机推送链接,通过该交换机隧道 LACP,然后镜像交换机端口

为了增加成熟回答的完整性,下面的命令允许在 LAG 包中的各个链路上捕获数据包。

switch(config)#mirror-port e 9 
switch(config)#trunk e 15 e 17 
switch(config-trunk-15,17)#config-trunk-ind
!Monitor only primary port
switch(config-trunk-15,17)#monitor e 15 e 9 both
!Monitor only secondary port
switch(config-trunk-15,17)#monitor e 17 e 9 both