如何监视Brocade Fastiron上LACP中继线的主端口或辅助端口上的(SPAN)通信量?
我可以将监视器命令放在主端口e15上,它将允许我监视整个延迟的流量。似乎没有办法监视包中的单个链接。
滞后配置:
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发布于 2013-05-26 21:25:53
根据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从这个意义上说,主干是聚合接口的FastIron术语。
如果这不起作用,您可以使用抽头,或通过另一个交换机推送链接,通过该交换机隧道LACP,然后镜像交换机端口。
发布于 2013-05-27 10:01:08
为了增加完整的完善答案,下面的命令允许捕获单个链接上的数据包,在一个滞后的捆绑。
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 bothhttps://networkengineering.stackexchange.com/questions/1050
复制相似问题