-
SummaryIn cases where A/A is implemented, we most likely will run unique ASN per leaf, and no peer-link between.
In such cases we should not define loopback1 as there is no common loopback needed, and live with loopback0 that can be used as source. We should define a knob that by default is true, but can be false so it won't create loopback1 and will change vxlan source interface in case of A/A.
Component Nameeos_designs.eos_l3ls_evpn Expected resultsVxlan1 to use Lo0 as source. |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 1 reply
-
Possible fix:
|
Beta Was this translation helpful? Give feedback.
-
Solution @titom73 is really good actually, just doing |
Beta Was this translation helpful? Give feedback.
-
In case you don't want MLAG configured in a node group, you can configure Inventory configuration: l3leaf:
EAPI_LEAF3:
bgp_as: 65103
mlag: false
filter:
tenants: [ 'Tenant_A', 'Tenant_B' ]
tags: [ 'POD03', 'DC1' ]
nodes:
EAPI-LEAF3A:
id: 5
mgmt_ip: 10.73.254.17/24
mac_address: '0c:1d:c0:1d:62:01'
spine_interfaces: [Ethernet7, Ethernet7]
EAPI-LEAF4A:
id: 6
mgmt_ip: 10.73.254.18/24
mac_address: '0c:1d:c0:1d:62:01'
spine_interfaces: [Ethernet8, Ethernet8] And then structured configuration reports 2 different Loopback1 EAPI-LEAF3A loopback_interfaces:
Loopback1:
description: VTEP_VXLAN_Tunnel_Source
shutdown: false
ip_address: 192.168.254.7/32
isis_enable: EVPN_UNDERLAY
isis_passive: true EAPI-LEAF4A loopback_interfaces:
Loopback1:
description: VTEP_VXLAN_Tunnel_Source
shutdown: false
ip_address: 192.168.254.8/32
isis_enable: EVPN_UNDERLAY
isis_passive: true |
Beta Was this translation helpful? Give feedback.
In case you don't want MLAG configured in a node group, you can configure
mlag: false
and then it will generate a Loopback1 IP per device and not shared across devices.Inventory configuration:
And t…