在思科的NX中,当形成MLAG等效对(vPC)时,有一些最佳实践需要遵循,例如,单独的保税L3接口仅用于使用来自对等链路的不同端口的保活数据包。
所以在NX中有这样的事情:
vpc domain 1
peer-switch
role priority 1
system-priority 1000
peer-keepalive destination 172.31.2.2 source 172.31.2.1 vrf vpc-peer-keepalive
auto-recovery
ipv6 nd synchronize
ip arp synchronize有两个不同的端口通道接口:
interface port-channel47
description vPC Peer-link Keepalive
no switchport
vrf member vpc-peer-keepalive
ip address 172.31.2.1/30
interface port-channel51
description vPC Peer-link
switchport mode trunk
switchport trunk native vlan 256
spanning-tree port type network
speed 10000
vpc peer-link最后是物理接口:
interface Ethernet1/47
description vPC Peer-link Keepalive Interface #1
no switchport
channel-group 47
interface Ethernet1/48
description vPC Peer-link Keepalive Interface #2
no switchport
channel-group 47interface Ethernet1/51
description vPC Peer-link Interface #1
switchport mode trunk
switchport trunk native vlan 256
spanning-tree port type network
udld aggressive
channel-group 51 mode active
no shutdown
interface Ethernet1/52
description vPC Peer-link Interface #2
switchport mode trunk
switchport trunk native vlan 256
spanning-tree port type network
udld aggressive
channel-group 51 mode active
no shutdown对NX来说就是这样了。现在,在Arista的EOS中,我似乎无法在不同的界面中找到任何与保存有关的内容,或者是否推荐这样做。因此,在EOS手册中,您只需使用相同的Peerlink接口:https://www.arista.com/en/um-eos/eos-section-13-5-mlag-implementation-example?searchword=MLAG
关于Arista EOS设备有什么不同的知识吗?我是否可以像在NX中一样使用不同的端口来保持生命呢?
谢谢。
发布于 2020-12-07 17:03:16
艾丽丝塔在同龄人之间仍然保持生活。
对于MLAG文件语句,peer-link声明您不必使用相同的链接。
MLAG是通过一个称为对等链路的接口连接两个交换机而形成的。对等链路在交换机之间携带MLAG广告、保持活动消息和数据通信。此信息使这两个开关作为一个一起工作。虽然每个交换机上包含对等链接的接口必须兼容,但它们不需要使用相同的接口编号。以太网和端口通道接口可以配置为对等链路.对等链路命令指定交换机用于通信MLAG控制通信的接口。
发布于 2020-12-07 17:04:13
在13.5.2.2节中,它们显示VLAN 4094被添加到MLAG主干组中,用于L3保持活动信令。脱离思科的例子,Arista使用现有的交换组,而不是指定一个新的.(从理论上讲,这是一个更好的方法,因为一个组的端口可以独立于另一个组失败。也就是说,保持活动链路可能会失败,但流量链路仍然可以运行。)
13.5.2.3通过MLAG configuration
发布于 2022-03-16 12:46:46
双一级检测在EOS 4.20.0F中添加。它向MLAG添加了一个heartbeat参数,您可以使用它来检测拆分大脑的情况。这个心跳可以通过Management发送,例如:
mlag configuration
domain-id some_mlag
local-interface Vlan4094
peer-address 192.168.255.1
peer-link Port-Channel9999
peer-address heartbeat 172.0.1.23 vrf MGMT <<<<<<<<<<
dual-primary detection delay 1 action errdisable all-interfaces <<<<<<<<<<
dual-primary recovery delay mlag 30 non-mlag 15 <<<<<<<<<<
reload-delay mlag 300
reload-delay non-mlag 360https://networkengineering.stackexchange.com/questions/71433
复制相似问题