在 Cisco 的 NX-OS 中,当形成 MLAG 等效对 (vPC) 时,需要遵循一些最佳实践,例如,单独的绑定 L3 接口仅用于使用来自对等链路的单独端口的保活数据包。
所以在 NX-OS 中做了类似的事情:
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 47
interface 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-OS 就是这样。现在在 Arista 的 EOS 中,我似乎无法在不同的界面中找到与 keepalives 相关的任何内容,或者是否推荐这样做。根据 EOS 手册,您只需使用相同的 Peerlink 接口:https ://www.arista.com/en/um-eos/eos-section-13-5-mlag-implementation-example ? searchword = MLAG
Arista EOS 设备有什么不同的知识吗?我可以像在 NX-OS 中一样为 keepalive 使用单独的端口吗?
谢谢。