diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 563dae5eff5..e92cdfd1524 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,7 +1,7 @@ # See https://pre-commit.com for more information # See https://pre-commit.com/hooks.html for more hooks ci: - autoupdate_commit_msg: "Bump: pre-commit autoupdate" + autoupdate_commit_msg: "CI: pre-commit autoupdate" repos: - repo: https://github.com/pre-commit/pre-commit-hooks rev: v4.6.0 @@ -75,7 +75,7 @@ repos: - repo: https://github.com/astral-sh/ruff-pre-commit # Ruff version. - rev: v0.6.3 + rev: v0.6.4 hooks: # Run the linter. - id: ruff diff --git a/ansible_collections/arista/avd/docs/porting-guides/5.x.x.md b/ansible_collections/arista/avd/docs/porting-guides/5.x.x.md index a6dd242c6aa..4b1f2fb255b 100644 --- a/ansible_collections/arista/avd/docs/porting-guides/5.x.x.md +++ b/ansible_collections/arista/avd/docs/porting-guides/5.x.x.md @@ -195,7 +195,7 @@ To retain the old configuration with no TCAM profile the default platform settin + non_mlag: 1020 ``` -#### Structured Configuration merged from SVI profiles is now deep merged instead of replaced +### Structured Configuration merged from SVI profiles is now deep merged instead of replaced When merging `structured_config` from SVI profiles and parent profiles, AVD versions below 5.0.0 replaced the entire `structured_config` object with the most specific definition of `structured_config`. @@ -242,7 +242,7 @@ no_autostate: false # <-- Set on SVI, overriding the setting from svi_profile Depending on the complexity of the deployment, it may require changes to the SVI and profiles to retain the previous configuration output. -#### MLAG L3 Peering VLAN 4093 is no longer created when `underlay_routing_protocol: 'none'` +### MLAG L3 Peering VLAN 4093 is no longer created when `underlay_routing_protocol: 'none'` AVD versions below 5.0.0 created the MLAG L3 peering VLAN 4093, even when no L3 MLAG peering was created using an underlay routing protocol. This happened in cases where `underlay_routing_protocol` was set to `none`. @@ -253,7 +253,7 @@ other VRFs; ` - 1 + `. The peer VLAN config can be retained by setting `mlag_ibgp_peering_vlan: 4093` under the VRF, by using `custom_structured_configuration` or by setting `underlay_routing_protocol` to something else than `none`. -#### BGP is now configured for Network services VRFs even if 'evpn' is not part of the address-families +### BGP is now configured for Network services VRFs even if 'evpn' is not part of the address-families AVD versions below 5.0.0 did not generate BGP configuration for VRFs unless the node type included `evpn` or `mpls` under `default_address_families` *and* the VRF had the same `evpn` or `mpls` defined under `address_families` (default is `['evpn']`). @@ -280,6 +280,23 @@ It is possible to forcefully add or remove BGP configuration per VRF by setting: enabled: # <-- New optional setting to either always or never configure BGP for the VRF ``` +### Default interface descriptions are changed for more consistency + +With AVD version 5.0.0 the default interface descriptions are changed to give better consistency. + +The interface description for `Loopback0` changes to `ROUTER_ID` for all designs. +Previously this description varied depending on the network design and chosen protocols. + +The `router_id_loopback_description` or the deprecated `overlay_loopback_description` settings still takes precedence, +so no changes will be seen if either of these are set. + +The description can be reverted manually if needed: + +```diff + # Using the new 'router_id_loopback_description' which replaces the deprecated 'overlay_loopback_description' ++router_id_loopback_description: "EVPN_Overlay_Peering" +``` + ### custom_structured_configuration_prefix no longer accepts a string Starting AVD 5.0.0, `custom_structured_configuration_prefix` only accepts a list of strings. diff --git a/ansible_collections/arista/avd/examples/campus-fabric/documentation/devices/SPINE1.md b/ansible_collections/arista/avd/examples/campus-fabric/documentation/devices/SPINE1.md index 60c822a2218..763d232db9f 100644 --- a/ansible_collections/arista/avd/examples/campus-fabric/documentation/devices/SPINE1.md +++ b/ansible_collections/arista/avd/examples/campus-fabric/documentation/devices/SPINE1.md @@ -428,20 +428,20 @@ interface Port-Channel551 | Interface | Description | VRF | IP Address | | --------- | ----------- | --- | ---------- | -| Loopback0 | Router_ID | default | 172.16.1.1/32 | +| Loopback0 | ROUTER_ID | default | 172.16.1.1/32 | ##### IPv6 | Interface | Description | VRF | IPv6 Address | | --------- | ----------- | --- | ------------ | -| Loopback0 | Router_ID | default | - | +| Loopback0 | ROUTER_ID | default | - | #### Loopback Interfaces Device Configuration ```eos ! interface Loopback0 - description Router_ID + description ROUTER_ID no shutdown ip address 172.16.1.1/32 ip ospf area 0.0.0.0 diff --git a/ansible_collections/arista/avd/examples/campus-fabric/documentation/devices/SPINE2.md b/ansible_collections/arista/avd/examples/campus-fabric/documentation/devices/SPINE2.md index 9fac4508ffd..3324556ff74 100644 --- a/ansible_collections/arista/avd/examples/campus-fabric/documentation/devices/SPINE2.md +++ b/ansible_collections/arista/avd/examples/campus-fabric/documentation/devices/SPINE2.md @@ -428,20 +428,20 @@ interface Port-Channel551 | Interface | Description | VRF | IP Address | | --------- | ----------- | --- | ---------- | -| Loopback0 | Router_ID | default | 172.16.1.2/32 | +| Loopback0 | ROUTER_ID | default | 172.16.1.2/32 | ##### IPv6 | Interface | Description | VRF | IPv6 Address | | --------- | ----------- | --- | ------------ | -| Loopback0 | Router_ID | default | - | +| Loopback0 | ROUTER_ID | default | - | #### Loopback Interfaces Device Configuration ```eos ! interface Loopback0 - description Router_ID + description ROUTER_ID no shutdown ip address 172.16.1.2/32 ip ospf area 0.0.0.0 diff --git a/ansible_collections/arista/avd/examples/campus-fabric/intended/configs/SPINE1.cfg b/ansible_collections/arista/avd/examples/campus-fabric/intended/configs/SPINE1.cfg index 47ecb7c84bf..1e026ee8c16 100644 --- a/ansible_collections/arista/avd/examples/campus-fabric/intended/configs/SPINE1.cfg +++ b/ansible_collections/arista/avd/examples/campus-fabric/intended/configs/SPINE1.cfg @@ -136,7 +136,7 @@ interface Ethernet56/1 channel-group 551 mode active ! interface Loopback0 - description Router_ID + description ROUTER_ID no shutdown ip address 172.16.1.1/32 ip ospf area 0.0.0.0 diff --git a/ansible_collections/arista/avd/examples/campus-fabric/intended/configs/SPINE2.cfg b/ansible_collections/arista/avd/examples/campus-fabric/intended/configs/SPINE2.cfg index 51d8a795a4f..5bb211b42f9 100644 --- a/ansible_collections/arista/avd/examples/campus-fabric/intended/configs/SPINE2.cfg +++ b/ansible_collections/arista/avd/examples/campus-fabric/intended/configs/SPINE2.cfg @@ -136,7 +136,7 @@ interface Ethernet56/1 channel-group 551 mode active ! interface Loopback0 - description Router_ID + description ROUTER_ID no shutdown ip address 172.16.1.2/32 ip ospf area 0.0.0.0 diff --git a/ansible_collections/arista/avd/examples/campus-fabric/intended/structured_configs/SPINE1.yml b/ansible_collections/arista/avd/examples/campus-fabric/intended/structured_configs/SPINE1.yml index b8897f37fc1..36aea1b5a37 100644 --- a/ansible_collections/arista/avd/examples/campus-fabric/intended/structured_configs/SPINE1.yml +++ b/ansible_collections/arista/avd/examples/campus-fabric/intended/structured_configs/SPINE1.yml @@ -315,7 +315,7 @@ mlag_configuration: reload_delay_non_mlag: '330' loopback_interfaces: - name: Loopback0 - description: Router_ID + description: ROUTER_ID shutdown: false ip_address: 172.16.1.1/32 ospf_area: 0.0.0.0 diff --git a/ansible_collections/arista/avd/examples/campus-fabric/intended/structured_configs/SPINE2.yml b/ansible_collections/arista/avd/examples/campus-fabric/intended/structured_configs/SPINE2.yml index a69662fa641..a85d55471e0 100644 --- a/ansible_collections/arista/avd/examples/campus-fabric/intended/structured_configs/SPINE2.yml +++ b/ansible_collections/arista/avd/examples/campus-fabric/intended/structured_configs/SPINE2.yml @@ -315,7 +315,7 @@ mlag_configuration: reload_delay_non_mlag: '330' loopback_interfaces: - name: Loopback0 - description: Router_ID + description: ROUTER_ID shutdown: false ip_address: 172.16.1.2/32 ospf_area: 0.0.0.0 diff --git a/ansible_collections/arista/avd/examples/dual-dc-l3ls/documentation/devices/dc1-leaf1a.md b/ansible_collections/arista/avd/examples/dual-dc-l3ls/documentation/devices/dc1-leaf1a.md index d040c9e86e2..0bd9eaffd75 100644 --- a/ansible_collections/arista/avd/examples/dual-dc-l3ls/documentation/devices/dc1-leaf1a.md +++ b/ansible_collections/arista/avd/examples/dual-dc-l3ls/documentation/devices/dc1-leaf1a.md @@ -358,7 +358,7 @@ interface Port-Channel8 | Interface | Description | VRF | IP Address | | --------- | ----------- | --- | ---------- | -| Loopback0 | EVPN_Overlay_Peering | default | 10.255.0.3/32 | +| Loopback0 | ROUTER_ID | default | 10.255.0.3/32 | | Loopback1 | VTEP_VXLAN_Tunnel_Source | default | 10.255.1.3/32 | | Loopback10 | VRF10_VTEP_DIAGNOSTICS | VRF10 | 10.255.10.3/32 | | Loopback11 | VRF11_VTEP_DIAGNOSTICS | VRF11 | 10.255.11.3/32 | @@ -367,7 +367,7 @@ interface Port-Channel8 | Interface | Description | VRF | IPv6 Address | | --------- | ----------- | --- | ------------ | -| Loopback0 | EVPN_Overlay_Peering | default | - | +| Loopback0 | ROUTER_ID | default | - | | Loopback1 | VTEP_VXLAN_Tunnel_Source | default | - | | Loopback10 | VRF10_VTEP_DIAGNOSTICS | VRF10 | - | | Loopback11 | VRF11_VTEP_DIAGNOSTICS | VRF11 | - | @@ -377,7 +377,7 @@ interface Port-Channel8 ```eos ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 10.255.0.3/32 ! diff --git a/ansible_collections/arista/avd/examples/dual-dc-l3ls/documentation/devices/dc1-leaf1b.md b/ansible_collections/arista/avd/examples/dual-dc-l3ls/documentation/devices/dc1-leaf1b.md index 8661511f043..2a95dc56fc0 100644 --- a/ansible_collections/arista/avd/examples/dual-dc-l3ls/documentation/devices/dc1-leaf1b.md +++ b/ansible_collections/arista/avd/examples/dual-dc-l3ls/documentation/devices/dc1-leaf1b.md @@ -358,7 +358,7 @@ interface Port-Channel8 | Interface | Description | VRF | IP Address | | --------- | ----------- | --- | ---------- | -| Loopback0 | EVPN_Overlay_Peering | default | 10.255.0.4/32 | +| Loopback0 | ROUTER_ID | default | 10.255.0.4/32 | | Loopback1 | VTEP_VXLAN_Tunnel_Source | default | 10.255.1.3/32 | | Loopback10 | VRF10_VTEP_DIAGNOSTICS | VRF10 | 10.255.10.4/32 | | Loopback11 | VRF11_VTEP_DIAGNOSTICS | VRF11 | 10.255.11.4/32 | @@ -367,7 +367,7 @@ interface Port-Channel8 | Interface | Description | VRF | IPv6 Address | | --------- | ----------- | --- | ------------ | -| Loopback0 | EVPN_Overlay_Peering | default | - | +| Loopback0 | ROUTER_ID | default | - | | Loopback1 | VTEP_VXLAN_Tunnel_Source | default | - | | Loopback10 | VRF10_VTEP_DIAGNOSTICS | VRF10 | - | | Loopback11 | VRF11_VTEP_DIAGNOSTICS | VRF11 | - | @@ -377,7 +377,7 @@ interface Port-Channel8 ```eos ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 10.255.0.4/32 ! diff --git a/ansible_collections/arista/avd/examples/dual-dc-l3ls/documentation/devices/dc1-leaf2a.md b/ansible_collections/arista/avd/examples/dual-dc-l3ls/documentation/devices/dc1-leaf2a.md index 1543e0e22c8..2fca24e2096 100644 --- a/ansible_collections/arista/avd/examples/dual-dc-l3ls/documentation/devices/dc1-leaf2a.md +++ b/ansible_collections/arista/avd/examples/dual-dc-l3ls/documentation/devices/dc1-leaf2a.md @@ -366,7 +366,7 @@ interface Port-Channel8 | Interface | Description | VRF | IP Address | | --------- | ----------- | --- | ---------- | -| Loopback0 | EVPN_Overlay_Peering | default | 10.255.0.5/32 | +| Loopback0 | ROUTER_ID | default | 10.255.0.5/32 | | Loopback1 | VTEP_VXLAN_Tunnel_Source | default | 10.255.1.5/32 | | Loopback10 | VRF10_VTEP_DIAGNOSTICS | VRF10 | 10.255.10.5/32 | | Loopback11 | VRF11_VTEP_DIAGNOSTICS | VRF11 | 10.255.11.5/32 | @@ -375,7 +375,7 @@ interface Port-Channel8 | Interface | Description | VRF | IPv6 Address | | --------- | ----------- | --- | ------------ | -| Loopback0 | EVPN_Overlay_Peering | default | - | +| Loopback0 | ROUTER_ID | default | - | | Loopback1 | VTEP_VXLAN_Tunnel_Source | default | - | | Loopback10 | VRF10_VTEP_DIAGNOSTICS | VRF10 | - | | Loopback11 | VRF11_VTEP_DIAGNOSTICS | VRF11 | - | @@ -385,7 +385,7 @@ interface Port-Channel8 ```eos ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 10.255.0.5/32 ! diff --git a/ansible_collections/arista/avd/examples/dual-dc-l3ls/documentation/devices/dc1-leaf2b.md b/ansible_collections/arista/avd/examples/dual-dc-l3ls/documentation/devices/dc1-leaf2b.md index 16bcf73beb0..1b357cad06f 100644 --- a/ansible_collections/arista/avd/examples/dual-dc-l3ls/documentation/devices/dc1-leaf2b.md +++ b/ansible_collections/arista/avd/examples/dual-dc-l3ls/documentation/devices/dc1-leaf2b.md @@ -366,7 +366,7 @@ interface Port-Channel8 | Interface | Description | VRF | IP Address | | --------- | ----------- | --- | ---------- | -| Loopback0 | EVPN_Overlay_Peering | default | 10.255.0.6/32 | +| Loopback0 | ROUTER_ID | default | 10.255.0.6/32 | | Loopback1 | VTEP_VXLAN_Tunnel_Source | default | 10.255.1.5/32 | | Loopback10 | VRF10_VTEP_DIAGNOSTICS | VRF10 | 10.255.10.6/32 | | Loopback11 | VRF11_VTEP_DIAGNOSTICS | VRF11 | 10.255.11.6/32 | @@ -375,7 +375,7 @@ interface Port-Channel8 | Interface | Description | VRF | IPv6 Address | | --------- | ----------- | --- | ------------ | -| Loopback0 | EVPN_Overlay_Peering | default | - | +| Loopback0 | ROUTER_ID | default | - | | Loopback1 | VTEP_VXLAN_Tunnel_Source | default | - | | Loopback10 | VRF10_VTEP_DIAGNOSTICS | VRF10 | - | | Loopback11 | VRF11_VTEP_DIAGNOSTICS | VRF11 | - | @@ -385,7 +385,7 @@ interface Port-Channel8 ```eos ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 10.255.0.6/32 ! diff --git a/ansible_collections/arista/avd/examples/dual-dc-l3ls/documentation/devices/dc1-spine1.md b/ansible_collections/arista/avd/examples/dual-dc-l3ls/documentation/devices/dc1-spine1.md index fa199c0377c..9ad7142af10 100644 --- a/ansible_collections/arista/avd/examples/dual-dc-l3ls/documentation/devices/dc1-spine1.md +++ b/ansible_collections/arista/avd/examples/dual-dc-l3ls/documentation/devices/dc1-spine1.md @@ -201,20 +201,20 @@ interface Ethernet4 | Interface | Description | VRF | IP Address | | --------- | ----------- | --- | ---------- | -| Loopback0 | EVPN_Overlay_Peering | default | 10.255.0.1/32 | +| Loopback0 | ROUTER_ID | default | 10.255.0.1/32 | ##### IPv6 | Interface | Description | VRF | IPv6 Address | | --------- | ----------- | --- | ------------ | -| Loopback0 | EVPN_Overlay_Peering | default | - | +| Loopback0 | ROUTER_ID | default | - | #### Loopback Interfaces Device Configuration ```eos ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 10.255.0.1/32 ``` diff --git a/ansible_collections/arista/avd/examples/dual-dc-l3ls/documentation/devices/dc1-spine2.md b/ansible_collections/arista/avd/examples/dual-dc-l3ls/documentation/devices/dc1-spine2.md index 5d157b13715..3fb2c3c1254 100644 --- a/ansible_collections/arista/avd/examples/dual-dc-l3ls/documentation/devices/dc1-spine2.md +++ b/ansible_collections/arista/avd/examples/dual-dc-l3ls/documentation/devices/dc1-spine2.md @@ -201,20 +201,20 @@ interface Ethernet4 | Interface | Description | VRF | IP Address | | --------- | ----------- | --- | ---------- | -| Loopback0 | EVPN_Overlay_Peering | default | 10.255.0.2/32 | +| Loopback0 | ROUTER_ID | default | 10.255.0.2/32 | ##### IPv6 | Interface | Description | VRF | IPv6 Address | | --------- | ----------- | --- | ------------ | -| Loopback0 | EVPN_Overlay_Peering | default | - | +| Loopback0 | ROUTER_ID | default | - | #### Loopback Interfaces Device Configuration ```eos ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 10.255.0.2/32 ``` diff --git a/ansible_collections/arista/avd/examples/dual-dc-l3ls/documentation/devices/dc2-leaf1a.md b/ansible_collections/arista/avd/examples/dual-dc-l3ls/documentation/devices/dc2-leaf1a.md index 493cf04b51a..cf3614eded5 100644 --- a/ansible_collections/arista/avd/examples/dual-dc-l3ls/documentation/devices/dc2-leaf1a.md +++ b/ansible_collections/arista/avd/examples/dual-dc-l3ls/documentation/devices/dc2-leaf1a.md @@ -358,7 +358,7 @@ interface Port-Channel8 | Interface | Description | VRF | IP Address | | --------- | ----------- | --- | ---------- | -| Loopback0 | EVPN_Overlay_Peering | default | 10.255.128.13/32 | +| Loopback0 | ROUTER_ID | default | 10.255.128.13/32 | | Loopback1 | VTEP_VXLAN_Tunnel_Source | default | 10.255.129.13/32 | | Loopback10 | VRF10_VTEP_DIAGNOSTICS | VRF10 | 10.255.10.13/32 | | Loopback11 | VRF11_VTEP_DIAGNOSTICS | VRF11 | 10.255.11.13/32 | @@ -367,7 +367,7 @@ interface Port-Channel8 | Interface | Description | VRF | IPv6 Address | | --------- | ----------- | --- | ------------ | -| Loopback0 | EVPN_Overlay_Peering | default | - | +| Loopback0 | ROUTER_ID | default | - | | Loopback1 | VTEP_VXLAN_Tunnel_Source | default | - | | Loopback10 | VRF10_VTEP_DIAGNOSTICS | VRF10 | - | | Loopback11 | VRF11_VTEP_DIAGNOSTICS | VRF11 | - | @@ -377,7 +377,7 @@ interface Port-Channel8 ```eos ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 10.255.128.13/32 ! diff --git a/ansible_collections/arista/avd/examples/dual-dc-l3ls/documentation/devices/dc2-leaf1b.md b/ansible_collections/arista/avd/examples/dual-dc-l3ls/documentation/devices/dc2-leaf1b.md index a1fb8184873..ce224c7f072 100644 --- a/ansible_collections/arista/avd/examples/dual-dc-l3ls/documentation/devices/dc2-leaf1b.md +++ b/ansible_collections/arista/avd/examples/dual-dc-l3ls/documentation/devices/dc2-leaf1b.md @@ -358,7 +358,7 @@ interface Port-Channel8 | Interface | Description | VRF | IP Address | | --------- | ----------- | --- | ---------- | -| Loopback0 | EVPN_Overlay_Peering | default | 10.255.128.14/32 | +| Loopback0 | ROUTER_ID | default | 10.255.128.14/32 | | Loopback1 | VTEP_VXLAN_Tunnel_Source | default | 10.255.129.13/32 | | Loopback10 | VRF10_VTEP_DIAGNOSTICS | VRF10 | 10.255.10.14/32 | | Loopback11 | VRF11_VTEP_DIAGNOSTICS | VRF11 | 10.255.11.14/32 | @@ -367,7 +367,7 @@ interface Port-Channel8 | Interface | Description | VRF | IPv6 Address | | --------- | ----------- | --- | ------------ | -| Loopback0 | EVPN_Overlay_Peering | default | - | +| Loopback0 | ROUTER_ID | default | - | | Loopback1 | VTEP_VXLAN_Tunnel_Source | default | - | | Loopback10 | VRF10_VTEP_DIAGNOSTICS | VRF10 | - | | Loopback11 | VRF11_VTEP_DIAGNOSTICS | VRF11 | - | @@ -377,7 +377,7 @@ interface Port-Channel8 ```eos ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 10.255.128.14/32 ! diff --git a/ansible_collections/arista/avd/examples/dual-dc-l3ls/documentation/devices/dc2-leaf2a.md b/ansible_collections/arista/avd/examples/dual-dc-l3ls/documentation/devices/dc2-leaf2a.md index ff110c37f5a..ea9ba2faeed 100644 --- a/ansible_collections/arista/avd/examples/dual-dc-l3ls/documentation/devices/dc2-leaf2a.md +++ b/ansible_collections/arista/avd/examples/dual-dc-l3ls/documentation/devices/dc2-leaf2a.md @@ -366,7 +366,7 @@ interface Port-Channel8 | Interface | Description | VRF | IP Address | | --------- | ----------- | --- | ---------- | -| Loopback0 | EVPN_Overlay_Peering | default | 10.255.128.15/32 | +| Loopback0 | ROUTER_ID | default | 10.255.128.15/32 | | Loopback1 | VTEP_VXLAN_Tunnel_Source | default | 10.255.129.15/32 | | Loopback10 | VRF10_VTEP_DIAGNOSTICS | VRF10 | 10.255.10.15/32 | | Loopback11 | VRF11_VTEP_DIAGNOSTICS | VRF11 | 10.255.11.15/32 | @@ -375,7 +375,7 @@ interface Port-Channel8 | Interface | Description | VRF | IPv6 Address | | --------- | ----------- | --- | ------------ | -| Loopback0 | EVPN_Overlay_Peering | default | - | +| Loopback0 | ROUTER_ID | default | - | | Loopback1 | VTEP_VXLAN_Tunnel_Source | default | - | | Loopback10 | VRF10_VTEP_DIAGNOSTICS | VRF10 | - | | Loopback11 | VRF11_VTEP_DIAGNOSTICS | VRF11 | - | @@ -385,7 +385,7 @@ interface Port-Channel8 ```eos ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 10.255.128.15/32 ! diff --git a/ansible_collections/arista/avd/examples/dual-dc-l3ls/documentation/devices/dc2-leaf2b.md b/ansible_collections/arista/avd/examples/dual-dc-l3ls/documentation/devices/dc2-leaf2b.md index c54087e093c..ebf791c60cc 100644 --- a/ansible_collections/arista/avd/examples/dual-dc-l3ls/documentation/devices/dc2-leaf2b.md +++ b/ansible_collections/arista/avd/examples/dual-dc-l3ls/documentation/devices/dc2-leaf2b.md @@ -366,7 +366,7 @@ interface Port-Channel8 | Interface | Description | VRF | IP Address | | --------- | ----------- | --- | ---------- | -| Loopback0 | EVPN_Overlay_Peering | default | 10.255.128.16/32 | +| Loopback0 | ROUTER_ID | default | 10.255.128.16/32 | | Loopback1 | VTEP_VXLAN_Tunnel_Source | default | 10.255.129.15/32 | | Loopback10 | VRF10_VTEP_DIAGNOSTICS | VRF10 | 10.255.10.16/32 | | Loopback11 | VRF11_VTEP_DIAGNOSTICS | VRF11 | 10.255.11.16/32 | @@ -375,7 +375,7 @@ interface Port-Channel8 | Interface | Description | VRF | IPv6 Address | | --------- | ----------- | --- | ------------ | -| Loopback0 | EVPN_Overlay_Peering | default | - | +| Loopback0 | ROUTER_ID | default | - | | Loopback1 | VTEP_VXLAN_Tunnel_Source | default | - | | Loopback10 | VRF10_VTEP_DIAGNOSTICS | VRF10 | - | | Loopback11 | VRF11_VTEP_DIAGNOSTICS | VRF11 | - | @@ -385,7 +385,7 @@ interface Port-Channel8 ```eos ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 10.255.128.16/32 ! diff --git a/ansible_collections/arista/avd/examples/dual-dc-l3ls/documentation/devices/dc2-spine1.md b/ansible_collections/arista/avd/examples/dual-dc-l3ls/documentation/devices/dc2-spine1.md index 7de96e1fa92..54199dda88b 100644 --- a/ansible_collections/arista/avd/examples/dual-dc-l3ls/documentation/devices/dc2-spine1.md +++ b/ansible_collections/arista/avd/examples/dual-dc-l3ls/documentation/devices/dc2-spine1.md @@ -201,20 +201,20 @@ interface Ethernet4 | Interface | Description | VRF | IP Address | | --------- | ----------- | --- | ---------- | -| Loopback0 | EVPN_Overlay_Peering | default | 10.255.128.11/32 | +| Loopback0 | ROUTER_ID | default | 10.255.128.11/32 | ##### IPv6 | Interface | Description | VRF | IPv6 Address | | --------- | ----------- | --- | ------------ | -| Loopback0 | EVPN_Overlay_Peering | default | - | +| Loopback0 | ROUTER_ID | default | - | #### Loopback Interfaces Device Configuration ```eos ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 10.255.128.11/32 ``` diff --git a/ansible_collections/arista/avd/examples/dual-dc-l3ls/documentation/devices/dc2-spine2.md b/ansible_collections/arista/avd/examples/dual-dc-l3ls/documentation/devices/dc2-spine2.md index 869a4c19eb1..8b8287dd44f 100644 --- a/ansible_collections/arista/avd/examples/dual-dc-l3ls/documentation/devices/dc2-spine2.md +++ b/ansible_collections/arista/avd/examples/dual-dc-l3ls/documentation/devices/dc2-spine2.md @@ -201,20 +201,20 @@ interface Ethernet4 | Interface | Description | VRF | IP Address | | --------- | ----------- | --- | ---------- | -| Loopback0 | EVPN_Overlay_Peering | default | 10.255.128.12/32 | +| Loopback0 | ROUTER_ID | default | 10.255.128.12/32 | ##### IPv6 | Interface | Description | VRF | IPv6 Address | | --------- | ----------- | --- | ------------ | -| Loopback0 | EVPN_Overlay_Peering | default | - | +| Loopback0 | ROUTER_ID | default | - | #### Loopback Interfaces Device Configuration ```eos ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 10.255.128.12/32 ``` diff --git a/ansible_collections/arista/avd/examples/dual-dc-l3ls/intended/configs/dc1-leaf1a.cfg b/ansible_collections/arista/avd/examples/dual-dc-l3ls/intended/configs/dc1-leaf1a.cfg index e76cb37f84a..c55c73deacd 100644 --- a/ansible_collections/arista/avd/examples/dual-dc-l3ls/intended/configs/dc1-leaf1a.cfg +++ b/ansible_collections/arista/avd/examples/dual-dc-l3ls/intended/configs/dc1-leaf1a.cfg @@ -118,7 +118,7 @@ interface Ethernet8 channel-group 8 mode active ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 10.255.0.3/32 ! diff --git a/ansible_collections/arista/avd/examples/dual-dc-l3ls/intended/configs/dc1-leaf1b.cfg b/ansible_collections/arista/avd/examples/dual-dc-l3ls/intended/configs/dc1-leaf1b.cfg index 91ba24803f3..8a73a6d8e86 100644 --- a/ansible_collections/arista/avd/examples/dual-dc-l3ls/intended/configs/dc1-leaf1b.cfg +++ b/ansible_collections/arista/avd/examples/dual-dc-l3ls/intended/configs/dc1-leaf1b.cfg @@ -118,7 +118,7 @@ interface Ethernet8 channel-group 8 mode active ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 10.255.0.4/32 ! diff --git a/ansible_collections/arista/avd/examples/dual-dc-l3ls/intended/configs/dc1-leaf2a.cfg b/ansible_collections/arista/avd/examples/dual-dc-l3ls/intended/configs/dc1-leaf2a.cfg index a8259f0e7b8..298bcb0c624 100644 --- a/ansible_collections/arista/avd/examples/dual-dc-l3ls/intended/configs/dc1-leaf2a.cfg +++ b/ansible_collections/arista/avd/examples/dual-dc-l3ls/intended/configs/dc1-leaf2a.cfg @@ -125,7 +125,7 @@ interface Ethernet8 channel-group 8 mode active ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 10.255.0.5/32 ! diff --git a/ansible_collections/arista/avd/examples/dual-dc-l3ls/intended/configs/dc1-leaf2b.cfg b/ansible_collections/arista/avd/examples/dual-dc-l3ls/intended/configs/dc1-leaf2b.cfg index 1c27c09ddb0..7c4892045d7 100644 --- a/ansible_collections/arista/avd/examples/dual-dc-l3ls/intended/configs/dc1-leaf2b.cfg +++ b/ansible_collections/arista/avd/examples/dual-dc-l3ls/intended/configs/dc1-leaf2b.cfg @@ -125,7 +125,7 @@ interface Ethernet8 channel-group 8 mode active ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 10.255.0.6/32 ! diff --git a/ansible_collections/arista/avd/examples/dual-dc-l3ls/intended/configs/dc1-spine1.cfg b/ansible_collections/arista/avd/examples/dual-dc-l3ls/intended/configs/dc1-spine1.cfg index 70c53ca0838..d14c200f6c6 100644 --- a/ansible_collections/arista/avd/examples/dual-dc-l3ls/intended/configs/dc1-spine1.cfg +++ b/ansible_collections/arista/avd/examples/dual-dc-l3ls/intended/configs/dc1-spine1.cfg @@ -46,7 +46,7 @@ interface Ethernet4 ip address 10.255.255.12/31 ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 10.255.0.1/32 ! diff --git a/ansible_collections/arista/avd/examples/dual-dc-l3ls/intended/configs/dc1-spine2.cfg b/ansible_collections/arista/avd/examples/dual-dc-l3ls/intended/configs/dc1-spine2.cfg index d25a5f0ab5b..df5bf620a8f 100644 --- a/ansible_collections/arista/avd/examples/dual-dc-l3ls/intended/configs/dc1-spine2.cfg +++ b/ansible_collections/arista/avd/examples/dual-dc-l3ls/intended/configs/dc1-spine2.cfg @@ -46,7 +46,7 @@ interface Ethernet4 ip address 10.255.255.14/31 ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 10.255.0.2/32 ! diff --git a/ansible_collections/arista/avd/examples/dual-dc-l3ls/intended/configs/dc2-leaf1a.cfg b/ansible_collections/arista/avd/examples/dual-dc-l3ls/intended/configs/dc2-leaf1a.cfg index 0345527c76e..23fdd131b23 100644 --- a/ansible_collections/arista/avd/examples/dual-dc-l3ls/intended/configs/dc2-leaf1a.cfg +++ b/ansible_collections/arista/avd/examples/dual-dc-l3ls/intended/configs/dc2-leaf1a.cfg @@ -118,7 +118,7 @@ interface Ethernet8 channel-group 8 mode active ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 10.255.128.13/32 ! diff --git a/ansible_collections/arista/avd/examples/dual-dc-l3ls/intended/configs/dc2-leaf1b.cfg b/ansible_collections/arista/avd/examples/dual-dc-l3ls/intended/configs/dc2-leaf1b.cfg index 9e1205a9dc5..279e8a39e8e 100644 --- a/ansible_collections/arista/avd/examples/dual-dc-l3ls/intended/configs/dc2-leaf1b.cfg +++ b/ansible_collections/arista/avd/examples/dual-dc-l3ls/intended/configs/dc2-leaf1b.cfg @@ -118,7 +118,7 @@ interface Ethernet8 channel-group 8 mode active ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 10.255.128.14/32 ! diff --git a/ansible_collections/arista/avd/examples/dual-dc-l3ls/intended/configs/dc2-leaf2a.cfg b/ansible_collections/arista/avd/examples/dual-dc-l3ls/intended/configs/dc2-leaf2a.cfg index 6065ae0ff3f..3f093c3863a 100644 --- a/ansible_collections/arista/avd/examples/dual-dc-l3ls/intended/configs/dc2-leaf2a.cfg +++ b/ansible_collections/arista/avd/examples/dual-dc-l3ls/intended/configs/dc2-leaf2a.cfg @@ -125,7 +125,7 @@ interface Ethernet8 channel-group 8 mode active ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 10.255.128.15/32 ! diff --git a/ansible_collections/arista/avd/examples/dual-dc-l3ls/intended/configs/dc2-leaf2b.cfg b/ansible_collections/arista/avd/examples/dual-dc-l3ls/intended/configs/dc2-leaf2b.cfg index c4332c2f06b..895a2f452bd 100644 --- a/ansible_collections/arista/avd/examples/dual-dc-l3ls/intended/configs/dc2-leaf2b.cfg +++ b/ansible_collections/arista/avd/examples/dual-dc-l3ls/intended/configs/dc2-leaf2b.cfg @@ -125,7 +125,7 @@ interface Ethernet8 channel-group 8 mode active ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 10.255.128.16/32 ! diff --git a/ansible_collections/arista/avd/examples/dual-dc-l3ls/intended/configs/dc2-spine1.cfg b/ansible_collections/arista/avd/examples/dual-dc-l3ls/intended/configs/dc2-spine1.cfg index 0170e9a237a..50b02fb17bc 100644 --- a/ansible_collections/arista/avd/examples/dual-dc-l3ls/intended/configs/dc2-spine1.cfg +++ b/ansible_collections/arista/avd/examples/dual-dc-l3ls/intended/configs/dc2-spine1.cfg @@ -46,7 +46,7 @@ interface Ethernet4 ip address 10.255.255.116/31 ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 10.255.128.11/32 ! diff --git a/ansible_collections/arista/avd/examples/dual-dc-l3ls/intended/configs/dc2-spine2.cfg b/ansible_collections/arista/avd/examples/dual-dc-l3ls/intended/configs/dc2-spine2.cfg index 87abf63d86e..27a403e1b97 100644 --- a/ansible_collections/arista/avd/examples/dual-dc-l3ls/intended/configs/dc2-spine2.cfg +++ b/ansible_collections/arista/avd/examples/dual-dc-l3ls/intended/configs/dc2-spine2.cfg @@ -46,7 +46,7 @@ interface Ethernet4 ip address 10.255.255.118/31 ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 10.255.128.12/32 ! diff --git a/ansible_collections/arista/avd/examples/dual-dc-l3ls/intended/structured_configs/dc1-leaf1a.yml b/ansible_collections/arista/avd/examples/dual-dc-l3ls/intended/structured_configs/dc1-leaf1a.yml index 87933e9554d..2f85f0ae0a5 100644 --- a/ansible_collections/arista/avd/examples/dual-dc-l3ls/intended/structured_configs/dc1-leaf1a.yml +++ b/ansible_collections/arista/avd/examples/dual-dc-l3ls/intended/structured_configs/dc1-leaf1a.yml @@ -409,7 +409,7 @@ route_maps: - ip address prefix-list PL-LOOPBACKS-EVPN-OVERLAY loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 10.255.0.3/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/examples/dual-dc-l3ls/intended/structured_configs/dc1-leaf1b.yml b/ansible_collections/arista/avd/examples/dual-dc-l3ls/intended/structured_configs/dc1-leaf1b.yml index 0641dac4c02..542140f018b 100644 --- a/ansible_collections/arista/avd/examples/dual-dc-l3ls/intended/structured_configs/dc1-leaf1b.yml +++ b/ansible_collections/arista/avd/examples/dual-dc-l3ls/intended/structured_configs/dc1-leaf1b.yml @@ -409,7 +409,7 @@ route_maps: - ip address prefix-list PL-LOOPBACKS-EVPN-OVERLAY loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 10.255.0.4/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/examples/dual-dc-l3ls/intended/structured_configs/dc1-leaf2a.yml b/ansible_collections/arista/avd/examples/dual-dc-l3ls/intended/structured_configs/dc1-leaf2a.yml index e7deabc29e2..5d3bf5f8130 100644 --- a/ansible_collections/arista/avd/examples/dual-dc-l3ls/intended/structured_configs/dc1-leaf2a.yml +++ b/ansible_collections/arista/avd/examples/dual-dc-l3ls/intended/structured_configs/dc1-leaf2a.yml @@ -480,7 +480,7 @@ route_maps: - ip address prefix-list PL-LOOPBACKS-EVPN-OVERLAY loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 10.255.0.5/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/examples/dual-dc-l3ls/intended/structured_configs/dc1-leaf2b.yml b/ansible_collections/arista/avd/examples/dual-dc-l3ls/intended/structured_configs/dc1-leaf2b.yml index 6f9e9599d4b..4206695bf4f 100644 --- a/ansible_collections/arista/avd/examples/dual-dc-l3ls/intended/structured_configs/dc1-leaf2b.yml +++ b/ansible_collections/arista/avd/examples/dual-dc-l3ls/intended/structured_configs/dc1-leaf2b.yml @@ -480,7 +480,7 @@ route_maps: - ip address prefix-list PL-LOOPBACKS-EVPN-OVERLAY loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 10.255.0.6/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/examples/dual-dc-l3ls/intended/structured_configs/dc1-spine1.yml b/ansible_collections/arista/avd/examples/dual-dc-l3ls/intended/structured_configs/dc1-spine1.yml index 3a54ff32e51..dce8cc388e0 100644 --- a/ansible_collections/arista/avd/examples/dual-dc-l3ls/intended/structured_configs/dc1-spine1.yml +++ b/ansible_collections/arista/avd/examples/dual-dc-l3ls/intended/structured_configs/dc1-spine1.yml @@ -160,7 +160,7 @@ ethernet_interfaces: ip_address: 10.255.255.12/31 loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 10.255.0.1/32 prefix_lists: diff --git a/ansible_collections/arista/avd/examples/dual-dc-l3ls/intended/structured_configs/dc1-spine2.yml b/ansible_collections/arista/avd/examples/dual-dc-l3ls/intended/structured_configs/dc1-spine2.yml index 5c86f098eda..fd51a50e27c 100644 --- a/ansible_collections/arista/avd/examples/dual-dc-l3ls/intended/structured_configs/dc1-spine2.yml +++ b/ansible_collections/arista/avd/examples/dual-dc-l3ls/intended/structured_configs/dc1-spine2.yml @@ -160,7 +160,7 @@ ethernet_interfaces: ip_address: 10.255.255.14/31 loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 10.255.0.2/32 prefix_lists: diff --git a/ansible_collections/arista/avd/examples/dual-dc-l3ls/intended/structured_configs/dc2-leaf1a.yml b/ansible_collections/arista/avd/examples/dual-dc-l3ls/intended/structured_configs/dc2-leaf1a.yml index 15d273d1a14..2f1d662983e 100644 --- a/ansible_collections/arista/avd/examples/dual-dc-l3ls/intended/structured_configs/dc2-leaf1a.yml +++ b/ansible_collections/arista/avd/examples/dual-dc-l3ls/intended/structured_configs/dc2-leaf1a.yml @@ -409,7 +409,7 @@ route_maps: - ip address prefix-list PL-LOOPBACKS-EVPN-OVERLAY loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 10.255.128.13/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/examples/dual-dc-l3ls/intended/structured_configs/dc2-leaf1b.yml b/ansible_collections/arista/avd/examples/dual-dc-l3ls/intended/structured_configs/dc2-leaf1b.yml index ac7b1c2d84d..074a04d8725 100644 --- a/ansible_collections/arista/avd/examples/dual-dc-l3ls/intended/structured_configs/dc2-leaf1b.yml +++ b/ansible_collections/arista/avd/examples/dual-dc-l3ls/intended/structured_configs/dc2-leaf1b.yml @@ -409,7 +409,7 @@ route_maps: - ip address prefix-list PL-LOOPBACKS-EVPN-OVERLAY loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 10.255.128.14/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/examples/dual-dc-l3ls/intended/structured_configs/dc2-leaf2a.yml b/ansible_collections/arista/avd/examples/dual-dc-l3ls/intended/structured_configs/dc2-leaf2a.yml index 9ce101ef3dc..981cd35f611 100644 --- a/ansible_collections/arista/avd/examples/dual-dc-l3ls/intended/structured_configs/dc2-leaf2a.yml +++ b/ansible_collections/arista/avd/examples/dual-dc-l3ls/intended/structured_configs/dc2-leaf2a.yml @@ -480,7 +480,7 @@ route_maps: - ip address prefix-list PL-LOOPBACKS-EVPN-OVERLAY loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 10.255.128.15/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/examples/dual-dc-l3ls/intended/structured_configs/dc2-leaf2b.yml b/ansible_collections/arista/avd/examples/dual-dc-l3ls/intended/structured_configs/dc2-leaf2b.yml index 11b78a32b0d..41e8e0de850 100644 --- a/ansible_collections/arista/avd/examples/dual-dc-l3ls/intended/structured_configs/dc2-leaf2b.yml +++ b/ansible_collections/arista/avd/examples/dual-dc-l3ls/intended/structured_configs/dc2-leaf2b.yml @@ -480,7 +480,7 @@ route_maps: - ip address prefix-list PL-LOOPBACKS-EVPN-OVERLAY loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 10.255.128.16/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/examples/dual-dc-l3ls/intended/structured_configs/dc2-spine1.yml b/ansible_collections/arista/avd/examples/dual-dc-l3ls/intended/structured_configs/dc2-spine1.yml index 25e9f7698af..2fdacf84a69 100644 --- a/ansible_collections/arista/avd/examples/dual-dc-l3ls/intended/structured_configs/dc2-spine1.yml +++ b/ansible_collections/arista/avd/examples/dual-dc-l3ls/intended/structured_configs/dc2-spine1.yml @@ -160,7 +160,7 @@ ethernet_interfaces: ip_address: 10.255.255.116/31 loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 10.255.128.11/32 prefix_lists: diff --git a/ansible_collections/arista/avd/examples/dual-dc-l3ls/intended/structured_configs/dc2-spine2.yml b/ansible_collections/arista/avd/examples/dual-dc-l3ls/intended/structured_configs/dc2-spine2.yml index 9e66837ca22..72b9fac790d 100644 --- a/ansible_collections/arista/avd/examples/dual-dc-l3ls/intended/structured_configs/dc2-spine2.yml +++ b/ansible_collections/arista/avd/examples/dual-dc-l3ls/intended/structured_configs/dc2-spine2.yml @@ -160,7 +160,7 @@ ethernet_interfaces: ip_address: 10.255.255.118/31 loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 10.255.128.12/32 prefix_lists: diff --git a/ansible_collections/arista/avd/examples/isis-ldp-ipvpn/documentation/devices/p1.md b/ansible_collections/arista/avd/examples/isis-ldp-ipvpn/documentation/devices/p1.md index ecb18bbe8cf..d8295f33c3e 100644 --- a/ansible_collections/arista/avd/examples/isis-ldp-ipvpn/documentation/devices/p1.md +++ b/ansible_collections/arista/avd/examples/isis-ldp-ipvpn/documentation/devices/p1.md @@ -267,13 +267,13 @@ interface Ethernet4 | Interface | Description | VRF | IP Address | | --------- | ----------- | --- | ---------- | -| Loopback0 | LSR_Router_ID | default | 10.255.0.1/32 | +| Loopback0 | ROUTER_ID | default | 10.255.0.1/32 | ##### IPv6 | Interface | Description | VRF | IPv6 Address | | --------- | ----------- | --- | ------------ | -| Loopback0 | LSR_Router_ID | default | - | +| Loopback0 | ROUTER_ID | default | - | ##### ISIS @@ -286,7 +286,7 @@ interface Ethernet4 ```eos ! interface Loopback0 - description LSR_Router_ID + description ROUTER_ID no shutdown ip address 10.255.0.1/32 isis enable CORE diff --git a/ansible_collections/arista/avd/examples/isis-ldp-ipvpn/documentation/devices/p2.md b/ansible_collections/arista/avd/examples/isis-ldp-ipvpn/documentation/devices/p2.md index 0702686f72e..d56f3419796 100644 --- a/ansible_collections/arista/avd/examples/isis-ldp-ipvpn/documentation/devices/p2.md +++ b/ansible_collections/arista/avd/examples/isis-ldp-ipvpn/documentation/devices/p2.md @@ -267,13 +267,13 @@ interface Ethernet4 | Interface | Description | VRF | IP Address | | --------- | ----------- | --- | ---------- | -| Loopback0 | LSR_Router_ID | default | 10.255.0.2/32 | +| Loopback0 | ROUTER_ID | default | 10.255.0.2/32 | ##### IPv6 | Interface | Description | VRF | IPv6 Address | | --------- | ----------- | --- | ------------ | -| Loopback0 | LSR_Router_ID | default | - | +| Loopback0 | ROUTER_ID | default | - | ##### ISIS @@ -286,7 +286,7 @@ interface Ethernet4 ```eos ! interface Loopback0 - description LSR_Router_ID + description ROUTER_ID no shutdown ip address 10.255.0.2/32 isis enable CORE diff --git a/ansible_collections/arista/avd/examples/isis-ldp-ipvpn/documentation/devices/p3.md b/ansible_collections/arista/avd/examples/isis-ldp-ipvpn/documentation/devices/p3.md index 90066544fc7..96c6cf1b097 100644 --- a/ansible_collections/arista/avd/examples/isis-ldp-ipvpn/documentation/devices/p3.md +++ b/ansible_collections/arista/avd/examples/isis-ldp-ipvpn/documentation/devices/p3.md @@ -248,13 +248,13 @@ interface Ethernet4 | Interface | Description | VRF | IP Address | | --------- | ----------- | --- | ---------- | -| Loopback0 | LSR_Router_ID | default | 10.255.0.3/32 | +| Loopback0 | ROUTER_ID | default | 10.255.0.3/32 | ##### IPv6 | Interface | Description | VRF | IPv6 Address | | --------- | ----------- | --- | ------------ | -| Loopback0 | LSR_Router_ID | default | - | +| Loopback0 | ROUTER_ID | default | - | ##### ISIS @@ -267,7 +267,7 @@ interface Ethernet4 ```eos ! interface Loopback0 - description LSR_Router_ID + description ROUTER_ID no shutdown ip address 10.255.0.3/32 isis enable CORE diff --git a/ansible_collections/arista/avd/examples/isis-ldp-ipvpn/documentation/devices/p4.md b/ansible_collections/arista/avd/examples/isis-ldp-ipvpn/documentation/devices/p4.md index 459c92b97ed..891e62a870e 100644 --- a/ansible_collections/arista/avd/examples/isis-ldp-ipvpn/documentation/devices/p4.md +++ b/ansible_collections/arista/avd/examples/isis-ldp-ipvpn/documentation/devices/p4.md @@ -248,13 +248,13 @@ interface Ethernet4 | Interface | Description | VRF | IP Address | | --------- | ----------- | --- | ---------- | -| Loopback0 | LSR_Router_ID | default | 10.255.0.4/32 | +| Loopback0 | ROUTER_ID | default | 10.255.0.4/32 | ##### IPv6 | Interface | Description | VRF | IPv6 Address | | --------- | ----------- | --- | ------------ | -| Loopback0 | LSR_Router_ID | default | - | +| Loopback0 | ROUTER_ID | default | - | ##### ISIS @@ -267,7 +267,7 @@ interface Ethernet4 ```eos ! interface Loopback0 - description LSR_Router_ID + description ROUTER_ID no shutdown ip address 10.255.0.4/32 isis enable CORE diff --git a/ansible_collections/arista/avd/examples/isis-ldp-ipvpn/documentation/devices/pe1.md b/ansible_collections/arista/avd/examples/isis-ldp-ipvpn/documentation/devices/pe1.md index 777eeb7542e..e1a7e1a5508 100644 --- a/ansible_collections/arista/avd/examples/isis-ldp-ipvpn/documentation/devices/pe1.md +++ b/ansible_collections/arista/avd/examples/isis-ldp-ipvpn/documentation/devices/pe1.md @@ -264,13 +264,13 @@ interface Ethernet3.20 | Interface | Description | VRF | IP Address | | --------- | ----------- | --- | ---------- | -| Loopback0 | MPLS_Overlay_peering | default | 10.255.1.1/32 | +| Loopback0 | ROUTER_ID | default | 10.255.1.1/32 | ##### IPv6 | Interface | Description | VRF | IPv6 Address | | --------- | ----------- | --- | ------------ | -| Loopback0 | MPLS_Overlay_peering | default | - | +| Loopback0 | ROUTER_ID | default | - | ##### ISIS @@ -283,7 +283,7 @@ interface Ethernet3.20 ```eos ! interface Loopback0 - description MPLS_Overlay_peering + description ROUTER_ID no shutdown ip address 10.255.1.1/32 isis enable CORE diff --git a/ansible_collections/arista/avd/examples/isis-ldp-ipvpn/documentation/devices/pe2.md b/ansible_collections/arista/avd/examples/isis-ldp-ipvpn/documentation/devices/pe2.md index 33c2650f66b..8449ee0fad3 100644 --- a/ansible_collections/arista/avd/examples/isis-ldp-ipvpn/documentation/devices/pe2.md +++ b/ansible_collections/arista/avd/examples/isis-ldp-ipvpn/documentation/devices/pe2.md @@ -264,13 +264,13 @@ interface Ethernet4.20 | Interface | Description | VRF | IP Address | | --------- | ----------- | --- | ---------- | -| Loopback0 | MPLS_Overlay_peering | default | 10.255.1.2/32 | +| Loopback0 | ROUTER_ID | default | 10.255.1.2/32 | ##### IPv6 | Interface | Description | VRF | IPv6 Address | | --------- | ----------- | --- | ------------ | -| Loopback0 | MPLS_Overlay_peering | default | - | +| Loopback0 | ROUTER_ID | default | - | ##### ISIS @@ -283,7 +283,7 @@ interface Ethernet4.20 ```eos ! interface Loopback0 - description MPLS_Overlay_peering + description ROUTER_ID no shutdown ip address 10.255.1.2/32 isis enable CORE diff --git a/ansible_collections/arista/avd/examples/isis-ldp-ipvpn/documentation/devices/pe3.md b/ansible_collections/arista/avd/examples/isis-ldp-ipvpn/documentation/devices/pe3.md index 857e64b46f2..6b4ec8d588d 100644 --- a/ansible_collections/arista/avd/examples/isis-ldp-ipvpn/documentation/devices/pe3.md +++ b/ansible_collections/arista/avd/examples/isis-ldp-ipvpn/documentation/devices/pe3.md @@ -253,13 +253,13 @@ interface Ethernet4 | Interface | Description | VRF | IP Address | | --------- | ----------- | --- | ---------- | -| Loopback0 | MPLS_Overlay_peering | default | 10.255.1.3/32 | +| Loopback0 | ROUTER_ID | default | 10.255.1.3/32 | ##### IPv6 | Interface | Description | VRF | IPv6 Address | | --------- | ----------- | --- | ------------ | -| Loopback0 | MPLS_Overlay_peering | default | - | +| Loopback0 | ROUTER_ID | default | - | ##### ISIS @@ -272,7 +272,7 @@ interface Ethernet4 ```eos ! interface Loopback0 - description MPLS_Overlay_peering + description ROUTER_ID no shutdown ip address 10.255.1.3/32 isis enable CORE diff --git a/ansible_collections/arista/avd/examples/isis-ldp-ipvpn/documentation/devices/rr1.md b/ansible_collections/arista/avd/examples/isis-ldp-ipvpn/documentation/devices/rr1.md index e1997ba55ac..b7fc398a6d8 100644 --- a/ansible_collections/arista/avd/examples/isis-ldp-ipvpn/documentation/devices/rr1.md +++ b/ansible_collections/arista/avd/examples/isis-ldp-ipvpn/documentation/devices/rr1.md @@ -251,13 +251,13 @@ interface Ethernet4 | Interface | Description | VRF | IP Address | | --------- | ----------- | --- | ---------- | -| Loopback0 | MPLS_Overlay_peering | default | 10.255.2.1/32 | +| Loopback0 | ROUTER_ID | default | 10.255.2.1/32 | ##### IPv6 | Interface | Description | VRF | IPv6 Address | | --------- | ----------- | --- | ------------ | -| Loopback0 | MPLS_Overlay_peering | default | - | +| Loopback0 | ROUTER_ID | default | - | ##### ISIS @@ -270,7 +270,7 @@ interface Ethernet4 ```eos ! interface Loopback0 - description MPLS_Overlay_peering + description ROUTER_ID no shutdown ip address 10.255.2.1/32 isis enable CORE diff --git a/ansible_collections/arista/avd/examples/isis-ldp-ipvpn/documentation/devices/rr2.md b/ansible_collections/arista/avd/examples/isis-ldp-ipvpn/documentation/devices/rr2.md index 45b3e56a3ed..a21200b35b5 100644 --- a/ansible_collections/arista/avd/examples/isis-ldp-ipvpn/documentation/devices/rr2.md +++ b/ansible_collections/arista/avd/examples/isis-ldp-ipvpn/documentation/devices/rr2.md @@ -251,13 +251,13 @@ interface Ethernet4 | Interface | Description | VRF | IP Address | | --------- | ----------- | --- | ---------- | -| Loopback0 | MPLS_Overlay_peering | default | 10.255.2.2/32 | +| Loopback0 | ROUTER_ID | default | 10.255.2.2/32 | ##### IPv6 | Interface | Description | VRF | IPv6 Address | | --------- | ----------- | --- | ------------ | -| Loopback0 | MPLS_Overlay_peering | default | - | +| Loopback0 | ROUTER_ID | default | - | ##### ISIS @@ -270,7 +270,7 @@ interface Ethernet4 ```eos ! interface Loopback0 - description MPLS_Overlay_peering + description ROUTER_ID no shutdown ip address 10.255.2.2/32 isis enable CORE diff --git a/ansible_collections/arista/avd/examples/isis-ldp-ipvpn/intended/configs/p1.cfg b/ansible_collections/arista/avd/examples/isis-ldp-ipvpn/intended/configs/p1.cfg index 887555271a5..4d09c6bfa10 100644 --- a/ansible_collections/arista/avd/examples/isis-ldp-ipvpn/intended/configs/p1.cfg +++ b/ansible_collections/arista/avd/examples/isis-ldp-ipvpn/intended/configs/p1.cfg @@ -86,7 +86,7 @@ interface Ethernet4 isis authentication key 7 $1c$sTNAlR6rKSw= ! interface Loopback0 - description LSR_Router_ID + description ROUTER_ID no shutdown ip address 10.255.0.1/32 isis enable CORE diff --git a/ansible_collections/arista/avd/examples/isis-ldp-ipvpn/intended/configs/p2.cfg b/ansible_collections/arista/avd/examples/isis-ldp-ipvpn/intended/configs/p2.cfg index 8e10b86dcb5..2c2338e7cfa 100644 --- a/ansible_collections/arista/avd/examples/isis-ldp-ipvpn/intended/configs/p2.cfg +++ b/ansible_collections/arista/avd/examples/isis-ldp-ipvpn/intended/configs/p2.cfg @@ -86,7 +86,7 @@ interface Ethernet4 isis authentication key 7 $1c$sTNAlR6rKSw= ! interface Loopback0 - description LSR_Router_ID + description ROUTER_ID no shutdown ip address 10.255.0.2/32 isis enable CORE diff --git a/ansible_collections/arista/avd/examples/isis-ldp-ipvpn/intended/configs/p3.cfg b/ansible_collections/arista/avd/examples/isis-ldp-ipvpn/intended/configs/p3.cfg index 911b02a2a7e..b7ae2fe1b72 100644 --- a/ansible_collections/arista/avd/examples/isis-ldp-ipvpn/intended/configs/p3.cfg +++ b/ansible_collections/arista/avd/examples/isis-ldp-ipvpn/intended/configs/p3.cfg @@ -69,7 +69,7 @@ interface Ethernet4 isis authentication key 7 $1c$sTNAlR6rKSw= ! interface Loopback0 - description LSR_Router_ID + description ROUTER_ID no shutdown ip address 10.255.0.3/32 isis enable CORE diff --git a/ansible_collections/arista/avd/examples/isis-ldp-ipvpn/intended/configs/p4.cfg b/ansible_collections/arista/avd/examples/isis-ldp-ipvpn/intended/configs/p4.cfg index 5a976576449..4bbda47b405 100644 --- a/ansible_collections/arista/avd/examples/isis-ldp-ipvpn/intended/configs/p4.cfg +++ b/ansible_collections/arista/avd/examples/isis-ldp-ipvpn/intended/configs/p4.cfg @@ -69,7 +69,7 @@ interface Ethernet4 isis authentication key 7 $1c$sTNAlR6rKSw= ! interface Loopback0 - description LSR_Router_ID + description ROUTER_ID no shutdown ip address 10.255.0.4/32 isis enable CORE diff --git a/ansible_collections/arista/avd/examples/isis-ldp-ipvpn/intended/configs/pe1.cfg b/ansible_collections/arista/avd/examples/isis-ldp-ipvpn/intended/configs/pe1.cfg index 95c0990469c..7e0f5b00f10 100644 --- a/ansible_collections/arista/avd/examples/isis-ldp-ipvpn/intended/configs/pe1.cfg +++ b/ansible_collections/arista/avd/examples/isis-ldp-ipvpn/intended/configs/pe1.cfg @@ -75,7 +75,7 @@ interface Ethernet3.20 ip address 10.1.1.1/29 ! interface Loopback0 - description MPLS_Overlay_peering + description ROUTER_ID no shutdown ip address 10.255.1.1/32 isis enable CORE diff --git a/ansible_collections/arista/avd/examples/isis-ldp-ipvpn/intended/configs/pe2.cfg b/ansible_collections/arista/avd/examples/isis-ldp-ipvpn/intended/configs/pe2.cfg index 43d0029cb4e..43b35dad581 100644 --- a/ansible_collections/arista/avd/examples/isis-ldp-ipvpn/intended/configs/pe2.cfg +++ b/ansible_collections/arista/avd/examples/isis-ldp-ipvpn/intended/configs/pe2.cfg @@ -75,7 +75,7 @@ interface Ethernet4.20 ip address 10.1.1.2/29 ! interface Loopback0 - description MPLS_Overlay_peering + description ROUTER_ID no shutdown ip address 10.255.1.2/32 isis enable CORE diff --git a/ansible_collections/arista/avd/examples/isis-ldp-ipvpn/intended/configs/pe3.cfg b/ansible_collections/arista/avd/examples/isis-ldp-ipvpn/intended/configs/pe3.cfg index 481ffff5b28..1320d187efa 100644 --- a/ansible_collections/arista/avd/examples/isis-ldp-ipvpn/intended/configs/pe3.cfg +++ b/ansible_collections/arista/avd/examples/isis-ldp-ipvpn/intended/configs/pe3.cfg @@ -71,7 +71,7 @@ interface Ethernet4 ip address 10.1.1.9/30 ! interface Loopback0 - description MPLS_Overlay_peering + description ROUTER_ID no shutdown ip address 10.255.1.3/32 isis enable CORE diff --git a/ansible_collections/arista/avd/examples/isis-ldp-ipvpn/intended/configs/rr1.cfg b/ansible_collections/arista/avd/examples/isis-ldp-ipvpn/intended/configs/rr1.cfg index f9cc6894736..cdfaaa17fad 100644 --- a/ansible_collections/arista/avd/examples/isis-ldp-ipvpn/intended/configs/rr1.cfg +++ b/ansible_collections/arista/avd/examples/isis-ldp-ipvpn/intended/configs/rr1.cfg @@ -69,7 +69,7 @@ interface Ethernet4 isis authentication key 7 $1c$sTNAlR6rKSw= ! interface Loopback0 - description MPLS_Overlay_peering + description ROUTER_ID no shutdown ip address 10.255.2.1/32 isis enable CORE diff --git a/ansible_collections/arista/avd/examples/isis-ldp-ipvpn/intended/configs/rr2.cfg b/ansible_collections/arista/avd/examples/isis-ldp-ipvpn/intended/configs/rr2.cfg index 71265d278e6..8714dd21413 100644 --- a/ansible_collections/arista/avd/examples/isis-ldp-ipvpn/intended/configs/rr2.cfg +++ b/ansible_collections/arista/avd/examples/isis-ldp-ipvpn/intended/configs/rr2.cfg @@ -69,7 +69,7 @@ interface Ethernet4 isis authentication key 7 $1c$sTNAlR6rKSw= ! interface Loopback0 - description MPLS_Overlay_peering + description ROUTER_ID no shutdown ip address 10.255.2.2/32 isis enable CORE diff --git a/ansible_collections/arista/avd/examples/isis-ldp-ipvpn/intended/structured_configs/p1.yml b/ansible_collections/arista/avd/examples/isis-ldp-ipvpn/intended/structured_configs/p1.yml index 30f555045a2..01e427c18dc 100644 --- a/ansible_collections/arista/avd/examples/isis-ldp-ipvpn/intended/structured_configs/p1.yml +++ b/ansible_collections/arista/avd/examples/isis-ldp-ipvpn/intended/structured_configs/p1.yml @@ -45,7 +45,7 @@ management_api_http: enable_https: true loopback_interfaces: - name: Loopback0 - description: LSR_Router_ID + description: ROUTER_ID shutdown: false ip_address: 10.255.0.1/32 mpls: diff --git a/ansible_collections/arista/avd/examples/isis-ldp-ipvpn/intended/structured_configs/p2.yml b/ansible_collections/arista/avd/examples/isis-ldp-ipvpn/intended/structured_configs/p2.yml index 62ba0f28639..72e8cfe052b 100644 --- a/ansible_collections/arista/avd/examples/isis-ldp-ipvpn/intended/structured_configs/p2.yml +++ b/ansible_collections/arista/avd/examples/isis-ldp-ipvpn/intended/structured_configs/p2.yml @@ -45,7 +45,7 @@ management_api_http: enable_https: true loopback_interfaces: - name: Loopback0 - description: LSR_Router_ID + description: ROUTER_ID shutdown: false ip_address: 10.255.0.2/32 mpls: diff --git a/ansible_collections/arista/avd/examples/isis-ldp-ipvpn/intended/structured_configs/p3.yml b/ansible_collections/arista/avd/examples/isis-ldp-ipvpn/intended/structured_configs/p3.yml index 76a9ce4c6fd..01572b78957 100644 --- a/ansible_collections/arista/avd/examples/isis-ldp-ipvpn/intended/structured_configs/p3.yml +++ b/ansible_collections/arista/avd/examples/isis-ldp-ipvpn/intended/structured_configs/p3.yml @@ -45,7 +45,7 @@ management_api_http: enable_https: true loopback_interfaces: - name: Loopback0 - description: LSR_Router_ID + description: ROUTER_ID shutdown: false ip_address: 10.255.0.3/32 mpls: diff --git a/ansible_collections/arista/avd/examples/isis-ldp-ipvpn/intended/structured_configs/p4.yml b/ansible_collections/arista/avd/examples/isis-ldp-ipvpn/intended/structured_configs/p4.yml index e36f1dd5900..ec0b02069a3 100644 --- a/ansible_collections/arista/avd/examples/isis-ldp-ipvpn/intended/structured_configs/p4.yml +++ b/ansible_collections/arista/avd/examples/isis-ldp-ipvpn/intended/structured_configs/p4.yml @@ -45,7 +45,7 @@ management_api_http: enable_https: true loopback_interfaces: - name: Loopback0 - description: LSR_Router_ID + description: ROUTER_ID shutdown: false ip_address: 10.255.0.4/32 mpls: diff --git a/ansible_collections/arista/avd/examples/isis-ldp-ipvpn/intended/structured_configs/pe1.yml b/ansible_collections/arista/avd/examples/isis-ldp-ipvpn/intended/structured_configs/pe1.yml index 71926ff0387..1415b2f25d1 100644 --- a/ansible_collections/arista/avd/examples/isis-ldp-ipvpn/intended/structured_configs/pe1.yml +++ b/ansible_collections/arista/avd/examples/isis-ldp-ipvpn/intended/structured_configs/pe1.yml @@ -132,7 +132,7 @@ management_api_http: enable_https: true loopback_interfaces: - name: Loopback0 - description: MPLS_Overlay_peering + description: ROUTER_ID shutdown: false ip_address: 10.255.1.1/32 mpls: diff --git a/ansible_collections/arista/avd/examples/isis-ldp-ipvpn/intended/structured_configs/pe2.yml b/ansible_collections/arista/avd/examples/isis-ldp-ipvpn/intended/structured_configs/pe2.yml index 55149d1ef55..d604c6b5c75 100644 --- a/ansible_collections/arista/avd/examples/isis-ldp-ipvpn/intended/structured_configs/pe2.yml +++ b/ansible_collections/arista/avd/examples/isis-ldp-ipvpn/intended/structured_configs/pe2.yml @@ -132,7 +132,7 @@ management_api_http: enable_https: true loopback_interfaces: - name: Loopback0 - description: MPLS_Overlay_peering + description: ROUTER_ID shutdown: false ip_address: 10.255.1.2/32 mpls: diff --git a/ansible_collections/arista/avd/examples/isis-ldp-ipvpn/intended/structured_configs/pe3.yml b/ansible_collections/arista/avd/examples/isis-ldp-ipvpn/intended/structured_configs/pe3.yml index 50a105d4a99..b5d9a35f8f6 100644 --- a/ansible_collections/arista/avd/examples/isis-ldp-ipvpn/intended/structured_configs/pe3.yml +++ b/ansible_collections/arista/avd/examples/isis-ldp-ipvpn/intended/structured_configs/pe3.yml @@ -132,7 +132,7 @@ management_api_http: enable_https: true loopback_interfaces: - name: Loopback0 - description: MPLS_Overlay_peering + description: ROUTER_ID shutdown: false ip_address: 10.255.1.3/32 mpls: diff --git a/ansible_collections/arista/avd/examples/isis-ldp-ipvpn/intended/structured_configs/rr1.yml b/ansible_collections/arista/avd/examples/isis-ldp-ipvpn/intended/structured_configs/rr1.yml index 02779f138de..13730189976 100644 --- a/ansible_collections/arista/avd/examples/isis-ldp-ipvpn/intended/structured_configs/rr1.yml +++ b/ansible_collections/arista/avd/examples/isis-ldp-ipvpn/intended/structured_configs/rr1.yml @@ -106,7 +106,7 @@ management_api_http: enable_https: true loopback_interfaces: - name: Loopback0 - description: MPLS_Overlay_peering + description: ROUTER_ID shutdown: false ip_address: 10.255.2.1/32 mpls: diff --git a/ansible_collections/arista/avd/examples/isis-ldp-ipvpn/intended/structured_configs/rr2.yml b/ansible_collections/arista/avd/examples/isis-ldp-ipvpn/intended/structured_configs/rr2.yml index 40958146bb4..d71a6e01b3f 100644 --- a/ansible_collections/arista/avd/examples/isis-ldp-ipvpn/intended/structured_configs/rr2.yml +++ b/ansible_collections/arista/avd/examples/isis-ldp-ipvpn/intended/structured_configs/rr2.yml @@ -106,7 +106,7 @@ management_api_http: enable_https: true loopback_interfaces: - name: Loopback0 - description: MPLS_Overlay_peering + description: ROUTER_ID shutdown: false ip_address: 10.255.2.2/32 mpls: diff --git a/ansible_collections/arista/avd/examples/single-dc-l3ls/documentation/devices/dc1-leaf1a.md b/ansible_collections/arista/avd/examples/single-dc-l3ls/documentation/devices/dc1-leaf1a.md index 3d63bb09277..ac5d01adf13 100644 --- a/ansible_collections/arista/avd/examples/single-dc-l3ls/documentation/devices/dc1-leaf1a.md +++ b/ansible_collections/arista/avd/examples/single-dc-l3ls/documentation/devices/dc1-leaf1a.md @@ -419,7 +419,7 @@ interface Port-Channel8 | Interface | Description | VRF | IP Address | | --------- | ----------- | --- | ---------- | -| Loopback0 | EVPN_Overlay_Peering | default | 10.255.0.3/32 | +| Loopback0 | ROUTER_ID | default | 10.255.0.3/32 | | Loopback1 | VTEP_VXLAN_Tunnel_Source | default | 10.255.1.3/32 | | Loopback10 | VRF10_VTEP_DIAGNOSTICS | VRF10 | 10.255.10.3/32 | | Loopback11 | VRF11_VTEP_DIAGNOSTICS | VRF11 | 10.255.11.3/32 | @@ -428,7 +428,7 @@ interface Port-Channel8 | Interface | Description | VRF | IPv6 Address | | --------- | ----------- | --- | ------------ | -| Loopback0 | EVPN_Overlay_Peering | default | - | +| Loopback0 | ROUTER_ID | default | - | | Loopback1 | VTEP_VXLAN_Tunnel_Source | default | - | | Loopback10 | VRF10_VTEP_DIAGNOSTICS | VRF10 | - | | Loopback11 | VRF11_VTEP_DIAGNOSTICS | VRF11 | - | @@ -438,7 +438,7 @@ interface Port-Channel8 ```eos ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 10.255.0.3/32 ! diff --git a/ansible_collections/arista/avd/examples/single-dc-l3ls/documentation/devices/dc1-leaf1b.md b/ansible_collections/arista/avd/examples/single-dc-l3ls/documentation/devices/dc1-leaf1b.md index 1ef601d8063..f78c9c4a21b 100644 --- a/ansible_collections/arista/avd/examples/single-dc-l3ls/documentation/devices/dc1-leaf1b.md +++ b/ansible_collections/arista/avd/examples/single-dc-l3ls/documentation/devices/dc1-leaf1b.md @@ -419,7 +419,7 @@ interface Port-Channel8 | Interface | Description | VRF | IP Address | | --------- | ----------- | --- | ---------- | -| Loopback0 | EVPN_Overlay_Peering | default | 10.255.0.4/32 | +| Loopback0 | ROUTER_ID | default | 10.255.0.4/32 | | Loopback1 | VTEP_VXLAN_Tunnel_Source | default | 10.255.1.3/32 | | Loopback10 | VRF10_VTEP_DIAGNOSTICS | VRF10 | 10.255.10.4/32 | | Loopback11 | VRF11_VTEP_DIAGNOSTICS | VRF11 | 10.255.11.4/32 | @@ -428,7 +428,7 @@ interface Port-Channel8 | Interface | Description | VRF | IPv6 Address | | --------- | ----------- | --- | ------------ | -| Loopback0 | EVPN_Overlay_Peering | default | - | +| Loopback0 | ROUTER_ID | default | - | | Loopback1 | VTEP_VXLAN_Tunnel_Source | default | - | | Loopback10 | VRF10_VTEP_DIAGNOSTICS | VRF10 | - | | Loopback11 | VRF11_VTEP_DIAGNOSTICS | VRF11 | - | @@ -438,7 +438,7 @@ interface Port-Channel8 ```eos ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 10.255.0.4/32 ! diff --git a/ansible_collections/arista/avd/examples/single-dc-l3ls/documentation/devices/dc1-leaf2a.md b/ansible_collections/arista/avd/examples/single-dc-l3ls/documentation/devices/dc1-leaf2a.md index abf39b733f6..34db740f57a 100644 --- a/ansible_collections/arista/avd/examples/single-dc-l3ls/documentation/devices/dc1-leaf2a.md +++ b/ansible_collections/arista/avd/examples/single-dc-l3ls/documentation/devices/dc1-leaf2a.md @@ -419,7 +419,7 @@ interface Port-Channel8 | Interface | Description | VRF | IP Address | | --------- | ----------- | --- | ---------- | -| Loopback0 | EVPN_Overlay_Peering | default | 10.255.0.5/32 | +| Loopback0 | ROUTER_ID | default | 10.255.0.5/32 | | Loopback1 | VTEP_VXLAN_Tunnel_Source | default | 10.255.1.5/32 | | Loopback10 | VRF10_VTEP_DIAGNOSTICS | VRF10 | 10.255.10.5/32 | | Loopback11 | VRF11_VTEP_DIAGNOSTICS | VRF11 | 10.255.11.5/32 | @@ -428,7 +428,7 @@ interface Port-Channel8 | Interface | Description | VRF | IPv6 Address | | --------- | ----------- | --- | ------------ | -| Loopback0 | EVPN_Overlay_Peering | default | - | +| Loopback0 | ROUTER_ID | default | - | | Loopback1 | VTEP_VXLAN_Tunnel_Source | default | - | | Loopback10 | VRF10_VTEP_DIAGNOSTICS | VRF10 | - | | Loopback11 | VRF11_VTEP_DIAGNOSTICS | VRF11 | - | @@ -438,7 +438,7 @@ interface Port-Channel8 ```eos ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 10.255.0.5/32 ! diff --git a/ansible_collections/arista/avd/examples/single-dc-l3ls/documentation/devices/dc1-leaf2b.md b/ansible_collections/arista/avd/examples/single-dc-l3ls/documentation/devices/dc1-leaf2b.md index ff58f29c653..03fb5dfffb5 100644 --- a/ansible_collections/arista/avd/examples/single-dc-l3ls/documentation/devices/dc1-leaf2b.md +++ b/ansible_collections/arista/avd/examples/single-dc-l3ls/documentation/devices/dc1-leaf2b.md @@ -419,7 +419,7 @@ interface Port-Channel8 | Interface | Description | VRF | IP Address | | --------- | ----------- | --- | ---------- | -| Loopback0 | EVPN_Overlay_Peering | default | 10.255.0.6/32 | +| Loopback0 | ROUTER_ID | default | 10.255.0.6/32 | | Loopback1 | VTEP_VXLAN_Tunnel_Source | default | 10.255.1.5/32 | | Loopback10 | VRF10_VTEP_DIAGNOSTICS | VRF10 | 10.255.10.6/32 | | Loopback11 | VRF11_VTEP_DIAGNOSTICS | VRF11 | 10.255.11.6/32 | @@ -428,7 +428,7 @@ interface Port-Channel8 | Interface | Description | VRF | IPv6 Address | | --------- | ----------- | --- | ------------ | -| Loopback0 | EVPN_Overlay_Peering | default | - | +| Loopback0 | ROUTER_ID | default | - | | Loopback1 | VTEP_VXLAN_Tunnel_Source | default | - | | Loopback10 | VRF10_VTEP_DIAGNOSTICS | VRF10 | - | | Loopback11 | VRF11_VTEP_DIAGNOSTICS | VRF11 | - | @@ -438,7 +438,7 @@ interface Port-Channel8 ```eos ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 10.255.0.6/32 ! diff --git a/ansible_collections/arista/avd/examples/single-dc-l3ls/documentation/devices/dc1-spine1.md b/ansible_collections/arista/avd/examples/single-dc-l3ls/documentation/devices/dc1-spine1.md index b950a89d6f9..289c03011db 100644 --- a/ansible_collections/arista/avd/examples/single-dc-l3ls/documentation/devices/dc1-spine1.md +++ b/ansible_collections/arista/avd/examples/single-dc-l3ls/documentation/devices/dc1-spine1.md @@ -262,20 +262,20 @@ interface Ethernet4 | Interface | Description | VRF | IP Address | | --------- | ----------- | --- | ---------- | -| Loopback0 | EVPN_Overlay_Peering | default | 10.255.0.1/32 | +| Loopback0 | ROUTER_ID | default | 10.255.0.1/32 | ##### IPv6 | Interface | Description | VRF | IPv6 Address | | --------- | ----------- | --- | ------------ | -| Loopback0 | EVPN_Overlay_Peering | default | - | +| Loopback0 | ROUTER_ID | default | - | #### Loopback Interfaces Device Configuration ```eos ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 10.255.0.1/32 ``` diff --git a/ansible_collections/arista/avd/examples/single-dc-l3ls/documentation/devices/dc1-spine2.md b/ansible_collections/arista/avd/examples/single-dc-l3ls/documentation/devices/dc1-spine2.md index efd607e95ea..a790e9158ef 100644 --- a/ansible_collections/arista/avd/examples/single-dc-l3ls/documentation/devices/dc1-spine2.md +++ b/ansible_collections/arista/avd/examples/single-dc-l3ls/documentation/devices/dc1-spine2.md @@ -262,20 +262,20 @@ interface Ethernet4 | Interface | Description | VRF | IP Address | | --------- | ----------- | --- | ---------- | -| Loopback0 | EVPN_Overlay_Peering | default | 10.255.0.2/32 | +| Loopback0 | ROUTER_ID | default | 10.255.0.2/32 | ##### IPv6 | Interface | Description | VRF | IPv6 Address | | --------- | ----------- | --- | ------------ | -| Loopback0 | EVPN_Overlay_Peering | default | - | +| Loopback0 | ROUTER_ID | default | - | #### Loopback Interfaces Device Configuration ```eos ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 10.255.0.2/32 ``` diff --git a/ansible_collections/arista/avd/examples/single-dc-l3ls/intended/configs/dc1-leaf1a.cfg b/ansible_collections/arista/avd/examples/single-dc-l3ls/intended/configs/dc1-leaf1a.cfg index 94571851003..c4ea8b81012 100644 --- a/ansible_collections/arista/avd/examples/single-dc-l3ls/intended/configs/dc1-leaf1a.cfg +++ b/ansible_collections/arista/avd/examples/single-dc-l3ls/intended/configs/dc1-leaf1a.cfg @@ -126,7 +126,7 @@ interface Ethernet8 channel-group 8 mode active ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 10.255.0.3/32 ! diff --git a/ansible_collections/arista/avd/examples/single-dc-l3ls/intended/configs/dc1-leaf1b.cfg b/ansible_collections/arista/avd/examples/single-dc-l3ls/intended/configs/dc1-leaf1b.cfg index a150eb31c2a..c869a4b4e98 100644 --- a/ansible_collections/arista/avd/examples/single-dc-l3ls/intended/configs/dc1-leaf1b.cfg +++ b/ansible_collections/arista/avd/examples/single-dc-l3ls/intended/configs/dc1-leaf1b.cfg @@ -126,7 +126,7 @@ interface Ethernet8 channel-group 8 mode active ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 10.255.0.4/32 ! diff --git a/ansible_collections/arista/avd/examples/single-dc-l3ls/intended/configs/dc1-leaf2a.cfg b/ansible_collections/arista/avd/examples/single-dc-l3ls/intended/configs/dc1-leaf2a.cfg index e89f3861273..d4ae3e9deef 100644 --- a/ansible_collections/arista/avd/examples/single-dc-l3ls/intended/configs/dc1-leaf2a.cfg +++ b/ansible_collections/arista/avd/examples/single-dc-l3ls/intended/configs/dc1-leaf2a.cfg @@ -126,7 +126,7 @@ interface Ethernet8 channel-group 8 mode active ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 10.255.0.5/32 ! diff --git a/ansible_collections/arista/avd/examples/single-dc-l3ls/intended/configs/dc1-leaf2b.cfg b/ansible_collections/arista/avd/examples/single-dc-l3ls/intended/configs/dc1-leaf2b.cfg index d13d4e76625..a012a18f411 100644 --- a/ansible_collections/arista/avd/examples/single-dc-l3ls/intended/configs/dc1-leaf2b.cfg +++ b/ansible_collections/arista/avd/examples/single-dc-l3ls/intended/configs/dc1-leaf2b.cfg @@ -126,7 +126,7 @@ interface Ethernet8 channel-group 8 mode active ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 10.255.0.6/32 ! diff --git a/ansible_collections/arista/avd/examples/single-dc-l3ls/intended/configs/dc1-spine1.cfg b/ansible_collections/arista/avd/examples/single-dc-l3ls/intended/configs/dc1-spine1.cfg index 5a51c0109aa..f2191e17221 100644 --- a/ansible_collections/arista/avd/examples/single-dc-l3ls/intended/configs/dc1-spine1.cfg +++ b/ansible_collections/arista/avd/examples/single-dc-l3ls/intended/configs/dc1-spine1.cfg @@ -54,7 +54,7 @@ interface Ethernet4 ip address 10.255.255.12/31 ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 10.255.0.1/32 ! diff --git a/ansible_collections/arista/avd/examples/single-dc-l3ls/intended/configs/dc1-spine2.cfg b/ansible_collections/arista/avd/examples/single-dc-l3ls/intended/configs/dc1-spine2.cfg index a9ed75bcc39..20f124b8a5f 100644 --- a/ansible_collections/arista/avd/examples/single-dc-l3ls/intended/configs/dc1-spine2.cfg +++ b/ansible_collections/arista/avd/examples/single-dc-l3ls/intended/configs/dc1-spine2.cfg @@ -54,7 +54,7 @@ interface Ethernet4 ip address 10.255.255.14/31 ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 10.255.0.2/32 ! diff --git a/ansible_collections/arista/avd/examples/single-dc-l3ls/intended/structured_configs/dc1-leaf1a.yml b/ansible_collections/arista/avd/examples/single-dc-l3ls/intended/structured_configs/dc1-leaf1a.yml index ae625fc19f0..0a6edd9cc4e 100644 --- a/ansible_collections/arista/avd/examples/single-dc-l3ls/intended/structured_configs/dc1-leaf1a.yml +++ b/ansible_collections/arista/avd/examples/single-dc-l3ls/intended/structured_configs/dc1-leaf1a.yml @@ -430,7 +430,7 @@ route_maps: - ip address prefix-list PL-LOOPBACKS-EVPN-OVERLAY loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 10.255.0.3/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/examples/single-dc-l3ls/intended/structured_configs/dc1-leaf1b.yml b/ansible_collections/arista/avd/examples/single-dc-l3ls/intended/structured_configs/dc1-leaf1b.yml index f0ee3aaf601..aed2776c0ab 100644 --- a/ansible_collections/arista/avd/examples/single-dc-l3ls/intended/structured_configs/dc1-leaf1b.yml +++ b/ansible_collections/arista/avd/examples/single-dc-l3ls/intended/structured_configs/dc1-leaf1b.yml @@ -430,7 +430,7 @@ route_maps: - ip address prefix-list PL-LOOPBACKS-EVPN-OVERLAY loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 10.255.0.4/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/examples/single-dc-l3ls/intended/structured_configs/dc1-leaf2a.yml b/ansible_collections/arista/avd/examples/single-dc-l3ls/intended/structured_configs/dc1-leaf2a.yml index 27c992930e6..94bc0170bc7 100644 --- a/ansible_collections/arista/avd/examples/single-dc-l3ls/intended/structured_configs/dc1-leaf2a.yml +++ b/ansible_collections/arista/avd/examples/single-dc-l3ls/intended/structured_configs/dc1-leaf2a.yml @@ -430,7 +430,7 @@ route_maps: - ip address prefix-list PL-LOOPBACKS-EVPN-OVERLAY loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 10.255.0.5/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/examples/single-dc-l3ls/intended/structured_configs/dc1-leaf2b.yml b/ansible_collections/arista/avd/examples/single-dc-l3ls/intended/structured_configs/dc1-leaf2b.yml index 5c0443362d5..0dade72da0d 100644 --- a/ansible_collections/arista/avd/examples/single-dc-l3ls/intended/structured_configs/dc1-leaf2b.yml +++ b/ansible_collections/arista/avd/examples/single-dc-l3ls/intended/structured_configs/dc1-leaf2b.yml @@ -430,7 +430,7 @@ route_maps: - ip address prefix-list PL-LOOPBACKS-EVPN-OVERLAY loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 10.255.0.6/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/examples/single-dc-l3ls/intended/structured_configs/dc1-spine1.yml b/ansible_collections/arista/avd/examples/single-dc-l3ls/intended/structured_configs/dc1-spine1.yml index 0ce6371d5e0..509a9090016 100644 --- a/ansible_collections/arista/avd/examples/single-dc-l3ls/intended/structured_configs/dc1-spine1.yml +++ b/ansible_collections/arista/avd/examples/single-dc-l3ls/intended/structured_configs/dc1-spine1.yml @@ -181,7 +181,7 @@ ethernet_interfaces: ip_address: 10.255.255.12/31 loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 10.255.0.1/32 prefix_lists: diff --git a/ansible_collections/arista/avd/examples/single-dc-l3ls/intended/structured_configs/dc1-spine2.yml b/ansible_collections/arista/avd/examples/single-dc-l3ls/intended/structured_configs/dc1-spine2.yml index 4908945f96f..f6b52b32022 100644 --- a/ansible_collections/arista/avd/examples/single-dc-l3ls/intended/structured_configs/dc1-spine2.yml +++ b/ansible_collections/arista/avd/examples/single-dc-l3ls/intended/structured_configs/dc1-spine2.yml @@ -181,7 +181,7 @@ ethernet_interfaces: ip_address: 10.255.255.14/31 loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 10.255.0.2/32 prefix_lists: diff --git a/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/documentation/devices/DC1-BL1A.md b/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/documentation/devices/DC1-BL1A.md index 1b3513665b2..c8a73258c76 100644 --- a/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/documentation/devices/DC1-BL1A.md +++ b/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/documentation/devices/DC1-BL1A.md @@ -395,14 +395,14 @@ interface Port-Channel5 | Interface | Description | VRF | IP Address | | --------- | ----------- | --- | ---------- | -| Loopback0 | EVPN_Overlay_Peering | default | 192.168.255.10/32 | +| Loopback0 | ROUTER_ID | default | 192.168.255.10/32 | | Loopback1 | VTEP_VXLAN_Tunnel_Source | default | 192.168.254.10/32 | ##### IPv6 | Interface | Description | VRF | IPv6 Address | | --------- | ----------- | --- | ------------ | -| Loopback0 | EVPN_Overlay_Peering | default | - | +| Loopback0 | ROUTER_ID | default | - | | Loopback1 | VTEP_VXLAN_Tunnel_Source | default | - | #### Loopback Interfaces Device Configuration @@ -410,7 +410,7 @@ interface Port-Channel5 ```eos ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.10/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/documentation/devices/DC1-BL1B.md b/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/documentation/devices/DC1-BL1B.md index 9955a679cee..dbbd96659f5 100644 --- a/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/documentation/devices/DC1-BL1B.md +++ b/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/documentation/devices/DC1-BL1B.md @@ -395,14 +395,14 @@ interface Port-Channel5 | Interface | Description | VRF | IP Address | | --------- | ----------- | --- | ---------- | -| Loopback0 | EVPN_Overlay_Peering | default | 192.168.255.11/32 | +| Loopback0 | ROUTER_ID | default | 192.168.255.11/32 | | Loopback1 | VTEP_VXLAN_Tunnel_Source | default | 192.168.254.10/32 | ##### IPv6 | Interface | Description | VRF | IPv6 Address | | --------- | ----------- | --- | ------------ | -| Loopback0 | EVPN_Overlay_Peering | default | - | +| Loopback0 | ROUTER_ID | default | - | | Loopback1 | VTEP_VXLAN_Tunnel_Source | default | - | #### Loopback Interfaces Device Configuration @@ -410,7 +410,7 @@ interface Port-Channel5 ```eos ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.11/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/documentation/devices/DC1-LEAF1A.md b/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/documentation/devices/DC1-LEAF1A.md index 5c788fd70f9..22c49e63fd4 100644 --- a/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/documentation/devices/DC1-LEAF1A.md +++ b/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/documentation/devices/DC1-LEAF1A.md @@ -323,14 +323,14 @@ interface Ethernet7 | Interface | Description | VRF | IP Address | | --------- | ----------- | --- | ---------- | -| Loopback0 | EVPN_Overlay_Peering | default | 192.168.255.5/32 | +| Loopback0 | ROUTER_ID | default | 192.168.255.5/32 | | Loopback1 | VTEP_VXLAN_Tunnel_Source | default | 192.168.254.5/32 | ##### IPv6 | Interface | Description | VRF | IPv6 Address | | --------- | ----------- | --- | ------------ | -| Loopback0 | EVPN_Overlay_Peering | default | - | +| Loopback0 | ROUTER_ID | default | - | | Loopback1 | VTEP_VXLAN_Tunnel_Source | default | - | #### Loopback Interfaces Device Configuration @@ -338,7 +338,7 @@ interface Ethernet7 ```eos ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.5/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/documentation/devices/DC1-LEAF2A.md b/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/documentation/devices/DC1-LEAF2A.md index 6374a2592f2..4bc8ea60126 100644 --- a/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/documentation/devices/DC1-LEAF2A.md +++ b/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/documentation/devices/DC1-LEAF2A.md @@ -479,7 +479,7 @@ interface Port-Channel10 | Interface | Description | VRF | IP Address | | --------- | ----------- | --- | ---------- | -| Loopback0 | EVPN_Overlay_Peering | default | 192.168.255.6/32 | +| Loopback0 | ROUTER_ID | default | 192.168.255.6/32 | | Loopback1 | VTEP_VXLAN_Tunnel_Source | default | 192.168.254.6/32 | | Loopback100 | Tenant_A_OP_Zone_VTEP_DIAGNOSTICS | Tenant_A_OP_Zone | 10.255.1.6/32 | @@ -487,7 +487,7 @@ interface Port-Channel10 | Interface | Description | VRF | IPv6 Address | | --------- | ----------- | --- | ------------ | -| Loopback0 | EVPN_Overlay_Peering | default | - | +| Loopback0 | ROUTER_ID | default | - | | Loopback1 | VTEP_VXLAN_Tunnel_Source | default | - | | Loopback100 | Tenant_A_OP_Zone_VTEP_DIAGNOSTICS | Tenant_A_OP_Zone | - | @@ -496,7 +496,7 @@ interface Port-Channel10 ```eos ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.6/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/documentation/devices/DC1-LEAF2B.md b/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/documentation/devices/DC1-LEAF2B.md index 76435b5fcd4..44c5c7a1be2 100644 --- a/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/documentation/devices/DC1-LEAF2B.md +++ b/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/documentation/devices/DC1-LEAF2B.md @@ -479,7 +479,7 @@ interface Port-Channel10 | Interface | Description | VRF | IP Address | | --------- | ----------- | --- | ---------- | -| Loopback0 | EVPN_Overlay_Peering | default | 192.168.255.7/32 | +| Loopback0 | ROUTER_ID | default | 192.168.255.7/32 | | Loopback1 | VTEP_VXLAN_Tunnel_Source | default | 192.168.254.6/32 | | Loopback100 | Tenant_A_OP_Zone_VTEP_DIAGNOSTICS | Tenant_A_OP_Zone | 10.255.1.7/32 | @@ -487,7 +487,7 @@ interface Port-Channel10 | Interface | Description | VRF | IPv6 Address | | --------- | ----------- | --- | ------------ | -| Loopback0 | EVPN_Overlay_Peering | default | - | +| Loopback0 | ROUTER_ID | default | - | | Loopback1 | VTEP_VXLAN_Tunnel_Source | default | - | | Loopback100 | Tenant_A_OP_Zone_VTEP_DIAGNOSTICS | Tenant_A_OP_Zone | - | @@ -496,7 +496,7 @@ interface Port-Channel10 ```eos ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.7/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/documentation/devices/DC1-SPINE1.md b/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/documentation/devices/DC1-SPINE1.md index 290d95a5989..fbad1090e51 100644 --- a/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/documentation/devices/DC1-SPINE1.md +++ b/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/documentation/devices/DC1-SPINE1.md @@ -288,20 +288,20 @@ interface Ethernet7 | Interface | Description | VRF | IP Address | | --------- | ----------- | --- | ---------- | -| Loopback0 | EVPN_Overlay_Peering | default | 192.168.255.1/32 | +| Loopback0 | ROUTER_ID | default | 192.168.255.1/32 | ##### IPv6 | Interface | Description | VRF | IPv6 Address | | --------- | ----------- | --- | ------------ | -| Loopback0 | EVPN_Overlay_Peering | default | - | +| Loopback0 | ROUTER_ID | default | - | #### Loopback Interfaces Device Configuration ```eos ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.1/32 ``` diff --git a/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/documentation/devices/DC1-SPINE2.md b/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/documentation/devices/DC1-SPINE2.md index b8b401fe37b..4af41cef6c8 100644 --- a/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/documentation/devices/DC1-SPINE2.md +++ b/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/documentation/devices/DC1-SPINE2.md @@ -288,20 +288,20 @@ interface Ethernet7 | Interface | Description | VRF | IP Address | | --------- | ----------- | --- | ---------- | -| Loopback0 | EVPN_Overlay_Peering | default | 192.168.255.2/32 | +| Loopback0 | ROUTER_ID | default | 192.168.255.2/32 | ##### IPv6 | Interface | Description | VRF | IPv6 Address | | --------- | ----------- | --- | ------------ | -| Loopback0 | EVPN_Overlay_Peering | default | - | +| Loopback0 | ROUTER_ID | default | - | #### Loopback Interfaces Device Configuration ```eos ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.2/32 ``` diff --git a/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/documentation/devices/DC1-SPINE3.md b/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/documentation/devices/DC1-SPINE3.md index a95b6be06da..bfaf960876f 100644 --- a/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/documentation/devices/DC1-SPINE3.md +++ b/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/documentation/devices/DC1-SPINE3.md @@ -288,20 +288,20 @@ interface Ethernet7 | Interface | Description | VRF | IP Address | | --------- | ----------- | --- | ---------- | -| Loopback0 | EVPN_Overlay_Peering | default | 192.168.255.3/32 | +| Loopback0 | ROUTER_ID | default | 192.168.255.3/32 | ##### IPv6 | Interface | Description | VRF | IPv6 Address | | --------- | ----------- | --- | ------------ | -| Loopback0 | EVPN_Overlay_Peering | default | - | +| Loopback0 | ROUTER_ID | default | - | #### Loopback Interfaces Device Configuration ```eos ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.3/32 ``` diff --git a/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/documentation/devices/DC1-SPINE4.md b/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/documentation/devices/DC1-SPINE4.md index 077205f0860..cd0bc31bc02 100644 --- a/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/documentation/devices/DC1-SPINE4.md +++ b/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/documentation/devices/DC1-SPINE4.md @@ -288,20 +288,20 @@ interface Ethernet7 | Interface | Description | VRF | IP Address | | --------- | ----------- | --- | ---------- | -| Loopback0 | EVPN_Overlay_Peering | default | 192.168.255.4/32 | +| Loopback0 | ROUTER_ID | default | 192.168.255.4/32 | ##### IPv6 | Interface | Description | VRF | IPv6 Address | | --------- | ----------- | --- | ------------ | -| Loopback0 | EVPN_Overlay_Peering | default | - | +| Loopback0 | ROUTER_ID | default | - | #### Loopback Interfaces Device Configuration ```eos ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.4/32 ``` diff --git a/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/documentation/devices/DC1-SVC3A.md b/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/documentation/devices/DC1-SVC3A.md index 59528345d63..a495794ed38 100644 --- a/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/documentation/devices/DC1-SVC3A.md +++ b/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/documentation/devices/DC1-SVC3A.md @@ -523,7 +523,7 @@ interface Port-Channel10 | Interface | Description | VRF | IP Address | | --------- | ----------- | --- | ---------- | -| Loopback0 | EVPN_Overlay_Peering | default | 192.168.255.8/32 | +| Loopback0 | ROUTER_ID | default | 192.168.255.8/32 | | Loopback1 | VTEP_VXLAN_Tunnel_Source | default | 192.168.254.8/32 | | Loopback100 | Tenant_A_OP_Zone_VTEP_DIAGNOSTICS | Tenant_A_OP_Zone | 10.255.1.8/32 | @@ -531,7 +531,7 @@ interface Port-Channel10 | Interface | Description | VRF | IPv6 Address | | --------- | ----------- | --- | ------------ | -| Loopback0 | EVPN_Overlay_Peering | default | - | +| Loopback0 | ROUTER_ID | default | - | | Loopback1 | VTEP_VXLAN_Tunnel_Source | default | - | | Loopback100 | Tenant_A_OP_Zone_VTEP_DIAGNOSTICS | Tenant_A_OP_Zone | - | @@ -540,7 +540,7 @@ interface Port-Channel10 ```eos ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.8/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/documentation/devices/DC1-SVC3B.md b/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/documentation/devices/DC1-SVC3B.md index 1be1f65a84f..0838098a18e 100644 --- a/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/documentation/devices/DC1-SVC3B.md +++ b/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/documentation/devices/DC1-SVC3B.md @@ -497,7 +497,7 @@ interface Port-Channel7 | Interface | Description | VRF | IP Address | | --------- | ----------- | --- | ---------- | -| Loopback0 | EVPN_Overlay_Peering | default | 192.168.255.9/32 | +| Loopback0 | ROUTER_ID | default | 192.168.255.9/32 | | Loopback1 | VTEP_VXLAN_Tunnel_Source | default | 192.168.254.8/32 | | Loopback100 | Tenant_A_OP_Zone_VTEP_DIAGNOSTICS | Tenant_A_OP_Zone | 10.255.1.9/32 | @@ -505,7 +505,7 @@ interface Port-Channel7 | Interface | Description | VRF | IPv6 Address | | --------- | ----------- | --- | ------------ | -| Loopback0 | EVPN_Overlay_Peering | default | - | +| Loopback0 | ROUTER_ID | default | - | | Loopback1 | VTEP_VXLAN_Tunnel_Source | default | - | | Loopback100 | Tenant_A_OP_Zone_VTEP_DIAGNOSTICS | Tenant_A_OP_Zone | - | @@ -514,7 +514,7 @@ interface Port-Channel7 ```eos ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.9/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/intended/configs/DC1-BL1A.cfg b/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/intended/configs/DC1-BL1A.cfg index ef402cefb26..73e0dbf4085 100644 --- a/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/intended/configs/DC1-BL1A.cfg +++ b/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/intended/configs/DC1-BL1A.cfg @@ -110,7 +110,7 @@ interface Ethernet6 channel-group 5 mode active ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.10/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/intended/configs/DC1-BL1B.cfg b/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/intended/configs/DC1-BL1B.cfg index dc38dca52e3..7a5cb01e641 100644 --- a/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/intended/configs/DC1-BL1B.cfg +++ b/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/intended/configs/DC1-BL1B.cfg @@ -110,7 +110,7 @@ interface Ethernet6 channel-group 5 mode active ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.11/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/intended/configs/DC1-LEAF1A.cfg b/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/intended/configs/DC1-LEAF1A.cfg index 97b4e776533..3c8e9ccfb62 100644 --- a/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/intended/configs/DC1-LEAF1A.cfg +++ b/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/intended/configs/DC1-LEAF1A.cfg @@ -88,7 +88,7 @@ interface Ethernet7 switchport ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.5/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/intended/configs/DC1-LEAF2A.cfg b/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/intended/configs/DC1-LEAF2A.cfg index 7ecce5209ac..85b45793d65 100644 --- a/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/intended/configs/DC1-LEAF2A.cfg +++ b/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/intended/configs/DC1-LEAF2A.cfg @@ -183,7 +183,7 @@ interface Ethernet10 channel-group 10 mode active ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.6/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/intended/configs/DC1-LEAF2B.cfg b/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/intended/configs/DC1-LEAF2B.cfg index c1498c92158..82c7a4e8b88 100644 --- a/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/intended/configs/DC1-LEAF2B.cfg +++ b/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/intended/configs/DC1-LEAF2B.cfg @@ -183,7 +183,7 @@ interface Ethernet10 channel-group 10 mode active ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.7/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/intended/configs/DC1-SPINE1.cfg b/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/intended/configs/DC1-SPINE1.cfg index 9ac870cc801..5b9ed0f8cdd 100644 --- a/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/intended/configs/DC1-SPINE1.cfg +++ b/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/intended/configs/DC1-SPINE1.cfg @@ -76,7 +76,7 @@ interface Ethernet7 ip address 172.31.255.48/31 ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.1/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/intended/configs/DC1-SPINE2.cfg b/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/intended/configs/DC1-SPINE2.cfg index 49f4b6a0758..486ca29d404 100644 --- a/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/intended/configs/DC1-SPINE2.cfg +++ b/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/intended/configs/DC1-SPINE2.cfg @@ -76,7 +76,7 @@ interface Ethernet7 ip address 172.31.255.50/31 ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.2/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/intended/configs/DC1-SPINE3.cfg b/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/intended/configs/DC1-SPINE3.cfg index 3ee478af952..1bef0cd739a 100644 --- a/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/intended/configs/DC1-SPINE3.cfg +++ b/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/intended/configs/DC1-SPINE3.cfg @@ -76,7 +76,7 @@ interface Ethernet7 ip address 172.31.255.52/31 ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.3/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/intended/configs/DC1-SPINE4.cfg b/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/intended/configs/DC1-SPINE4.cfg index b0da21b19a3..25d03fc91d6 100644 --- a/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/intended/configs/DC1-SPINE4.cfg +++ b/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/intended/configs/DC1-SPINE4.cfg @@ -76,7 +76,7 @@ interface Ethernet7 ip address 172.31.255.54/31 ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.4/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/intended/configs/DC1-SVC3A.cfg b/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/intended/configs/DC1-SVC3A.cfg index 382139f01e7..88c52bebfa8 100644 --- a/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/intended/configs/DC1-SVC3A.cfg +++ b/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/intended/configs/DC1-SVC3A.cfg @@ -218,7 +218,7 @@ interface Ethernet10 channel-group 10 mode active ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.8/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/intended/configs/DC1-SVC3B.cfg b/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/intended/configs/DC1-SVC3B.cfg index ca059b55f12..f34a41d17ae 100644 --- a/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/intended/configs/DC1-SVC3B.cfg +++ b/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/intended/configs/DC1-SVC3B.cfg @@ -202,7 +202,7 @@ interface Ethernet8 channel-group 7 mode active ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.9/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/intended/structured_configs/DC1-BL1A.yml b/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/intended/structured_configs/DC1-BL1A.yml index f0d08b6ecc3..edb17ce3522 100644 --- a/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/intended/structured_configs/DC1-BL1A.yml +++ b/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/intended/structured_configs/DC1-BL1A.yml @@ -445,7 +445,7 @@ route_maps: - ip address prefix-list PL-LOOPBACKS-EVPN-OVERLAY loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.10/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/intended/structured_configs/DC1-BL1B.yml b/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/intended/structured_configs/DC1-BL1B.yml index b1c9af88c7a..d4929c90132 100644 --- a/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/intended/structured_configs/DC1-BL1B.yml +++ b/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/intended/structured_configs/DC1-BL1B.yml @@ -445,7 +445,7 @@ route_maps: - ip address prefix-list PL-LOOPBACKS-EVPN-OVERLAY loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.11/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/intended/structured_configs/DC1-LEAF1A.yml b/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/intended/structured_configs/DC1-LEAF1A.yml index 7622f402cda..e0c94a4138a 100644 --- a/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/intended/structured_configs/DC1-LEAF1A.yml +++ b/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/intended/structured_configs/DC1-LEAF1A.yml @@ -261,7 +261,7 @@ ethernet_interfaces: vlans: '110' loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.5/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/intended/structured_configs/DC1-LEAF2A.yml b/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/intended/structured_configs/DC1-LEAF2A.yml index 6602cdf63ba..a8d09720b21 100644 --- a/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/intended/structured_configs/DC1-LEAF2A.yml +++ b/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/intended/structured_configs/DC1-LEAF2A.yml @@ -723,7 +723,7 @@ route_maps: - ip address prefix-list PL-LOOPBACKS-EVPN-OVERLAY loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.6/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/intended/structured_configs/DC1-LEAF2B.yml b/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/intended/structured_configs/DC1-LEAF2B.yml index 1868d363ba4..6eb68a262f8 100644 --- a/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/intended/structured_configs/DC1-LEAF2B.yml +++ b/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/intended/structured_configs/DC1-LEAF2B.yml @@ -723,7 +723,7 @@ route_maps: - ip address prefix-list PL-LOOPBACKS-EVPN-OVERLAY loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.7/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/intended/structured_configs/DC1-SPINE1.yml b/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/intended/structured_configs/DC1-SPINE1.yml index 74f9a95c247..949c9b0898a 100644 --- a/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/intended/structured_configs/DC1-SPINE1.yml +++ b/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/intended/structured_configs/DC1-SPINE1.yml @@ -248,7 +248,7 @@ ethernet_interfaces: ip_address: 172.31.255.48/31 loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.1/32 prefix_lists: diff --git a/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/intended/structured_configs/DC1-SPINE2.yml b/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/intended/structured_configs/DC1-SPINE2.yml index fe04a7b500c..3092941a37f 100644 --- a/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/intended/structured_configs/DC1-SPINE2.yml +++ b/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/intended/structured_configs/DC1-SPINE2.yml @@ -248,7 +248,7 @@ ethernet_interfaces: ip_address: 172.31.255.50/31 loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.2/32 prefix_lists: diff --git a/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/intended/structured_configs/DC1-SPINE3.yml b/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/intended/structured_configs/DC1-SPINE3.yml index 36b779596e4..d22179bb0f5 100644 --- a/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/intended/structured_configs/DC1-SPINE3.yml +++ b/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/intended/structured_configs/DC1-SPINE3.yml @@ -248,7 +248,7 @@ ethernet_interfaces: ip_address: 172.31.255.52/31 loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.3/32 prefix_lists: diff --git a/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/intended/structured_configs/DC1-SPINE4.yml b/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/intended/structured_configs/DC1-SPINE4.yml index a806a7e118f..cd45391afee 100644 --- a/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/intended/structured_configs/DC1-SPINE4.yml +++ b/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/intended/structured_configs/DC1-SPINE4.yml @@ -248,7 +248,7 @@ ethernet_interfaces: ip_address: 172.31.255.54/31 loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.4/32 prefix_lists: diff --git a/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/intended/structured_configs/DC1-SVC3A.yml b/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/intended/structured_configs/DC1-SVC3A.yml index 6dfe5af8b85..57bdf018926 100644 --- a/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/intended/structured_configs/DC1-SVC3A.yml +++ b/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/intended/structured_configs/DC1-SVC3A.yml @@ -901,7 +901,7 @@ route_maps: - ip address prefix-list PL-LOOPBACKS-EVPN-OVERLAY loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.8/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/intended/structured_configs/DC1-SVC3B.yml b/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/intended/structured_configs/DC1-SVC3B.yml index 47c8c46a1db..e6ceaade71b 100644 --- a/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/intended/structured_configs/DC1-SVC3B.yml +++ b/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/intended/structured_configs/DC1-SVC3B.yml @@ -880,7 +880,7 @@ route_maps: - ip address prefix-list PL-LOOPBACKS-EVPN-OVERLAY loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.9/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/intended/structured_configs/cvp-empty-filter/cv_server_configlets.yml b/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/intended/structured_configs/cvp-empty-filter/cv_server_configlets.yml index 5f8607fec23..c65f2f79148 100644 --- a/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/intended/structured_configs/cvp-empty-filter/cv_server_configlets.yml +++ b/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/intended/structured_configs/cvp-empty-filter/cv_server_configlets.yml @@ -28,36 +28,36 @@ cvp_configlets: \ no switchport\n ip address 172.31.255.47/31\n!\ninterface Ethernet5\n description MLAG_PEER_DC1-BL1B_Ethernet5\n no shutdown\n channel-group 5 mode active\n!\ninterface Ethernet6\n description MLAG_PEER_DC1-BL1B_Ethernet6\n no shutdown\n channel-group - 5 mode active\n!\ninterface Loopback0\n description EVPN_Overlay_Peering\n no - shutdown\n ip address 192.168.255.10/32\n!\ninterface Loopback1\n description - VTEP_VXLAN_Tunnel_Source\n no shutdown\n ip address 192.168.254.10/32\n!\ninterface - Management1\n description oob_management\n no shutdown\n vrf MGMT\n ip - address 192.168.200.110/24\n!\ninterface Vlan150\n description Tenant_A_WAN_Zone_1\n - \ no shutdown\n vrf Tenant_A_WAN_Zone\n ip address virtual 10.1.40.1/24\n!\ninterface - Vlan250\n description Tenant_B_WAN_Zone_1\n no shutdown\n vrf Tenant_B_WAN_Zone\n - \ ip address virtual 10.2.50.1/24\n!\ninterface Vlan350\n description Tenant_C_WAN_Zone_1\n - \ no shutdown\n vrf Tenant_C_WAN_Zone\n ip address virtual 10.3.50.1/24\n!\ninterface - Vlan3013\n description MLAG_PEER_L3_iBGP: vrf Tenant_A_WAN_Zone\n no shutdown\n - \ mtu 1500\n vrf Tenant_A_WAN_Zone\n ip address 10.255.251.10/31\n!\ninterface - Vlan3020\n description MLAG_PEER_L3_iBGP: vrf Tenant_B_WAN_Zone\n no shutdown\n - \ mtu 1500\n vrf Tenant_B_WAN_Zone\n ip address 10.255.251.10/31\n!\ninterface - Vlan3030\n description MLAG_PEER_L3_iBGP: vrf Tenant_C_WAN_Zone\n no shutdown\n - \ mtu 1500\n vrf Tenant_C_WAN_Zone\n ip address 10.255.251.10/31\n!\ninterface - Vlan4093\n description MLAG_PEER_L3_PEERING\n no shutdown\n mtu 1500\n ip - address 10.255.251.10/31\n!\ninterface Vlan4094\n description MLAG_PEER\n no - shutdown\n mtu 1500\n no autostate\n ip address 10.255.252.10/31\n!\ninterface - Vxlan1\n description DC1-BL1A_VTEP\n vxlan source-interface Loopback1\n vxlan - virtual-router encapsulation mac-address mlag-system-id\n vxlan udp-port 4789\n - \ vxlan vlan 150 vni 10150\n vxlan vlan 250 vni 20250\n vxlan vlan 350 vni - 30350\n vxlan vrf Tenant_A_WAN_Zone vni 14\n vxlan vrf Tenant_B_WAN_Zone vni - 21\n vxlan vrf Tenant_C_WAN_Zone vni 31\n!\nip virtual-router mac-address 00:dc:00:00:00:0a\n!\nip - routing\nno ip routing vrf MGMT\nip routing vrf Tenant_A_WAN_Zone\nip routing - vrf Tenant_B_WAN_Zone\nip routing vrf Tenant_C_WAN_Zone\n!\nip prefix-list PL-LOOPBACKS-EVPN-OVERLAY\n - \ seq 10 permit 192.168.255.0/24 eq 32\n seq 20 permit 192.168.254.0/24 eq - 32\n!\nmlag configuration\n domain-id DC1_BL1\n local-interface Vlan4094\n - \ peer-address 10.255.252.11\n peer-link Port-Channel5\n reload-delay mlag - 300\n reload-delay non-mlag 330\n!\nip route vrf MGMT 0.0.0.0/0 192.168.200.5\n!\nroute-map - RM-CONN-2-BGP permit 10\n match ip address prefix-list PL-LOOPBACKS-EVPN-OVERLAY\n!\nroute-map + 5 mode active\n!\ninterface Loopback0\n description ROUTER_ID\n no shutdown\n + \ ip address 192.168.255.10/32\n!\ninterface Loopback1\n description VTEP_VXLAN_Tunnel_Source\n + \ no shutdown\n ip address 192.168.254.10/32\n!\ninterface Management1\n description + oob_management\n no shutdown\n vrf MGMT\n ip address 192.168.200.110/24\n!\ninterface + Vlan150\n description Tenant_A_WAN_Zone_1\n no shutdown\n vrf Tenant_A_WAN_Zone\n + \ ip address virtual 10.1.40.1/24\n!\ninterface Vlan250\n description Tenant_B_WAN_Zone_1\n + \ no shutdown\n vrf Tenant_B_WAN_Zone\n ip address virtual 10.2.50.1/24\n!\ninterface + Vlan350\n description Tenant_C_WAN_Zone_1\n no shutdown\n vrf Tenant_C_WAN_Zone\n + \ ip address virtual 10.3.50.1/24\n!\ninterface Vlan3013\n description MLAG_PEER_L3_iBGP: + vrf Tenant_A_WAN_Zone\n no shutdown\n mtu 1500\n vrf Tenant_A_WAN_Zone\n + \ ip address 10.255.251.10/31\n!\ninterface Vlan3020\n description MLAG_PEER_L3_iBGP: + vrf Tenant_B_WAN_Zone\n no shutdown\n mtu 1500\n vrf Tenant_B_WAN_Zone\n + \ ip address 10.255.251.10/31\n!\ninterface Vlan3030\n description MLAG_PEER_L3_iBGP: + vrf Tenant_C_WAN_Zone\n no shutdown\n mtu 1500\n vrf Tenant_C_WAN_Zone\n + \ ip address 10.255.251.10/31\n!\ninterface Vlan4093\n description MLAG_PEER_L3_PEERING\n + \ no shutdown\n mtu 1500\n ip address 10.255.251.10/31\n!\ninterface Vlan4094\n + \ description MLAG_PEER\n no shutdown\n mtu 1500\n no autostate\n ip + address 10.255.252.10/31\n!\ninterface Vxlan1\n description DC1-BL1A_VTEP\n + \ vxlan source-interface Loopback1\n vxlan virtual-router encapsulation mac-address + mlag-system-id\n vxlan udp-port 4789\n vxlan vlan 150 vni 10150\n vxlan + vlan 250 vni 20250\n vxlan vlan 350 vni 30350\n vxlan vrf Tenant_A_WAN_Zone + vni 14\n vxlan vrf Tenant_B_WAN_Zone vni 21\n vxlan vrf Tenant_C_WAN_Zone + vni 31\n!\nip virtual-router mac-address 00:dc:00:00:00:0a\n!\nip routing\nno + ip routing vrf MGMT\nip routing vrf Tenant_A_WAN_Zone\nip routing vrf Tenant_B_WAN_Zone\nip + routing vrf Tenant_C_WAN_Zone\n!\nip prefix-list PL-LOOPBACKS-EVPN-OVERLAY\n seq + 10 permit 192.168.255.0/24 eq 32\n seq 20 permit 192.168.254.0/24 eq 32\n!\nmlag + configuration\n domain-id DC1_BL1\n local-interface Vlan4094\n peer-address + 10.255.252.11\n peer-link Port-Channel5\n reload-delay mlag 300\n reload-delay + non-mlag 330\n!\nip route vrf MGMT 0.0.0.0/0 192.168.200.5\n!\nroute-map RM-CONN-2-BGP + permit 10\n match ip address prefix-list PL-LOOPBACKS-EVPN-OVERLAY\n!\nroute-map RM-MLAG-PEER-IN permit 10\n description Make routes learned over MLAG Peer-link less preferred on spines to ensure optimal routing\n set origin incomplete\n!\nrouter bfd\n multihop interval 1200 min-rx 1200 multiplier 3\n!\nrouter bgp 65104\n @@ -143,36 +143,36 @@ cvp_configlets: \ no switchport\n ip address 172.31.255.55/31\n!\ninterface Ethernet5\n description MLAG_PEER_DC1-BL1A_Ethernet5\n no shutdown\n channel-group 5 mode active\n!\ninterface Ethernet6\n description MLAG_PEER_DC1-BL1A_Ethernet6\n no shutdown\n channel-group - 5 mode active\n!\ninterface Loopback0\n description EVPN_Overlay_Peering\n no - shutdown\n ip address 192.168.255.11/32\n!\ninterface Loopback1\n description - VTEP_VXLAN_Tunnel_Source\n no shutdown\n ip address 192.168.254.10/32\n!\ninterface - Management1\n description oob_management\n no shutdown\n vrf MGMT\n ip - address 192.168.200.111/24\n!\ninterface Vlan150\n description Tenant_A_WAN_Zone_1\n - \ no shutdown\n vrf Tenant_A_WAN_Zone\n ip address virtual 10.1.40.1/24\n!\ninterface - Vlan250\n description Tenant_B_WAN_Zone_1\n no shutdown\n vrf Tenant_B_WAN_Zone\n - \ ip address virtual 10.2.50.1/24\n!\ninterface Vlan350\n description Tenant_C_WAN_Zone_1\n - \ no shutdown\n vrf Tenant_C_WAN_Zone\n ip address virtual 10.3.50.1/24\n!\ninterface - Vlan3013\n description MLAG_PEER_L3_iBGP: vrf Tenant_A_WAN_Zone\n no shutdown\n - \ mtu 1500\n vrf Tenant_A_WAN_Zone\n ip address 10.255.251.11/31\n!\ninterface - Vlan3020\n description MLAG_PEER_L3_iBGP: vrf Tenant_B_WAN_Zone\n no shutdown\n - \ mtu 1500\n vrf Tenant_B_WAN_Zone\n ip address 10.255.251.11/31\n!\ninterface - Vlan3030\n description MLAG_PEER_L3_iBGP: vrf Tenant_C_WAN_Zone\n no shutdown\n - \ mtu 1500\n vrf Tenant_C_WAN_Zone\n ip address 10.255.251.11/31\n!\ninterface - Vlan4093\n description MLAG_PEER_L3_PEERING\n no shutdown\n mtu 1500\n ip - address 10.255.251.11/31\n!\ninterface Vlan4094\n description MLAG_PEER\n no - shutdown\n mtu 1500\n no autostate\n ip address 10.255.252.11/31\n!\ninterface - Vxlan1\n description DC1-BL1B_VTEP\n vxlan source-interface Loopback1\n vxlan - virtual-router encapsulation mac-address mlag-system-id\n vxlan udp-port 4789\n - \ vxlan vlan 150 vni 10150\n vxlan vlan 250 vni 20250\n vxlan vlan 350 vni - 30350\n vxlan vrf Tenant_A_WAN_Zone vni 14\n vxlan vrf Tenant_B_WAN_Zone vni - 21\n vxlan vrf Tenant_C_WAN_Zone vni 31\n!\nip virtual-router mac-address 00:dc:00:00:00:0a\n!\nip - routing\nno ip routing vrf MGMT\nip routing vrf Tenant_A_WAN_Zone\nip routing - vrf Tenant_B_WAN_Zone\nip routing vrf Tenant_C_WAN_Zone\n!\nip prefix-list PL-LOOPBACKS-EVPN-OVERLAY\n - \ seq 10 permit 192.168.255.0/24 eq 32\n seq 20 permit 192.168.254.0/24 eq - 32\n!\nmlag configuration\n domain-id DC1_BL1\n local-interface Vlan4094\n - \ peer-address 10.255.252.10\n peer-link Port-Channel5\n reload-delay mlag - 300\n reload-delay non-mlag 330\n!\nip route vrf MGMT 0.0.0.0/0 192.168.200.5\n!\nroute-map - RM-CONN-2-BGP permit 10\n match ip address prefix-list PL-LOOPBACKS-EVPN-OVERLAY\n!\nroute-map + 5 mode active\n!\ninterface Loopback0\n description ROUTER_ID\n no shutdown\n + \ ip address 192.168.255.11/32\n!\ninterface Loopback1\n description VTEP_VXLAN_Tunnel_Source\n + \ no shutdown\n ip address 192.168.254.10/32\n!\ninterface Management1\n description + oob_management\n no shutdown\n vrf MGMT\n ip address 192.168.200.111/24\n!\ninterface + Vlan150\n description Tenant_A_WAN_Zone_1\n no shutdown\n vrf Tenant_A_WAN_Zone\n + \ ip address virtual 10.1.40.1/24\n!\ninterface Vlan250\n description Tenant_B_WAN_Zone_1\n + \ no shutdown\n vrf Tenant_B_WAN_Zone\n ip address virtual 10.2.50.1/24\n!\ninterface + Vlan350\n description Tenant_C_WAN_Zone_1\n no shutdown\n vrf Tenant_C_WAN_Zone\n + \ ip address virtual 10.3.50.1/24\n!\ninterface Vlan3013\n description MLAG_PEER_L3_iBGP: + vrf Tenant_A_WAN_Zone\n no shutdown\n mtu 1500\n vrf Tenant_A_WAN_Zone\n + \ ip address 10.255.251.11/31\n!\ninterface Vlan3020\n description MLAG_PEER_L3_iBGP: + vrf Tenant_B_WAN_Zone\n no shutdown\n mtu 1500\n vrf Tenant_B_WAN_Zone\n + \ ip address 10.255.251.11/31\n!\ninterface Vlan3030\n description MLAG_PEER_L3_iBGP: + vrf Tenant_C_WAN_Zone\n no shutdown\n mtu 1500\n vrf Tenant_C_WAN_Zone\n + \ ip address 10.255.251.11/31\n!\ninterface Vlan4093\n description MLAG_PEER_L3_PEERING\n + \ no shutdown\n mtu 1500\n ip address 10.255.251.11/31\n!\ninterface Vlan4094\n + \ description MLAG_PEER\n no shutdown\n mtu 1500\n no autostate\n ip + address 10.255.252.11/31\n!\ninterface Vxlan1\n description DC1-BL1B_VTEP\n + \ vxlan source-interface Loopback1\n vxlan virtual-router encapsulation mac-address + mlag-system-id\n vxlan udp-port 4789\n vxlan vlan 150 vni 10150\n vxlan + vlan 250 vni 20250\n vxlan vlan 350 vni 30350\n vxlan vrf Tenant_A_WAN_Zone + vni 14\n vxlan vrf Tenant_B_WAN_Zone vni 21\n vxlan vrf Tenant_C_WAN_Zone + vni 31\n!\nip virtual-router mac-address 00:dc:00:00:00:0a\n!\nip routing\nno + ip routing vrf MGMT\nip routing vrf Tenant_A_WAN_Zone\nip routing vrf Tenant_B_WAN_Zone\nip + routing vrf Tenant_C_WAN_Zone\n!\nip prefix-list PL-LOOPBACKS-EVPN-OVERLAY\n seq + 10 permit 192.168.255.0/24 eq 32\n seq 20 permit 192.168.254.0/24 eq 32\n!\nmlag + configuration\n domain-id DC1_BL1\n local-interface Vlan4094\n peer-address + 10.255.252.10\n peer-link Port-Channel5\n reload-delay mlag 300\n reload-delay + non-mlag 330\n!\nip route vrf MGMT 0.0.0.0/0 192.168.200.5\n!\nroute-map RM-CONN-2-BGP + permit 10\n match ip address prefix-list PL-LOOPBACKS-EVPN-OVERLAY\n!\nroute-map RM-MLAG-PEER-IN permit 10\n description Make routes learned over MLAG Peer-link less preferred on spines to ensure optimal routing\n set origin incomplete\n!\nrouter bfd\n multihop interval 1200 min-rx 1200 multiplier 3\n!\nrouter bgp 65104\n @@ -347,7 +347,7 @@ cvp_configlets: trunk allowed vlan 110-111,210-211\n switchport mode trunk\n switchport\n!\ninterface Ethernet7\n description server02_SINGLE_NODE_Eth1\n no shutdown\n switchport access vlan 110\n switchport mode access\n switchport\n!\ninterface Loopback0\n - \ description EVPN_Overlay_Peering\n no shutdown\n ip address 192.168.255.5/32\n!\ninterface + \ description ROUTER_ID\n no shutdown\n ip address 192.168.255.5/32\n!\ninterface Loopback1\n description VTEP_VXLAN_Tunnel_Source\n no shutdown\n ip address 192.168.254.5/32\n!\ninterface Management1\n description oob_management\n no shutdown\n vrf MGMT\n ip address 192.168.200.105/24\n!\ninterface Vlan120\n @@ -450,113 +450,113 @@ cvp_configlets: Ethernet7\n description DC1-L2LEAF1A_Ethernet1\n no shutdown\n channel-group 7 mode active\n!\ninterface Ethernet10\n description server01_MLAG_Eth2\n no shutdown\n channel-group 10 mode active\n!\ninterface Loopback0\n description - EVPN_Overlay_Peering\n no shutdown\n ip address 192.168.255.6/32\n!\ninterface - Loopback1\n description VTEP_VXLAN_Tunnel_Source\n no shutdown\n ip address - 192.168.254.6/32\n!\ninterface Loopback100\n description Tenant_A_OP_Zone_VTEP_DIAGNOSTICS\n - \ no shutdown\n vrf Tenant_A_OP_Zone\n ip address 10.255.1.6/32\n!\ninterface - Management1\n description oob_management\n no shutdown\n vrf MGMT\n ip - address 192.168.200.106/24\n!\ninterface Vlan110\n description Tenant_A_OP_Zone_1\n - \ no shutdown\n vrf Tenant_A_OP_Zone\n ip address virtual 10.1.10.1/24\n!\ninterface - Vlan111\n description Tenant_A_OP_Zone_2\n no shutdown\n vrf Tenant_A_OP_Zone\n - \ ip helper-address 1.1.1.1 vrf MGMT source-interface lo100\n ip address virtual - 10.1.11.1/24\n!\ninterface Vlan120\n description Tenant_A_WEB_Zone_1\n no - shutdown\n vrf Tenant_A_WEB_Zone\n ip helper-address 1.1.1.1 vrf TEST source-interface - lo100\n ip address virtual 10.1.20.1/24\n!\ninterface Vlan121\n description - Tenant_A_WEBZone_2\n shutdown\n mtu 1560\n vrf Tenant_A_WEB_Zone\n ip - address virtual 10.1.10.254/24\n!\ninterface Vlan130\n description Tenant_A_APP_Zone_1\n - \ no shutdown\n vrf Tenant_A_APP_Zone\n ip address virtual 10.1.30.1/24\n!\ninterface - Vlan131\n description Tenant_A_APP_Zone_2\n no shutdown\n vrf Tenant_A_APP_Zone\n - \ ip address virtual 10.1.31.1/24\n!\ninterface Vlan140\n description Tenant_A_DB_BZone_1\n - \ no shutdown\n vrf Tenant_A_DB_Zone\n ip address virtual 10.1.40.1/24\n!\ninterface - Vlan141\n description Tenant_A_DB_Zone_2\n no shutdown\n vrf Tenant_A_DB_Zone\n - \ ip address virtual 10.1.41.1/24\n!\ninterface Vlan210\n description Tenant_B_OP_Zone_1\n - \ no shutdown\n vrf Tenant_B_OP_Zone\n ip address virtual 10.2.10.1/24\n!\ninterface - Vlan211\n description Tenant_B_OP_Zone_2\n no shutdown\n vrf Tenant_B_OP_Zone\n - \ ip address virtual 10.2.11.1/24\n!\ninterface Vlan310\n description Tenant_C_OP_Zone_1\n - \ no shutdown\n vrf Tenant_C_OP_Zone\n ip address virtual 10.3.10.1/24\n!\ninterface - Vlan311\n description Tenant_C_OP_Zone_2\n no shutdown\n vrf Tenant_C_OP_Zone\n - \ ip address virtual 10.3.11.1/24\n!\ninterface Vlan3009\n description MLAG_PEER_L3_iBGP: - vrf Tenant_A_OP_Zone\n no shutdown\n mtu 1500\n vrf Tenant_A_OP_Zone\n ip - address 10.255.251.2/31\n!\ninterface Vlan3010\n description MLAG_PEER_L3_iBGP: - vrf Tenant_A_WEB_Zone\n no shutdown\n mtu 1500\n vrf Tenant_A_WEB_Zone\n - \ ip address 10.255.251.2/31\n!\ninterface Vlan3011\n description MLAG_PEER_L3_iBGP: - vrf Tenant_A_APP_Zone\n no shutdown\n mtu 1500\n vrf Tenant_A_APP_Zone\n - \ ip address 10.255.251.2/31\n!\ninterface Vlan3012\n description MLAG_PEER_L3_iBGP: - vrf Tenant_A_DB_Zone\n no shutdown\n mtu 1500\n vrf Tenant_A_DB_Zone\n ip - address 10.255.251.2/31\n!\ninterface Vlan3019\n description MLAG_PEER_L3_iBGP: - vrf Tenant_B_OP_Zone\n no shutdown\n mtu 1500\n vrf Tenant_B_OP_Zone\n ip - address 10.255.251.2/31\n!\ninterface Vlan3029\n description MLAG_PEER_L3_iBGP: - vrf Tenant_C_OP_Zone\n no shutdown\n mtu 1500\n vrf Tenant_C_OP_Zone\n ip - address 10.255.251.2/31\n!\ninterface Vlan4093\n description MLAG_PEER_L3_PEERING\n - \ no shutdown\n mtu 1500\n ip address 10.255.251.2/31\n!\ninterface Vlan4094\n - \ description MLAG_PEER\n no shutdown\n mtu 1500\n no autostate\n ip - address 10.255.252.2/31\n!\ninterface Vxlan1\n description DC1-LEAF2A_VTEP\n - \ vxlan source-interface Loopback1\n vxlan virtual-router encapsulation mac-address - mlag-system-id\n vxlan udp-port 4789\n vxlan vlan 110 vni 10110\n vxlan - vlan 111 vni 50111\n vxlan vlan 120 vni 10120\n vxlan vlan 121 vni 10121\n - \ vxlan vlan 130 vni 10130\n vxlan vlan 131 vni 10131\n vxlan vlan 140 vni - 10140\n vxlan vlan 141 vni 10141\n vxlan vlan 210 vni 20210\n vxlan vlan - 211 vni 20211\n vxlan vlan 310 vni 30310\n vxlan vlan 311 vni 30311\n vxlan - vrf Tenant_A_APP_Zone vni 12\n vxlan vrf Tenant_A_DB_Zone vni 13\n vxlan vrf - Tenant_A_OP_Zone vni 10\n vxlan vrf Tenant_A_WEB_Zone vni 11\n vxlan vrf Tenant_B_OP_Zone - vni 20\n vxlan vrf Tenant_C_OP_Zone vni 30\n!\nip virtual-router mac-address - 00:dc:00:00:00:0a\n!\nip address virtual source-nat vrf Tenant_A_OP_Zone address - 10.255.1.6\n!\nip routing\nno ip routing vrf MGMT\nip routing vrf Tenant_A_APP_Zone\nip - routing vrf Tenant_A_DB_Zone\nip routing vrf Tenant_A_OP_Zone\nip routing vrf - Tenant_A_WEB_Zone\nip routing vrf Tenant_B_OP_Zone\nip routing vrf Tenant_C_OP_Zone\n!\nip - prefix-list PL-LOOPBACKS-EVPN-OVERLAY\n seq 10 permit 192.168.255.0/24 eq 32\n - \ seq 20 permit 192.168.254.0/24 eq 32\n!\nmlag configuration\n domain-id DC1_LEAF2\n - \ local-interface Vlan4094\n peer-address 10.255.252.3\n peer-link Port-Channel5\n - \ reload-delay mlag 300\n reload-delay non-mlag 330\n!\nip route vrf MGMT 0.0.0.0/0 - 192.168.200.5\n!\nroute-map RM-CONN-2-BGP permit 10\n match ip address prefix-list - PL-LOOPBACKS-EVPN-OVERLAY\n!\nroute-map RM-MLAG-PEER-IN permit 10\n description - Make routes learned over MLAG Peer-link less preferred on spines to ensure optimal - routing\n set origin incomplete\n!\nrouter bfd\n multihop interval 1200 min-rx - 1200 multiplier 3\n!\nrouter bgp 65102\n router-id 192.168.255.6\n maximum-paths - 4 ecmp 4\n update wait-install\n no bgp default ipv4-unicast\n distance - bgp 20 200 200\n neighbor EVPN-OVERLAY-PEERS peer group\n neighbor EVPN-OVERLAY-PEERS - update-source Loopback0\n neighbor EVPN-OVERLAY-PEERS bfd\n neighbor EVPN-OVERLAY-PEERS - ebgp-multihop 3\n neighbor EVPN-OVERLAY-PEERS password 7 q+VNViP5i4rVjW1cxFv2wA==\n - \ neighbor EVPN-OVERLAY-PEERS send-community\n neighbor EVPN-OVERLAY-PEERS - maximum-routes 0\n neighbor IPv4-UNDERLAY-PEERS peer group\n neighbor IPv4-UNDERLAY-PEERS - password 7 AQQvKeimxJu+uGQ/yYvv9w==\n neighbor IPv4-UNDERLAY-PEERS send-community\n - \ neighbor IPv4-UNDERLAY-PEERS maximum-routes 12000\n neighbor MLAG-IPv4-UNDERLAY-PEER - peer group\n neighbor MLAG-IPv4-UNDERLAY-PEER remote-as 65102\n neighbor MLAG-IPv4-UNDERLAY-PEER - next-hop-self\n neighbor MLAG-IPv4-UNDERLAY-PEER description DC1-LEAF2B\n neighbor - MLAG-IPv4-UNDERLAY-PEER password 7 vnEaG8gMeQf3d3cN6PktXQ==\n neighbor MLAG-IPv4-UNDERLAY-PEER - send-community\n neighbor MLAG-IPv4-UNDERLAY-PEER maximum-routes 12000\n neighbor - MLAG-IPv4-UNDERLAY-PEER route-map RM-MLAG-PEER-IN in\n neighbor 10.255.251.3 - peer group MLAG-IPv4-UNDERLAY-PEER\n neighbor 10.255.251.3 description DC1-LEAF2B\n - \ neighbor 172.31.255.8 peer group IPv4-UNDERLAY-PEERS\n neighbor 172.31.255.8 - remote-as 65001\n neighbor 172.31.255.8 description DC1-SPINE1_Ethernet2\n neighbor - 172.31.255.10 peer group IPv4-UNDERLAY-PEERS\n neighbor 172.31.255.10 remote-as - 65001\n neighbor 172.31.255.10 description DC1-SPINE2_Ethernet2\n neighbor - 172.31.255.12 peer group IPv4-UNDERLAY-PEERS\n neighbor 172.31.255.12 remote-as - 65001\n neighbor 172.31.255.12 description DC1-SPINE3_Ethernet2\n neighbor - 172.31.255.14 peer group IPv4-UNDERLAY-PEERS\n neighbor 172.31.255.14 remote-as - 65001\n neighbor 172.31.255.14 description DC1-SPINE4_Ethernet2\n neighbor - 192.168.255.1 peer group EVPN-OVERLAY-PEERS\n neighbor 192.168.255.1 remote-as - 65001\n neighbor 192.168.255.1 description DC1-SPINE1\n neighbor 192.168.255.2 - peer group EVPN-OVERLAY-PEERS\n neighbor 192.168.255.2 remote-as 65001\n neighbor - 192.168.255.2 description DC1-SPINE2\n neighbor 192.168.255.3 peer group EVPN-OVERLAY-PEERS\n - \ neighbor 192.168.255.3 remote-as 65001\n neighbor 192.168.255.3 description - DC1-SPINE3\n neighbor 192.168.255.4 peer group EVPN-OVERLAY-PEERS\n neighbor - 192.168.255.4 remote-as 65001\n neighbor 192.168.255.4 description DC1-SPINE4\n - \ redistribute connected route-map RM-CONN-2-BGP\n !\n vlan-aware-bundle - Tenant_A_APP_Zone\n rd 192.168.255.6:12\n route-target both 12:12\n - \ redistribute learned\n vlan 130-131\n !\n vlan-aware-bundle Tenant_A_DB_Zone\n - \ rd 192.168.255.6:13\n route-target both 13:13\n redistribute learned\n - \ vlan 140-141\n !\n vlan-aware-bundle Tenant_A_OP_Zone\n rd 192.168.255.6:10\n - \ route-target both 10:10\n redistribute learned\n vlan 110-111\n - \ !\n vlan-aware-bundle Tenant_A_WEB_Zone\n rd 192.168.255.6:11\n route-target - both 11:11\n redistribute learned\n vlan 120-121\n !\n vlan-aware-bundle - Tenant_B_OP_Zone\n rd 192.168.255.6:20\n route-target both 20:20\n redistribute - learned\n vlan 210-211\n !\n vlan-aware-bundle Tenant_C_OP_Zone\n rd - 192.168.255.6:30\n route-target both 30:30\n redistribute learned\n - \ vlan 310-311\n !\n address-family evpn\n neighbor EVPN-OVERLAY-PEERS - activate\n !\n address-family ipv4\n no neighbor EVPN-OVERLAY-PEERS activate\n - \ neighbor IPv4-UNDERLAY-PEERS activate\n neighbor MLAG-IPv4-UNDERLAY-PEER - activate\n !\n vrf Tenant_A_APP_Zone\n rd 192.168.255.6:12\n route-target + ROUTER_ID\n no shutdown\n ip address 192.168.255.6/32\n!\ninterface Loopback1\n + \ description VTEP_VXLAN_Tunnel_Source\n no shutdown\n ip address 192.168.254.6/32\n!\ninterface + Loopback100\n description Tenant_A_OP_Zone_VTEP_DIAGNOSTICS\n no shutdown\n + \ vrf Tenant_A_OP_Zone\n ip address 10.255.1.6/32\n!\ninterface Management1\n + \ description oob_management\n no shutdown\n vrf MGMT\n ip address 192.168.200.106/24\n!\ninterface + Vlan110\n description Tenant_A_OP_Zone_1\n no shutdown\n vrf Tenant_A_OP_Zone\n + \ ip address virtual 10.1.10.1/24\n!\ninterface Vlan111\n description Tenant_A_OP_Zone_2\n + \ no shutdown\n vrf Tenant_A_OP_Zone\n ip helper-address 1.1.1.1 vrf MGMT + source-interface lo100\n ip address virtual 10.1.11.1/24\n!\ninterface Vlan120\n + \ description Tenant_A_WEB_Zone_1\n no shutdown\n vrf Tenant_A_WEB_Zone\n + \ ip helper-address 1.1.1.1 vrf TEST source-interface lo100\n ip address virtual + 10.1.20.1/24\n!\ninterface Vlan121\n description Tenant_A_WEBZone_2\n shutdown\n + \ mtu 1560\n vrf Tenant_A_WEB_Zone\n ip address virtual 10.1.10.254/24\n!\ninterface + Vlan130\n description Tenant_A_APP_Zone_1\n no shutdown\n vrf Tenant_A_APP_Zone\n + \ ip address virtual 10.1.30.1/24\n!\ninterface Vlan131\n description Tenant_A_APP_Zone_2\n + \ no shutdown\n vrf Tenant_A_APP_Zone\n ip address virtual 10.1.31.1/24\n!\ninterface + Vlan140\n description Tenant_A_DB_BZone_1\n no shutdown\n vrf Tenant_A_DB_Zone\n + \ ip address virtual 10.1.40.1/24\n!\ninterface Vlan141\n description Tenant_A_DB_Zone_2\n + \ no shutdown\n vrf Tenant_A_DB_Zone\n ip address virtual 10.1.41.1/24\n!\ninterface + Vlan210\n description Tenant_B_OP_Zone_1\n no shutdown\n vrf Tenant_B_OP_Zone\n + \ ip address virtual 10.2.10.1/24\n!\ninterface Vlan211\n description Tenant_B_OP_Zone_2\n + \ no shutdown\n vrf Tenant_B_OP_Zone\n ip address virtual 10.2.11.1/24\n!\ninterface + Vlan310\n description Tenant_C_OP_Zone_1\n no shutdown\n vrf Tenant_C_OP_Zone\n + \ ip address virtual 10.3.10.1/24\n!\ninterface Vlan311\n description Tenant_C_OP_Zone_2\n + \ no shutdown\n vrf Tenant_C_OP_Zone\n ip address virtual 10.3.11.1/24\n!\ninterface + Vlan3009\n description MLAG_PEER_L3_iBGP: vrf Tenant_A_OP_Zone\n no shutdown\n + \ mtu 1500\n vrf Tenant_A_OP_Zone\n ip address 10.255.251.2/31\n!\ninterface + Vlan3010\n description MLAG_PEER_L3_iBGP: vrf Tenant_A_WEB_Zone\n no shutdown\n + \ mtu 1500\n vrf Tenant_A_WEB_Zone\n ip address 10.255.251.2/31\n!\ninterface + Vlan3011\n description MLAG_PEER_L3_iBGP: vrf Tenant_A_APP_Zone\n no shutdown\n + \ mtu 1500\n vrf Tenant_A_APP_Zone\n ip address 10.255.251.2/31\n!\ninterface + Vlan3012\n description MLAG_PEER_L3_iBGP: vrf Tenant_A_DB_Zone\n no shutdown\n + \ mtu 1500\n vrf Tenant_A_DB_Zone\n ip address 10.255.251.2/31\n!\ninterface + Vlan3019\n description MLAG_PEER_L3_iBGP: vrf Tenant_B_OP_Zone\n no shutdown\n + \ mtu 1500\n vrf Tenant_B_OP_Zone\n ip address 10.255.251.2/31\n!\ninterface + Vlan3029\n description MLAG_PEER_L3_iBGP: vrf Tenant_C_OP_Zone\n no shutdown\n + \ mtu 1500\n vrf Tenant_C_OP_Zone\n ip address 10.255.251.2/31\n!\ninterface + Vlan4093\n description MLAG_PEER_L3_PEERING\n no shutdown\n mtu 1500\n ip + address 10.255.251.2/31\n!\ninterface Vlan4094\n description MLAG_PEER\n no + shutdown\n mtu 1500\n no autostate\n ip address 10.255.252.2/31\n!\ninterface + Vxlan1\n description DC1-LEAF2A_VTEP\n vxlan source-interface Loopback1\n + \ vxlan virtual-router encapsulation mac-address mlag-system-id\n vxlan udp-port + 4789\n vxlan vlan 110 vni 10110\n vxlan vlan 111 vni 50111\n vxlan vlan + 120 vni 10120\n vxlan vlan 121 vni 10121\n vxlan vlan 130 vni 10130\n vxlan + vlan 131 vni 10131\n vxlan vlan 140 vni 10140\n vxlan vlan 141 vni 10141\n + \ vxlan vlan 210 vni 20210\n vxlan vlan 211 vni 20211\n vxlan vlan 310 vni + 30310\n vxlan vlan 311 vni 30311\n vxlan vrf Tenant_A_APP_Zone vni 12\n vxlan + vrf Tenant_A_DB_Zone vni 13\n vxlan vrf Tenant_A_OP_Zone vni 10\n vxlan vrf + Tenant_A_WEB_Zone vni 11\n vxlan vrf Tenant_B_OP_Zone vni 20\n vxlan vrf Tenant_C_OP_Zone + vni 30\n!\nip virtual-router mac-address 00:dc:00:00:00:0a\n!\nip address virtual + source-nat vrf Tenant_A_OP_Zone address 10.255.1.6\n!\nip routing\nno ip routing + vrf MGMT\nip routing vrf Tenant_A_APP_Zone\nip routing vrf Tenant_A_DB_Zone\nip + routing vrf Tenant_A_OP_Zone\nip routing vrf Tenant_A_WEB_Zone\nip routing vrf + Tenant_B_OP_Zone\nip routing vrf Tenant_C_OP_Zone\n!\nip prefix-list PL-LOOPBACKS-EVPN-OVERLAY\n + \ seq 10 permit 192.168.255.0/24 eq 32\n seq 20 permit 192.168.254.0/24 eq + 32\n!\nmlag configuration\n domain-id DC1_LEAF2\n local-interface Vlan4094\n + \ peer-address 10.255.252.3\n peer-link Port-Channel5\n reload-delay mlag + 300\n reload-delay non-mlag 330\n!\nip route vrf MGMT 0.0.0.0/0 192.168.200.5\n!\nroute-map + RM-CONN-2-BGP permit 10\n match ip address prefix-list PL-LOOPBACKS-EVPN-OVERLAY\n!\nroute-map + RM-MLAG-PEER-IN permit 10\n description Make routes learned over MLAG Peer-link + less preferred on spines to ensure optimal routing\n set origin incomplete\n!\nrouter + bfd\n multihop interval 1200 min-rx 1200 multiplier 3\n!\nrouter bgp 65102\n + \ router-id 192.168.255.6\n maximum-paths 4 ecmp 4\n update wait-install\n + \ no bgp default ipv4-unicast\n distance bgp 20 200 200\n neighbor EVPN-OVERLAY-PEERS + peer group\n neighbor EVPN-OVERLAY-PEERS update-source Loopback0\n neighbor + EVPN-OVERLAY-PEERS bfd\n neighbor EVPN-OVERLAY-PEERS ebgp-multihop 3\n neighbor + EVPN-OVERLAY-PEERS password 7 q+VNViP5i4rVjW1cxFv2wA==\n neighbor EVPN-OVERLAY-PEERS + send-community\n neighbor EVPN-OVERLAY-PEERS maximum-routes 0\n neighbor IPv4-UNDERLAY-PEERS + peer group\n neighbor IPv4-UNDERLAY-PEERS password 7 AQQvKeimxJu+uGQ/yYvv9w==\n + \ neighbor IPv4-UNDERLAY-PEERS send-community\n neighbor IPv4-UNDERLAY-PEERS + maximum-routes 12000\n neighbor MLAG-IPv4-UNDERLAY-PEER peer group\n neighbor + MLAG-IPv4-UNDERLAY-PEER remote-as 65102\n neighbor MLAG-IPv4-UNDERLAY-PEER next-hop-self\n + \ neighbor MLAG-IPv4-UNDERLAY-PEER description DC1-LEAF2B\n neighbor MLAG-IPv4-UNDERLAY-PEER + password 7 vnEaG8gMeQf3d3cN6PktXQ==\n neighbor MLAG-IPv4-UNDERLAY-PEER send-community\n + \ neighbor MLAG-IPv4-UNDERLAY-PEER maximum-routes 12000\n neighbor MLAG-IPv4-UNDERLAY-PEER + route-map RM-MLAG-PEER-IN in\n neighbor 10.255.251.3 peer group MLAG-IPv4-UNDERLAY-PEER\n + \ neighbor 10.255.251.3 description DC1-LEAF2B\n neighbor 172.31.255.8 peer + group IPv4-UNDERLAY-PEERS\n neighbor 172.31.255.8 remote-as 65001\n neighbor + 172.31.255.8 description DC1-SPINE1_Ethernet2\n neighbor 172.31.255.10 peer + group IPv4-UNDERLAY-PEERS\n neighbor 172.31.255.10 remote-as 65001\n neighbor + 172.31.255.10 description DC1-SPINE2_Ethernet2\n neighbor 172.31.255.12 peer + group IPv4-UNDERLAY-PEERS\n neighbor 172.31.255.12 remote-as 65001\n neighbor + 172.31.255.12 description DC1-SPINE3_Ethernet2\n neighbor 172.31.255.14 peer + group IPv4-UNDERLAY-PEERS\n neighbor 172.31.255.14 remote-as 65001\n neighbor + 172.31.255.14 description DC1-SPINE4_Ethernet2\n neighbor 192.168.255.1 peer + group EVPN-OVERLAY-PEERS\n neighbor 192.168.255.1 remote-as 65001\n neighbor + 192.168.255.1 description DC1-SPINE1\n neighbor 192.168.255.2 peer group EVPN-OVERLAY-PEERS\n + \ neighbor 192.168.255.2 remote-as 65001\n neighbor 192.168.255.2 description + DC1-SPINE2\n neighbor 192.168.255.3 peer group EVPN-OVERLAY-PEERS\n neighbor + 192.168.255.3 remote-as 65001\n neighbor 192.168.255.3 description DC1-SPINE3\n + \ neighbor 192.168.255.4 peer group EVPN-OVERLAY-PEERS\n neighbor 192.168.255.4 + remote-as 65001\n neighbor 192.168.255.4 description DC1-SPINE4\n redistribute + connected route-map RM-CONN-2-BGP\n !\n vlan-aware-bundle Tenant_A_APP_Zone\n + \ rd 192.168.255.6:12\n route-target both 12:12\n redistribute learned\n + \ vlan 130-131\n !\n vlan-aware-bundle Tenant_A_DB_Zone\n rd 192.168.255.6:13\n + \ route-target both 13:13\n redistribute learned\n vlan 140-141\n + \ !\n vlan-aware-bundle Tenant_A_OP_Zone\n rd 192.168.255.6:10\n route-target + both 10:10\n redistribute learned\n vlan 110-111\n !\n vlan-aware-bundle + Tenant_A_WEB_Zone\n rd 192.168.255.6:11\n route-target both 11:11\n + \ redistribute learned\n vlan 120-121\n !\n vlan-aware-bundle Tenant_B_OP_Zone\n + \ rd 192.168.255.6:20\n route-target both 20:20\n redistribute learned\n + \ vlan 210-211\n !\n vlan-aware-bundle Tenant_C_OP_Zone\n rd 192.168.255.6:30\n + \ route-target both 30:30\n redistribute learned\n vlan 310-311\n + \ !\n address-family evpn\n neighbor EVPN-OVERLAY-PEERS activate\n !\n + \ address-family ipv4\n no neighbor EVPN-OVERLAY-PEERS activate\n neighbor + IPv4-UNDERLAY-PEERS activate\n neighbor MLAG-IPv4-UNDERLAY-PEER activate\n + \ !\n vrf Tenant_A_APP_Zone\n rd 192.168.255.6:12\n route-target import evpn 12:12\n route-target export evpn 12:12\n router-id 192.168.255.6\n \ update wait-install\n neighbor 10.255.251.3 peer group MLAG-IPv4-UNDERLAY-PEER\n \ neighbor 10.255.251.3 description DC1-LEAF2B\n redistribute connected\n @@ -627,172 +627,171 @@ cvp_configlets: Ethernet7\n description DC1-L2LEAF1A_Ethernet2\n no shutdown\n channel-group 7 mode active\n!\ninterface Ethernet10\n description server01_MLAG_Eth3\n no shutdown\n channel-group 10 mode active\n!\ninterface Loopback0\n description - EVPN_Overlay_Peering\n no shutdown\n ip address 192.168.255.7/32\n!\ninterface - Loopback1\n description VTEP_VXLAN_Tunnel_Source\n no shutdown\n ip address - 192.168.254.6/32\n!\ninterface Loopback100\n description Tenant_A_OP_Zone_VTEP_DIAGNOSTICS\n - \ no shutdown\n vrf Tenant_A_OP_Zone\n ip address 10.255.1.7/32\n!\ninterface - Management1\n description oob_management\n no shutdown\n vrf MGMT\n ip - address 192.168.200.107/24\n!\ninterface Vlan110\n description Tenant_A_OP_Zone_1\n - \ no shutdown\n vrf Tenant_A_OP_Zone\n ip address virtual 10.1.10.1/24\n!\ninterface - Vlan111\n description Tenant_A_OP_Zone_2\n no shutdown\n vrf Tenant_A_OP_Zone\n - \ ip helper-address 1.1.1.1 vrf MGMT source-interface lo100\n ip address virtual - 10.1.11.1/24\n!\ninterface Vlan120\n description Tenant_A_WEB_Zone_1\n no - shutdown\n vrf Tenant_A_WEB_Zone\n ip helper-address 1.1.1.1 vrf TEST source-interface - lo100\n ip address virtual 10.1.20.1/24\n!\ninterface Vlan121\n description - Tenant_A_WEBZone_2\n shutdown\n mtu 1560\n vrf Tenant_A_WEB_Zone\n ip - address virtual 10.1.10.254/24\n!\ninterface Vlan130\n description Tenant_A_APP_Zone_1\n - \ no shutdown\n vrf Tenant_A_APP_Zone\n ip address virtual 10.1.30.1/24\n!\ninterface - Vlan131\n description Tenant_A_APP_Zone_2\n no shutdown\n vrf Tenant_A_APP_Zone\n - \ ip address virtual 10.1.31.1/24\n!\ninterface Vlan140\n description Tenant_A_DB_BZone_1\n - \ no shutdown\n vrf Tenant_A_DB_Zone\n ip address virtual 10.1.40.1/24\n!\ninterface - Vlan141\n description Tenant_A_DB_Zone_2\n no shutdown\n vrf Tenant_A_DB_Zone\n - \ ip address virtual 10.1.41.1/24\n!\ninterface Vlan210\n description Tenant_B_OP_Zone_1\n - \ no shutdown\n vrf Tenant_B_OP_Zone\n ip address virtual 10.2.10.1/24\n!\ninterface - Vlan211\n description Tenant_B_OP_Zone_2\n no shutdown\n vrf Tenant_B_OP_Zone\n - \ ip address virtual 10.2.11.1/24\n!\ninterface Vlan310\n description Tenant_C_OP_Zone_1\n - \ no shutdown\n vrf Tenant_C_OP_Zone\n ip address virtual 10.3.10.1/24\n!\ninterface - Vlan311\n description Tenant_C_OP_Zone_2\n no shutdown\n vrf Tenant_C_OP_Zone\n - \ ip address virtual 10.3.11.1/24\n!\ninterface Vlan3009\n description MLAG_PEER_L3_iBGP: - vrf Tenant_A_OP_Zone\n no shutdown\n mtu 1500\n vrf Tenant_A_OP_Zone\n ip - address 10.255.251.3/31\n!\ninterface Vlan3010\n description MLAG_PEER_L3_iBGP: - vrf Tenant_A_WEB_Zone\n no shutdown\n mtu 1500\n vrf Tenant_A_WEB_Zone\n - \ ip address 10.255.251.3/31\n!\ninterface Vlan3011\n description MLAG_PEER_L3_iBGP: - vrf Tenant_A_APP_Zone\n no shutdown\n mtu 1500\n vrf Tenant_A_APP_Zone\n - \ ip address 10.255.251.3/31\n!\ninterface Vlan3012\n description MLAG_PEER_L3_iBGP: - vrf Tenant_A_DB_Zone\n no shutdown\n mtu 1500\n vrf Tenant_A_DB_Zone\n ip - address 10.255.251.3/31\n!\ninterface Vlan3019\n description MLAG_PEER_L3_iBGP: - vrf Tenant_B_OP_Zone\n no shutdown\n mtu 1500\n vrf Tenant_B_OP_Zone\n ip - address 10.255.251.3/31\n!\ninterface Vlan3029\n description MLAG_PEER_L3_iBGP: - vrf Tenant_C_OP_Zone\n no shutdown\n mtu 1500\n vrf Tenant_C_OP_Zone\n ip - address 10.255.251.3/31\n!\ninterface Vlan4093\n description MLAG_PEER_L3_PEERING\n - \ no shutdown\n mtu 1500\n ip address 10.255.251.3/31\n!\ninterface Vlan4094\n - \ description MLAG_PEER\n no shutdown\n mtu 1500\n no autostate\n ip - address 10.255.252.3/31\n!\ninterface Vxlan1\n description DC1-LEAF2B_VTEP\n - \ vxlan source-interface Loopback1\n vxlan virtual-router encapsulation mac-address - mlag-system-id\n vxlan udp-port 4789\n vxlan vlan 110 vni 10110\n vxlan - vlan 111 vni 50111\n vxlan vlan 120 vni 10120\n vxlan vlan 121 vni 10121\n - \ vxlan vlan 130 vni 10130\n vxlan vlan 131 vni 10131\n vxlan vlan 140 vni - 10140\n vxlan vlan 141 vni 10141\n vxlan vlan 210 vni 20210\n vxlan vlan - 211 vni 20211\n vxlan vlan 310 vni 30310\n vxlan vlan 311 vni 30311\n vxlan - vrf Tenant_A_APP_Zone vni 12\n vxlan vrf Tenant_A_DB_Zone vni 13\n vxlan vrf - Tenant_A_OP_Zone vni 10\n vxlan vrf Tenant_A_WEB_Zone vni 11\n vxlan vrf Tenant_B_OP_Zone - vni 20\n vxlan vrf Tenant_C_OP_Zone vni 30\n!\nip virtual-router mac-address - 00:dc:00:00:00:0a\n!\nip address virtual source-nat vrf Tenant_A_OP_Zone address - 10.255.1.7\n!\nip routing\nno ip routing vrf MGMT\nip routing vrf Tenant_A_APP_Zone\nip - routing vrf Tenant_A_DB_Zone\nip routing vrf Tenant_A_OP_Zone\nip routing vrf - Tenant_A_WEB_Zone\nip routing vrf Tenant_B_OP_Zone\nip routing vrf Tenant_C_OP_Zone\n!\nip - prefix-list PL-LOOPBACKS-EVPN-OVERLAY\n seq 10 permit 192.168.255.0/24 eq 32\n - \ seq 20 permit 192.168.254.0/24 eq 32\n!\nmlag configuration\n domain-id DC1_LEAF2\n - \ local-interface Vlan4094\n peer-address 10.255.252.2\n peer-link Port-Channel5\n - \ reload-delay mlag 300\n reload-delay non-mlag 330\n!\nip route vrf MGMT 0.0.0.0/0 - 192.168.200.5\n!\nroute-map RM-CONN-2-BGP permit 10\n match ip address prefix-list - PL-LOOPBACKS-EVPN-OVERLAY\n!\nroute-map RM-MLAG-PEER-IN permit 10\n description - Make routes learned over MLAG Peer-link less preferred on spines to ensure optimal - routing\n set origin incomplete\n!\nrouter bfd\n multihop interval 1200 min-rx - 1200 multiplier 3\n!\nrouter bgp 65102\n router-id 192.168.255.7\n maximum-paths - 4 ecmp 4\n update wait-install\n no bgp default ipv4-unicast\n distance - bgp 20 200 200\n neighbor EVPN-OVERLAY-PEERS peer group\n neighbor EVPN-OVERLAY-PEERS - update-source Loopback0\n neighbor EVPN-OVERLAY-PEERS bfd\n neighbor EVPN-OVERLAY-PEERS - ebgp-multihop 3\n neighbor EVPN-OVERLAY-PEERS password 7 q+VNViP5i4rVjW1cxFv2wA==\n - \ neighbor EVPN-OVERLAY-PEERS send-community\n neighbor EVPN-OVERLAY-PEERS - maximum-routes 0\n neighbor IPv4-UNDERLAY-PEERS peer group\n neighbor IPv4-UNDERLAY-PEERS - password 7 AQQvKeimxJu+uGQ/yYvv9w==\n neighbor IPv4-UNDERLAY-PEERS send-community\n - \ neighbor IPv4-UNDERLAY-PEERS maximum-routes 12000\n neighbor MLAG-IPv4-UNDERLAY-PEER - peer group\n neighbor MLAG-IPv4-UNDERLAY-PEER remote-as 65102\n neighbor MLAG-IPv4-UNDERLAY-PEER - next-hop-self\n neighbor MLAG-IPv4-UNDERLAY-PEER description DC1-LEAF2A\n neighbor - MLAG-IPv4-UNDERLAY-PEER password 7 vnEaG8gMeQf3d3cN6PktXQ==\n neighbor MLAG-IPv4-UNDERLAY-PEER - send-community\n neighbor MLAG-IPv4-UNDERLAY-PEER maximum-routes 12000\n neighbor - MLAG-IPv4-UNDERLAY-PEER route-map RM-MLAG-PEER-IN in\n neighbor 10.255.251.2 - peer group MLAG-IPv4-UNDERLAY-PEER\n neighbor 10.255.251.2 description DC1-LEAF2A\n - \ neighbor 172.31.255.16 peer group IPv4-UNDERLAY-PEERS\n neighbor 172.31.255.16 - remote-as 65001\n neighbor 172.31.255.16 description DC1-SPINE1_Ethernet3\n - \ neighbor 172.31.255.18 peer group IPv4-UNDERLAY-PEERS\n neighbor 172.31.255.18 - remote-as 65001\n neighbor 172.31.255.18 description DC1-SPINE2_Ethernet3\n - \ neighbor 172.31.255.20 peer group IPv4-UNDERLAY-PEERS\n neighbor 172.31.255.20 - remote-as 65001\n neighbor 172.31.255.20 description DC1-SPINE3_Ethernet3\n - \ neighbor 172.31.255.22 peer group IPv4-UNDERLAY-PEERS\n neighbor 172.31.255.22 - remote-as 65001\n neighbor 172.31.255.22 description DC1-SPINE4_Ethernet3\n - \ neighbor 192.168.255.1 peer group EVPN-OVERLAY-PEERS\n neighbor 192.168.255.1 - remote-as 65001\n neighbor 192.168.255.1 description DC1-SPINE1\n neighbor - 192.168.255.2 peer group EVPN-OVERLAY-PEERS\n neighbor 192.168.255.2 remote-as - 65001\n neighbor 192.168.255.2 description DC1-SPINE2\n neighbor 192.168.255.3 - peer group EVPN-OVERLAY-PEERS\n neighbor 192.168.255.3 remote-as 65001\n neighbor - 192.168.255.3 description DC1-SPINE3\n neighbor 192.168.255.4 peer group EVPN-OVERLAY-PEERS\n - \ neighbor 192.168.255.4 remote-as 65001\n neighbor 192.168.255.4 description - DC1-SPINE4\n redistribute connected route-map RM-CONN-2-BGP\n !\n vlan-aware-bundle - Tenant_A_APP_Zone\n rd 192.168.255.7:12\n route-target both 12:12\n - \ redistribute learned\n vlan 130-131\n !\n vlan-aware-bundle Tenant_A_DB_Zone\n - \ rd 192.168.255.7:13\n route-target both 13:13\n redistribute learned\n - \ vlan 140-141\n !\n vlan-aware-bundle Tenant_A_OP_Zone\n rd 192.168.255.7:10\n - \ route-target both 10:10\n redistribute learned\n vlan 110-111\n - \ !\n vlan-aware-bundle Tenant_A_WEB_Zone\n rd 192.168.255.7:11\n route-target - both 11:11\n redistribute learned\n vlan 120-121\n !\n vlan-aware-bundle - Tenant_B_OP_Zone\n rd 192.168.255.7:20\n route-target both 20:20\n redistribute - learned\n vlan 210-211\n !\n vlan-aware-bundle Tenant_C_OP_Zone\n rd - 192.168.255.7:30\n route-target both 30:30\n redistribute learned\n - \ vlan 310-311\n !\n address-family evpn\n neighbor EVPN-OVERLAY-PEERS - activate\n !\n address-family ipv4\n no neighbor EVPN-OVERLAY-PEERS activate\n - \ neighbor IPv4-UNDERLAY-PEERS activate\n neighbor MLAG-IPv4-UNDERLAY-PEER - activate\n !\n vrf Tenant_A_APP_Zone\n rd 192.168.255.7:12\n route-target - import evpn 12:12\n route-target export evpn 12:12\n router-id 192.168.255.7\n - \ update wait-install\n neighbor 10.255.251.2 peer group MLAG-IPv4-UNDERLAY-PEER\n - \ neighbor 10.255.251.2 description DC1-LEAF2A\n redistribute connected\n - \ !\n vrf Tenant_A_DB_Zone\n rd 192.168.255.7:13\n route-target import - evpn 13:13\n route-target export evpn 13:13\n router-id 192.168.255.7\n - \ update wait-install\n neighbor 10.255.251.2 peer group MLAG-IPv4-UNDERLAY-PEER\n - \ neighbor 10.255.251.2 description DC1-LEAF2A\n redistribute connected\n - \ !\n vrf Tenant_A_OP_Zone\n rd 192.168.255.7:10\n route-target import - evpn 10:10\n route-target export evpn 10:10\n router-id 192.168.255.7\n - \ update wait-install\n neighbor 10.255.251.2 peer group MLAG-IPv4-UNDERLAY-PEER\n - \ neighbor 10.255.251.2 description DC1-LEAF2A\n redistribute connected\n - \ !\n vrf Tenant_A_WEB_Zone\n rd 192.168.255.7:11\n route-target - import evpn 11:11\n route-target export evpn 11:11\n router-id 192.168.255.7\n - \ update wait-install\n neighbor 10.255.251.2 peer group MLAG-IPv4-UNDERLAY-PEER\n - \ neighbor 10.255.251.2 description DC1-LEAF2A\n redistribute connected\n - \ !\n vrf Tenant_B_OP_Zone\n rd 192.168.255.7:20\n route-target import - evpn 20:20\n route-target export evpn 20:20\n router-id 192.168.255.7\n - \ update wait-install\n neighbor 10.255.251.2 peer group MLAG-IPv4-UNDERLAY-PEER\n - \ neighbor 10.255.251.2 description DC1-LEAF2A\n redistribute connected\n - \ !\n vrf Tenant_C_OP_Zone\n rd 192.168.255.7:30\n route-target import - evpn 30:30\n route-target export evpn 30:30\n router-id 192.168.255.7\n - \ update wait-install\n neighbor 10.255.251.2 peer group MLAG-IPv4-UNDERLAY-PEER\n - \ neighbor 10.255.251.2 description DC1-LEAF2A\n redistribute connected\n!\nmanagement - api http-commands\n protocol https\n no shutdown\n !\n vrf MGMT\n no - shutdown\n!\nend\n" - AVD_DC1-SPINE1: "!\ndaemon TerminAttr\n exec /usr/bin/TerminAttr -cvaddr=192.168.200.11:9910 - -cvauth=key,telarista -cvvrf=MGMT -smashexcludes=ale,flexCounter,hardware,kni,pulse,strata - -ingestexclude=/Sysdb/cell/1/agent,/Sysdb/cell/2/agent -taillogs\n no shutdown\n!\nvlan - internal order ascending range 1006 1199\n!\ntransceiver qsfp default-mode 4x10G\n!\nservice - routing protocols model multi-agent\n!\nhostname DC1-SPINE1\nip name-server vrf - MGMT 8.8.8.8\nip name-server vrf MGMT 192.168.200.5\n!\nntp local-interface vrf - MGMT Management1\nntp server vrf MGMT 192.168.200.5 prefer\n!\nspanning-tree mode - none\n!\nno enable password\nno aaa root\n!\nusername admin privilege 15 role - network-admin nopassword\nusername cvpadmin privilege 15 role network-admin secret - sha512 $6$rZKcbIZ7iWGAWTUM$TCgDn1KcavS0s.OV8lacMTUkxTByfzcGlFlYUWroxYuU7M/9bIodhRO7nXGzMweUxvbk8mJmQl8Bh44cRktUj.\n!\nvrf - instance MGMT\n!\ninterface Ethernet1\n description P2P_LINK_TO_DC1-LEAF1A_Ethernet1\n - \ no shutdown\n mtu 1500\n no switchport\n ip address 172.31.255.0/31\n!\ninterface - Ethernet2\n description P2P_LINK_TO_DC1-LEAF2A_Ethernet1\n no shutdown\n mtu - 1500\n no switchport\n ip address 172.31.255.8/31\n!\ninterface Ethernet3\n - \ description P2P_LINK_TO_DC1-LEAF2B_Ethernet1\n no shutdown\n mtu 1500\n - \ no switchport\n ip address 172.31.255.16/31\n!\ninterface Ethernet4\n description - P2P_LINK_TO_DC1-SVC3A_Ethernet1\n shutdown\n mtu 1500\n no switchport\n - \ ip address 172.31.255.24/31\n!\ninterface Ethernet5\n description P2P_LINK_TO_DC1-SVC3B_Ethernet1\n - \ shutdown\n mtu 1500\n no switchport\n ip address 172.31.255.32/31\n!\ninterface - Ethernet6\n description P2P_LINK_TO_DC1-BL1A_Ethernet1\n no shutdown\n mtu - 1500\n no switchport\n ip address 172.31.255.40/31\n!\ninterface Ethernet7\n - \ description P2P_LINK_TO_DC1-BL1B_Ethernet1\n no shutdown\n mtu 1500\n no - switchport\n ip address 172.31.255.48/31\n!\ninterface Loopback0\n description - EVPN_Overlay_Peering\n no shutdown\n ip address 192.168.255.1/32\n!\ninterface - Management1\n description oob_management\n no shutdown\n vrf MGMT\n ip - address 192.168.200.101/24\n!\nip routing\nno ip routing vrf MGMT\n!\nip prefix-list - PL-LOOPBACKS-EVPN-OVERLAY\n seq 10 permit 192.168.255.0/24 eq 32\n!\nip route - vrf MGMT 0.0.0.0/0 192.168.200.5\n!\nroute-map RM-CONN-2-BGP permit 10\n match - ip address prefix-list PL-LOOPBACKS-EVPN-OVERLAY\n!\nrouter bfd\n multihop interval - 1200 min-rx 1200 multiplier 3\n!\nrouter bgp 65001\n router-id 192.168.255.1\n - \ maximum-paths 4 ecmp 4\n update wait-install\n no bgp default ipv4-unicast\n - \ distance bgp 20 200 200\n neighbor EVPN-OVERLAY-PEERS peer group\n neighbor - EVPN-OVERLAY-PEERS next-hop-unchanged\n neighbor EVPN-OVERLAY-PEERS update-source - Loopback0\n neighbor EVPN-OVERLAY-PEERS bfd\n neighbor EVPN-OVERLAY-PEERS + ROUTER_ID\n no shutdown\n ip address 192.168.255.7/32\n!\ninterface Loopback1\n + \ description VTEP_VXLAN_Tunnel_Source\n no shutdown\n ip address 192.168.254.6/32\n!\ninterface + Loopback100\n description Tenant_A_OP_Zone_VTEP_DIAGNOSTICS\n no shutdown\n + \ vrf Tenant_A_OP_Zone\n ip address 10.255.1.7/32\n!\ninterface Management1\n + \ description oob_management\n no shutdown\n vrf MGMT\n ip address 192.168.200.107/24\n!\ninterface + Vlan110\n description Tenant_A_OP_Zone_1\n no shutdown\n vrf Tenant_A_OP_Zone\n + \ ip address virtual 10.1.10.1/24\n!\ninterface Vlan111\n description Tenant_A_OP_Zone_2\n + \ no shutdown\n vrf Tenant_A_OP_Zone\n ip helper-address 1.1.1.1 vrf MGMT + source-interface lo100\n ip address virtual 10.1.11.1/24\n!\ninterface Vlan120\n + \ description Tenant_A_WEB_Zone_1\n no shutdown\n vrf Tenant_A_WEB_Zone\n + \ ip helper-address 1.1.1.1 vrf TEST source-interface lo100\n ip address virtual + 10.1.20.1/24\n!\ninterface Vlan121\n description Tenant_A_WEBZone_2\n shutdown\n + \ mtu 1560\n vrf Tenant_A_WEB_Zone\n ip address virtual 10.1.10.254/24\n!\ninterface + Vlan130\n description Tenant_A_APP_Zone_1\n no shutdown\n vrf Tenant_A_APP_Zone\n + \ ip address virtual 10.1.30.1/24\n!\ninterface Vlan131\n description Tenant_A_APP_Zone_2\n + \ no shutdown\n vrf Tenant_A_APP_Zone\n ip address virtual 10.1.31.1/24\n!\ninterface + Vlan140\n description Tenant_A_DB_BZone_1\n no shutdown\n vrf Tenant_A_DB_Zone\n + \ ip address virtual 10.1.40.1/24\n!\ninterface Vlan141\n description Tenant_A_DB_Zone_2\n + \ no shutdown\n vrf Tenant_A_DB_Zone\n ip address virtual 10.1.41.1/24\n!\ninterface + Vlan210\n description Tenant_B_OP_Zone_1\n no shutdown\n vrf Tenant_B_OP_Zone\n + \ ip address virtual 10.2.10.1/24\n!\ninterface Vlan211\n description Tenant_B_OP_Zone_2\n + \ no shutdown\n vrf Tenant_B_OP_Zone\n ip address virtual 10.2.11.1/24\n!\ninterface + Vlan310\n description Tenant_C_OP_Zone_1\n no shutdown\n vrf Tenant_C_OP_Zone\n + \ ip address virtual 10.3.10.1/24\n!\ninterface Vlan311\n description Tenant_C_OP_Zone_2\n + \ no shutdown\n vrf Tenant_C_OP_Zone\n ip address virtual 10.3.11.1/24\n!\ninterface + Vlan3009\n description MLAG_PEER_L3_iBGP: vrf Tenant_A_OP_Zone\n no shutdown\n + \ mtu 1500\n vrf Tenant_A_OP_Zone\n ip address 10.255.251.3/31\n!\ninterface + Vlan3010\n description MLAG_PEER_L3_iBGP: vrf Tenant_A_WEB_Zone\n no shutdown\n + \ mtu 1500\n vrf Tenant_A_WEB_Zone\n ip address 10.255.251.3/31\n!\ninterface + Vlan3011\n description MLAG_PEER_L3_iBGP: vrf Tenant_A_APP_Zone\n no shutdown\n + \ mtu 1500\n vrf Tenant_A_APP_Zone\n ip address 10.255.251.3/31\n!\ninterface + Vlan3012\n description MLAG_PEER_L3_iBGP: vrf Tenant_A_DB_Zone\n no shutdown\n + \ mtu 1500\n vrf Tenant_A_DB_Zone\n ip address 10.255.251.3/31\n!\ninterface + Vlan3019\n description MLAG_PEER_L3_iBGP: vrf Tenant_B_OP_Zone\n no shutdown\n + \ mtu 1500\n vrf Tenant_B_OP_Zone\n ip address 10.255.251.3/31\n!\ninterface + Vlan3029\n description MLAG_PEER_L3_iBGP: vrf Tenant_C_OP_Zone\n no shutdown\n + \ mtu 1500\n vrf Tenant_C_OP_Zone\n ip address 10.255.251.3/31\n!\ninterface + Vlan4093\n description MLAG_PEER_L3_PEERING\n no shutdown\n mtu 1500\n ip + address 10.255.251.3/31\n!\ninterface Vlan4094\n description MLAG_PEER\n no + shutdown\n mtu 1500\n no autostate\n ip address 10.255.252.3/31\n!\ninterface + Vxlan1\n description DC1-LEAF2B_VTEP\n vxlan source-interface Loopback1\n + \ vxlan virtual-router encapsulation mac-address mlag-system-id\n vxlan udp-port + 4789\n vxlan vlan 110 vni 10110\n vxlan vlan 111 vni 50111\n vxlan vlan + 120 vni 10120\n vxlan vlan 121 vni 10121\n vxlan vlan 130 vni 10130\n vxlan + vlan 131 vni 10131\n vxlan vlan 140 vni 10140\n vxlan vlan 141 vni 10141\n + \ vxlan vlan 210 vni 20210\n vxlan vlan 211 vni 20211\n vxlan vlan 310 vni + 30310\n vxlan vlan 311 vni 30311\n vxlan vrf Tenant_A_APP_Zone vni 12\n vxlan + vrf Tenant_A_DB_Zone vni 13\n vxlan vrf Tenant_A_OP_Zone vni 10\n vxlan vrf + Tenant_A_WEB_Zone vni 11\n vxlan vrf Tenant_B_OP_Zone vni 20\n vxlan vrf Tenant_C_OP_Zone + vni 30\n!\nip virtual-router mac-address 00:dc:00:00:00:0a\n!\nip address virtual + source-nat vrf Tenant_A_OP_Zone address 10.255.1.7\n!\nip routing\nno ip routing + vrf MGMT\nip routing vrf Tenant_A_APP_Zone\nip routing vrf Tenant_A_DB_Zone\nip + routing vrf Tenant_A_OP_Zone\nip routing vrf Tenant_A_WEB_Zone\nip routing vrf + Tenant_B_OP_Zone\nip routing vrf Tenant_C_OP_Zone\n!\nip prefix-list PL-LOOPBACKS-EVPN-OVERLAY\n + \ seq 10 permit 192.168.255.0/24 eq 32\n seq 20 permit 192.168.254.0/24 eq + 32\n!\nmlag configuration\n domain-id DC1_LEAF2\n local-interface Vlan4094\n + \ peer-address 10.255.252.2\n peer-link Port-Channel5\n reload-delay mlag + 300\n reload-delay non-mlag 330\n!\nip route vrf MGMT 0.0.0.0/0 192.168.200.5\n!\nroute-map + RM-CONN-2-BGP permit 10\n match ip address prefix-list PL-LOOPBACKS-EVPN-OVERLAY\n!\nroute-map + RM-MLAG-PEER-IN permit 10\n description Make routes learned over MLAG Peer-link + less preferred on spines to ensure optimal routing\n set origin incomplete\n!\nrouter + bfd\n multihop interval 1200 min-rx 1200 multiplier 3\n!\nrouter bgp 65102\n + \ router-id 192.168.255.7\n maximum-paths 4 ecmp 4\n update wait-install\n + \ no bgp default ipv4-unicast\n distance bgp 20 200 200\n neighbor EVPN-OVERLAY-PEERS + peer group\n neighbor EVPN-OVERLAY-PEERS update-source Loopback0\n neighbor + EVPN-OVERLAY-PEERS bfd\n neighbor EVPN-OVERLAY-PEERS ebgp-multihop 3\n neighbor + EVPN-OVERLAY-PEERS password 7 q+VNViP5i4rVjW1cxFv2wA==\n neighbor EVPN-OVERLAY-PEERS + send-community\n neighbor EVPN-OVERLAY-PEERS maximum-routes 0\n neighbor IPv4-UNDERLAY-PEERS + peer group\n neighbor IPv4-UNDERLAY-PEERS password 7 AQQvKeimxJu+uGQ/yYvv9w==\n + \ neighbor IPv4-UNDERLAY-PEERS send-community\n neighbor IPv4-UNDERLAY-PEERS + maximum-routes 12000\n neighbor MLAG-IPv4-UNDERLAY-PEER peer group\n neighbor + MLAG-IPv4-UNDERLAY-PEER remote-as 65102\n neighbor MLAG-IPv4-UNDERLAY-PEER next-hop-self\n + \ neighbor MLAG-IPv4-UNDERLAY-PEER description DC1-LEAF2A\n neighbor MLAG-IPv4-UNDERLAY-PEER + password 7 vnEaG8gMeQf3d3cN6PktXQ==\n neighbor MLAG-IPv4-UNDERLAY-PEER send-community\n + \ neighbor MLAG-IPv4-UNDERLAY-PEER maximum-routes 12000\n neighbor MLAG-IPv4-UNDERLAY-PEER + route-map RM-MLAG-PEER-IN in\n neighbor 10.255.251.2 peer group MLAG-IPv4-UNDERLAY-PEER\n + \ neighbor 10.255.251.2 description DC1-LEAF2A\n neighbor 172.31.255.16 peer + group IPv4-UNDERLAY-PEERS\n neighbor 172.31.255.16 remote-as 65001\n neighbor + 172.31.255.16 description DC1-SPINE1_Ethernet3\n neighbor 172.31.255.18 peer + group IPv4-UNDERLAY-PEERS\n neighbor 172.31.255.18 remote-as 65001\n neighbor + 172.31.255.18 description DC1-SPINE2_Ethernet3\n neighbor 172.31.255.20 peer + group IPv4-UNDERLAY-PEERS\n neighbor 172.31.255.20 remote-as 65001\n neighbor + 172.31.255.20 description DC1-SPINE3_Ethernet3\n neighbor 172.31.255.22 peer + group IPv4-UNDERLAY-PEERS\n neighbor 172.31.255.22 remote-as 65001\n neighbor + 172.31.255.22 description DC1-SPINE4_Ethernet3\n neighbor 192.168.255.1 peer + group EVPN-OVERLAY-PEERS\n neighbor 192.168.255.1 remote-as 65001\n neighbor + 192.168.255.1 description DC1-SPINE1\n neighbor 192.168.255.2 peer group EVPN-OVERLAY-PEERS\n + \ neighbor 192.168.255.2 remote-as 65001\n neighbor 192.168.255.2 description + DC1-SPINE2\n neighbor 192.168.255.3 peer group EVPN-OVERLAY-PEERS\n neighbor + 192.168.255.3 remote-as 65001\n neighbor 192.168.255.3 description DC1-SPINE3\n + \ neighbor 192.168.255.4 peer group EVPN-OVERLAY-PEERS\n neighbor 192.168.255.4 + remote-as 65001\n neighbor 192.168.255.4 description DC1-SPINE4\n redistribute + connected route-map RM-CONN-2-BGP\n !\n vlan-aware-bundle Tenant_A_APP_Zone\n + \ rd 192.168.255.7:12\n route-target both 12:12\n redistribute learned\n + \ vlan 130-131\n !\n vlan-aware-bundle Tenant_A_DB_Zone\n rd 192.168.255.7:13\n + \ route-target both 13:13\n redistribute learned\n vlan 140-141\n + \ !\n vlan-aware-bundle Tenant_A_OP_Zone\n rd 192.168.255.7:10\n route-target + both 10:10\n redistribute learned\n vlan 110-111\n !\n vlan-aware-bundle + Tenant_A_WEB_Zone\n rd 192.168.255.7:11\n route-target both 11:11\n + \ redistribute learned\n vlan 120-121\n !\n vlan-aware-bundle Tenant_B_OP_Zone\n + \ rd 192.168.255.7:20\n route-target both 20:20\n redistribute learned\n + \ vlan 210-211\n !\n vlan-aware-bundle Tenant_C_OP_Zone\n rd 192.168.255.7:30\n + \ route-target both 30:30\n redistribute learned\n vlan 310-311\n + \ !\n address-family evpn\n neighbor EVPN-OVERLAY-PEERS activate\n !\n + \ address-family ipv4\n no neighbor EVPN-OVERLAY-PEERS activate\n neighbor + IPv4-UNDERLAY-PEERS activate\n neighbor MLAG-IPv4-UNDERLAY-PEER activate\n + \ !\n vrf Tenant_A_APP_Zone\n rd 192.168.255.7:12\n route-target + import evpn 12:12\n route-target export evpn 12:12\n router-id 192.168.255.7\n + \ update wait-install\n neighbor 10.255.251.2 peer group MLAG-IPv4-UNDERLAY-PEER\n + \ neighbor 10.255.251.2 description DC1-LEAF2A\n redistribute connected\n + \ !\n vrf Tenant_A_DB_Zone\n rd 192.168.255.7:13\n route-target import + evpn 13:13\n route-target export evpn 13:13\n router-id 192.168.255.7\n + \ update wait-install\n neighbor 10.255.251.2 peer group MLAG-IPv4-UNDERLAY-PEER\n + \ neighbor 10.255.251.2 description DC1-LEAF2A\n redistribute connected\n + \ !\n vrf Tenant_A_OP_Zone\n rd 192.168.255.7:10\n route-target import + evpn 10:10\n route-target export evpn 10:10\n router-id 192.168.255.7\n + \ update wait-install\n neighbor 10.255.251.2 peer group MLAG-IPv4-UNDERLAY-PEER\n + \ neighbor 10.255.251.2 description DC1-LEAF2A\n redistribute connected\n + \ !\n vrf Tenant_A_WEB_Zone\n rd 192.168.255.7:11\n route-target + import evpn 11:11\n route-target export evpn 11:11\n router-id 192.168.255.7\n + \ update wait-install\n neighbor 10.255.251.2 peer group MLAG-IPv4-UNDERLAY-PEER\n + \ neighbor 10.255.251.2 description DC1-LEAF2A\n redistribute connected\n + \ !\n vrf Tenant_B_OP_Zone\n rd 192.168.255.7:20\n route-target import + evpn 20:20\n route-target export evpn 20:20\n router-id 192.168.255.7\n + \ update wait-install\n neighbor 10.255.251.2 peer group MLAG-IPv4-UNDERLAY-PEER\n + \ neighbor 10.255.251.2 description DC1-LEAF2A\n redistribute connected\n + \ !\n vrf Tenant_C_OP_Zone\n rd 192.168.255.7:30\n route-target import + evpn 30:30\n route-target export evpn 30:30\n router-id 192.168.255.7\n + \ update wait-install\n neighbor 10.255.251.2 peer group MLAG-IPv4-UNDERLAY-PEER\n + \ neighbor 10.255.251.2 description DC1-LEAF2A\n redistribute connected\n!\nmanagement + api http-commands\n protocol https\n no shutdown\n !\n vrf MGMT\n no + shutdown\n!\nend\n" + AVD_DC1-SPINE1: "!\ndaemon TerminAttr\n exec /usr/bin/TerminAttr -cvaddr=192.168.200.11:9910 + -cvauth=key,telarista -cvvrf=MGMT -smashexcludes=ale,flexCounter,hardware,kni,pulse,strata + -ingestexclude=/Sysdb/cell/1/agent,/Sysdb/cell/2/agent -taillogs\n no shutdown\n!\nvlan + internal order ascending range 1006 1199\n!\ntransceiver qsfp default-mode 4x10G\n!\nservice + routing protocols model multi-agent\n!\nhostname DC1-SPINE1\nip name-server vrf + MGMT 8.8.8.8\nip name-server vrf MGMT 192.168.200.5\n!\nntp local-interface vrf + MGMT Management1\nntp server vrf MGMT 192.168.200.5 prefer\n!\nspanning-tree mode + none\n!\nno enable password\nno aaa root\n!\nusername admin privilege 15 role + network-admin nopassword\nusername cvpadmin privilege 15 role network-admin secret + sha512 $6$rZKcbIZ7iWGAWTUM$TCgDn1KcavS0s.OV8lacMTUkxTByfzcGlFlYUWroxYuU7M/9bIodhRO7nXGzMweUxvbk8mJmQl8Bh44cRktUj.\n!\nvrf + instance MGMT\n!\ninterface Ethernet1\n description P2P_LINK_TO_DC1-LEAF1A_Ethernet1\n + \ no shutdown\n mtu 1500\n no switchport\n ip address 172.31.255.0/31\n!\ninterface + Ethernet2\n description P2P_LINK_TO_DC1-LEAF2A_Ethernet1\n no shutdown\n mtu + 1500\n no switchport\n ip address 172.31.255.8/31\n!\ninterface Ethernet3\n + \ description P2P_LINK_TO_DC1-LEAF2B_Ethernet1\n no shutdown\n mtu 1500\n + \ no switchport\n ip address 172.31.255.16/31\n!\ninterface Ethernet4\n description + P2P_LINK_TO_DC1-SVC3A_Ethernet1\n shutdown\n mtu 1500\n no switchport\n + \ ip address 172.31.255.24/31\n!\ninterface Ethernet5\n description P2P_LINK_TO_DC1-SVC3B_Ethernet1\n + \ shutdown\n mtu 1500\n no switchport\n ip address 172.31.255.32/31\n!\ninterface + Ethernet6\n description P2P_LINK_TO_DC1-BL1A_Ethernet1\n no shutdown\n mtu + 1500\n no switchport\n ip address 172.31.255.40/31\n!\ninterface Ethernet7\n + \ description P2P_LINK_TO_DC1-BL1B_Ethernet1\n no shutdown\n mtu 1500\n no + switchport\n ip address 172.31.255.48/31\n!\ninterface Loopback0\n description + ROUTER_ID\n no shutdown\n ip address 192.168.255.1/32\n!\ninterface Management1\n + \ description oob_management\n no shutdown\n vrf MGMT\n ip address 192.168.200.101/24\n!\nip + routing\nno ip routing vrf MGMT\n!\nip prefix-list PL-LOOPBACKS-EVPN-OVERLAY\n + \ seq 10 permit 192.168.255.0/24 eq 32\n!\nip route vrf MGMT 0.0.0.0/0 192.168.200.5\n!\nroute-map + RM-CONN-2-BGP permit 10\n match ip address prefix-list PL-LOOPBACKS-EVPN-OVERLAY\n!\nrouter + bfd\n multihop interval 1200 min-rx 1200 multiplier 3\n!\nrouter bgp 65001\n + \ router-id 192.168.255.1\n maximum-paths 4 ecmp 4\n update wait-install\n + \ no bgp default ipv4-unicast\n distance bgp 20 200 200\n neighbor EVPN-OVERLAY-PEERS + peer group\n neighbor EVPN-OVERLAY-PEERS next-hop-unchanged\n neighbor EVPN-OVERLAY-PEERS + update-source Loopback0\n neighbor EVPN-OVERLAY-PEERS bfd\n neighbor EVPN-OVERLAY-PEERS ebgp-multihop 3\n neighbor EVPN-OVERLAY-PEERS password 7 q+VNViP5i4rVjW1cxFv2wA==\n \ neighbor EVPN-OVERLAY-PEERS send-community\n neighbor EVPN-OVERLAY-PEERS maximum-routes 0\n neighbor IPv4-UNDERLAY-PEERS peer group\n neighbor IPv4-UNDERLAY-PEERS @@ -853,17 +852,16 @@ cvp_configlets: 1500\n no switchport\n ip address 172.31.255.42/31\n!\ninterface Ethernet7\n \ description P2P_LINK_TO_DC1-BL1B_Ethernet2\n no shutdown\n mtu 1500\n no switchport\n ip address 172.31.255.50/31\n!\ninterface Loopback0\n description - EVPN_Overlay_Peering\n no shutdown\n ip address 192.168.255.2/32\n!\ninterface - Management1\n description oob_management\n no shutdown\n vrf MGMT\n ip - address 192.168.200.102/24\n!\nip routing\nno ip routing vrf MGMT\n!\nip prefix-list - PL-LOOPBACKS-EVPN-OVERLAY\n seq 10 permit 192.168.255.0/24 eq 32\n!\nip route - vrf MGMT 0.0.0.0/0 192.168.200.5\n!\nroute-map RM-CONN-2-BGP permit 10\n match - ip address prefix-list PL-LOOPBACKS-EVPN-OVERLAY\n!\nrouter bfd\n multihop interval - 1200 min-rx 1200 multiplier 3\n!\nrouter bgp 65001\n router-id 192.168.255.2\n - \ maximum-paths 4 ecmp 4\n update wait-install\n no bgp default ipv4-unicast\n - \ distance bgp 20 200 200\n neighbor EVPN-OVERLAY-PEERS peer group\n neighbor - EVPN-OVERLAY-PEERS next-hop-unchanged\n neighbor EVPN-OVERLAY-PEERS update-source - Loopback0\n neighbor EVPN-OVERLAY-PEERS bfd\n neighbor EVPN-OVERLAY-PEERS + ROUTER_ID\n no shutdown\n ip address 192.168.255.2/32\n!\ninterface Management1\n + \ description oob_management\n no shutdown\n vrf MGMT\n ip address 192.168.200.102/24\n!\nip + routing\nno ip routing vrf MGMT\n!\nip prefix-list PL-LOOPBACKS-EVPN-OVERLAY\n + \ seq 10 permit 192.168.255.0/24 eq 32\n!\nip route vrf MGMT 0.0.0.0/0 192.168.200.5\n!\nroute-map + RM-CONN-2-BGP permit 10\n match ip address prefix-list PL-LOOPBACKS-EVPN-OVERLAY\n!\nrouter + bfd\n multihop interval 1200 min-rx 1200 multiplier 3\n!\nrouter bgp 65001\n + \ router-id 192.168.255.2\n maximum-paths 4 ecmp 4\n update wait-install\n + \ no bgp default ipv4-unicast\n distance bgp 20 200 200\n neighbor EVPN-OVERLAY-PEERS + peer group\n neighbor EVPN-OVERLAY-PEERS next-hop-unchanged\n neighbor EVPN-OVERLAY-PEERS + update-source Loopback0\n neighbor EVPN-OVERLAY-PEERS bfd\n neighbor EVPN-OVERLAY-PEERS ebgp-multihop 3\n neighbor EVPN-OVERLAY-PEERS password 7 q+VNViP5i4rVjW1cxFv2wA==\n \ neighbor EVPN-OVERLAY-PEERS send-community\n neighbor EVPN-OVERLAY-PEERS maximum-routes 0\n neighbor IPv4-UNDERLAY-PEERS peer group\n neighbor IPv4-UNDERLAY-PEERS @@ -925,17 +923,16 @@ cvp_configlets: 1500\n no switchport\n ip address 172.31.255.44/31\n!\ninterface Ethernet7\n \ description P2P_LINK_TO_DC1-BL1B_Ethernet3\n no shutdown\n mtu 1500\n no switchport\n ip address 172.31.255.52/31\n!\ninterface Loopback0\n description - EVPN_Overlay_Peering\n no shutdown\n ip address 192.168.255.3/32\n!\ninterface - Management1\n description oob_management\n no shutdown\n vrf MGMT\n ip - address 192.168.200.103/24\n!\nip routing\nno ip routing vrf MGMT\n!\nip prefix-list - PL-LOOPBACKS-EVPN-OVERLAY\n seq 10 permit 192.168.255.0/24 eq 32\n!\nip route - vrf MGMT 0.0.0.0/0 192.168.200.5\n!\nroute-map RM-CONN-2-BGP permit 10\n match - ip address prefix-list PL-LOOPBACKS-EVPN-OVERLAY\n!\nrouter bfd\n multihop interval - 1200 min-rx 1200 multiplier 3\n!\nrouter bgp 65001\n router-id 192.168.255.3\n - \ maximum-paths 4 ecmp 4\n update wait-install\n no bgp default ipv4-unicast\n - \ distance bgp 20 200 200\n neighbor EVPN-OVERLAY-PEERS peer group\n neighbor - EVPN-OVERLAY-PEERS next-hop-unchanged\n neighbor EVPN-OVERLAY-PEERS update-source - Loopback0\n neighbor EVPN-OVERLAY-PEERS bfd\n neighbor EVPN-OVERLAY-PEERS + ROUTER_ID\n no shutdown\n ip address 192.168.255.3/32\n!\ninterface Management1\n + \ description oob_management\n no shutdown\n vrf MGMT\n ip address 192.168.200.103/24\n!\nip + routing\nno ip routing vrf MGMT\n!\nip prefix-list PL-LOOPBACKS-EVPN-OVERLAY\n + \ seq 10 permit 192.168.255.0/24 eq 32\n!\nip route vrf MGMT 0.0.0.0/0 192.168.200.5\n!\nroute-map + RM-CONN-2-BGP permit 10\n match ip address prefix-list PL-LOOPBACKS-EVPN-OVERLAY\n!\nrouter + bfd\n multihop interval 1200 min-rx 1200 multiplier 3\n!\nrouter bgp 65001\n + \ router-id 192.168.255.3\n maximum-paths 4 ecmp 4\n update wait-install\n + \ no bgp default ipv4-unicast\n distance bgp 20 200 200\n neighbor EVPN-OVERLAY-PEERS + peer group\n neighbor EVPN-OVERLAY-PEERS next-hop-unchanged\n neighbor EVPN-OVERLAY-PEERS + update-source Loopback0\n neighbor EVPN-OVERLAY-PEERS bfd\n neighbor EVPN-OVERLAY-PEERS ebgp-multihop 3\n neighbor EVPN-OVERLAY-PEERS password 7 q+VNViP5i4rVjW1cxFv2wA==\n \ neighbor EVPN-OVERLAY-PEERS send-community\n neighbor EVPN-OVERLAY-PEERS maximum-routes 0\n neighbor IPv4-UNDERLAY-PEERS peer group\n neighbor IPv4-UNDERLAY-PEERS @@ -997,17 +994,16 @@ cvp_configlets: 1500\n no switchport\n ip address 172.31.255.46/31\n!\ninterface Ethernet7\n \ description P2P_LINK_TO_DC1-BL1B_Ethernet4\n no shutdown\n mtu 1500\n no switchport\n ip address 172.31.255.54/31\n!\ninterface Loopback0\n description - EVPN_Overlay_Peering\n no shutdown\n ip address 192.168.255.4/32\n!\ninterface - Management1\n description oob_management\n no shutdown\n vrf MGMT\n ip - address 192.168.200.104/24\n!\nip routing\nno ip routing vrf MGMT\n!\nip prefix-list - PL-LOOPBACKS-EVPN-OVERLAY\n seq 10 permit 192.168.255.0/24 eq 32\n!\nip route - vrf MGMT 0.0.0.0/0 192.168.200.5\n!\nroute-map RM-CONN-2-BGP permit 10\n match - ip address prefix-list PL-LOOPBACKS-EVPN-OVERLAY\n!\nrouter bfd\n multihop interval - 1200 min-rx 1200 multiplier 3\n!\nrouter bgp 65001\n router-id 192.168.255.4\n - \ maximum-paths 4 ecmp 4\n update wait-install\n no bgp default ipv4-unicast\n - \ distance bgp 20 200 200\n neighbor EVPN-OVERLAY-PEERS peer group\n neighbor - EVPN-OVERLAY-PEERS next-hop-unchanged\n neighbor EVPN-OVERLAY-PEERS update-source - Loopback0\n neighbor EVPN-OVERLAY-PEERS bfd\n neighbor EVPN-OVERLAY-PEERS + ROUTER_ID\n no shutdown\n ip address 192.168.255.4/32\n!\ninterface Management1\n + \ description oob_management\n no shutdown\n vrf MGMT\n ip address 192.168.200.104/24\n!\nip + routing\nno ip routing vrf MGMT\n!\nip prefix-list PL-LOOPBACKS-EVPN-OVERLAY\n + \ seq 10 permit 192.168.255.0/24 eq 32\n!\nip route vrf MGMT 0.0.0.0/0 192.168.200.5\n!\nroute-map + RM-CONN-2-BGP permit 10\n match ip address prefix-list PL-LOOPBACKS-EVPN-OVERLAY\n!\nrouter + bfd\n multihop interval 1200 min-rx 1200 multiplier 3\n!\nrouter bgp 65001\n + \ router-id 192.168.255.4\n maximum-paths 4 ecmp 4\n update wait-install\n + \ no bgp default ipv4-unicast\n distance bgp 20 200 200\n neighbor EVPN-OVERLAY-PEERS + peer group\n neighbor EVPN-OVERLAY-PEERS next-hop-unchanged\n neighbor EVPN-OVERLAY-PEERS + update-source Loopback0\n neighbor EVPN-OVERLAY-PEERS bfd\n neighbor EVPN-OVERLAY-PEERS ebgp-multihop 3\n neighbor EVPN-OVERLAY-PEERS password 7 q+VNViP5i4rVjW1cxFv2wA==\n \ neighbor EVPN-OVERLAY-PEERS send-community\n neighbor EVPN-OVERLAY-PEERS maximum-routes 0\n neighbor IPv4-UNDERLAY-PEERS peer group\n neighbor IPv4-UNDERLAY-PEERS @@ -1100,225 +1096,12 @@ cvp_configlets: 7 mode active\n!\ninterface Ethernet8\n description DC1-L2LEAF2B_Ethernet1\n \ no shutdown\n channel-group 7 mode active\n!\ninterface Ethernet10\n description server03_ESI_Eth1\n no shutdown\n channel-group 10 mode active\n!\ninterface - Loopback0\n description EVPN_Overlay_Peering\n no shutdown\n ip address - 192.168.255.8/32\n!\ninterface Loopback1\n description VTEP_VXLAN_Tunnel_Source\n - \ no shutdown\n ip address 192.168.254.8/32\n!\ninterface Loopback100\n description - Tenant_A_OP_Zone_VTEP_DIAGNOSTICS\n no shutdown\n vrf Tenant_A_OP_Zone\n ip - address 10.255.1.8/32\n!\ninterface Management1\n description oob_management\n - \ no shutdown\n vrf MGMT\n ip address 192.168.200.108/24\n!\ninterface Vlan110\n - \ description Tenant_A_OP_Zone_1\n no shutdown\n vrf Tenant_A_OP_Zone\n ip - address virtual 10.1.10.1/24\n!\ninterface Vlan111\n description Tenant_A_OP_Zone_2\n - \ no shutdown\n vrf Tenant_A_OP_Zone\n ip helper-address 1.1.1.1 vrf MGMT - source-interface lo100\n ip address virtual 10.1.11.1/24\n!\ninterface Vlan120\n - \ description Tenant_A_WEB_Zone_1\n no shutdown\n vrf Tenant_A_WEB_Zone\n - \ ip helper-address 1.1.1.1 vrf TEST source-interface lo100\n ip address virtual - 10.1.20.1/24\n!\ninterface Vlan121\n description Tenant_A_WEBZone_2\n shutdown\n - \ mtu 1560\n vrf Tenant_A_WEB_Zone\n ip address virtual 10.1.10.254/24\n!\ninterface - Vlan130\n description Tenant_A_APP_Zone_1\n no shutdown\n vrf Tenant_A_APP_Zone\n - \ ip address virtual 10.1.30.1/24\n!\ninterface Vlan131\n description Tenant_A_APP_Zone_2\n - \ no shutdown\n vrf Tenant_A_APP_Zone\n ip address virtual 10.1.31.1/24\n!\ninterface - Vlan140\n description Tenant_A_DB_BZone_1\n no shutdown\n vrf Tenant_A_DB_Zone\n - \ ip address virtual 10.1.40.1/24\n!\ninterface Vlan141\n description Tenant_A_DB_Zone_2\n - \ no shutdown\n vrf Tenant_A_DB_Zone\n ip address virtual 10.1.41.1/24\n!\ninterface - Vlan150\n description Tenant_A_WAN_Zone_1\n no shutdown\n vrf Tenant_A_WAN_Zone\n - \ ip address virtual 10.1.40.1/24\n!\ninterface Vlan210\n description Tenant_B_OP_Zone_1\n - \ no shutdown\n vrf Tenant_B_OP_Zone\n ip address virtual 10.2.10.1/24\n!\ninterface - Vlan211\n description Tenant_B_OP_Zone_2\n no shutdown\n vrf Tenant_B_OP_Zone\n - \ ip address virtual 10.2.11.1/24\n!\ninterface Vlan250\n description Tenant_B_WAN_Zone_1\n - \ no shutdown\n vrf Tenant_B_WAN_Zone\n ip address virtual 10.2.50.1/24\n!\ninterface - Vlan310\n description Tenant_C_OP_Zone_1\n no shutdown\n vrf Tenant_C_OP_Zone\n - \ ip address virtual 10.3.10.1/24\n!\ninterface Vlan311\n description Tenant_C_OP_Zone_2\n - \ no shutdown\n vrf Tenant_C_OP_Zone\n ip address virtual 10.3.11.1/24\n!\ninterface - Vlan350\n description Tenant_C_WAN_Zone_1\n no shutdown\n vrf Tenant_C_WAN_Zone\n - \ ip address virtual 10.3.50.1/24\n!\ninterface Vlan3009\n description MLAG_PEER_L3_iBGP: - vrf Tenant_A_OP_Zone\n no shutdown\n mtu 1500\n vrf Tenant_A_OP_Zone\n ip - address 10.255.251.6/31\n!\ninterface Vlan3010\n description MLAG_PEER_L3_iBGP: - vrf Tenant_A_WEB_Zone\n no shutdown\n mtu 1500\n vrf Tenant_A_WEB_Zone\n - \ ip address 10.255.251.6/31\n!\ninterface Vlan3011\n description MLAG_PEER_L3_iBGP: - vrf Tenant_A_APP_Zone\n no shutdown\n mtu 1500\n vrf Tenant_A_APP_Zone\n - \ ip address 10.255.251.6/31\n!\ninterface Vlan3012\n description MLAG_PEER_L3_iBGP: - vrf Tenant_A_DB_Zone\n no shutdown\n mtu 1500\n vrf Tenant_A_DB_Zone\n ip - address 10.255.251.6/31\n!\ninterface Vlan3013\n description MLAG_PEER_L3_iBGP: - vrf Tenant_A_WAN_Zone\n no shutdown\n mtu 1500\n vrf Tenant_A_WAN_Zone\n - \ ip address 10.255.251.6/31\n!\ninterface Vlan3019\n description MLAG_PEER_L3_iBGP: - vrf Tenant_B_OP_Zone\n no shutdown\n mtu 1500\n vrf Tenant_B_OP_Zone\n ip - address 10.255.251.6/31\n!\ninterface Vlan3020\n description MLAG_PEER_L3_iBGP: - vrf Tenant_B_WAN_Zone\n no shutdown\n mtu 1500\n vrf Tenant_B_WAN_Zone\n - \ ip address 10.255.251.6/31\n!\ninterface Vlan3029\n description MLAG_PEER_L3_iBGP: - vrf Tenant_C_OP_Zone\n no shutdown\n mtu 1500\n vrf Tenant_C_OP_Zone\n ip - address 10.255.251.6/31\n!\ninterface Vlan3030\n description MLAG_PEER_L3_iBGP: - vrf Tenant_C_WAN_Zone\n no shutdown\n mtu 1500\n vrf Tenant_C_WAN_Zone\n - \ ip address 10.255.251.6/31\n!\ninterface Vlan4093\n description MLAG_PEER_L3_PEERING\n - \ no shutdown\n mtu 1500\n ip address 10.255.251.6/31\n!\ninterface Vlan4094\n - \ description MLAG_PEER\n no shutdown\n mtu 1500\n no autostate\n ip - address 10.255.252.6/31\n!\ninterface Vxlan1\n description DC1-SVC3A_VTEP\n - \ vxlan source-interface Loopback1\n vxlan virtual-router encapsulation mac-address - mlag-system-id\n vxlan udp-port 4789\n vxlan vlan 110 vni 10110\n vxlan - vlan 111 vni 50111\n vxlan vlan 120 vni 10120\n vxlan vlan 121 vni 10121\n - \ vxlan vlan 130 vni 10130\n vxlan vlan 131 vni 10131\n vxlan vlan 140 vni - 10140\n vxlan vlan 141 vni 10141\n vxlan vlan 150 vni 10150\n vxlan vlan - 210 vni 20210\n vxlan vlan 211 vni 20211\n vxlan vlan 250 vni 20250\n vxlan - vlan 310 vni 30310\n vxlan vlan 311 vni 30311\n vxlan vlan 350 vni 30350\n - \ vxlan vrf Tenant_A_APP_Zone vni 12\n vxlan vrf Tenant_A_DB_Zone vni 13\n - \ vxlan vrf Tenant_A_OP_Zone vni 10\n vxlan vrf Tenant_A_WAN_Zone vni 14\n - \ vxlan vrf Tenant_A_WEB_Zone vni 11\n vxlan vrf Tenant_B_OP_Zone vni 20\n - \ vxlan vrf Tenant_B_WAN_Zone vni 21\n vxlan vrf Tenant_C_OP_Zone vni 30\n - \ vxlan vrf Tenant_C_WAN_Zone vni 31\n!\nip virtual-router mac-address 00:dc:00:00:00:0a\n!\nip - address virtual source-nat vrf Tenant_A_OP_Zone address 10.255.1.8\n!\nip routing\nno - ip routing vrf MGMT\nip routing vrf Tenant_A_APP_Zone\nip routing vrf Tenant_A_DB_Zone\nip - routing vrf Tenant_A_OP_Zone\nip routing vrf Tenant_A_WAN_Zone\nip routing vrf - Tenant_A_WEB_Zone\nip routing vrf Tenant_B_OP_Zone\nip routing vrf Tenant_B_WAN_Zone\nip - routing vrf Tenant_C_OP_Zone\nip routing vrf Tenant_C_WAN_Zone\n!\nip prefix-list - PL-LOOPBACKS-EVPN-OVERLAY\n seq 10 permit 192.168.255.0/24 eq 32\n seq 20 - permit 192.168.254.0/24 eq 32\n!\nmlag configuration\n domain-id DC1_SVC3\n - \ local-interface Vlan4094\n peer-address 10.255.252.7\n peer-link Port-Channel5\n - \ reload-delay mlag 300\n reload-delay non-mlag 330\n!\nip route vrf MGMT 0.0.0.0/0 - 192.168.200.5\n!\nroute-map RM-CONN-2-BGP permit 10\n match ip address prefix-list - PL-LOOPBACKS-EVPN-OVERLAY\n!\nroute-map RM-MLAG-PEER-IN permit 10\n description - Make routes learned over MLAG Peer-link less preferred on spines to ensure optimal - routing\n set origin incomplete\n!\nrouter bfd\n multihop interval 1200 min-rx - 1200 multiplier 3\n!\nrouter bgp 65103\n router-id 192.168.255.8\n maximum-paths - 4 ecmp 4\n update wait-install\n no bgp default ipv4-unicast\n distance - bgp 20 200 200\n neighbor EVPN-OVERLAY-PEERS peer group\n neighbor EVPN-OVERLAY-PEERS - update-source Loopback0\n neighbor EVPN-OVERLAY-PEERS bfd\n neighbor EVPN-OVERLAY-PEERS - ebgp-multihop 3\n neighbor EVPN-OVERLAY-PEERS password 7 q+VNViP5i4rVjW1cxFv2wA==\n - \ neighbor EVPN-OVERLAY-PEERS send-community\n neighbor EVPN-OVERLAY-PEERS - maximum-routes 0\n neighbor IPv4-UNDERLAY-PEERS peer group\n neighbor IPv4-UNDERLAY-PEERS - password 7 AQQvKeimxJu+uGQ/yYvv9w==\n neighbor IPv4-UNDERLAY-PEERS send-community\n - \ neighbor IPv4-UNDERLAY-PEERS maximum-routes 12000\n neighbor MLAG-IPv4-UNDERLAY-PEER - peer group\n neighbor MLAG-IPv4-UNDERLAY-PEER remote-as 65103\n neighbor MLAG-IPv4-UNDERLAY-PEER - next-hop-self\n neighbor MLAG-IPv4-UNDERLAY-PEER description DC1-SVC3B\n neighbor - MLAG-IPv4-UNDERLAY-PEER password 7 vnEaG8gMeQf3d3cN6PktXQ==\n neighbor MLAG-IPv4-UNDERLAY-PEER - send-community\n neighbor MLAG-IPv4-UNDERLAY-PEER maximum-routes 12000\n neighbor - MLAG-IPv4-UNDERLAY-PEER route-map RM-MLAG-PEER-IN in\n neighbor 10.255.251.7 - peer group MLAG-IPv4-UNDERLAY-PEER\n neighbor 10.255.251.7 description DC1-SVC3B\n - \ neighbor 172.31.255.24 peer group IPv4-UNDERLAY-PEERS\n neighbor 172.31.255.24 - remote-as 65001\n neighbor 172.31.255.24 description DC1-SPINE1_Ethernet4\n - \ neighbor 172.31.255.26 peer group IPv4-UNDERLAY-PEERS\n neighbor 172.31.255.26 - remote-as 65001\n neighbor 172.31.255.26 description DC1-SPINE2_Ethernet4\n - \ neighbor 172.31.255.28 peer group IPv4-UNDERLAY-PEERS\n neighbor 172.31.255.28 - remote-as 65001\n neighbor 172.31.255.28 description DC1-SPINE3_Ethernet4\n - \ neighbor 172.31.255.30 peer group IPv4-UNDERLAY-PEERS\n neighbor 172.31.255.30 - remote-as 65001\n neighbor 172.31.255.30 description DC1-SPINE4_Ethernet4\n - \ neighbor 192.168.255.1 peer group EVPN-OVERLAY-PEERS\n neighbor 192.168.255.1 - remote-as 65001\n neighbor 192.168.255.1 description DC1-SPINE1\n neighbor - 192.168.255.2 peer group EVPN-OVERLAY-PEERS\n neighbor 192.168.255.2 remote-as - 65001\n neighbor 192.168.255.2 description DC1-SPINE2\n neighbor 192.168.255.3 - peer group EVPN-OVERLAY-PEERS\n neighbor 192.168.255.3 remote-as 65001\n neighbor - 192.168.255.3 description DC1-SPINE3\n neighbor 192.168.255.4 peer group EVPN-OVERLAY-PEERS\n - \ neighbor 192.168.255.4 remote-as 65001\n neighbor 192.168.255.4 description - DC1-SPINE4\n redistribute connected route-map RM-CONN-2-BGP\n !\n vlan-aware-bundle - Tenant_A_APP_Zone\n rd 192.168.255.8:12\n route-target both 12:12\n - \ redistribute learned\n vlan 130-131\n !\n vlan-aware-bundle Tenant_A_DB_Zone\n - \ rd 192.168.255.8:13\n route-target both 13:13\n redistribute learned\n - \ vlan 140-141\n !\n vlan-aware-bundle Tenant_A_OP_Zone\n rd 192.168.255.8:10\n - \ route-target both 10:10\n redistribute learned\n vlan 110-111\n - \ !\n vlan-aware-bundle Tenant_A_WAN_Zone\n rd 192.168.255.8:14\n route-target - both 14:14\n redistribute learned\n vlan 150\n !\n vlan-aware-bundle - Tenant_A_WEB_Zone\n rd 192.168.255.8:11\n route-target both 11:11\n - \ redistribute learned\n vlan 120-121\n !\n vlan-aware-bundle Tenant_B_OP_Zone\n - \ rd 192.168.255.8:20\n route-target both 20:20\n redistribute learned\n - \ vlan 210-211\n !\n vlan-aware-bundle Tenant_B_WAN_Zone\n rd 192.168.255.8:21\n - \ route-target both 21:21\n redistribute learned\n vlan 250\n !\n - \ vlan-aware-bundle Tenant_C_OP_Zone\n rd 192.168.255.8:30\n route-target - both 30:30\n redistribute learned\n vlan 310-311\n !\n vlan-aware-bundle - Tenant_C_WAN_Zone\n rd 192.168.255.8:31\n route-target both 31:31\n - \ redistribute learned\n vlan 350\n !\n address-family evpn\n neighbor - EVPN-OVERLAY-PEERS activate\n !\n address-family ipv4\n no neighbor EVPN-OVERLAY-PEERS - activate\n neighbor IPv4-UNDERLAY-PEERS activate\n neighbor MLAG-IPv4-UNDERLAY-PEER - activate\n !\n vrf Tenant_A_APP_Zone\n rd 192.168.255.8:12\n route-target - import evpn 12:12\n route-target export evpn 12:12\n router-id 192.168.255.8\n - \ update wait-install\n neighbor 10.255.251.7 peer group MLAG-IPv4-UNDERLAY-PEER\n - \ neighbor 10.255.251.7 description DC1-SVC3B\n redistribute connected\n - \ !\n vrf Tenant_A_DB_Zone\n rd 192.168.255.8:13\n route-target import - evpn 13:13\n route-target export evpn 13:13\n router-id 192.168.255.8\n - \ update wait-install\n neighbor 10.255.251.7 peer group MLAG-IPv4-UNDERLAY-PEER\n - \ neighbor 10.255.251.7 description DC1-SVC3B\n redistribute connected\n - \ !\n vrf Tenant_A_OP_Zone\n rd 192.168.255.8:10\n route-target import - evpn 10:10\n route-target export evpn 10:10\n router-id 192.168.255.8\n - \ update wait-install\n neighbor 10.255.251.7 peer group MLAG-IPv4-UNDERLAY-PEER\n - \ neighbor 10.255.251.7 description DC1-SVC3B\n redistribute connected\n - \ !\n vrf Tenant_A_WAN_Zone\n rd 192.168.255.8:14\n route-target - import evpn 14:14\n route-target export evpn 14:14\n router-id 192.168.255.8\n - \ update wait-install\n neighbor 10.255.251.7 peer group MLAG-IPv4-UNDERLAY-PEER\n - \ neighbor 10.255.251.7 description DC1-SVC3B\n redistribute connected\n - \ !\n vrf Tenant_A_WEB_Zone\n rd 192.168.255.8:11\n route-target - import evpn 11:11\n route-target export evpn 11:11\n router-id 192.168.255.8\n - \ update wait-install\n neighbor 10.255.251.7 peer group MLAG-IPv4-UNDERLAY-PEER\n - \ neighbor 10.255.251.7 description DC1-SVC3B\n redistribute connected\n - \ !\n vrf Tenant_B_OP_Zone\n rd 192.168.255.8:20\n route-target import - evpn 20:20\n route-target export evpn 20:20\n router-id 192.168.255.8\n - \ update wait-install\n neighbor 10.255.251.7 peer group MLAG-IPv4-UNDERLAY-PEER\n - \ neighbor 10.255.251.7 description DC1-SVC3B\n redistribute connected\n - \ !\n vrf Tenant_B_WAN_Zone\n rd 192.168.255.8:21\n route-target - import evpn 21:21\n route-target export evpn 21:21\n router-id 192.168.255.8\n - \ update wait-install\n neighbor 10.255.251.7 peer group MLAG-IPv4-UNDERLAY-PEER\n - \ neighbor 10.255.251.7 description DC1-SVC3B\n redistribute connected\n - \ !\n vrf Tenant_C_OP_Zone\n rd 192.168.255.8:30\n route-target import - evpn 30:30\n route-target export evpn 30:30\n router-id 192.168.255.8\n - \ update wait-install\n neighbor 10.255.251.7 peer group MLAG-IPv4-UNDERLAY-PEER\n - \ neighbor 10.255.251.7 description DC1-SVC3B\n redistribute connected\n - \ !\n vrf Tenant_C_WAN_Zone\n rd 192.168.255.8:31\n route-target - import evpn 31:31\n route-target export evpn 31:31\n router-id 192.168.255.8\n - \ update wait-install\n neighbor 10.255.251.7 peer group MLAG-IPv4-UNDERLAY-PEER\n - \ neighbor 10.255.251.7 description DC1-SVC3B\n redistribute connected\n!\nmanagement - api http-commands\n protocol https\n no shutdown\n !\n vrf MGMT\n no - shutdown\n!\nend\n" - AVD_DC1-SVC3B: "!\ndaemon TerminAttr\n exec /usr/bin/TerminAttr -cvaddr=192.168.200.11:9910 - -cvauth=key,telarista -cvvrf=MGMT -smashexcludes=ale,flexCounter,hardware,kni,pulse,strata - -ingestexclude=/Sysdb/cell/1/agent,/Sysdb/cell/2/agent -taillogs\n no shutdown\n!\nvlan - internal order ascending range 1006 1199\n!\nno ip igmp snooping vlan 120\n!\ntransceiver - qsfp default-mode 4x10G\n!\nservice routing protocols model multi-agent\n!\nhostname - DC1-SVC3B\nip name-server vrf MGMT 8.8.8.8\nip name-server vrf MGMT 192.168.200.5\n!\nntp - local-interface vrf MGMT Management1\nntp server vrf MGMT 192.168.200.5 prefer\n!\nspanning-tree - mode mstp\nno spanning-tree vlan-id 4093-4094\nspanning-tree mst 0 priority 4096\n!\nno - enable password\nno aaa root\n!\nusername admin privilege 15 role network-admin - nopassword\nusername cvpadmin privilege 15 role network-admin secret sha512 $6$rZKcbIZ7iWGAWTUM$TCgDn1KcavS0s.OV8lacMTUkxTByfzcGlFlYUWroxYuU7M/9bIodhRO7nXGzMweUxvbk8mJmQl8Bh44cRktUj.\n!\nvlan - 110\n name Tenant_A_OP_Zone_1\n!\nvlan 111\n name Tenant_A_OP_Zone_2\n!\nvlan - 120\n name Tenant_A_WEB_Zone_1\n!\nvlan 121\n name Tenant_A_WEBZone_2\n!\nvlan - 130\n name Tenant_A_APP_Zone_1\n!\nvlan 131\n name Tenant_A_APP_Zone_2\n!\nvlan - 140\n name Tenant_A_DB_BZone_1\n!\nvlan 141\n name Tenant_A_DB_Zone_2\n!\nvlan - 150\n name Tenant_A_WAN_Zone_1\n!\nvlan 210\n name Tenant_B_OP_Zone_1\n!\nvlan - 211\n name Tenant_B_OP_Zone_2\n!\nvlan 250\n name Tenant_B_WAN_Zone_1\n!\nvlan - 310\n name Tenant_C_OP_Zone_1\n!\nvlan 311\n name Tenant_C_OP_Zone_2\n!\nvlan - 350\n name Tenant_C_WAN_Zone_1\n!\nvlan 3009\n name MLAG_iBGP_Tenant_A_OP_Zone\n - \ trunk group LEAF_PEER_L3\n!\nvlan 3010\n name MLAG_iBGP_Tenant_A_WEB_Zone\n - \ trunk group LEAF_PEER_L3\n!\nvlan 3011\n name MLAG_iBGP_Tenant_A_APP_Zone\n - \ trunk group LEAF_PEER_L3\n!\nvlan 3012\n name MLAG_iBGP_Tenant_A_DB_Zone\n - \ trunk group LEAF_PEER_L3\n!\nvlan 3013\n name MLAG_iBGP_Tenant_A_WAN_Zone\n - \ trunk group LEAF_PEER_L3\n!\nvlan 3019\n name MLAG_iBGP_Tenant_B_OP_Zone\n - \ trunk group LEAF_PEER_L3\n!\nvlan 3020\n name MLAG_iBGP_Tenant_B_WAN_Zone\n - \ trunk group LEAF_PEER_L3\n!\nvlan 3029\n name MLAG_iBGP_Tenant_C_OP_Zone\n - \ trunk group LEAF_PEER_L3\n!\nvlan 3030\n name MLAG_iBGP_Tenant_C_WAN_Zone\n - \ trunk group LEAF_PEER_L3\n!\nvlan 4093\n name LEAF_PEER_L3\n trunk group - LEAF_PEER_L3\n!\nvlan 4094\n name MLAG_PEER\n trunk group MLAG\n!\nvrf instance - MGMT\n!\nvrf instance Tenant_A_APP_Zone\n!\nvrf instance Tenant_A_DB_Zone\n!\nvrf - instance Tenant_A_OP_Zone\n!\nvrf instance Tenant_A_WAN_Zone\n!\nvrf instance - Tenant_A_WEB_Zone\n!\nvrf instance Tenant_B_OP_Zone\n!\nvrf instance Tenant_B_WAN_Zone\n!\nvrf - instance Tenant_C_OP_Zone\n!\nvrf instance Tenant_C_WAN_Zone\n!\ninterface Port-Channel5\n - \ description MLAG_PEER_DC1-SVC3A_Po5\n no shutdown\n switchport\n switchport - mode trunk\n switchport trunk group LEAF_PEER_L3\n switchport trunk group - MLAG\n!\ninterface Port-Channel7\n description DC1_L2LEAF2_Po1\n no shutdown\n - \ switchport\n switchport trunk allowed vlan 110-111,120-121,130-131,140-141,150,210-211,250,310-311,350\n - \ switchport mode trunk\n mlag 7\n!\ninterface Ethernet1\n description P2P_LINK_TO_DC1-SPINE1_Ethernet5\n - \ no shutdown\n mtu 1500\n no switchport\n ip address 172.31.255.33/31\n!\ninterface - Ethernet2\n description P2P_LINK_TO_DC1-SPINE2_Ethernet5\n no shutdown\n mtu - 1500\n no switchport\n ip address 172.31.255.35/31\n!\ninterface Ethernet3\n - \ description P2P_LINK_TO_DC1-SPINE3_Ethernet5\n no shutdown\n mtu 1500\n - \ no switchport\n ip address 172.31.255.37/31\n!\ninterface Ethernet4\n description - P2P_LINK_TO_DC1-SPINE4_Ethernet5\n no shutdown\n mtu 1500\n no switchport\n - \ ip address 172.31.255.39/31\n!\ninterface Ethernet5\n description MLAG_PEER_DC1-SVC3A_Ethernet5\n - \ no shutdown\n channel-group 5 mode active\n!\ninterface Ethernet6\n description - MLAG_PEER_DC1-SVC3A_Ethernet6\n no shutdown\n channel-group 5 mode active\n!\ninterface - Ethernet7\n description DC1-L2LEAF2A_Ethernet2\n no shutdown\n channel-group - 7 mode active\n!\ninterface Ethernet8\n description DC1-L2LEAF2B_Ethernet2\n - \ no shutdown\n channel-group 7 mode active\n!\ninterface Loopback0\n description - EVPN_Overlay_Peering\n no shutdown\n ip address 192.168.255.9/32\n!\ninterface + Loopback0\n description ROUTER_ID\n no shutdown\n ip address 192.168.255.8/32\n!\ninterface Loopback1\n description VTEP_VXLAN_Tunnel_Source\n no shutdown\n ip address 192.168.254.8/32\n!\ninterface Loopback100\n description Tenant_A_OP_Zone_VTEP_DIAGNOSTICS\n - \ no shutdown\n vrf Tenant_A_OP_Zone\n ip address 10.255.1.9/32\n!\ninterface + \ no shutdown\n vrf Tenant_A_OP_Zone\n ip address 10.255.1.8/32\n!\ninterface Management1\n description oob_management\n no shutdown\n vrf MGMT\n ip - address 192.168.200.109/24\n!\ninterface Vlan110\n description Tenant_A_OP_Zone_1\n + address 192.168.200.108/24\n!\ninterface Vlan110\n description Tenant_A_OP_Zone_1\n \ no shutdown\n vrf Tenant_A_OP_Zone\n ip address virtual 10.1.10.1/24\n!\ninterface Vlan111\n description Tenant_A_OP_Zone_2\n no shutdown\n vrf Tenant_A_OP_Zone\n \ ip helper-address 1.1.1.1 vrf MGMT source-interface lo100\n ip address virtual @@ -1344,27 +1127,27 @@ cvp_configlets: \ ip address virtual 10.3.11.1/24\n!\ninterface Vlan350\n description Tenant_C_WAN_Zone_1\n \ no shutdown\n vrf Tenant_C_WAN_Zone\n ip address virtual 10.3.50.1/24\n!\ninterface Vlan3009\n description MLAG_PEER_L3_iBGP: vrf Tenant_A_OP_Zone\n no shutdown\n - \ mtu 1500\n vrf Tenant_A_OP_Zone\n ip address 10.255.251.7/31\n!\ninterface + \ mtu 1500\n vrf Tenant_A_OP_Zone\n ip address 10.255.251.6/31\n!\ninterface Vlan3010\n description MLAG_PEER_L3_iBGP: vrf Tenant_A_WEB_Zone\n no shutdown\n - \ mtu 1500\n vrf Tenant_A_WEB_Zone\n ip address 10.255.251.7/31\n!\ninterface + \ mtu 1500\n vrf Tenant_A_WEB_Zone\n ip address 10.255.251.6/31\n!\ninterface Vlan3011\n description MLAG_PEER_L3_iBGP: vrf Tenant_A_APP_Zone\n no shutdown\n - \ mtu 1500\n vrf Tenant_A_APP_Zone\n ip address 10.255.251.7/31\n!\ninterface + \ mtu 1500\n vrf Tenant_A_APP_Zone\n ip address 10.255.251.6/31\n!\ninterface Vlan3012\n description MLAG_PEER_L3_iBGP: vrf Tenant_A_DB_Zone\n no shutdown\n - \ mtu 1500\n vrf Tenant_A_DB_Zone\n ip address 10.255.251.7/31\n!\ninterface + \ mtu 1500\n vrf Tenant_A_DB_Zone\n ip address 10.255.251.6/31\n!\ninterface Vlan3013\n description MLAG_PEER_L3_iBGP: vrf Tenant_A_WAN_Zone\n no shutdown\n - \ mtu 1500\n vrf Tenant_A_WAN_Zone\n ip address 10.255.251.7/31\n!\ninterface + \ mtu 1500\n vrf Tenant_A_WAN_Zone\n ip address 10.255.251.6/31\n!\ninterface Vlan3019\n description MLAG_PEER_L3_iBGP: vrf Tenant_B_OP_Zone\n no shutdown\n - \ mtu 1500\n vrf Tenant_B_OP_Zone\n ip address 10.255.251.7/31\n!\ninterface + \ mtu 1500\n vrf Tenant_B_OP_Zone\n ip address 10.255.251.6/31\n!\ninterface Vlan3020\n description MLAG_PEER_L3_iBGP: vrf Tenant_B_WAN_Zone\n no shutdown\n - \ mtu 1500\n vrf Tenant_B_WAN_Zone\n ip address 10.255.251.7/31\n!\ninterface + \ mtu 1500\n vrf Tenant_B_WAN_Zone\n ip address 10.255.251.6/31\n!\ninterface Vlan3029\n description MLAG_PEER_L3_iBGP: vrf Tenant_C_OP_Zone\n no shutdown\n - \ mtu 1500\n vrf Tenant_C_OP_Zone\n ip address 10.255.251.7/31\n!\ninterface + \ mtu 1500\n vrf Tenant_C_OP_Zone\n ip address 10.255.251.6/31\n!\ninterface Vlan3030\n description MLAG_PEER_L3_iBGP: vrf Tenant_C_WAN_Zone\n no shutdown\n - \ mtu 1500\n vrf Tenant_C_WAN_Zone\n ip address 10.255.251.7/31\n!\ninterface + \ mtu 1500\n vrf Tenant_C_WAN_Zone\n ip address 10.255.251.6/31\n!\ninterface Vlan4093\n description MLAG_PEER_L3_PEERING\n no shutdown\n mtu 1500\n ip - address 10.255.251.7/31\n!\ninterface Vlan4094\n description MLAG_PEER\n no - shutdown\n mtu 1500\n no autostate\n ip address 10.255.252.7/31\n!\ninterface - Vxlan1\n description DC1-SVC3B_VTEP\n vxlan source-interface Loopback1\n vxlan + address 10.255.251.6/31\n!\ninterface Vlan4094\n description MLAG_PEER\n no + shutdown\n mtu 1500\n no autostate\n ip address 10.255.252.6/31\n!\ninterface + Vxlan1\n description DC1-SVC3A_VTEP\n vxlan source-interface Loopback1\n vxlan virtual-router encapsulation mac-address mlag-system-id\n vxlan udp-port 4789\n \ vxlan vlan 110 vni 10110\n vxlan vlan 111 vni 50111\n vxlan vlan 120 vni 10120\n vxlan vlan 121 vni 10121\n vxlan vlan 130 vni 10130\n vxlan vlan @@ -1377,20 +1160,20 @@ cvp_configlets: Tenant_B_OP_Zone vni 20\n vxlan vrf Tenant_B_WAN_Zone vni 21\n vxlan vrf Tenant_C_OP_Zone vni 30\n vxlan vrf Tenant_C_WAN_Zone vni 31\n!\nip virtual-router mac-address 00:dc:00:00:00:0a\n!\nip address virtual source-nat vrf Tenant_A_OP_Zone address - 10.255.1.9\n!\nip routing\nno ip routing vrf MGMT\nip routing vrf Tenant_A_APP_Zone\nip + 10.255.1.8\n!\nip routing\nno ip routing vrf MGMT\nip routing vrf Tenant_A_APP_Zone\nip routing vrf Tenant_A_DB_Zone\nip routing vrf Tenant_A_OP_Zone\nip routing vrf Tenant_A_WAN_Zone\nip routing vrf Tenant_A_WEB_Zone\nip routing vrf Tenant_B_OP_Zone\nip routing vrf Tenant_B_WAN_Zone\nip routing vrf Tenant_C_OP_Zone\nip routing vrf Tenant_C_WAN_Zone\n!\nip prefix-list PL-LOOPBACKS-EVPN-OVERLAY\n seq 10 permit 192.168.255.0/24 eq 32\n seq 20 permit 192.168.254.0/24 eq 32\n!\nmlag configuration\n - \ domain-id DC1_SVC3\n local-interface Vlan4094\n peer-address 10.255.252.6\n + \ domain-id DC1_SVC3\n local-interface Vlan4094\n peer-address 10.255.252.7\n \ peer-link Port-Channel5\n reload-delay mlag 300\n reload-delay non-mlag 330\n!\nip route vrf MGMT 0.0.0.0/0 192.168.200.5\n!\nroute-map RM-CONN-2-BGP permit 10\n match ip address prefix-list PL-LOOPBACKS-EVPN-OVERLAY\n!\nroute-map RM-MLAG-PEER-IN permit 10\n description Make routes learned over MLAG Peer-link less preferred on spines to ensure optimal routing\n set origin incomplete\n!\nrouter bfd\n multihop interval 1200 min-rx 1200 multiplier 3\n!\nrouter bgp 65103\n - \ router-id 192.168.255.9\n maximum-paths 4 ecmp 4\n update wait-install\n + \ router-id 192.168.255.8\n maximum-paths 4 ecmp 4\n update wait-install\n \ no bgp default ipv4-unicast\n distance bgp 20 200 200\n neighbor EVPN-OVERLAY-PEERS peer group\n neighbor EVPN-OVERLAY-PEERS update-source Loopback0\n neighbor EVPN-OVERLAY-PEERS bfd\n neighbor EVPN-OVERLAY-PEERS ebgp-multihop 3\n neighbor @@ -1400,19 +1183,19 @@ cvp_configlets: \ neighbor IPv4-UNDERLAY-PEERS send-community\n neighbor IPv4-UNDERLAY-PEERS maximum-routes 12000\n neighbor MLAG-IPv4-UNDERLAY-PEER peer group\n neighbor MLAG-IPv4-UNDERLAY-PEER remote-as 65103\n neighbor MLAG-IPv4-UNDERLAY-PEER next-hop-self\n - \ neighbor MLAG-IPv4-UNDERLAY-PEER description DC1-SVC3A\n neighbor MLAG-IPv4-UNDERLAY-PEER + \ neighbor MLAG-IPv4-UNDERLAY-PEER description DC1-SVC3B\n neighbor MLAG-IPv4-UNDERLAY-PEER password 7 vnEaG8gMeQf3d3cN6PktXQ==\n neighbor MLAG-IPv4-UNDERLAY-PEER send-community\n \ neighbor MLAG-IPv4-UNDERLAY-PEER maximum-routes 12000\n neighbor MLAG-IPv4-UNDERLAY-PEER - route-map RM-MLAG-PEER-IN in\n neighbor 10.255.251.6 peer group MLAG-IPv4-UNDERLAY-PEER\n - \ neighbor 10.255.251.6 description DC1-SVC3A\n neighbor 172.31.255.32 peer - group IPv4-UNDERLAY-PEERS\n neighbor 172.31.255.32 remote-as 65001\n neighbor - 172.31.255.32 description DC1-SPINE1_Ethernet5\n neighbor 172.31.255.34 peer - group IPv4-UNDERLAY-PEERS\n neighbor 172.31.255.34 remote-as 65001\n neighbor - 172.31.255.34 description DC1-SPINE2_Ethernet5\n neighbor 172.31.255.36 peer - group IPv4-UNDERLAY-PEERS\n neighbor 172.31.255.36 remote-as 65001\n neighbor - 172.31.255.36 description DC1-SPINE3_Ethernet5\n neighbor 172.31.255.38 peer - group IPv4-UNDERLAY-PEERS\n neighbor 172.31.255.38 remote-as 65001\n neighbor - 172.31.255.38 description DC1-SPINE4_Ethernet5\n neighbor 192.168.255.1 peer + route-map RM-MLAG-PEER-IN in\n neighbor 10.255.251.7 peer group MLAG-IPv4-UNDERLAY-PEER\n + \ neighbor 10.255.251.7 description DC1-SVC3B\n neighbor 172.31.255.24 peer + group IPv4-UNDERLAY-PEERS\n neighbor 172.31.255.24 remote-as 65001\n neighbor + 172.31.255.24 description DC1-SPINE1_Ethernet4\n neighbor 172.31.255.26 peer + group IPv4-UNDERLAY-PEERS\n neighbor 172.31.255.26 remote-as 65001\n neighbor + 172.31.255.26 description DC1-SPINE2_Ethernet4\n neighbor 172.31.255.28 peer + group IPv4-UNDERLAY-PEERS\n neighbor 172.31.255.28 remote-as 65001\n neighbor + 172.31.255.28 description DC1-SPINE3_Ethernet4\n neighbor 172.31.255.30 peer + group IPv4-UNDERLAY-PEERS\n neighbor 172.31.255.30 remote-as 65001\n neighbor + 172.31.255.30 description DC1-SPINE4_Ethernet4\n neighbor 192.168.255.1 peer group EVPN-OVERLAY-PEERS\n neighbor 192.168.255.1 remote-as 65001\n neighbor 192.168.255.1 description DC1-SPINE1\n neighbor 192.168.255.2 peer group EVPN-OVERLAY-PEERS\n \ neighbor 192.168.255.2 remote-as 65001\n neighbor 192.168.255.2 description @@ -1421,24 +1204,236 @@ cvp_configlets: \ neighbor 192.168.255.4 peer group EVPN-OVERLAY-PEERS\n neighbor 192.168.255.4 remote-as 65001\n neighbor 192.168.255.4 description DC1-SPINE4\n redistribute connected route-map RM-CONN-2-BGP\n !\n vlan-aware-bundle Tenant_A_APP_Zone\n - \ rd 192.168.255.9:12\n route-target both 12:12\n redistribute learned\n - \ vlan 130-131\n !\n vlan-aware-bundle Tenant_A_DB_Zone\n rd 192.168.255.9:13\n + \ rd 192.168.255.8:12\n route-target both 12:12\n redistribute learned\n + \ vlan 130-131\n !\n vlan-aware-bundle Tenant_A_DB_Zone\n rd 192.168.255.8:13\n \ route-target both 13:13\n redistribute learned\n vlan 140-141\n - \ !\n vlan-aware-bundle Tenant_A_OP_Zone\n rd 192.168.255.9:10\n route-target + \ !\n vlan-aware-bundle Tenant_A_OP_Zone\n rd 192.168.255.8:10\n route-target both 10:10\n redistribute learned\n vlan 110-111\n !\n vlan-aware-bundle - Tenant_A_WAN_Zone\n rd 192.168.255.9:14\n route-target both 14:14\n + Tenant_A_WAN_Zone\n rd 192.168.255.8:14\n route-target both 14:14\n \ redistribute learned\n vlan 150\n !\n vlan-aware-bundle Tenant_A_WEB_Zone\n - \ rd 192.168.255.9:11\n route-target both 11:11\n redistribute learned\n - \ vlan 120-121\n !\n vlan-aware-bundle Tenant_B_OP_Zone\n rd 192.168.255.9:20\n + \ rd 192.168.255.8:11\n route-target both 11:11\n redistribute learned\n + \ vlan 120-121\n !\n vlan-aware-bundle Tenant_B_OP_Zone\n rd 192.168.255.8:20\n \ route-target both 20:20\n redistribute learned\n vlan 210-211\n - \ !\n vlan-aware-bundle Tenant_B_WAN_Zone\n rd 192.168.255.9:21\n route-target + \ !\n vlan-aware-bundle Tenant_B_WAN_Zone\n rd 192.168.255.8:21\n route-target both 21:21\n redistribute learned\n vlan 250\n !\n vlan-aware-bundle - Tenant_C_OP_Zone\n rd 192.168.255.9:30\n route-target both 30:30\n redistribute + Tenant_C_OP_Zone\n rd 192.168.255.8:30\n route-target both 30:30\n redistribute learned\n vlan 310-311\n !\n vlan-aware-bundle Tenant_C_WAN_Zone\n rd - 192.168.255.9:31\n route-target both 31:31\n redistribute learned\n + 192.168.255.8:31\n route-target both 31:31\n redistribute learned\n \ vlan 350\n !\n address-family evpn\n neighbor EVPN-OVERLAY-PEERS activate\n !\n address-family ipv4\n no neighbor EVPN-OVERLAY-PEERS activate\n \ neighbor IPv4-UNDERLAY-PEERS activate\n neighbor MLAG-IPv4-UNDERLAY-PEER + activate\n !\n vrf Tenant_A_APP_Zone\n rd 192.168.255.8:12\n route-target + import evpn 12:12\n route-target export evpn 12:12\n router-id 192.168.255.8\n + \ update wait-install\n neighbor 10.255.251.7 peer group MLAG-IPv4-UNDERLAY-PEER\n + \ neighbor 10.255.251.7 description DC1-SVC3B\n redistribute connected\n + \ !\n vrf Tenant_A_DB_Zone\n rd 192.168.255.8:13\n route-target import + evpn 13:13\n route-target export evpn 13:13\n router-id 192.168.255.8\n + \ update wait-install\n neighbor 10.255.251.7 peer group MLAG-IPv4-UNDERLAY-PEER\n + \ neighbor 10.255.251.7 description DC1-SVC3B\n redistribute connected\n + \ !\n vrf Tenant_A_OP_Zone\n rd 192.168.255.8:10\n route-target import + evpn 10:10\n route-target export evpn 10:10\n router-id 192.168.255.8\n + \ update wait-install\n neighbor 10.255.251.7 peer group MLAG-IPv4-UNDERLAY-PEER\n + \ neighbor 10.255.251.7 description DC1-SVC3B\n redistribute connected\n + \ !\n vrf Tenant_A_WAN_Zone\n rd 192.168.255.8:14\n route-target + import evpn 14:14\n route-target export evpn 14:14\n router-id 192.168.255.8\n + \ update wait-install\n neighbor 10.255.251.7 peer group MLAG-IPv4-UNDERLAY-PEER\n + \ neighbor 10.255.251.7 description DC1-SVC3B\n redistribute connected\n + \ !\n vrf Tenant_A_WEB_Zone\n rd 192.168.255.8:11\n route-target + import evpn 11:11\n route-target export evpn 11:11\n router-id 192.168.255.8\n + \ update wait-install\n neighbor 10.255.251.7 peer group MLAG-IPv4-UNDERLAY-PEER\n + \ neighbor 10.255.251.7 description DC1-SVC3B\n redistribute connected\n + \ !\n vrf Tenant_B_OP_Zone\n rd 192.168.255.8:20\n route-target import + evpn 20:20\n route-target export evpn 20:20\n router-id 192.168.255.8\n + \ update wait-install\n neighbor 10.255.251.7 peer group MLAG-IPv4-UNDERLAY-PEER\n + \ neighbor 10.255.251.7 description DC1-SVC3B\n redistribute connected\n + \ !\n vrf Tenant_B_WAN_Zone\n rd 192.168.255.8:21\n route-target + import evpn 21:21\n route-target export evpn 21:21\n router-id 192.168.255.8\n + \ update wait-install\n neighbor 10.255.251.7 peer group MLAG-IPv4-UNDERLAY-PEER\n + \ neighbor 10.255.251.7 description DC1-SVC3B\n redistribute connected\n + \ !\n vrf Tenant_C_OP_Zone\n rd 192.168.255.8:30\n route-target import + evpn 30:30\n route-target export evpn 30:30\n router-id 192.168.255.8\n + \ update wait-install\n neighbor 10.255.251.7 peer group MLAG-IPv4-UNDERLAY-PEER\n + \ neighbor 10.255.251.7 description DC1-SVC3B\n redistribute connected\n + \ !\n vrf Tenant_C_WAN_Zone\n rd 192.168.255.8:31\n route-target + import evpn 31:31\n route-target export evpn 31:31\n router-id 192.168.255.8\n + \ update wait-install\n neighbor 10.255.251.7 peer group MLAG-IPv4-UNDERLAY-PEER\n + \ neighbor 10.255.251.7 description DC1-SVC3B\n redistribute connected\n!\nmanagement + api http-commands\n protocol https\n no shutdown\n !\n vrf MGMT\n no + shutdown\n!\nend\n" + AVD_DC1-SVC3B: "!\ndaemon TerminAttr\n exec /usr/bin/TerminAttr -cvaddr=192.168.200.11:9910 + -cvauth=key,telarista -cvvrf=MGMT -smashexcludes=ale,flexCounter,hardware,kni,pulse,strata + -ingestexclude=/Sysdb/cell/1/agent,/Sysdb/cell/2/agent -taillogs\n no shutdown\n!\nvlan + internal order ascending range 1006 1199\n!\nno ip igmp snooping vlan 120\n!\ntransceiver + qsfp default-mode 4x10G\n!\nservice routing protocols model multi-agent\n!\nhostname + DC1-SVC3B\nip name-server vrf MGMT 8.8.8.8\nip name-server vrf MGMT 192.168.200.5\n!\nntp + local-interface vrf MGMT Management1\nntp server vrf MGMT 192.168.200.5 prefer\n!\nspanning-tree + mode mstp\nno spanning-tree vlan-id 4093-4094\nspanning-tree mst 0 priority 4096\n!\nno + enable password\nno aaa root\n!\nusername admin privilege 15 role network-admin + nopassword\nusername cvpadmin privilege 15 role network-admin secret sha512 $6$rZKcbIZ7iWGAWTUM$TCgDn1KcavS0s.OV8lacMTUkxTByfzcGlFlYUWroxYuU7M/9bIodhRO7nXGzMweUxvbk8mJmQl8Bh44cRktUj.\n!\nvlan + 110\n name Tenant_A_OP_Zone_1\n!\nvlan 111\n name Tenant_A_OP_Zone_2\n!\nvlan + 120\n name Tenant_A_WEB_Zone_1\n!\nvlan 121\n name Tenant_A_WEBZone_2\n!\nvlan + 130\n name Tenant_A_APP_Zone_1\n!\nvlan 131\n name Tenant_A_APP_Zone_2\n!\nvlan + 140\n name Tenant_A_DB_BZone_1\n!\nvlan 141\n name Tenant_A_DB_Zone_2\n!\nvlan + 150\n name Tenant_A_WAN_Zone_1\n!\nvlan 210\n name Tenant_B_OP_Zone_1\n!\nvlan + 211\n name Tenant_B_OP_Zone_2\n!\nvlan 250\n name Tenant_B_WAN_Zone_1\n!\nvlan + 310\n name Tenant_C_OP_Zone_1\n!\nvlan 311\n name Tenant_C_OP_Zone_2\n!\nvlan + 350\n name Tenant_C_WAN_Zone_1\n!\nvlan 3009\n name MLAG_iBGP_Tenant_A_OP_Zone\n + \ trunk group LEAF_PEER_L3\n!\nvlan 3010\n name MLAG_iBGP_Tenant_A_WEB_Zone\n + \ trunk group LEAF_PEER_L3\n!\nvlan 3011\n name MLAG_iBGP_Tenant_A_APP_Zone\n + \ trunk group LEAF_PEER_L3\n!\nvlan 3012\n name MLAG_iBGP_Tenant_A_DB_Zone\n + \ trunk group LEAF_PEER_L3\n!\nvlan 3013\n name MLAG_iBGP_Tenant_A_WAN_Zone\n + \ trunk group LEAF_PEER_L3\n!\nvlan 3019\n name MLAG_iBGP_Tenant_B_OP_Zone\n + \ trunk group LEAF_PEER_L3\n!\nvlan 3020\n name MLAG_iBGP_Tenant_B_WAN_Zone\n + \ trunk group LEAF_PEER_L3\n!\nvlan 3029\n name MLAG_iBGP_Tenant_C_OP_Zone\n + \ trunk group LEAF_PEER_L3\n!\nvlan 3030\n name MLAG_iBGP_Tenant_C_WAN_Zone\n + \ trunk group LEAF_PEER_L3\n!\nvlan 4093\n name LEAF_PEER_L3\n trunk group + LEAF_PEER_L3\n!\nvlan 4094\n name MLAG_PEER\n trunk group MLAG\n!\nvrf instance + MGMT\n!\nvrf instance Tenant_A_APP_Zone\n!\nvrf instance Tenant_A_DB_Zone\n!\nvrf + instance Tenant_A_OP_Zone\n!\nvrf instance Tenant_A_WAN_Zone\n!\nvrf instance + Tenant_A_WEB_Zone\n!\nvrf instance Tenant_B_OP_Zone\n!\nvrf instance Tenant_B_WAN_Zone\n!\nvrf + instance Tenant_C_OP_Zone\n!\nvrf instance Tenant_C_WAN_Zone\n!\ninterface Port-Channel5\n + \ description MLAG_PEER_DC1-SVC3A_Po5\n no shutdown\n switchport\n switchport + mode trunk\n switchport trunk group LEAF_PEER_L3\n switchport trunk group + MLAG\n!\ninterface Port-Channel7\n description DC1_L2LEAF2_Po1\n no shutdown\n + \ switchport\n switchport trunk allowed vlan 110-111,120-121,130-131,140-141,150,210-211,250,310-311,350\n + \ switchport mode trunk\n mlag 7\n!\ninterface Ethernet1\n description P2P_LINK_TO_DC1-SPINE1_Ethernet5\n + \ no shutdown\n mtu 1500\n no switchport\n ip address 172.31.255.33/31\n!\ninterface + Ethernet2\n description P2P_LINK_TO_DC1-SPINE2_Ethernet5\n no shutdown\n mtu + 1500\n no switchport\n ip address 172.31.255.35/31\n!\ninterface Ethernet3\n + \ description P2P_LINK_TO_DC1-SPINE3_Ethernet5\n no shutdown\n mtu 1500\n + \ no switchport\n ip address 172.31.255.37/31\n!\ninterface Ethernet4\n description + P2P_LINK_TO_DC1-SPINE4_Ethernet5\n no shutdown\n mtu 1500\n no switchport\n + \ ip address 172.31.255.39/31\n!\ninterface Ethernet5\n description MLAG_PEER_DC1-SVC3A_Ethernet5\n + \ no shutdown\n channel-group 5 mode active\n!\ninterface Ethernet6\n description + MLAG_PEER_DC1-SVC3A_Ethernet6\n no shutdown\n channel-group 5 mode active\n!\ninterface + Ethernet7\n description DC1-L2LEAF2A_Ethernet2\n no shutdown\n channel-group + 7 mode active\n!\ninterface Ethernet8\n description DC1-L2LEAF2B_Ethernet2\n + \ no shutdown\n channel-group 7 mode active\n!\ninterface Loopback0\n description + ROUTER_ID\n no shutdown\n ip address 192.168.255.9/32\n!\ninterface Loopback1\n + \ description VTEP_VXLAN_Tunnel_Source\n no shutdown\n ip address 192.168.254.8/32\n!\ninterface + Loopback100\n description Tenant_A_OP_Zone_VTEP_DIAGNOSTICS\n no shutdown\n + \ vrf Tenant_A_OP_Zone\n ip address 10.255.1.9/32\n!\ninterface Management1\n + \ description oob_management\n no shutdown\n vrf MGMT\n ip address 192.168.200.109/24\n!\ninterface + Vlan110\n description Tenant_A_OP_Zone_1\n no shutdown\n vrf Tenant_A_OP_Zone\n + \ ip address virtual 10.1.10.1/24\n!\ninterface Vlan111\n description Tenant_A_OP_Zone_2\n + \ no shutdown\n vrf Tenant_A_OP_Zone\n ip helper-address 1.1.1.1 vrf MGMT + source-interface lo100\n ip address virtual 10.1.11.1/24\n!\ninterface Vlan120\n + \ description Tenant_A_WEB_Zone_1\n no shutdown\n vrf Tenant_A_WEB_Zone\n + \ ip helper-address 1.1.1.1 vrf TEST source-interface lo100\n ip address virtual + 10.1.20.1/24\n!\ninterface Vlan121\n description Tenant_A_WEBZone_2\n shutdown\n + \ mtu 1560\n vrf Tenant_A_WEB_Zone\n ip address virtual 10.1.10.254/24\n!\ninterface + Vlan130\n description Tenant_A_APP_Zone_1\n no shutdown\n vrf Tenant_A_APP_Zone\n + \ ip address virtual 10.1.30.1/24\n!\ninterface Vlan131\n description Tenant_A_APP_Zone_2\n + \ no shutdown\n vrf Tenant_A_APP_Zone\n ip address virtual 10.1.31.1/24\n!\ninterface + Vlan140\n description Tenant_A_DB_BZone_1\n no shutdown\n vrf Tenant_A_DB_Zone\n + \ ip address virtual 10.1.40.1/24\n!\ninterface Vlan141\n description Tenant_A_DB_Zone_2\n + \ no shutdown\n vrf Tenant_A_DB_Zone\n ip address virtual 10.1.41.1/24\n!\ninterface + Vlan150\n description Tenant_A_WAN_Zone_1\n no shutdown\n vrf Tenant_A_WAN_Zone\n + \ ip address virtual 10.1.40.1/24\n!\ninterface Vlan210\n description Tenant_B_OP_Zone_1\n + \ no shutdown\n vrf Tenant_B_OP_Zone\n ip address virtual 10.2.10.1/24\n!\ninterface + Vlan211\n description Tenant_B_OP_Zone_2\n no shutdown\n vrf Tenant_B_OP_Zone\n + \ ip address virtual 10.2.11.1/24\n!\ninterface Vlan250\n description Tenant_B_WAN_Zone_1\n + \ no shutdown\n vrf Tenant_B_WAN_Zone\n ip address virtual 10.2.50.1/24\n!\ninterface + Vlan310\n description Tenant_C_OP_Zone_1\n no shutdown\n vrf Tenant_C_OP_Zone\n + \ ip address virtual 10.3.10.1/24\n!\ninterface Vlan311\n description Tenant_C_OP_Zone_2\n + \ no shutdown\n vrf Tenant_C_OP_Zone\n ip address virtual 10.3.11.1/24\n!\ninterface + Vlan350\n description Tenant_C_WAN_Zone_1\n no shutdown\n vrf Tenant_C_WAN_Zone\n + \ ip address virtual 10.3.50.1/24\n!\ninterface Vlan3009\n description MLAG_PEER_L3_iBGP: + vrf Tenant_A_OP_Zone\n no shutdown\n mtu 1500\n vrf Tenant_A_OP_Zone\n ip + address 10.255.251.7/31\n!\ninterface Vlan3010\n description MLAG_PEER_L3_iBGP: + vrf Tenant_A_WEB_Zone\n no shutdown\n mtu 1500\n vrf Tenant_A_WEB_Zone\n + \ ip address 10.255.251.7/31\n!\ninterface Vlan3011\n description MLAG_PEER_L3_iBGP: + vrf Tenant_A_APP_Zone\n no shutdown\n mtu 1500\n vrf Tenant_A_APP_Zone\n + \ ip address 10.255.251.7/31\n!\ninterface Vlan3012\n description MLAG_PEER_L3_iBGP: + vrf Tenant_A_DB_Zone\n no shutdown\n mtu 1500\n vrf Tenant_A_DB_Zone\n ip + address 10.255.251.7/31\n!\ninterface Vlan3013\n description MLAG_PEER_L3_iBGP: + vrf Tenant_A_WAN_Zone\n no shutdown\n mtu 1500\n vrf Tenant_A_WAN_Zone\n + \ ip address 10.255.251.7/31\n!\ninterface Vlan3019\n description MLAG_PEER_L3_iBGP: + vrf Tenant_B_OP_Zone\n no shutdown\n mtu 1500\n vrf Tenant_B_OP_Zone\n ip + address 10.255.251.7/31\n!\ninterface Vlan3020\n description MLAG_PEER_L3_iBGP: + vrf Tenant_B_WAN_Zone\n no shutdown\n mtu 1500\n vrf Tenant_B_WAN_Zone\n + \ ip address 10.255.251.7/31\n!\ninterface Vlan3029\n description MLAG_PEER_L3_iBGP: + vrf Tenant_C_OP_Zone\n no shutdown\n mtu 1500\n vrf Tenant_C_OP_Zone\n ip + address 10.255.251.7/31\n!\ninterface Vlan3030\n description MLAG_PEER_L3_iBGP: + vrf Tenant_C_WAN_Zone\n no shutdown\n mtu 1500\n vrf Tenant_C_WAN_Zone\n + \ ip address 10.255.251.7/31\n!\ninterface Vlan4093\n description MLAG_PEER_L3_PEERING\n + \ no shutdown\n mtu 1500\n ip address 10.255.251.7/31\n!\ninterface Vlan4094\n + \ description MLAG_PEER\n no shutdown\n mtu 1500\n no autostate\n ip + address 10.255.252.7/31\n!\ninterface Vxlan1\n description DC1-SVC3B_VTEP\n + \ vxlan source-interface Loopback1\n vxlan virtual-router encapsulation mac-address + mlag-system-id\n vxlan udp-port 4789\n vxlan vlan 110 vni 10110\n vxlan + vlan 111 vni 50111\n vxlan vlan 120 vni 10120\n vxlan vlan 121 vni 10121\n + \ vxlan vlan 130 vni 10130\n vxlan vlan 131 vni 10131\n vxlan vlan 140 vni + 10140\n vxlan vlan 141 vni 10141\n vxlan vlan 150 vni 10150\n vxlan vlan + 210 vni 20210\n vxlan vlan 211 vni 20211\n vxlan vlan 250 vni 20250\n vxlan + vlan 310 vni 30310\n vxlan vlan 311 vni 30311\n vxlan vlan 350 vni 30350\n + \ vxlan vrf Tenant_A_APP_Zone vni 12\n vxlan vrf Tenant_A_DB_Zone vni 13\n + \ vxlan vrf Tenant_A_OP_Zone vni 10\n vxlan vrf Tenant_A_WAN_Zone vni 14\n + \ vxlan vrf Tenant_A_WEB_Zone vni 11\n vxlan vrf Tenant_B_OP_Zone vni 20\n + \ vxlan vrf Tenant_B_WAN_Zone vni 21\n vxlan vrf Tenant_C_OP_Zone vni 30\n + \ vxlan vrf Tenant_C_WAN_Zone vni 31\n!\nip virtual-router mac-address 00:dc:00:00:00:0a\n!\nip + address virtual source-nat vrf Tenant_A_OP_Zone address 10.255.1.9\n!\nip routing\nno + ip routing vrf MGMT\nip routing vrf Tenant_A_APP_Zone\nip routing vrf Tenant_A_DB_Zone\nip + routing vrf Tenant_A_OP_Zone\nip routing vrf Tenant_A_WAN_Zone\nip routing vrf + Tenant_A_WEB_Zone\nip routing vrf Tenant_B_OP_Zone\nip routing vrf Tenant_B_WAN_Zone\nip + routing vrf Tenant_C_OP_Zone\nip routing vrf Tenant_C_WAN_Zone\n!\nip prefix-list + PL-LOOPBACKS-EVPN-OVERLAY\n seq 10 permit 192.168.255.0/24 eq 32\n seq 20 + permit 192.168.254.0/24 eq 32\n!\nmlag configuration\n domain-id DC1_SVC3\n + \ local-interface Vlan4094\n peer-address 10.255.252.6\n peer-link Port-Channel5\n + \ reload-delay mlag 300\n reload-delay non-mlag 330\n!\nip route vrf MGMT 0.0.0.0/0 + 192.168.200.5\n!\nroute-map RM-CONN-2-BGP permit 10\n match ip address prefix-list + PL-LOOPBACKS-EVPN-OVERLAY\n!\nroute-map RM-MLAG-PEER-IN permit 10\n description + Make routes learned over MLAG Peer-link less preferred on spines to ensure optimal + routing\n set origin incomplete\n!\nrouter bfd\n multihop interval 1200 min-rx + 1200 multiplier 3\n!\nrouter bgp 65103\n router-id 192.168.255.9\n maximum-paths + 4 ecmp 4\n update wait-install\n no bgp default ipv4-unicast\n distance + bgp 20 200 200\n neighbor EVPN-OVERLAY-PEERS peer group\n neighbor EVPN-OVERLAY-PEERS + update-source Loopback0\n neighbor EVPN-OVERLAY-PEERS bfd\n neighbor EVPN-OVERLAY-PEERS + ebgp-multihop 3\n neighbor EVPN-OVERLAY-PEERS password 7 q+VNViP5i4rVjW1cxFv2wA==\n + \ neighbor EVPN-OVERLAY-PEERS send-community\n neighbor EVPN-OVERLAY-PEERS + maximum-routes 0\n neighbor IPv4-UNDERLAY-PEERS peer group\n neighbor IPv4-UNDERLAY-PEERS + password 7 AQQvKeimxJu+uGQ/yYvv9w==\n neighbor IPv4-UNDERLAY-PEERS send-community\n + \ neighbor IPv4-UNDERLAY-PEERS maximum-routes 12000\n neighbor MLAG-IPv4-UNDERLAY-PEER + peer group\n neighbor MLAG-IPv4-UNDERLAY-PEER remote-as 65103\n neighbor MLAG-IPv4-UNDERLAY-PEER + next-hop-self\n neighbor MLAG-IPv4-UNDERLAY-PEER description DC1-SVC3A\n neighbor + MLAG-IPv4-UNDERLAY-PEER password 7 vnEaG8gMeQf3d3cN6PktXQ==\n neighbor MLAG-IPv4-UNDERLAY-PEER + send-community\n neighbor MLAG-IPv4-UNDERLAY-PEER maximum-routes 12000\n neighbor + MLAG-IPv4-UNDERLAY-PEER route-map RM-MLAG-PEER-IN in\n neighbor 10.255.251.6 + peer group MLAG-IPv4-UNDERLAY-PEER\n neighbor 10.255.251.6 description DC1-SVC3A\n + \ neighbor 172.31.255.32 peer group IPv4-UNDERLAY-PEERS\n neighbor 172.31.255.32 + remote-as 65001\n neighbor 172.31.255.32 description DC1-SPINE1_Ethernet5\n + \ neighbor 172.31.255.34 peer group IPv4-UNDERLAY-PEERS\n neighbor 172.31.255.34 + remote-as 65001\n neighbor 172.31.255.34 description DC1-SPINE2_Ethernet5\n + \ neighbor 172.31.255.36 peer group IPv4-UNDERLAY-PEERS\n neighbor 172.31.255.36 + remote-as 65001\n neighbor 172.31.255.36 description DC1-SPINE3_Ethernet5\n + \ neighbor 172.31.255.38 peer group IPv4-UNDERLAY-PEERS\n neighbor 172.31.255.38 + remote-as 65001\n neighbor 172.31.255.38 description DC1-SPINE4_Ethernet5\n + \ neighbor 192.168.255.1 peer group EVPN-OVERLAY-PEERS\n neighbor 192.168.255.1 + remote-as 65001\n neighbor 192.168.255.1 description DC1-SPINE1\n neighbor + 192.168.255.2 peer group EVPN-OVERLAY-PEERS\n neighbor 192.168.255.2 remote-as + 65001\n neighbor 192.168.255.2 description DC1-SPINE2\n neighbor 192.168.255.3 + peer group EVPN-OVERLAY-PEERS\n neighbor 192.168.255.3 remote-as 65001\n neighbor + 192.168.255.3 description DC1-SPINE3\n neighbor 192.168.255.4 peer group EVPN-OVERLAY-PEERS\n + \ neighbor 192.168.255.4 remote-as 65001\n neighbor 192.168.255.4 description + DC1-SPINE4\n redistribute connected route-map RM-CONN-2-BGP\n !\n vlan-aware-bundle + Tenant_A_APP_Zone\n rd 192.168.255.9:12\n route-target both 12:12\n + \ redistribute learned\n vlan 130-131\n !\n vlan-aware-bundle Tenant_A_DB_Zone\n + \ rd 192.168.255.9:13\n route-target both 13:13\n redistribute learned\n + \ vlan 140-141\n !\n vlan-aware-bundle Tenant_A_OP_Zone\n rd 192.168.255.9:10\n + \ route-target both 10:10\n redistribute learned\n vlan 110-111\n + \ !\n vlan-aware-bundle Tenant_A_WAN_Zone\n rd 192.168.255.9:14\n route-target + both 14:14\n redistribute learned\n vlan 150\n !\n vlan-aware-bundle + Tenant_A_WEB_Zone\n rd 192.168.255.9:11\n route-target both 11:11\n + \ redistribute learned\n vlan 120-121\n !\n vlan-aware-bundle Tenant_B_OP_Zone\n + \ rd 192.168.255.9:20\n route-target both 20:20\n redistribute learned\n + \ vlan 210-211\n !\n vlan-aware-bundle Tenant_B_WAN_Zone\n rd 192.168.255.9:21\n + \ route-target both 21:21\n redistribute learned\n vlan 250\n !\n + \ vlan-aware-bundle Tenant_C_OP_Zone\n rd 192.168.255.9:30\n route-target + both 30:30\n redistribute learned\n vlan 310-311\n !\n vlan-aware-bundle + Tenant_C_WAN_Zone\n rd 192.168.255.9:31\n route-target both 31:31\n + \ redistribute learned\n vlan 350\n !\n address-family evpn\n neighbor + EVPN-OVERLAY-PEERS activate\n !\n address-family ipv4\n no neighbor EVPN-OVERLAY-PEERS + activate\n neighbor IPv4-UNDERLAY-PEERS activate\n neighbor MLAG-IPv4-UNDERLAY-PEER activate\n !\n vrf Tenant_A_APP_Zone\n rd 192.168.255.9:12\n route-target import evpn 12:12\n route-target export evpn 12:12\n router-id 192.168.255.9\n \ update wait-install\n neighbor 10.255.251.6 peer group MLAG-IPv4-UNDERLAY-PEER\n diff --git a/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/intended/structured_configs/cvp/cv_server_configlets.yml b/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/intended/structured_configs/cvp/cv_server_configlets.yml index 5f8607fec23..c65f2f79148 100644 --- a/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/intended/structured_configs/cvp/cv_server_configlets.yml +++ b/ansible_collections/arista/avd/molecule/eos_config_deploy_cvp/intended/structured_configs/cvp/cv_server_configlets.yml @@ -28,36 +28,36 @@ cvp_configlets: \ no switchport\n ip address 172.31.255.47/31\n!\ninterface Ethernet5\n description MLAG_PEER_DC1-BL1B_Ethernet5\n no shutdown\n channel-group 5 mode active\n!\ninterface Ethernet6\n description MLAG_PEER_DC1-BL1B_Ethernet6\n no shutdown\n channel-group - 5 mode active\n!\ninterface Loopback0\n description EVPN_Overlay_Peering\n no - shutdown\n ip address 192.168.255.10/32\n!\ninterface Loopback1\n description - VTEP_VXLAN_Tunnel_Source\n no shutdown\n ip address 192.168.254.10/32\n!\ninterface - Management1\n description oob_management\n no shutdown\n vrf MGMT\n ip - address 192.168.200.110/24\n!\ninterface Vlan150\n description Tenant_A_WAN_Zone_1\n - \ no shutdown\n vrf Tenant_A_WAN_Zone\n ip address virtual 10.1.40.1/24\n!\ninterface - Vlan250\n description Tenant_B_WAN_Zone_1\n no shutdown\n vrf Tenant_B_WAN_Zone\n - \ ip address virtual 10.2.50.1/24\n!\ninterface Vlan350\n description Tenant_C_WAN_Zone_1\n - \ no shutdown\n vrf Tenant_C_WAN_Zone\n ip address virtual 10.3.50.1/24\n!\ninterface - Vlan3013\n description MLAG_PEER_L3_iBGP: vrf Tenant_A_WAN_Zone\n no shutdown\n - \ mtu 1500\n vrf Tenant_A_WAN_Zone\n ip address 10.255.251.10/31\n!\ninterface - Vlan3020\n description MLAG_PEER_L3_iBGP: vrf Tenant_B_WAN_Zone\n no shutdown\n - \ mtu 1500\n vrf Tenant_B_WAN_Zone\n ip address 10.255.251.10/31\n!\ninterface - Vlan3030\n description MLAG_PEER_L3_iBGP: vrf Tenant_C_WAN_Zone\n no shutdown\n - \ mtu 1500\n vrf Tenant_C_WAN_Zone\n ip address 10.255.251.10/31\n!\ninterface - Vlan4093\n description MLAG_PEER_L3_PEERING\n no shutdown\n mtu 1500\n ip - address 10.255.251.10/31\n!\ninterface Vlan4094\n description MLAG_PEER\n no - shutdown\n mtu 1500\n no autostate\n ip address 10.255.252.10/31\n!\ninterface - Vxlan1\n description DC1-BL1A_VTEP\n vxlan source-interface Loopback1\n vxlan - virtual-router encapsulation mac-address mlag-system-id\n vxlan udp-port 4789\n - \ vxlan vlan 150 vni 10150\n vxlan vlan 250 vni 20250\n vxlan vlan 350 vni - 30350\n vxlan vrf Tenant_A_WAN_Zone vni 14\n vxlan vrf Tenant_B_WAN_Zone vni - 21\n vxlan vrf Tenant_C_WAN_Zone vni 31\n!\nip virtual-router mac-address 00:dc:00:00:00:0a\n!\nip - routing\nno ip routing vrf MGMT\nip routing vrf Tenant_A_WAN_Zone\nip routing - vrf Tenant_B_WAN_Zone\nip routing vrf Tenant_C_WAN_Zone\n!\nip prefix-list PL-LOOPBACKS-EVPN-OVERLAY\n - \ seq 10 permit 192.168.255.0/24 eq 32\n seq 20 permit 192.168.254.0/24 eq - 32\n!\nmlag configuration\n domain-id DC1_BL1\n local-interface Vlan4094\n - \ peer-address 10.255.252.11\n peer-link Port-Channel5\n reload-delay mlag - 300\n reload-delay non-mlag 330\n!\nip route vrf MGMT 0.0.0.0/0 192.168.200.5\n!\nroute-map - RM-CONN-2-BGP permit 10\n match ip address prefix-list PL-LOOPBACKS-EVPN-OVERLAY\n!\nroute-map + 5 mode active\n!\ninterface Loopback0\n description ROUTER_ID\n no shutdown\n + \ ip address 192.168.255.10/32\n!\ninterface Loopback1\n description VTEP_VXLAN_Tunnel_Source\n + \ no shutdown\n ip address 192.168.254.10/32\n!\ninterface Management1\n description + oob_management\n no shutdown\n vrf MGMT\n ip address 192.168.200.110/24\n!\ninterface + Vlan150\n description Tenant_A_WAN_Zone_1\n no shutdown\n vrf Tenant_A_WAN_Zone\n + \ ip address virtual 10.1.40.1/24\n!\ninterface Vlan250\n description Tenant_B_WAN_Zone_1\n + \ no shutdown\n vrf Tenant_B_WAN_Zone\n ip address virtual 10.2.50.1/24\n!\ninterface + Vlan350\n description Tenant_C_WAN_Zone_1\n no shutdown\n vrf Tenant_C_WAN_Zone\n + \ ip address virtual 10.3.50.1/24\n!\ninterface Vlan3013\n description MLAG_PEER_L3_iBGP: + vrf Tenant_A_WAN_Zone\n no shutdown\n mtu 1500\n vrf Tenant_A_WAN_Zone\n + \ ip address 10.255.251.10/31\n!\ninterface Vlan3020\n description MLAG_PEER_L3_iBGP: + vrf Tenant_B_WAN_Zone\n no shutdown\n mtu 1500\n vrf Tenant_B_WAN_Zone\n + \ ip address 10.255.251.10/31\n!\ninterface Vlan3030\n description MLAG_PEER_L3_iBGP: + vrf Tenant_C_WAN_Zone\n no shutdown\n mtu 1500\n vrf Tenant_C_WAN_Zone\n + \ ip address 10.255.251.10/31\n!\ninterface Vlan4093\n description MLAG_PEER_L3_PEERING\n + \ no shutdown\n mtu 1500\n ip address 10.255.251.10/31\n!\ninterface Vlan4094\n + \ description MLAG_PEER\n no shutdown\n mtu 1500\n no autostate\n ip + address 10.255.252.10/31\n!\ninterface Vxlan1\n description DC1-BL1A_VTEP\n + \ vxlan source-interface Loopback1\n vxlan virtual-router encapsulation mac-address + mlag-system-id\n vxlan udp-port 4789\n vxlan vlan 150 vni 10150\n vxlan + vlan 250 vni 20250\n vxlan vlan 350 vni 30350\n vxlan vrf Tenant_A_WAN_Zone + vni 14\n vxlan vrf Tenant_B_WAN_Zone vni 21\n vxlan vrf Tenant_C_WAN_Zone + vni 31\n!\nip virtual-router mac-address 00:dc:00:00:00:0a\n!\nip routing\nno + ip routing vrf MGMT\nip routing vrf Tenant_A_WAN_Zone\nip routing vrf Tenant_B_WAN_Zone\nip + routing vrf Tenant_C_WAN_Zone\n!\nip prefix-list PL-LOOPBACKS-EVPN-OVERLAY\n seq + 10 permit 192.168.255.0/24 eq 32\n seq 20 permit 192.168.254.0/24 eq 32\n!\nmlag + configuration\n domain-id DC1_BL1\n local-interface Vlan4094\n peer-address + 10.255.252.11\n peer-link Port-Channel5\n reload-delay mlag 300\n reload-delay + non-mlag 330\n!\nip route vrf MGMT 0.0.0.0/0 192.168.200.5\n!\nroute-map RM-CONN-2-BGP + permit 10\n match ip address prefix-list PL-LOOPBACKS-EVPN-OVERLAY\n!\nroute-map RM-MLAG-PEER-IN permit 10\n description Make routes learned over MLAG Peer-link less preferred on spines to ensure optimal routing\n set origin incomplete\n!\nrouter bfd\n multihop interval 1200 min-rx 1200 multiplier 3\n!\nrouter bgp 65104\n @@ -143,36 +143,36 @@ cvp_configlets: \ no switchport\n ip address 172.31.255.55/31\n!\ninterface Ethernet5\n description MLAG_PEER_DC1-BL1A_Ethernet5\n no shutdown\n channel-group 5 mode active\n!\ninterface Ethernet6\n description MLAG_PEER_DC1-BL1A_Ethernet6\n no shutdown\n channel-group - 5 mode active\n!\ninterface Loopback0\n description EVPN_Overlay_Peering\n no - shutdown\n ip address 192.168.255.11/32\n!\ninterface Loopback1\n description - VTEP_VXLAN_Tunnel_Source\n no shutdown\n ip address 192.168.254.10/32\n!\ninterface - Management1\n description oob_management\n no shutdown\n vrf MGMT\n ip - address 192.168.200.111/24\n!\ninterface Vlan150\n description Tenant_A_WAN_Zone_1\n - \ no shutdown\n vrf Tenant_A_WAN_Zone\n ip address virtual 10.1.40.1/24\n!\ninterface - Vlan250\n description Tenant_B_WAN_Zone_1\n no shutdown\n vrf Tenant_B_WAN_Zone\n - \ ip address virtual 10.2.50.1/24\n!\ninterface Vlan350\n description Tenant_C_WAN_Zone_1\n - \ no shutdown\n vrf Tenant_C_WAN_Zone\n ip address virtual 10.3.50.1/24\n!\ninterface - Vlan3013\n description MLAG_PEER_L3_iBGP: vrf Tenant_A_WAN_Zone\n no shutdown\n - \ mtu 1500\n vrf Tenant_A_WAN_Zone\n ip address 10.255.251.11/31\n!\ninterface - Vlan3020\n description MLAG_PEER_L3_iBGP: vrf Tenant_B_WAN_Zone\n no shutdown\n - \ mtu 1500\n vrf Tenant_B_WAN_Zone\n ip address 10.255.251.11/31\n!\ninterface - Vlan3030\n description MLAG_PEER_L3_iBGP: vrf Tenant_C_WAN_Zone\n no shutdown\n - \ mtu 1500\n vrf Tenant_C_WAN_Zone\n ip address 10.255.251.11/31\n!\ninterface - Vlan4093\n description MLAG_PEER_L3_PEERING\n no shutdown\n mtu 1500\n ip - address 10.255.251.11/31\n!\ninterface Vlan4094\n description MLAG_PEER\n no - shutdown\n mtu 1500\n no autostate\n ip address 10.255.252.11/31\n!\ninterface - Vxlan1\n description DC1-BL1B_VTEP\n vxlan source-interface Loopback1\n vxlan - virtual-router encapsulation mac-address mlag-system-id\n vxlan udp-port 4789\n - \ vxlan vlan 150 vni 10150\n vxlan vlan 250 vni 20250\n vxlan vlan 350 vni - 30350\n vxlan vrf Tenant_A_WAN_Zone vni 14\n vxlan vrf Tenant_B_WAN_Zone vni - 21\n vxlan vrf Tenant_C_WAN_Zone vni 31\n!\nip virtual-router mac-address 00:dc:00:00:00:0a\n!\nip - routing\nno ip routing vrf MGMT\nip routing vrf Tenant_A_WAN_Zone\nip routing - vrf Tenant_B_WAN_Zone\nip routing vrf Tenant_C_WAN_Zone\n!\nip prefix-list PL-LOOPBACKS-EVPN-OVERLAY\n - \ seq 10 permit 192.168.255.0/24 eq 32\n seq 20 permit 192.168.254.0/24 eq - 32\n!\nmlag configuration\n domain-id DC1_BL1\n local-interface Vlan4094\n - \ peer-address 10.255.252.10\n peer-link Port-Channel5\n reload-delay mlag - 300\n reload-delay non-mlag 330\n!\nip route vrf MGMT 0.0.0.0/0 192.168.200.5\n!\nroute-map - RM-CONN-2-BGP permit 10\n match ip address prefix-list PL-LOOPBACKS-EVPN-OVERLAY\n!\nroute-map + 5 mode active\n!\ninterface Loopback0\n description ROUTER_ID\n no shutdown\n + \ ip address 192.168.255.11/32\n!\ninterface Loopback1\n description VTEP_VXLAN_Tunnel_Source\n + \ no shutdown\n ip address 192.168.254.10/32\n!\ninterface Management1\n description + oob_management\n no shutdown\n vrf MGMT\n ip address 192.168.200.111/24\n!\ninterface + Vlan150\n description Tenant_A_WAN_Zone_1\n no shutdown\n vrf Tenant_A_WAN_Zone\n + \ ip address virtual 10.1.40.1/24\n!\ninterface Vlan250\n description Tenant_B_WAN_Zone_1\n + \ no shutdown\n vrf Tenant_B_WAN_Zone\n ip address virtual 10.2.50.1/24\n!\ninterface + Vlan350\n description Tenant_C_WAN_Zone_1\n no shutdown\n vrf Tenant_C_WAN_Zone\n + \ ip address virtual 10.3.50.1/24\n!\ninterface Vlan3013\n description MLAG_PEER_L3_iBGP: + vrf Tenant_A_WAN_Zone\n no shutdown\n mtu 1500\n vrf Tenant_A_WAN_Zone\n + \ ip address 10.255.251.11/31\n!\ninterface Vlan3020\n description MLAG_PEER_L3_iBGP: + vrf Tenant_B_WAN_Zone\n no shutdown\n mtu 1500\n vrf Tenant_B_WAN_Zone\n + \ ip address 10.255.251.11/31\n!\ninterface Vlan3030\n description MLAG_PEER_L3_iBGP: + vrf Tenant_C_WAN_Zone\n no shutdown\n mtu 1500\n vrf Tenant_C_WAN_Zone\n + \ ip address 10.255.251.11/31\n!\ninterface Vlan4093\n description MLAG_PEER_L3_PEERING\n + \ no shutdown\n mtu 1500\n ip address 10.255.251.11/31\n!\ninterface Vlan4094\n + \ description MLAG_PEER\n no shutdown\n mtu 1500\n no autostate\n ip + address 10.255.252.11/31\n!\ninterface Vxlan1\n description DC1-BL1B_VTEP\n + \ vxlan source-interface Loopback1\n vxlan virtual-router encapsulation mac-address + mlag-system-id\n vxlan udp-port 4789\n vxlan vlan 150 vni 10150\n vxlan + vlan 250 vni 20250\n vxlan vlan 350 vni 30350\n vxlan vrf Tenant_A_WAN_Zone + vni 14\n vxlan vrf Tenant_B_WAN_Zone vni 21\n vxlan vrf Tenant_C_WAN_Zone + vni 31\n!\nip virtual-router mac-address 00:dc:00:00:00:0a\n!\nip routing\nno + ip routing vrf MGMT\nip routing vrf Tenant_A_WAN_Zone\nip routing vrf Tenant_B_WAN_Zone\nip + routing vrf Tenant_C_WAN_Zone\n!\nip prefix-list PL-LOOPBACKS-EVPN-OVERLAY\n seq + 10 permit 192.168.255.0/24 eq 32\n seq 20 permit 192.168.254.0/24 eq 32\n!\nmlag + configuration\n domain-id DC1_BL1\n local-interface Vlan4094\n peer-address + 10.255.252.10\n peer-link Port-Channel5\n reload-delay mlag 300\n reload-delay + non-mlag 330\n!\nip route vrf MGMT 0.0.0.0/0 192.168.200.5\n!\nroute-map RM-CONN-2-BGP + permit 10\n match ip address prefix-list PL-LOOPBACKS-EVPN-OVERLAY\n!\nroute-map RM-MLAG-PEER-IN permit 10\n description Make routes learned over MLAG Peer-link less preferred on spines to ensure optimal routing\n set origin incomplete\n!\nrouter bfd\n multihop interval 1200 min-rx 1200 multiplier 3\n!\nrouter bgp 65104\n @@ -347,7 +347,7 @@ cvp_configlets: trunk allowed vlan 110-111,210-211\n switchport mode trunk\n switchport\n!\ninterface Ethernet7\n description server02_SINGLE_NODE_Eth1\n no shutdown\n switchport access vlan 110\n switchport mode access\n switchport\n!\ninterface Loopback0\n - \ description EVPN_Overlay_Peering\n no shutdown\n ip address 192.168.255.5/32\n!\ninterface + \ description ROUTER_ID\n no shutdown\n ip address 192.168.255.5/32\n!\ninterface Loopback1\n description VTEP_VXLAN_Tunnel_Source\n no shutdown\n ip address 192.168.254.5/32\n!\ninterface Management1\n description oob_management\n no shutdown\n vrf MGMT\n ip address 192.168.200.105/24\n!\ninterface Vlan120\n @@ -450,113 +450,113 @@ cvp_configlets: Ethernet7\n description DC1-L2LEAF1A_Ethernet1\n no shutdown\n channel-group 7 mode active\n!\ninterface Ethernet10\n description server01_MLAG_Eth2\n no shutdown\n channel-group 10 mode active\n!\ninterface Loopback0\n description - EVPN_Overlay_Peering\n no shutdown\n ip address 192.168.255.6/32\n!\ninterface - Loopback1\n description VTEP_VXLAN_Tunnel_Source\n no shutdown\n ip address - 192.168.254.6/32\n!\ninterface Loopback100\n description Tenant_A_OP_Zone_VTEP_DIAGNOSTICS\n - \ no shutdown\n vrf Tenant_A_OP_Zone\n ip address 10.255.1.6/32\n!\ninterface - Management1\n description oob_management\n no shutdown\n vrf MGMT\n ip - address 192.168.200.106/24\n!\ninterface Vlan110\n description Tenant_A_OP_Zone_1\n - \ no shutdown\n vrf Tenant_A_OP_Zone\n ip address virtual 10.1.10.1/24\n!\ninterface - Vlan111\n description Tenant_A_OP_Zone_2\n no shutdown\n vrf Tenant_A_OP_Zone\n - \ ip helper-address 1.1.1.1 vrf MGMT source-interface lo100\n ip address virtual - 10.1.11.1/24\n!\ninterface Vlan120\n description Tenant_A_WEB_Zone_1\n no - shutdown\n vrf Tenant_A_WEB_Zone\n ip helper-address 1.1.1.1 vrf TEST source-interface - lo100\n ip address virtual 10.1.20.1/24\n!\ninterface Vlan121\n description - Tenant_A_WEBZone_2\n shutdown\n mtu 1560\n vrf Tenant_A_WEB_Zone\n ip - address virtual 10.1.10.254/24\n!\ninterface Vlan130\n description Tenant_A_APP_Zone_1\n - \ no shutdown\n vrf Tenant_A_APP_Zone\n ip address virtual 10.1.30.1/24\n!\ninterface - Vlan131\n description Tenant_A_APP_Zone_2\n no shutdown\n vrf Tenant_A_APP_Zone\n - \ ip address virtual 10.1.31.1/24\n!\ninterface Vlan140\n description Tenant_A_DB_BZone_1\n - \ no shutdown\n vrf Tenant_A_DB_Zone\n ip address virtual 10.1.40.1/24\n!\ninterface - Vlan141\n description Tenant_A_DB_Zone_2\n no shutdown\n vrf Tenant_A_DB_Zone\n - \ ip address virtual 10.1.41.1/24\n!\ninterface Vlan210\n description Tenant_B_OP_Zone_1\n - \ no shutdown\n vrf Tenant_B_OP_Zone\n ip address virtual 10.2.10.1/24\n!\ninterface - Vlan211\n description Tenant_B_OP_Zone_2\n no shutdown\n vrf Tenant_B_OP_Zone\n - \ ip address virtual 10.2.11.1/24\n!\ninterface Vlan310\n description Tenant_C_OP_Zone_1\n - \ no shutdown\n vrf Tenant_C_OP_Zone\n ip address virtual 10.3.10.1/24\n!\ninterface - Vlan311\n description Tenant_C_OP_Zone_2\n no shutdown\n vrf Tenant_C_OP_Zone\n - \ ip address virtual 10.3.11.1/24\n!\ninterface Vlan3009\n description MLAG_PEER_L3_iBGP: - vrf Tenant_A_OP_Zone\n no shutdown\n mtu 1500\n vrf Tenant_A_OP_Zone\n ip - address 10.255.251.2/31\n!\ninterface Vlan3010\n description MLAG_PEER_L3_iBGP: - vrf Tenant_A_WEB_Zone\n no shutdown\n mtu 1500\n vrf Tenant_A_WEB_Zone\n - \ ip address 10.255.251.2/31\n!\ninterface Vlan3011\n description MLAG_PEER_L3_iBGP: - vrf Tenant_A_APP_Zone\n no shutdown\n mtu 1500\n vrf Tenant_A_APP_Zone\n - \ ip address 10.255.251.2/31\n!\ninterface Vlan3012\n description MLAG_PEER_L3_iBGP: - vrf Tenant_A_DB_Zone\n no shutdown\n mtu 1500\n vrf Tenant_A_DB_Zone\n ip - address 10.255.251.2/31\n!\ninterface Vlan3019\n description MLAG_PEER_L3_iBGP: - vrf Tenant_B_OP_Zone\n no shutdown\n mtu 1500\n vrf Tenant_B_OP_Zone\n ip - address 10.255.251.2/31\n!\ninterface Vlan3029\n description MLAG_PEER_L3_iBGP: - vrf Tenant_C_OP_Zone\n no shutdown\n mtu 1500\n vrf Tenant_C_OP_Zone\n ip - address 10.255.251.2/31\n!\ninterface Vlan4093\n description MLAG_PEER_L3_PEERING\n - \ no shutdown\n mtu 1500\n ip address 10.255.251.2/31\n!\ninterface Vlan4094\n - \ description MLAG_PEER\n no shutdown\n mtu 1500\n no autostate\n ip - address 10.255.252.2/31\n!\ninterface Vxlan1\n description DC1-LEAF2A_VTEP\n - \ vxlan source-interface Loopback1\n vxlan virtual-router encapsulation mac-address - mlag-system-id\n vxlan udp-port 4789\n vxlan vlan 110 vni 10110\n vxlan - vlan 111 vni 50111\n vxlan vlan 120 vni 10120\n vxlan vlan 121 vni 10121\n - \ vxlan vlan 130 vni 10130\n vxlan vlan 131 vni 10131\n vxlan vlan 140 vni - 10140\n vxlan vlan 141 vni 10141\n vxlan vlan 210 vni 20210\n vxlan vlan - 211 vni 20211\n vxlan vlan 310 vni 30310\n vxlan vlan 311 vni 30311\n vxlan - vrf Tenant_A_APP_Zone vni 12\n vxlan vrf Tenant_A_DB_Zone vni 13\n vxlan vrf - Tenant_A_OP_Zone vni 10\n vxlan vrf Tenant_A_WEB_Zone vni 11\n vxlan vrf Tenant_B_OP_Zone - vni 20\n vxlan vrf Tenant_C_OP_Zone vni 30\n!\nip virtual-router mac-address - 00:dc:00:00:00:0a\n!\nip address virtual source-nat vrf Tenant_A_OP_Zone address - 10.255.1.6\n!\nip routing\nno ip routing vrf MGMT\nip routing vrf Tenant_A_APP_Zone\nip - routing vrf Tenant_A_DB_Zone\nip routing vrf Tenant_A_OP_Zone\nip routing vrf - Tenant_A_WEB_Zone\nip routing vrf Tenant_B_OP_Zone\nip routing vrf Tenant_C_OP_Zone\n!\nip - prefix-list PL-LOOPBACKS-EVPN-OVERLAY\n seq 10 permit 192.168.255.0/24 eq 32\n - \ seq 20 permit 192.168.254.0/24 eq 32\n!\nmlag configuration\n domain-id DC1_LEAF2\n - \ local-interface Vlan4094\n peer-address 10.255.252.3\n peer-link Port-Channel5\n - \ reload-delay mlag 300\n reload-delay non-mlag 330\n!\nip route vrf MGMT 0.0.0.0/0 - 192.168.200.5\n!\nroute-map RM-CONN-2-BGP permit 10\n match ip address prefix-list - PL-LOOPBACKS-EVPN-OVERLAY\n!\nroute-map RM-MLAG-PEER-IN permit 10\n description - Make routes learned over MLAG Peer-link less preferred on spines to ensure optimal - routing\n set origin incomplete\n!\nrouter bfd\n multihop interval 1200 min-rx - 1200 multiplier 3\n!\nrouter bgp 65102\n router-id 192.168.255.6\n maximum-paths - 4 ecmp 4\n update wait-install\n no bgp default ipv4-unicast\n distance - bgp 20 200 200\n neighbor EVPN-OVERLAY-PEERS peer group\n neighbor EVPN-OVERLAY-PEERS - update-source Loopback0\n neighbor EVPN-OVERLAY-PEERS bfd\n neighbor EVPN-OVERLAY-PEERS - ebgp-multihop 3\n neighbor EVPN-OVERLAY-PEERS password 7 q+VNViP5i4rVjW1cxFv2wA==\n - \ neighbor EVPN-OVERLAY-PEERS send-community\n neighbor EVPN-OVERLAY-PEERS - maximum-routes 0\n neighbor IPv4-UNDERLAY-PEERS peer group\n neighbor IPv4-UNDERLAY-PEERS - password 7 AQQvKeimxJu+uGQ/yYvv9w==\n neighbor IPv4-UNDERLAY-PEERS send-community\n - \ neighbor IPv4-UNDERLAY-PEERS maximum-routes 12000\n neighbor MLAG-IPv4-UNDERLAY-PEER - peer group\n neighbor MLAG-IPv4-UNDERLAY-PEER remote-as 65102\n neighbor MLAG-IPv4-UNDERLAY-PEER - next-hop-self\n neighbor MLAG-IPv4-UNDERLAY-PEER description DC1-LEAF2B\n neighbor - MLAG-IPv4-UNDERLAY-PEER password 7 vnEaG8gMeQf3d3cN6PktXQ==\n neighbor MLAG-IPv4-UNDERLAY-PEER - send-community\n neighbor MLAG-IPv4-UNDERLAY-PEER maximum-routes 12000\n neighbor - MLAG-IPv4-UNDERLAY-PEER route-map RM-MLAG-PEER-IN in\n neighbor 10.255.251.3 - peer group MLAG-IPv4-UNDERLAY-PEER\n neighbor 10.255.251.3 description DC1-LEAF2B\n - \ neighbor 172.31.255.8 peer group IPv4-UNDERLAY-PEERS\n neighbor 172.31.255.8 - remote-as 65001\n neighbor 172.31.255.8 description DC1-SPINE1_Ethernet2\n neighbor - 172.31.255.10 peer group IPv4-UNDERLAY-PEERS\n neighbor 172.31.255.10 remote-as - 65001\n neighbor 172.31.255.10 description DC1-SPINE2_Ethernet2\n neighbor - 172.31.255.12 peer group IPv4-UNDERLAY-PEERS\n neighbor 172.31.255.12 remote-as - 65001\n neighbor 172.31.255.12 description DC1-SPINE3_Ethernet2\n neighbor - 172.31.255.14 peer group IPv4-UNDERLAY-PEERS\n neighbor 172.31.255.14 remote-as - 65001\n neighbor 172.31.255.14 description DC1-SPINE4_Ethernet2\n neighbor - 192.168.255.1 peer group EVPN-OVERLAY-PEERS\n neighbor 192.168.255.1 remote-as - 65001\n neighbor 192.168.255.1 description DC1-SPINE1\n neighbor 192.168.255.2 - peer group EVPN-OVERLAY-PEERS\n neighbor 192.168.255.2 remote-as 65001\n neighbor - 192.168.255.2 description DC1-SPINE2\n neighbor 192.168.255.3 peer group EVPN-OVERLAY-PEERS\n - \ neighbor 192.168.255.3 remote-as 65001\n neighbor 192.168.255.3 description - DC1-SPINE3\n neighbor 192.168.255.4 peer group EVPN-OVERLAY-PEERS\n neighbor - 192.168.255.4 remote-as 65001\n neighbor 192.168.255.4 description DC1-SPINE4\n - \ redistribute connected route-map RM-CONN-2-BGP\n !\n vlan-aware-bundle - Tenant_A_APP_Zone\n rd 192.168.255.6:12\n route-target both 12:12\n - \ redistribute learned\n vlan 130-131\n !\n vlan-aware-bundle Tenant_A_DB_Zone\n - \ rd 192.168.255.6:13\n route-target both 13:13\n redistribute learned\n - \ vlan 140-141\n !\n vlan-aware-bundle Tenant_A_OP_Zone\n rd 192.168.255.6:10\n - \ route-target both 10:10\n redistribute learned\n vlan 110-111\n - \ !\n vlan-aware-bundle Tenant_A_WEB_Zone\n rd 192.168.255.6:11\n route-target - both 11:11\n redistribute learned\n vlan 120-121\n !\n vlan-aware-bundle - Tenant_B_OP_Zone\n rd 192.168.255.6:20\n route-target both 20:20\n redistribute - learned\n vlan 210-211\n !\n vlan-aware-bundle Tenant_C_OP_Zone\n rd - 192.168.255.6:30\n route-target both 30:30\n redistribute learned\n - \ vlan 310-311\n !\n address-family evpn\n neighbor EVPN-OVERLAY-PEERS - activate\n !\n address-family ipv4\n no neighbor EVPN-OVERLAY-PEERS activate\n - \ neighbor IPv4-UNDERLAY-PEERS activate\n neighbor MLAG-IPv4-UNDERLAY-PEER - activate\n !\n vrf Tenant_A_APP_Zone\n rd 192.168.255.6:12\n route-target + ROUTER_ID\n no shutdown\n ip address 192.168.255.6/32\n!\ninterface Loopback1\n + \ description VTEP_VXLAN_Tunnel_Source\n no shutdown\n ip address 192.168.254.6/32\n!\ninterface + Loopback100\n description Tenant_A_OP_Zone_VTEP_DIAGNOSTICS\n no shutdown\n + \ vrf Tenant_A_OP_Zone\n ip address 10.255.1.6/32\n!\ninterface Management1\n + \ description oob_management\n no shutdown\n vrf MGMT\n ip address 192.168.200.106/24\n!\ninterface + Vlan110\n description Tenant_A_OP_Zone_1\n no shutdown\n vrf Tenant_A_OP_Zone\n + \ ip address virtual 10.1.10.1/24\n!\ninterface Vlan111\n description Tenant_A_OP_Zone_2\n + \ no shutdown\n vrf Tenant_A_OP_Zone\n ip helper-address 1.1.1.1 vrf MGMT + source-interface lo100\n ip address virtual 10.1.11.1/24\n!\ninterface Vlan120\n + \ description Tenant_A_WEB_Zone_1\n no shutdown\n vrf Tenant_A_WEB_Zone\n + \ ip helper-address 1.1.1.1 vrf TEST source-interface lo100\n ip address virtual + 10.1.20.1/24\n!\ninterface Vlan121\n description Tenant_A_WEBZone_2\n shutdown\n + \ mtu 1560\n vrf Tenant_A_WEB_Zone\n ip address virtual 10.1.10.254/24\n!\ninterface + Vlan130\n description Tenant_A_APP_Zone_1\n no shutdown\n vrf Tenant_A_APP_Zone\n + \ ip address virtual 10.1.30.1/24\n!\ninterface Vlan131\n description Tenant_A_APP_Zone_2\n + \ no shutdown\n vrf Tenant_A_APP_Zone\n ip address virtual 10.1.31.1/24\n!\ninterface + Vlan140\n description Tenant_A_DB_BZone_1\n no shutdown\n vrf Tenant_A_DB_Zone\n + \ ip address virtual 10.1.40.1/24\n!\ninterface Vlan141\n description Tenant_A_DB_Zone_2\n + \ no shutdown\n vrf Tenant_A_DB_Zone\n ip address virtual 10.1.41.1/24\n!\ninterface + Vlan210\n description Tenant_B_OP_Zone_1\n no shutdown\n vrf Tenant_B_OP_Zone\n + \ ip address virtual 10.2.10.1/24\n!\ninterface Vlan211\n description Tenant_B_OP_Zone_2\n + \ no shutdown\n vrf Tenant_B_OP_Zone\n ip address virtual 10.2.11.1/24\n!\ninterface + Vlan310\n description Tenant_C_OP_Zone_1\n no shutdown\n vrf Tenant_C_OP_Zone\n + \ ip address virtual 10.3.10.1/24\n!\ninterface Vlan311\n description Tenant_C_OP_Zone_2\n + \ no shutdown\n vrf Tenant_C_OP_Zone\n ip address virtual 10.3.11.1/24\n!\ninterface + Vlan3009\n description MLAG_PEER_L3_iBGP: vrf Tenant_A_OP_Zone\n no shutdown\n + \ mtu 1500\n vrf Tenant_A_OP_Zone\n ip address 10.255.251.2/31\n!\ninterface + Vlan3010\n description MLAG_PEER_L3_iBGP: vrf Tenant_A_WEB_Zone\n no shutdown\n + \ mtu 1500\n vrf Tenant_A_WEB_Zone\n ip address 10.255.251.2/31\n!\ninterface + Vlan3011\n description MLAG_PEER_L3_iBGP: vrf Tenant_A_APP_Zone\n no shutdown\n + \ mtu 1500\n vrf Tenant_A_APP_Zone\n ip address 10.255.251.2/31\n!\ninterface + Vlan3012\n description MLAG_PEER_L3_iBGP: vrf Tenant_A_DB_Zone\n no shutdown\n + \ mtu 1500\n vrf Tenant_A_DB_Zone\n ip address 10.255.251.2/31\n!\ninterface + Vlan3019\n description MLAG_PEER_L3_iBGP: vrf Tenant_B_OP_Zone\n no shutdown\n + \ mtu 1500\n vrf Tenant_B_OP_Zone\n ip address 10.255.251.2/31\n!\ninterface + Vlan3029\n description MLAG_PEER_L3_iBGP: vrf Tenant_C_OP_Zone\n no shutdown\n + \ mtu 1500\n vrf Tenant_C_OP_Zone\n ip address 10.255.251.2/31\n!\ninterface + Vlan4093\n description MLAG_PEER_L3_PEERING\n no shutdown\n mtu 1500\n ip + address 10.255.251.2/31\n!\ninterface Vlan4094\n description MLAG_PEER\n no + shutdown\n mtu 1500\n no autostate\n ip address 10.255.252.2/31\n!\ninterface + Vxlan1\n description DC1-LEAF2A_VTEP\n vxlan source-interface Loopback1\n + \ vxlan virtual-router encapsulation mac-address mlag-system-id\n vxlan udp-port + 4789\n vxlan vlan 110 vni 10110\n vxlan vlan 111 vni 50111\n vxlan vlan + 120 vni 10120\n vxlan vlan 121 vni 10121\n vxlan vlan 130 vni 10130\n vxlan + vlan 131 vni 10131\n vxlan vlan 140 vni 10140\n vxlan vlan 141 vni 10141\n + \ vxlan vlan 210 vni 20210\n vxlan vlan 211 vni 20211\n vxlan vlan 310 vni + 30310\n vxlan vlan 311 vni 30311\n vxlan vrf Tenant_A_APP_Zone vni 12\n vxlan + vrf Tenant_A_DB_Zone vni 13\n vxlan vrf Tenant_A_OP_Zone vni 10\n vxlan vrf + Tenant_A_WEB_Zone vni 11\n vxlan vrf Tenant_B_OP_Zone vni 20\n vxlan vrf Tenant_C_OP_Zone + vni 30\n!\nip virtual-router mac-address 00:dc:00:00:00:0a\n!\nip address virtual + source-nat vrf Tenant_A_OP_Zone address 10.255.1.6\n!\nip routing\nno ip routing + vrf MGMT\nip routing vrf Tenant_A_APP_Zone\nip routing vrf Tenant_A_DB_Zone\nip + routing vrf Tenant_A_OP_Zone\nip routing vrf Tenant_A_WEB_Zone\nip routing vrf + Tenant_B_OP_Zone\nip routing vrf Tenant_C_OP_Zone\n!\nip prefix-list PL-LOOPBACKS-EVPN-OVERLAY\n + \ seq 10 permit 192.168.255.0/24 eq 32\n seq 20 permit 192.168.254.0/24 eq + 32\n!\nmlag configuration\n domain-id DC1_LEAF2\n local-interface Vlan4094\n + \ peer-address 10.255.252.3\n peer-link Port-Channel5\n reload-delay mlag + 300\n reload-delay non-mlag 330\n!\nip route vrf MGMT 0.0.0.0/0 192.168.200.5\n!\nroute-map + RM-CONN-2-BGP permit 10\n match ip address prefix-list PL-LOOPBACKS-EVPN-OVERLAY\n!\nroute-map + RM-MLAG-PEER-IN permit 10\n description Make routes learned over MLAG Peer-link + less preferred on spines to ensure optimal routing\n set origin incomplete\n!\nrouter + bfd\n multihop interval 1200 min-rx 1200 multiplier 3\n!\nrouter bgp 65102\n + \ router-id 192.168.255.6\n maximum-paths 4 ecmp 4\n update wait-install\n + \ no bgp default ipv4-unicast\n distance bgp 20 200 200\n neighbor EVPN-OVERLAY-PEERS + peer group\n neighbor EVPN-OVERLAY-PEERS update-source Loopback0\n neighbor + EVPN-OVERLAY-PEERS bfd\n neighbor EVPN-OVERLAY-PEERS ebgp-multihop 3\n neighbor + EVPN-OVERLAY-PEERS password 7 q+VNViP5i4rVjW1cxFv2wA==\n neighbor EVPN-OVERLAY-PEERS + send-community\n neighbor EVPN-OVERLAY-PEERS maximum-routes 0\n neighbor IPv4-UNDERLAY-PEERS + peer group\n neighbor IPv4-UNDERLAY-PEERS password 7 AQQvKeimxJu+uGQ/yYvv9w==\n + \ neighbor IPv4-UNDERLAY-PEERS send-community\n neighbor IPv4-UNDERLAY-PEERS + maximum-routes 12000\n neighbor MLAG-IPv4-UNDERLAY-PEER peer group\n neighbor + MLAG-IPv4-UNDERLAY-PEER remote-as 65102\n neighbor MLAG-IPv4-UNDERLAY-PEER next-hop-self\n + \ neighbor MLAG-IPv4-UNDERLAY-PEER description DC1-LEAF2B\n neighbor MLAG-IPv4-UNDERLAY-PEER + password 7 vnEaG8gMeQf3d3cN6PktXQ==\n neighbor MLAG-IPv4-UNDERLAY-PEER send-community\n + \ neighbor MLAG-IPv4-UNDERLAY-PEER maximum-routes 12000\n neighbor MLAG-IPv4-UNDERLAY-PEER + route-map RM-MLAG-PEER-IN in\n neighbor 10.255.251.3 peer group MLAG-IPv4-UNDERLAY-PEER\n + \ neighbor 10.255.251.3 description DC1-LEAF2B\n neighbor 172.31.255.8 peer + group IPv4-UNDERLAY-PEERS\n neighbor 172.31.255.8 remote-as 65001\n neighbor + 172.31.255.8 description DC1-SPINE1_Ethernet2\n neighbor 172.31.255.10 peer + group IPv4-UNDERLAY-PEERS\n neighbor 172.31.255.10 remote-as 65001\n neighbor + 172.31.255.10 description DC1-SPINE2_Ethernet2\n neighbor 172.31.255.12 peer + group IPv4-UNDERLAY-PEERS\n neighbor 172.31.255.12 remote-as 65001\n neighbor + 172.31.255.12 description DC1-SPINE3_Ethernet2\n neighbor 172.31.255.14 peer + group IPv4-UNDERLAY-PEERS\n neighbor 172.31.255.14 remote-as 65001\n neighbor + 172.31.255.14 description DC1-SPINE4_Ethernet2\n neighbor 192.168.255.1 peer + group EVPN-OVERLAY-PEERS\n neighbor 192.168.255.1 remote-as 65001\n neighbor + 192.168.255.1 description DC1-SPINE1\n neighbor 192.168.255.2 peer group EVPN-OVERLAY-PEERS\n + \ neighbor 192.168.255.2 remote-as 65001\n neighbor 192.168.255.2 description + DC1-SPINE2\n neighbor 192.168.255.3 peer group EVPN-OVERLAY-PEERS\n neighbor + 192.168.255.3 remote-as 65001\n neighbor 192.168.255.3 description DC1-SPINE3\n + \ neighbor 192.168.255.4 peer group EVPN-OVERLAY-PEERS\n neighbor 192.168.255.4 + remote-as 65001\n neighbor 192.168.255.4 description DC1-SPINE4\n redistribute + connected route-map RM-CONN-2-BGP\n !\n vlan-aware-bundle Tenant_A_APP_Zone\n + \ rd 192.168.255.6:12\n route-target both 12:12\n redistribute learned\n + \ vlan 130-131\n !\n vlan-aware-bundle Tenant_A_DB_Zone\n rd 192.168.255.6:13\n + \ route-target both 13:13\n redistribute learned\n vlan 140-141\n + \ !\n vlan-aware-bundle Tenant_A_OP_Zone\n rd 192.168.255.6:10\n route-target + both 10:10\n redistribute learned\n vlan 110-111\n !\n vlan-aware-bundle + Tenant_A_WEB_Zone\n rd 192.168.255.6:11\n route-target both 11:11\n + \ redistribute learned\n vlan 120-121\n !\n vlan-aware-bundle Tenant_B_OP_Zone\n + \ rd 192.168.255.6:20\n route-target both 20:20\n redistribute learned\n + \ vlan 210-211\n !\n vlan-aware-bundle Tenant_C_OP_Zone\n rd 192.168.255.6:30\n + \ route-target both 30:30\n redistribute learned\n vlan 310-311\n + \ !\n address-family evpn\n neighbor EVPN-OVERLAY-PEERS activate\n !\n + \ address-family ipv4\n no neighbor EVPN-OVERLAY-PEERS activate\n neighbor + IPv4-UNDERLAY-PEERS activate\n neighbor MLAG-IPv4-UNDERLAY-PEER activate\n + \ !\n vrf Tenant_A_APP_Zone\n rd 192.168.255.6:12\n route-target import evpn 12:12\n route-target export evpn 12:12\n router-id 192.168.255.6\n \ update wait-install\n neighbor 10.255.251.3 peer group MLAG-IPv4-UNDERLAY-PEER\n \ neighbor 10.255.251.3 description DC1-LEAF2B\n redistribute connected\n @@ -627,172 +627,171 @@ cvp_configlets: Ethernet7\n description DC1-L2LEAF1A_Ethernet2\n no shutdown\n channel-group 7 mode active\n!\ninterface Ethernet10\n description server01_MLAG_Eth3\n no shutdown\n channel-group 10 mode active\n!\ninterface Loopback0\n description - EVPN_Overlay_Peering\n no shutdown\n ip address 192.168.255.7/32\n!\ninterface - Loopback1\n description VTEP_VXLAN_Tunnel_Source\n no shutdown\n ip address - 192.168.254.6/32\n!\ninterface Loopback100\n description Tenant_A_OP_Zone_VTEP_DIAGNOSTICS\n - \ no shutdown\n vrf Tenant_A_OP_Zone\n ip address 10.255.1.7/32\n!\ninterface - Management1\n description oob_management\n no shutdown\n vrf MGMT\n ip - address 192.168.200.107/24\n!\ninterface Vlan110\n description Tenant_A_OP_Zone_1\n - \ no shutdown\n vrf Tenant_A_OP_Zone\n ip address virtual 10.1.10.1/24\n!\ninterface - Vlan111\n description Tenant_A_OP_Zone_2\n no shutdown\n vrf Tenant_A_OP_Zone\n - \ ip helper-address 1.1.1.1 vrf MGMT source-interface lo100\n ip address virtual - 10.1.11.1/24\n!\ninterface Vlan120\n description Tenant_A_WEB_Zone_1\n no - shutdown\n vrf Tenant_A_WEB_Zone\n ip helper-address 1.1.1.1 vrf TEST source-interface - lo100\n ip address virtual 10.1.20.1/24\n!\ninterface Vlan121\n description - Tenant_A_WEBZone_2\n shutdown\n mtu 1560\n vrf Tenant_A_WEB_Zone\n ip - address virtual 10.1.10.254/24\n!\ninterface Vlan130\n description Tenant_A_APP_Zone_1\n - \ no shutdown\n vrf Tenant_A_APP_Zone\n ip address virtual 10.1.30.1/24\n!\ninterface - Vlan131\n description Tenant_A_APP_Zone_2\n no shutdown\n vrf Tenant_A_APP_Zone\n - \ ip address virtual 10.1.31.1/24\n!\ninterface Vlan140\n description Tenant_A_DB_BZone_1\n - \ no shutdown\n vrf Tenant_A_DB_Zone\n ip address virtual 10.1.40.1/24\n!\ninterface - Vlan141\n description Tenant_A_DB_Zone_2\n no shutdown\n vrf Tenant_A_DB_Zone\n - \ ip address virtual 10.1.41.1/24\n!\ninterface Vlan210\n description Tenant_B_OP_Zone_1\n - \ no shutdown\n vrf Tenant_B_OP_Zone\n ip address virtual 10.2.10.1/24\n!\ninterface - Vlan211\n description Tenant_B_OP_Zone_2\n no shutdown\n vrf Tenant_B_OP_Zone\n - \ ip address virtual 10.2.11.1/24\n!\ninterface Vlan310\n description Tenant_C_OP_Zone_1\n - \ no shutdown\n vrf Tenant_C_OP_Zone\n ip address virtual 10.3.10.1/24\n!\ninterface - Vlan311\n description Tenant_C_OP_Zone_2\n no shutdown\n vrf Tenant_C_OP_Zone\n - \ ip address virtual 10.3.11.1/24\n!\ninterface Vlan3009\n description MLAG_PEER_L3_iBGP: - vrf Tenant_A_OP_Zone\n no shutdown\n mtu 1500\n vrf Tenant_A_OP_Zone\n ip - address 10.255.251.3/31\n!\ninterface Vlan3010\n description MLAG_PEER_L3_iBGP: - vrf Tenant_A_WEB_Zone\n no shutdown\n mtu 1500\n vrf Tenant_A_WEB_Zone\n - \ ip address 10.255.251.3/31\n!\ninterface Vlan3011\n description MLAG_PEER_L3_iBGP: - vrf Tenant_A_APP_Zone\n no shutdown\n mtu 1500\n vrf Tenant_A_APP_Zone\n - \ ip address 10.255.251.3/31\n!\ninterface Vlan3012\n description MLAG_PEER_L3_iBGP: - vrf Tenant_A_DB_Zone\n no shutdown\n mtu 1500\n vrf Tenant_A_DB_Zone\n ip - address 10.255.251.3/31\n!\ninterface Vlan3019\n description MLAG_PEER_L3_iBGP: - vrf Tenant_B_OP_Zone\n no shutdown\n mtu 1500\n vrf Tenant_B_OP_Zone\n ip - address 10.255.251.3/31\n!\ninterface Vlan3029\n description MLAG_PEER_L3_iBGP: - vrf Tenant_C_OP_Zone\n no shutdown\n mtu 1500\n vrf Tenant_C_OP_Zone\n ip - address 10.255.251.3/31\n!\ninterface Vlan4093\n description MLAG_PEER_L3_PEERING\n - \ no shutdown\n mtu 1500\n ip address 10.255.251.3/31\n!\ninterface Vlan4094\n - \ description MLAG_PEER\n no shutdown\n mtu 1500\n no autostate\n ip - address 10.255.252.3/31\n!\ninterface Vxlan1\n description DC1-LEAF2B_VTEP\n - \ vxlan source-interface Loopback1\n vxlan virtual-router encapsulation mac-address - mlag-system-id\n vxlan udp-port 4789\n vxlan vlan 110 vni 10110\n vxlan - vlan 111 vni 50111\n vxlan vlan 120 vni 10120\n vxlan vlan 121 vni 10121\n - \ vxlan vlan 130 vni 10130\n vxlan vlan 131 vni 10131\n vxlan vlan 140 vni - 10140\n vxlan vlan 141 vni 10141\n vxlan vlan 210 vni 20210\n vxlan vlan - 211 vni 20211\n vxlan vlan 310 vni 30310\n vxlan vlan 311 vni 30311\n vxlan - vrf Tenant_A_APP_Zone vni 12\n vxlan vrf Tenant_A_DB_Zone vni 13\n vxlan vrf - Tenant_A_OP_Zone vni 10\n vxlan vrf Tenant_A_WEB_Zone vni 11\n vxlan vrf Tenant_B_OP_Zone - vni 20\n vxlan vrf Tenant_C_OP_Zone vni 30\n!\nip virtual-router mac-address - 00:dc:00:00:00:0a\n!\nip address virtual source-nat vrf Tenant_A_OP_Zone address - 10.255.1.7\n!\nip routing\nno ip routing vrf MGMT\nip routing vrf Tenant_A_APP_Zone\nip - routing vrf Tenant_A_DB_Zone\nip routing vrf Tenant_A_OP_Zone\nip routing vrf - Tenant_A_WEB_Zone\nip routing vrf Tenant_B_OP_Zone\nip routing vrf Tenant_C_OP_Zone\n!\nip - prefix-list PL-LOOPBACKS-EVPN-OVERLAY\n seq 10 permit 192.168.255.0/24 eq 32\n - \ seq 20 permit 192.168.254.0/24 eq 32\n!\nmlag configuration\n domain-id DC1_LEAF2\n - \ local-interface Vlan4094\n peer-address 10.255.252.2\n peer-link Port-Channel5\n - \ reload-delay mlag 300\n reload-delay non-mlag 330\n!\nip route vrf MGMT 0.0.0.0/0 - 192.168.200.5\n!\nroute-map RM-CONN-2-BGP permit 10\n match ip address prefix-list - PL-LOOPBACKS-EVPN-OVERLAY\n!\nroute-map RM-MLAG-PEER-IN permit 10\n description - Make routes learned over MLAG Peer-link less preferred on spines to ensure optimal - routing\n set origin incomplete\n!\nrouter bfd\n multihop interval 1200 min-rx - 1200 multiplier 3\n!\nrouter bgp 65102\n router-id 192.168.255.7\n maximum-paths - 4 ecmp 4\n update wait-install\n no bgp default ipv4-unicast\n distance - bgp 20 200 200\n neighbor EVPN-OVERLAY-PEERS peer group\n neighbor EVPN-OVERLAY-PEERS - update-source Loopback0\n neighbor EVPN-OVERLAY-PEERS bfd\n neighbor EVPN-OVERLAY-PEERS - ebgp-multihop 3\n neighbor EVPN-OVERLAY-PEERS password 7 q+VNViP5i4rVjW1cxFv2wA==\n - \ neighbor EVPN-OVERLAY-PEERS send-community\n neighbor EVPN-OVERLAY-PEERS - maximum-routes 0\n neighbor IPv4-UNDERLAY-PEERS peer group\n neighbor IPv4-UNDERLAY-PEERS - password 7 AQQvKeimxJu+uGQ/yYvv9w==\n neighbor IPv4-UNDERLAY-PEERS send-community\n - \ neighbor IPv4-UNDERLAY-PEERS maximum-routes 12000\n neighbor MLAG-IPv4-UNDERLAY-PEER - peer group\n neighbor MLAG-IPv4-UNDERLAY-PEER remote-as 65102\n neighbor MLAG-IPv4-UNDERLAY-PEER - next-hop-self\n neighbor MLAG-IPv4-UNDERLAY-PEER description DC1-LEAF2A\n neighbor - MLAG-IPv4-UNDERLAY-PEER password 7 vnEaG8gMeQf3d3cN6PktXQ==\n neighbor MLAG-IPv4-UNDERLAY-PEER - send-community\n neighbor MLAG-IPv4-UNDERLAY-PEER maximum-routes 12000\n neighbor - MLAG-IPv4-UNDERLAY-PEER route-map RM-MLAG-PEER-IN in\n neighbor 10.255.251.2 - peer group MLAG-IPv4-UNDERLAY-PEER\n neighbor 10.255.251.2 description DC1-LEAF2A\n - \ neighbor 172.31.255.16 peer group IPv4-UNDERLAY-PEERS\n neighbor 172.31.255.16 - remote-as 65001\n neighbor 172.31.255.16 description DC1-SPINE1_Ethernet3\n - \ neighbor 172.31.255.18 peer group IPv4-UNDERLAY-PEERS\n neighbor 172.31.255.18 - remote-as 65001\n neighbor 172.31.255.18 description DC1-SPINE2_Ethernet3\n - \ neighbor 172.31.255.20 peer group IPv4-UNDERLAY-PEERS\n neighbor 172.31.255.20 - remote-as 65001\n neighbor 172.31.255.20 description DC1-SPINE3_Ethernet3\n - \ neighbor 172.31.255.22 peer group IPv4-UNDERLAY-PEERS\n neighbor 172.31.255.22 - remote-as 65001\n neighbor 172.31.255.22 description DC1-SPINE4_Ethernet3\n - \ neighbor 192.168.255.1 peer group EVPN-OVERLAY-PEERS\n neighbor 192.168.255.1 - remote-as 65001\n neighbor 192.168.255.1 description DC1-SPINE1\n neighbor - 192.168.255.2 peer group EVPN-OVERLAY-PEERS\n neighbor 192.168.255.2 remote-as - 65001\n neighbor 192.168.255.2 description DC1-SPINE2\n neighbor 192.168.255.3 - peer group EVPN-OVERLAY-PEERS\n neighbor 192.168.255.3 remote-as 65001\n neighbor - 192.168.255.3 description DC1-SPINE3\n neighbor 192.168.255.4 peer group EVPN-OVERLAY-PEERS\n - \ neighbor 192.168.255.4 remote-as 65001\n neighbor 192.168.255.4 description - DC1-SPINE4\n redistribute connected route-map RM-CONN-2-BGP\n !\n vlan-aware-bundle - Tenant_A_APP_Zone\n rd 192.168.255.7:12\n route-target both 12:12\n - \ redistribute learned\n vlan 130-131\n !\n vlan-aware-bundle Tenant_A_DB_Zone\n - \ rd 192.168.255.7:13\n route-target both 13:13\n redistribute learned\n - \ vlan 140-141\n !\n vlan-aware-bundle Tenant_A_OP_Zone\n rd 192.168.255.7:10\n - \ route-target both 10:10\n redistribute learned\n vlan 110-111\n - \ !\n vlan-aware-bundle Tenant_A_WEB_Zone\n rd 192.168.255.7:11\n route-target - both 11:11\n redistribute learned\n vlan 120-121\n !\n vlan-aware-bundle - Tenant_B_OP_Zone\n rd 192.168.255.7:20\n route-target both 20:20\n redistribute - learned\n vlan 210-211\n !\n vlan-aware-bundle Tenant_C_OP_Zone\n rd - 192.168.255.7:30\n route-target both 30:30\n redistribute learned\n - \ vlan 310-311\n !\n address-family evpn\n neighbor EVPN-OVERLAY-PEERS - activate\n !\n address-family ipv4\n no neighbor EVPN-OVERLAY-PEERS activate\n - \ neighbor IPv4-UNDERLAY-PEERS activate\n neighbor MLAG-IPv4-UNDERLAY-PEER - activate\n !\n vrf Tenant_A_APP_Zone\n rd 192.168.255.7:12\n route-target - import evpn 12:12\n route-target export evpn 12:12\n router-id 192.168.255.7\n - \ update wait-install\n neighbor 10.255.251.2 peer group MLAG-IPv4-UNDERLAY-PEER\n - \ neighbor 10.255.251.2 description DC1-LEAF2A\n redistribute connected\n - \ !\n vrf Tenant_A_DB_Zone\n rd 192.168.255.7:13\n route-target import - evpn 13:13\n route-target export evpn 13:13\n router-id 192.168.255.7\n - \ update wait-install\n neighbor 10.255.251.2 peer group MLAG-IPv4-UNDERLAY-PEER\n - \ neighbor 10.255.251.2 description DC1-LEAF2A\n redistribute connected\n - \ !\n vrf Tenant_A_OP_Zone\n rd 192.168.255.7:10\n route-target import - evpn 10:10\n route-target export evpn 10:10\n router-id 192.168.255.7\n - \ update wait-install\n neighbor 10.255.251.2 peer group MLAG-IPv4-UNDERLAY-PEER\n - \ neighbor 10.255.251.2 description DC1-LEAF2A\n redistribute connected\n - \ !\n vrf Tenant_A_WEB_Zone\n rd 192.168.255.7:11\n route-target - import evpn 11:11\n route-target export evpn 11:11\n router-id 192.168.255.7\n - \ update wait-install\n neighbor 10.255.251.2 peer group MLAG-IPv4-UNDERLAY-PEER\n - \ neighbor 10.255.251.2 description DC1-LEAF2A\n redistribute connected\n - \ !\n vrf Tenant_B_OP_Zone\n rd 192.168.255.7:20\n route-target import - evpn 20:20\n route-target export evpn 20:20\n router-id 192.168.255.7\n - \ update wait-install\n neighbor 10.255.251.2 peer group MLAG-IPv4-UNDERLAY-PEER\n - \ neighbor 10.255.251.2 description DC1-LEAF2A\n redistribute connected\n - \ !\n vrf Tenant_C_OP_Zone\n rd 192.168.255.7:30\n route-target import - evpn 30:30\n route-target export evpn 30:30\n router-id 192.168.255.7\n - \ update wait-install\n neighbor 10.255.251.2 peer group MLAG-IPv4-UNDERLAY-PEER\n - \ neighbor 10.255.251.2 description DC1-LEAF2A\n redistribute connected\n!\nmanagement - api http-commands\n protocol https\n no shutdown\n !\n vrf MGMT\n no - shutdown\n!\nend\n" - AVD_DC1-SPINE1: "!\ndaemon TerminAttr\n exec /usr/bin/TerminAttr -cvaddr=192.168.200.11:9910 - -cvauth=key,telarista -cvvrf=MGMT -smashexcludes=ale,flexCounter,hardware,kni,pulse,strata - -ingestexclude=/Sysdb/cell/1/agent,/Sysdb/cell/2/agent -taillogs\n no shutdown\n!\nvlan - internal order ascending range 1006 1199\n!\ntransceiver qsfp default-mode 4x10G\n!\nservice - routing protocols model multi-agent\n!\nhostname DC1-SPINE1\nip name-server vrf - MGMT 8.8.8.8\nip name-server vrf MGMT 192.168.200.5\n!\nntp local-interface vrf - MGMT Management1\nntp server vrf MGMT 192.168.200.5 prefer\n!\nspanning-tree mode - none\n!\nno enable password\nno aaa root\n!\nusername admin privilege 15 role - network-admin nopassword\nusername cvpadmin privilege 15 role network-admin secret - sha512 $6$rZKcbIZ7iWGAWTUM$TCgDn1KcavS0s.OV8lacMTUkxTByfzcGlFlYUWroxYuU7M/9bIodhRO7nXGzMweUxvbk8mJmQl8Bh44cRktUj.\n!\nvrf - instance MGMT\n!\ninterface Ethernet1\n description P2P_LINK_TO_DC1-LEAF1A_Ethernet1\n - \ no shutdown\n mtu 1500\n no switchport\n ip address 172.31.255.0/31\n!\ninterface - Ethernet2\n description P2P_LINK_TO_DC1-LEAF2A_Ethernet1\n no shutdown\n mtu - 1500\n no switchport\n ip address 172.31.255.8/31\n!\ninterface Ethernet3\n - \ description P2P_LINK_TO_DC1-LEAF2B_Ethernet1\n no shutdown\n mtu 1500\n - \ no switchport\n ip address 172.31.255.16/31\n!\ninterface Ethernet4\n description - P2P_LINK_TO_DC1-SVC3A_Ethernet1\n shutdown\n mtu 1500\n no switchport\n - \ ip address 172.31.255.24/31\n!\ninterface Ethernet5\n description P2P_LINK_TO_DC1-SVC3B_Ethernet1\n - \ shutdown\n mtu 1500\n no switchport\n ip address 172.31.255.32/31\n!\ninterface - Ethernet6\n description P2P_LINK_TO_DC1-BL1A_Ethernet1\n no shutdown\n mtu - 1500\n no switchport\n ip address 172.31.255.40/31\n!\ninterface Ethernet7\n - \ description P2P_LINK_TO_DC1-BL1B_Ethernet1\n no shutdown\n mtu 1500\n no - switchport\n ip address 172.31.255.48/31\n!\ninterface Loopback0\n description - EVPN_Overlay_Peering\n no shutdown\n ip address 192.168.255.1/32\n!\ninterface - Management1\n description oob_management\n no shutdown\n vrf MGMT\n ip - address 192.168.200.101/24\n!\nip routing\nno ip routing vrf MGMT\n!\nip prefix-list - PL-LOOPBACKS-EVPN-OVERLAY\n seq 10 permit 192.168.255.0/24 eq 32\n!\nip route - vrf MGMT 0.0.0.0/0 192.168.200.5\n!\nroute-map RM-CONN-2-BGP permit 10\n match - ip address prefix-list PL-LOOPBACKS-EVPN-OVERLAY\n!\nrouter bfd\n multihop interval - 1200 min-rx 1200 multiplier 3\n!\nrouter bgp 65001\n router-id 192.168.255.1\n - \ maximum-paths 4 ecmp 4\n update wait-install\n no bgp default ipv4-unicast\n - \ distance bgp 20 200 200\n neighbor EVPN-OVERLAY-PEERS peer group\n neighbor - EVPN-OVERLAY-PEERS next-hop-unchanged\n neighbor EVPN-OVERLAY-PEERS update-source - Loopback0\n neighbor EVPN-OVERLAY-PEERS bfd\n neighbor EVPN-OVERLAY-PEERS + ROUTER_ID\n no shutdown\n ip address 192.168.255.7/32\n!\ninterface Loopback1\n + \ description VTEP_VXLAN_Tunnel_Source\n no shutdown\n ip address 192.168.254.6/32\n!\ninterface + Loopback100\n description Tenant_A_OP_Zone_VTEP_DIAGNOSTICS\n no shutdown\n + \ vrf Tenant_A_OP_Zone\n ip address 10.255.1.7/32\n!\ninterface Management1\n + \ description oob_management\n no shutdown\n vrf MGMT\n ip address 192.168.200.107/24\n!\ninterface + Vlan110\n description Tenant_A_OP_Zone_1\n no shutdown\n vrf Tenant_A_OP_Zone\n + \ ip address virtual 10.1.10.1/24\n!\ninterface Vlan111\n description Tenant_A_OP_Zone_2\n + \ no shutdown\n vrf Tenant_A_OP_Zone\n ip helper-address 1.1.1.1 vrf MGMT + source-interface lo100\n ip address virtual 10.1.11.1/24\n!\ninterface Vlan120\n + \ description Tenant_A_WEB_Zone_1\n no shutdown\n vrf Tenant_A_WEB_Zone\n + \ ip helper-address 1.1.1.1 vrf TEST source-interface lo100\n ip address virtual + 10.1.20.1/24\n!\ninterface Vlan121\n description Tenant_A_WEBZone_2\n shutdown\n + \ mtu 1560\n vrf Tenant_A_WEB_Zone\n ip address virtual 10.1.10.254/24\n!\ninterface + Vlan130\n description Tenant_A_APP_Zone_1\n no shutdown\n vrf Tenant_A_APP_Zone\n + \ ip address virtual 10.1.30.1/24\n!\ninterface Vlan131\n description Tenant_A_APP_Zone_2\n + \ no shutdown\n vrf Tenant_A_APP_Zone\n ip address virtual 10.1.31.1/24\n!\ninterface + Vlan140\n description Tenant_A_DB_BZone_1\n no shutdown\n vrf Tenant_A_DB_Zone\n + \ ip address virtual 10.1.40.1/24\n!\ninterface Vlan141\n description Tenant_A_DB_Zone_2\n + \ no shutdown\n vrf Tenant_A_DB_Zone\n ip address virtual 10.1.41.1/24\n!\ninterface + Vlan210\n description Tenant_B_OP_Zone_1\n no shutdown\n vrf Tenant_B_OP_Zone\n + \ ip address virtual 10.2.10.1/24\n!\ninterface Vlan211\n description Tenant_B_OP_Zone_2\n + \ no shutdown\n vrf Tenant_B_OP_Zone\n ip address virtual 10.2.11.1/24\n!\ninterface + Vlan310\n description Tenant_C_OP_Zone_1\n no shutdown\n vrf Tenant_C_OP_Zone\n + \ ip address virtual 10.3.10.1/24\n!\ninterface Vlan311\n description Tenant_C_OP_Zone_2\n + \ no shutdown\n vrf Tenant_C_OP_Zone\n ip address virtual 10.3.11.1/24\n!\ninterface + Vlan3009\n description MLAG_PEER_L3_iBGP: vrf Tenant_A_OP_Zone\n no shutdown\n + \ mtu 1500\n vrf Tenant_A_OP_Zone\n ip address 10.255.251.3/31\n!\ninterface + Vlan3010\n description MLAG_PEER_L3_iBGP: vrf Tenant_A_WEB_Zone\n no shutdown\n + \ mtu 1500\n vrf Tenant_A_WEB_Zone\n ip address 10.255.251.3/31\n!\ninterface + Vlan3011\n description MLAG_PEER_L3_iBGP: vrf Tenant_A_APP_Zone\n no shutdown\n + \ mtu 1500\n vrf Tenant_A_APP_Zone\n ip address 10.255.251.3/31\n!\ninterface + Vlan3012\n description MLAG_PEER_L3_iBGP: vrf Tenant_A_DB_Zone\n no shutdown\n + \ mtu 1500\n vrf Tenant_A_DB_Zone\n ip address 10.255.251.3/31\n!\ninterface + Vlan3019\n description MLAG_PEER_L3_iBGP: vrf Tenant_B_OP_Zone\n no shutdown\n + \ mtu 1500\n vrf Tenant_B_OP_Zone\n ip address 10.255.251.3/31\n!\ninterface + Vlan3029\n description MLAG_PEER_L3_iBGP: vrf Tenant_C_OP_Zone\n no shutdown\n + \ mtu 1500\n vrf Tenant_C_OP_Zone\n ip address 10.255.251.3/31\n!\ninterface + Vlan4093\n description MLAG_PEER_L3_PEERING\n no shutdown\n mtu 1500\n ip + address 10.255.251.3/31\n!\ninterface Vlan4094\n description MLAG_PEER\n no + shutdown\n mtu 1500\n no autostate\n ip address 10.255.252.3/31\n!\ninterface + Vxlan1\n description DC1-LEAF2B_VTEP\n vxlan source-interface Loopback1\n + \ vxlan virtual-router encapsulation mac-address mlag-system-id\n vxlan udp-port + 4789\n vxlan vlan 110 vni 10110\n vxlan vlan 111 vni 50111\n vxlan vlan + 120 vni 10120\n vxlan vlan 121 vni 10121\n vxlan vlan 130 vni 10130\n vxlan + vlan 131 vni 10131\n vxlan vlan 140 vni 10140\n vxlan vlan 141 vni 10141\n + \ vxlan vlan 210 vni 20210\n vxlan vlan 211 vni 20211\n vxlan vlan 310 vni + 30310\n vxlan vlan 311 vni 30311\n vxlan vrf Tenant_A_APP_Zone vni 12\n vxlan + vrf Tenant_A_DB_Zone vni 13\n vxlan vrf Tenant_A_OP_Zone vni 10\n vxlan vrf + Tenant_A_WEB_Zone vni 11\n vxlan vrf Tenant_B_OP_Zone vni 20\n vxlan vrf Tenant_C_OP_Zone + vni 30\n!\nip virtual-router mac-address 00:dc:00:00:00:0a\n!\nip address virtual + source-nat vrf Tenant_A_OP_Zone address 10.255.1.7\n!\nip routing\nno ip routing + vrf MGMT\nip routing vrf Tenant_A_APP_Zone\nip routing vrf Tenant_A_DB_Zone\nip + routing vrf Tenant_A_OP_Zone\nip routing vrf Tenant_A_WEB_Zone\nip routing vrf + Tenant_B_OP_Zone\nip routing vrf Tenant_C_OP_Zone\n!\nip prefix-list PL-LOOPBACKS-EVPN-OVERLAY\n + \ seq 10 permit 192.168.255.0/24 eq 32\n seq 20 permit 192.168.254.0/24 eq + 32\n!\nmlag configuration\n domain-id DC1_LEAF2\n local-interface Vlan4094\n + \ peer-address 10.255.252.2\n peer-link Port-Channel5\n reload-delay mlag + 300\n reload-delay non-mlag 330\n!\nip route vrf MGMT 0.0.0.0/0 192.168.200.5\n!\nroute-map + RM-CONN-2-BGP permit 10\n match ip address prefix-list PL-LOOPBACKS-EVPN-OVERLAY\n!\nroute-map + RM-MLAG-PEER-IN permit 10\n description Make routes learned over MLAG Peer-link + less preferred on spines to ensure optimal routing\n set origin incomplete\n!\nrouter + bfd\n multihop interval 1200 min-rx 1200 multiplier 3\n!\nrouter bgp 65102\n + \ router-id 192.168.255.7\n maximum-paths 4 ecmp 4\n update wait-install\n + \ no bgp default ipv4-unicast\n distance bgp 20 200 200\n neighbor EVPN-OVERLAY-PEERS + peer group\n neighbor EVPN-OVERLAY-PEERS update-source Loopback0\n neighbor + EVPN-OVERLAY-PEERS bfd\n neighbor EVPN-OVERLAY-PEERS ebgp-multihop 3\n neighbor + EVPN-OVERLAY-PEERS password 7 q+VNViP5i4rVjW1cxFv2wA==\n neighbor EVPN-OVERLAY-PEERS + send-community\n neighbor EVPN-OVERLAY-PEERS maximum-routes 0\n neighbor IPv4-UNDERLAY-PEERS + peer group\n neighbor IPv4-UNDERLAY-PEERS password 7 AQQvKeimxJu+uGQ/yYvv9w==\n + \ neighbor IPv4-UNDERLAY-PEERS send-community\n neighbor IPv4-UNDERLAY-PEERS + maximum-routes 12000\n neighbor MLAG-IPv4-UNDERLAY-PEER peer group\n neighbor + MLAG-IPv4-UNDERLAY-PEER remote-as 65102\n neighbor MLAG-IPv4-UNDERLAY-PEER next-hop-self\n + \ neighbor MLAG-IPv4-UNDERLAY-PEER description DC1-LEAF2A\n neighbor MLAG-IPv4-UNDERLAY-PEER + password 7 vnEaG8gMeQf3d3cN6PktXQ==\n neighbor MLAG-IPv4-UNDERLAY-PEER send-community\n + \ neighbor MLAG-IPv4-UNDERLAY-PEER maximum-routes 12000\n neighbor MLAG-IPv4-UNDERLAY-PEER + route-map RM-MLAG-PEER-IN in\n neighbor 10.255.251.2 peer group MLAG-IPv4-UNDERLAY-PEER\n + \ neighbor 10.255.251.2 description DC1-LEAF2A\n neighbor 172.31.255.16 peer + group IPv4-UNDERLAY-PEERS\n neighbor 172.31.255.16 remote-as 65001\n neighbor + 172.31.255.16 description DC1-SPINE1_Ethernet3\n neighbor 172.31.255.18 peer + group IPv4-UNDERLAY-PEERS\n neighbor 172.31.255.18 remote-as 65001\n neighbor + 172.31.255.18 description DC1-SPINE2_Ethernet3\n neighbor 172.31.255.20 peer + group IPv4-UNDERLAY-PEERS\n neighbor 172.31.255.20 remote-as 65001\n neighbor + 172.31.255.20 description DC1-SPINE3_Ethernet3\n neighbor 172.31.255.22 peer + group IPv4-UNDERLAY-PEERS\n neighbor 172.31.255.22 remote-as 65001\n neighbor + 172.31.255.22 description DC1-SPINE4_Ethernet3\n neighbor 192.168.255.1 peer + group EVPN-OVERLAY-PEERS\n neighbor 192.168.255.1 remote-as 65001\n neighbor + 192.168.255.1 description DC1-SPINE1\n neighbor 192.168.255.2 peer group EVPN-OVERLAY-PEERS\n + \ neighbor 192.168.255.2 remote-as 65001\n neighbor 192.168.255.2 description + DC1-SPINE2\n neighbor 192.168.255.3 peer group EVPN-OVERLAY-PEERS\n neighbor + 192.168.255.3 remote-as 65001\n neighbor 192.168.255.3 description DC1-SPINE3\n + \ neighbor 192.168.255.4 peer group EVPN-OVERLAY-PEERS\n neighbor 192.168.255.4 + remote-as 65001\n neighbor 192.168.255.4 description DC1-SPINE4\n redistribute + connected route-map RM-CONN-2-BGP\n !\n vlan-aware-bundle Tenant_A_APP_Zone\n + \ rd 192.168.255.7:12\n route-target both 12:12\n redistribute learned\n + \ vlan 130-131\n !\n vlan-aware-bundle Tenant_A_DB_Zone\n rd 192.168.255.7:13\n + \ route-target both 13:13\n redistribute learned\n vlan 140-141\n + \ !\n vlan-aware-bundle Tenant_A_OP_Zone\n rd 192.168.255.7:10\n route-target + both 10:10\n redistribute learned\n vlan 110-111\n !\n vlan-aware-bundle + Tenant_A_WEB_Zone\n rd 192.168.255.7:11\n route-target both 11:11\n + \ redistribute learned\n vlan 120-121\n !\n vlan-aware-bundle Tenant_B_OP_Zone\n + \ rd 192.168.255.7:20\n route-target both 20:20\n redistribute learned\n + \ vlan 210-211\n !\n vlan-aware-bundle Tenant_C_OP_Zone\n rd 192.168.255.7:30\n + \ route-target both 30:30\n redistribute learned\n vlan 310-311\n + \ !\n address-family evpn\n neighbor EVPN-OVERLAY-PEERS activate\n !\n + \ address-family ipv4\n no neighbor EVPN-OVERLAY-PEERS activate\n neighbor + IPv4-UNDERLAY-PEERS activate\n neighbor MLAG-IPv4-UNDERLAY-PEER activate\n + \ !\n vrf Tenant_A_APP_Zone\n rd 192.168.255.7:12\n route-target + import evpn 12:12\n route-target export evpn 12:12\n router-id 192.168.255.7\n + \ update wait-install\n neighbor 10.255.251.2 peer group MLAG-IPv4-UNDERLAY-PEER\n + \ neighbor 10.255.251.2 description DC1-LEAF2A\n redistribute connected\n + \ !\n vrf Tenant_A_DB_Zone\n rd 192.168.255.7:13\n route-target import + evpn 13:13\n route-target export evpn 13:13\n router-id 192.168.255.7\n + \ update wait-install\n neighbor 10.255.251.2 peer group MLAG-IPv4-UNDERLAY-PEER\n + \ neighbor 10.255.251.2 description DC1-LEAF2A\n redistribute connected\n + \ !\n vrf Tenant_A_OP_Zone\n rd 192.168.255.7:10\n route-target import + evpn 10:10\n route-target export evpn 10:10\n router-id 192.168.255.7\n + \ update wait-install\n neighbor 10.255.251.2 peer group MLAG-IPv4-UNDERLAY-PEER\n + \ neighbor 10.255.251.2 description DC1-LEAF2A\n redistribute connected\n + \ !\n vrf Tenant_A_WEB_Zone\n rd 192.168.255.7:11\n route-target + import evpn 11:11\n route-target export evpn 11:11\n router-id 192.168.255.7\n + \ update wait-install\n neighbor 10.255.251.2 peer group MLAG-IPv4-UNDERLAY-PEER\n + \ neighbor 10.255.251.2 description DC1-LEAF2A\n redistribute connected\n + \ !\n vrf Tenant_B_OP_Zone\n rd 192.168.255.7:20\n route-target import + evpn 20:20\n route-target export evpn 20:20\n router-id 192.168.255.7\n + \ update wait-install\n neighbor 10.255.251.2 peer group MLAG-IPv4-UNDERLAY-PEER\n + \ neighbor 10.255.251.2 description DC1-LEAF2A\n redistribute connected\n + \ !\n vrf Tenant_C_OP_Zone\n rd 192.168.255.7:30\n route-target import + evpn 30:30\n route-target export evpn 30:30\n router-id 192.168.255.7\n + \ update wait-install\n neighbor 10.255.251.2 peer group MLAG-IPv4-UNDERLAY-PEER\n + \ neighbor 10.255.251.2 description DC1-LEAF2A\n redistribute connected\n!\nmanagement + api http-commands\n protocol https\n no shutdown\n !\n vrf MGMT\n no + shutdown\n!\nend\n" + AVD_DC1-SPINE1: "!\ndaemon TerminAttr\n exec /usr/bin/TerminAttr -cvaddr=192.168.200.11:9910 + -cvauth=key,telarista -cvvrf=MGMT -smashexcludes=ale,flexCounter,hardware,kni,pulse,strata + -ingestexclude=/Sysdb/cell/1/agent,/Sysdb/cell/2/agent -taillogs\n no shutdown\n!\nvlan + internal order ascending range 1006 1199\n!\ntransceiver qsfp default-mode 4x10G\n!\nservice + routing protocols model multi-agent\n!\nhostname DC1-SPINE1\nip name-server vrf + MGMT 8.8.8.8\nip name-server vrf MGMT 192.168.200.5\n!\nntp local-interface vrf + MGMT Management1\nntp server vrf MGMT 192.168.200.5 prefer\n!\nspanning-tree mode + none\n!\nno enable password\nno aaa root\n!\nusername admin privilege 15 role + network-admin nopassword\nusername cvpadmin privilege 15 role network-admin secret + sha512 $6$rZKcbIZ7iWGAWTUM$TCgDn1KcavS0s.OV8lacMTUkxTByfzcGlFlYUWroxYuU7M/9bIodhRO7nXGzMweUxvbk8mJmQl8Bh44cRktUj.\n!\nvrf + instance MGMT\n!\ninterface Ethernet1\n description P2P_LINK_TO_DC1-LEAF1A_Ethernet1\n + \ no shutdown\n mtu 1500\n no switchport\n ip address 172.31.255.0/31\n!\ninterface + Ethernet2\n description P2P_LINK_TO_DC1-LEAF2A_Ethernet1\n no shutdown\n mtu + 1500\n no switchport\n ip address 172.31.255.8/31\n!\ninterface Ethernet3\n + \ description P2P_LINK_TO_DC1-LEAF2B_Ethernet1\n no shutdown\n mtu 1500\n + \ no switchport\n ip address 172.31.255.16/31\n!\ninterface Ethernet4\n description + P2P_LINK_TO_DC1-SVC3A_Ethernet1\n shutdown\n mtu 1500\n no switchport\n + \ ip address 172.31.255.24/31\n!\ninterface Ethernet5\n description P2P_LINK_TO_DC1-SVC3B_Ethernet1\n + \ shutdown\n mtu 1500\n no switchport\n ip address 172.31.255.32/31\n!\ninterface + Ethernet6\n description P2P_LINK_TO_DC1-BL1A_Ethernet1\n no shutdown\n mtu + 1500\n no switchport\n ip address 172.31.255.40/31\n!\ninterface Ethernet7\n + \ description P2P_LINK_TO_DC1-BL1B_Ethernet1\n no shutdown\n mtu 1500\n no + switchport\n ip address 172.31.255.48/31\n!\ninterface Loopback0\n description + ROUTER_ID\n no shutdown\n ip address 192.168.255.1/32\n!\ninterface Management1\n + \ description oob_management\n no shutdown\n vrf MGMT\n ip address 192.168.200.101/24\n!\nip + routing\nno ip routing vrf MGMT\n!\nip prefix-list PL-LOOPBACKS-EVPN-OVERLAY\n + \ seq 10 permit 192.168.255.0/24 eq 32\n!\nip route vrf MGMT 0.0.0.0/0 192.168.200.5\n!\nroute-map + RM-CONN-2-BGP permit 10\n match ip address prefix-list PL-LOOPBACKS-EVPN-OVERLAY\n!\nrouter + bfd\n multihop interval 1200 min-rx 1200 multiplier 3\n!\nrouter bgp 65001\n + \ router-id 192.168.255.1\n maximum-paths 4 ecmp 4\n update wait-install\n + \ no bgp default ipv4-unicast\n distance bgp 20 200 200\n neighbor EVPN-OVERLAY-PEERS + peer group\n neighbor EVPN-OVERLAY-PEERS next-hop-unchanged\n neighbor EVPN-OVERLAY-PEERS + update-source Loopback0\n neighbor EVPN-OVERLAY-PEERS bfd\n neighbor EVPN-OVERLAY-PEERS ebgp-multihop 3\n neighbor EVPN-OVERLAY-PEERS password 7 q+VNViP5i4rVjW1cxFv2wA==\n \ neighbor EVPN-OVERLAY-PEERS send-community\n neighbor EVPN-OVERLAY-PEERS maximum-routes 0\n neighbor IPv4-UNDERLAY-PEERS peer group\n neighbor IPv4-UNDERLAY-PEERS @@ -853,17 +852,16 @@ cvp_configlets: 1500\n no switchport\n ip address 172.31.255.42/31\n!\ninterface Ethernet7\n \ description P2P_LINK_TO_DC1-BL1B_Ethernet2\n no shutdown\n mtu 1500\n no switchport\n ip address 172.31.255.50/31\n!\ninterface Loopback0\n description - EVPN_Overlay_Peering\n no shutdown\n ip address 192.168.255.2/32\n!\ninterface - Management1\n description oob_management\n no shutdown\n vrf MGMT\n ip - address 192.168.200.102/24\n!\nip routing\nno ip routing vrf MGMT\n!\nip prefix-list - PL-LOOPBACKS-EVPN-OVERLAY\n seq 10 permit 192.168.255.0/24 eq 32\n!\nip route - vrf MGMT 0.0.0.0/0 192.168.200.5\n!\nroute-map RM-CONN-2-BGP permit 10\n match - ip address prefix-list PL-LOOPBACKS-EVPN-OVERLAY\n!\nrouter bfd\n multihop interval - 1200 min-rx 1200 multiplier 3\n!\nrouter bgp 65001\n router-id 192.168.255.2\n - \ maximum-paths 4 ecmp 4\n update wait-install\n no bgp default ipv4-unicast\n - \ distance bgp 20 200 200\n neighbor EVPN-OVERLAY-PEERS peer group\n neighbor - EVPN-OVERLAY-PEERS next-hop-unchanged\n neighbor EVPN-OVERLAY-PEERS update-source - Loopback0\n neighbor EVPN-OVERLAY-PEERS bfd\n neighbor EVPN-OVERLAY-PEERS + ROUTER_ID\n no shutdown\n ip address 192.168.255.2/32\n!\ninterface Management1\n + \ description oob_management\n no shutdown\n vrf MGMT\n ip address 192.168.200.102/24\n!\nip + routing\nno ip routing vrf MGMT\n!\nip prefix-list PL-LOOPBACKS-EVPN-OVERLAY\n + \ seq 10 permit 192.168.255.0/24 eq 32\n!\nip route vrf MGMT 0.0.0.0/0 192.168.200.5\n!\nroute-map + RM-CONN-2-BGP permit 10\n match ip address prefix-list PL-LOOPBACKS-EVPN-OVERLAY\n!\nrouter + bfd\n multihop interval 1200 min-rx 1200 multiplier 3\n!\nrouter bgp 65001\n + \ router-id 192.168.255.2\n maximum-paths 4 ecmp 4\n update wait-install\n + \ no bgp default ipv4-unicast\n distance bgp 20 200 200\n neighbor EVPN-OVERLAY-PEERS + peer group\n neighbor EVPN-OVERLAY-PEERS next-hop-unchanged\n neighbor EVPN-OVERLAY-PEERS + update-source Loopback0\n neighbor EVPN-OVERLAY-PEERS bfd\n neighbor EVPN-OVERLAY-PEERS ebgp-multihop 3\n neighbor EVPN-OVERLAY-PEERS password 7 q+VNViP5i4rVjW1cxFv2wA==\n \ neighbor EVPN-OVERLAY-PEERS send-community\n neighbor EVPN-OVERLAY-PEERS maximum-routes 0\n neighbor IPv4-UNDERLAY-PEERS peer group\n neighbor IPv4-UNDERLAY-PEERS @@ -925,17 +923,16 @@ cvp_configlets: 1500\n no switchport\n ip address 172.31.255.44/31\n!\ninterface Ethernet7\n \ description P2P_LINK_TO_DC1-BL1B_Ethernet3\n no shutdown\n mtu 1500\n no switchport\n ip address 172.31.255.52/31\n!\ninterface Loopback0\n description - EVPN_Overlay_Peering\n no shutdown\n ip address 192.168.255.3/32\n!\ninterface - Management1\n description oob_management\n no shutdown\n vrf MGMT\n ip - address 192.168.200.103/24\n!\nip routing\nno ip routing vrf MGMT\n!\nip prefix-list - PL-LOOPBACKS-EVPN-OVERLAY\n seq 10 permit 192.168.255.0/24 eq 32\n!\nip route - vrf MGMT 0.0.0.0/0 192.168.200.5\n!\nroute-map RM-CONN-2-BGP permit 10\n match - ip address prefix-list PL-LOOPBACKS-EVPN-OVERLAY\n!\nrouter bfd\n multihop interval - 1200 min-rx 1200 multiplier 3\n!\nrouter bgp 65001\n router-id 192.168.255.3\n - \ maximum-paths 4 ecmp 4\n update wait-install\n no bgp default ipv4-unicast\n - \ distance bgp 20 200 200\n neighbor EVPN-OVERLAY-PEERS peer group\n neighbor - EVPN-OVERLAY-PEERS next-hop-unchanged\n neighbor EVPN-OVERLAY-PEERS update-source - Loopback0\n neighbor EVPN-OVERLAY-PEERS bfd\n neighbor EVPN-OVERLAY-PEERS + ROUTER_ID\n no shutdown\n ip address 192.168.255.3/32\n!\ninterface Management1\n + \ description oob_management\n no shutdown\n vrf MGMT\n ip address 192.168.200.103/24\n!\nip + routing\nno ip routing vrf MGMT\n!\nip prefix-list PL-LOOPBACKS-EVPN-OVERLAY\n + \ seq 10 permit 192.168.255.0/24 eq 32\n!\nip route vrf MGMT 0.0.0.0/0 192.168.200.5\n!\nroute-map + RM-CONN-2-BGP permit 10\n match ip address prefix-list PL-LOOPBACKS-EVPN-OVERLAY\n!\nrouter + bfd\n multihop interval 1200 min-rx 1200 multiplier 3\n!\nrouter bgp 65001\n + \ router-id 192.168.255.3\n maximum-paths 4 ecmp 4\n update wait-install\n + \ no bgp default ipv4-unicast\n distance bgp 20 200 200\n neighbor EVPN-OVERLAY-PEERS + peer group\n neighbor EVPN-OVERLAY-PEERS next-hop-unchanged\n neighbor EVPN-OVERLAY-PEERS + update-source Loopback0\n neighbor EVPN-OVERLAY-PEERS bfd\n neighbor EVPN-OVERLAY-PEERS ebgp-multihop 3\n neighbor EVPN-OVERLAY-PEERS password 7 q+VNViP5i4rVjW1cxFv2wA==\n \ neighbor EVPN-OVERLAY-PEERS send-community\n neighbor EVPN-OVERLAY-PEERS maximum-routes 0\n neighbor IPv4-UNDERLAY-PEERS peer group\n neighbor IPv4-UNDERLAY-PEERS @@ -997,17 +994,16 @@ cvp_configlets: 1500\n no switchport\n ip address 172.31.255.46/31\n!\ninterface Ethernet7\n \ description P2P_LINK_TO_DC1-BL1B_Ethernet4\n no shutdown\n mtu 1500\n no switchport\n ip address 172.31.255.54/31\n!\ninterface Loopback0\n description - EVPN_Overlay_Peering\n no shutdown\n ip address 192.168.255.4/32\n!\ninterface - Management1\n description oob_management\n no shutdown\n vrf MGMT\n ip - address 192.168.200.104/24\n!\nip routing\nno ip routing vrf MGMT\n!\nip prefix-list - PL-LOOPBACKS-EVPN-OVERLAY\n seq 10 permit 192.168.255.0/24 eq 32\n!\nip route - vrf MGMT 0.0.0.0/0 192.168.200.5\n!\nroute-map RM-CONN-2-BGP permit 10\n match - ip address prefix-list PL-LOOPBACKS-EVPN-OVERLAY\n!\nrouter bfd\n multihop interval - 1200 min-rx 1200 multiplier 3\n!\nrouter bgp 65001\n router-id 192.168.255.4\n - \ maximum-paths 4 ecmp 4\n update wait-install\n no bgp default ipv4-unicast\n - \ distance bgp 20 200 200\n neighbor EVPN-OVERLAY-PEERS peer group\n neighbor - EVPN-OVERLAY-PEERS next-hop-unchanged\n neighbor EVPN-OVERLAY-PEERS update-source - Loopback0\n neighbor EVPN-OVERLAY-PEERS bfd\n neighbor EVPN-OVERLAY-PEERS + ROUTER_ID\n no shutdown\n ip address 192.168.255.4/32\n!\ninterface Management1\n + \ description oob_management\n no shutdown\n vrf MGMT\n ip address 192.168.200.104/24\n!\nip + routing\nno ip routing vrf MGMT\n!\nip prefix-list PL-LOOPBACKS-EVPN-OVERLAY\n + \ seq 10 permit 192.168.255.0/24 eq 32\n!\nip route vrf MGMT 0.0.0.0/0 192.168.200.5\n!\nroute-map + RM-CONN-2-BGP permit 10\n match ip address prefix-list PL-LOOPBACKS-EVPN-OVERLAY\n!\nrouter + bfd\n multihop interval 1200 min-rx 1200 multiplier 3\n!\nrouter bgp 65001\n + \ router-id 192.168.255.4\n maximum-paths 4 ecmp 4\n update wait-install\n + \ no bgp default ipv4-unicast\n distance bgp 20 200 200\n neighbor EVPN-OVERLAY-PEERS + peer group\n neighbor EVPN-OVERLAY-PEERS next-hop-unchanged\n neighbor EVPN-OVERLAY-PEERS + update-source Loopback0\n neighbor EVPN-OVERLAY-PEERS bfd\n neighbor EVPN-OVERLAY-PEERS ebgp-multihop 3\n neighbor EVPN-OVERLAY-PEERS password 7 q+VNViP5i4rVjW1cxFv2wA==\n \ neighbor EVPN-OVERLAY-PEERS send-community\n neighbor EVPN-OVERLAY-PEERS maximum-routes 0\n neighbor IPv4-UNDERLAY-PEERS peer group\n neighbor IPv4-UNDERLAY-PEERS @@ -1100,225 +1096,12 @@ cvp_configlets: 7 mode active\n!\ninterface Ethernet8\n description DC1-L2LEAF2B_Ethernet1\n \ no shutdown\n channel-group 7 mode active\n!\ninterface Ethernet10\n description server03_ESI_Eth1\n no shutdown\n channel-group 10 mode active\n!\ninterface - Loopback0\n description EVPN_Overlay_Peering\n no shutdown\n ip address - 192.168.255.8/32\n!\ninterface Loopback1\n description VTEP_VXLAN_Tunnel_Source\n - \ no shutdown\n ip address 192.168.254.8/32\n!\ninterface Loopback100\n description - Tenant_A_OP_Zone_VTEP_DIAGNOSTICS\n no shutdown\n vrf Tenant_A_OP_Zone\n ip - address 10.255.1.8/32\n!\ninterface Management1\n description oob_management\n - \ no shutdown\n vrf MGMT\n ip address 192.168.200.108/24\n!\ninterface Vlan110\n - \ description Tenant_A_OP_Zone_1\n no shutdown\n vrf Tenant_A_OP_Zone\n ip - address virtual 10.1.10.1/24\n!\ninterface Vlan111\n description Tenant_A_OP_Zone_2\n - \ no shutdown\n vrf Tenant_A_OP_Zone\n ip helper-address 1.1.1.1 vrf MGMT - source-interface lo100\n ip address virtual 10.1.11.1/24\n!\ninterface Vlan120\n - \ description Tenant_A_WEB_Zone_1\n no shutdown\n vrf Tenant_A_WEB_Zone\n - \ ip helper-address 1.1.1.1 vrf TEST source-interface lo100\n ip address virtual - 10.1.20.1/24\n!\ninterface Vlan121\n description Tenant_A_WEBZone_2\n shutdown\n - \ mtu 1560\n vrf Tenant_A_WEB_Zone\n ip address virtual 10.1.10.254/24\n!\ninterface - Vlan130\n description Tenant_A_APP_Zone_1\n no shutdown\n vrf Tenant_A_APP_Zone\n - \ ip address virtual 10.1.30.1/24\n!\ninterface Vlan131\n description Tenant_A_APP_Zone_2\n - \ no shutdown\n vrf Tenant_A_APP_Zone\n ip address virtual 10.1.31.1/24\n!\ninterface - Vlan140\n description Tenant_A_DB_BZone_1\n no shutdown\n vrf Tenant_A_DB_Zone\n - \ ip address virtual 10.1.40.1/24\n!\ninterface Vlan141\n description Tenant_A_DB_Zone_2\n - \ no shutdown\n vrf Tenant_A_DB_Zone\n ip address virtual 10.1.41.1/24\n!\ninterface - Vlan150\n description Tenant_A_WAN_Zone_1\n no shutdown\n vrf Tenant_A_WAN_Zone\n - \ ip address virtual 10.1.40.1/24\n!\ninterface Vlan210\n description Tenant_B_OP_Zone_1\n - \ no shutdown\n vrf Tenant_B_OP_Zone\n ip address virtual 10.2.10.1/24\n!\ninterface - Vlan211\n description Tenant_B_OP_Zone_2\n no shutdown\n vrf Tenant_B_OP_Zone\n - \ ip address virtual 10.2.11.1/24\n!\ninterface Vlan250\n description Tenant_B_WAN_Zone_1\n - \ no shutdown\n vrf Tenant_B_WAN_Zone\n ip address virtual 10.2.50.1/24\n!\ninterface - Vlan310\n description Tenant_C_OP_Zone_1\n no shutdown\n vrf Tenant_C_OP_Zone\n - \ ip address virtual 10.3.10.1/24\n!\ninterface Vlan311\n description Tenant_C_OP_Zone_2\n - \ no shutdown\n vrf Tenant_C_OP_Zone\n ip address virtual 10.3.11.1/24\n!\ninterface - Vlan350\n description Tenant_C_WAN_Zone_1\n no shutdown\n vrf Tenant_C_WAN_Zone\n - \ ip address virtual 10.3.50.1/24\n!\ninterface Vlan3009\n description MLAG_PEER_L3_iBGP: - vrf Tenant_A_OP_Zone\n no shutdown\n mtu 1500\n vrf Tenant_A_OP_Zone\n ip - address 10.255.251.6/31\n!\ninterface Vlan3010\n description MLAG_PEER_L3_iBGP: - vrf Tenant_A_WEB_Zone\n no shutdown\n mtu 1500\n vrf Tenant_A_WEB_Zone\n - \ ip address 10.255.251.6/31\n!\ninterface Vlan3011\n description MLAG_PEER_L3_iBGP: - vrf Tenant_A_APP_Zone\n no shutdown\n mtu 1500\n vrf Tenant_A_APP_Zone\n - \ ip address 10.255.251.6/31\n!\ninterface Vlan3012\n description MLAG_PEER_L3_iBGP: - vrf Tenant_A_DB_Zone\n no shutdown\n mtu 1500\n vrf Tenant_A_DB_Zone\n ip - address 10.255.251.6/31\n!\ninterface Vlan3013\n description MLAG_PEER_L3_iBGP: - vrf Tenant_A_WAN_Zone\n no shutdown\n mtu 1500\n vrf Tenant_A_WAN_Zone\n - \ ip address 10.255.251.6/31\n!\ninterface Vlan3019\n description MLAG_PEER_L3_iBGP: - vrf Tenant_B_OP_Zone\n no shutdown\n mtu 1500\n vrf Tenant_B_OP_Zone\n ip - address 10.255.251.6/31\n!\ninterface Vlan3020\n description MLAG_PEER_L3_iBGP: - vrf Tenant_B_WAN_Zone\n no shutdown\n mtu 1500\n vrf Tenant_B_WAN_Zone\n - \ ip address 10.255.251.6/31\n!\ninterface Vlan3029\n description MLAG_PEER_L3_iBGP: - vrf Tenant_C_OP_Zone\n no shutdown\n mtu 1500\n vrf Tenant_C_OP_Zone\n ip - address 10.255.251.6/31\n!\ninterface Vlan3030\n description MLAG_PEER_L3_iBGP: - vrf Tenant_C_WAN_Zone\n no shutdown\n mtu 1500\n vrf Tenant_C_WAN_Zone\n - \ ip address 10.255.251.6/31\n!\ninterface Vlan4093\n description MLAG_PEER_L3_PEERING\n - \ no shutdown\n mtu 1500\n ip address 10.255.251.6/31\n!\ninterface Vlan4094\n - \ description MLAG_PEER\n no shutdown\n mtu 1500\n no autostate\n ip - address 10.255.252.6/31\n!\ninterface Vxlan1\n description DC1-SVC3A_VTEP\n - \ vxlan source-interface Loopback1\n vxlan virtual-router encapsulation mac-address - mlag-system-id\n vxlan udp-port 4789\n vxlan vlan 110 vni 10110\n vxlan - vlan 111 vni 50111\n vxlan vlan 120 vni 10120\n vxlan vlan 121 vni 10121\n - \ vxlan vlan 130 vni 10130\n vxlan vlan 131 vni 10131\n vxlan vlan 140 vni - 10140\n vxlan vlan 141 vni 10141\n vxlan vlan 150 vni 10150\n vxlan vlan - 210 vni 20210\n vxlan vlan 211 vni 20211\n vxlan vlan 250 vni 20250\n vxlan - vlan 310 vni 30310\n vxlan vlan 311 vni 30311\n vxlan vlan 350 vni 30350\n - \ vxlan vrf Tenant_A_APP_Zone vni 12\n vxlan vrf Tenant_A_DB_Zone vni 13\n - \ vxlan vrf Tenant_A_OP_Zone vni 10\n vxlan vrf Tenant_A_WAN_Zone vni 14\n - \ vxlan vrf Tenant_A_WEB_Zone vni 11\n vxlan vrf Tenant_B_OP_Zone vni 20\n - \ vxlan vrf Tenant_B_WAN_Zone vni 21\n vxlan vrf Tenant_C_OP_Zone vni 30\n - \ vxlan vrf Tenant_C_WAN_Zone vni 31\n!\nip virtual-router mac-address 00:dc:00:00:00:0a\n!\nip - address virtual source-nat vrf Tenant_A_OP_Zone address 10.255.1.8\n!\nip routing\nno - ip routing vrf MGMT\nip routing vrf Tenant_A_APP_Zone\nip routing vrf Tenant_A_DB_Zone\nip - routing vrf Tenant_A_OP_Zone\nip routing vrf Tenant_A_WAN_Zone\nip routing vrf - Tenant_A_WEB_Zone\nip routing vrf Tenant_B_OP_Zone\nip routing vrf Tenant_B_WAN_Zone\nip - routing vrf Tenant_C_OP_Zone\nip routing vrf Tenant_C_WAN_Zone\n!\nip prefix-list - PL-LOOPBACKS-EVPN-OVERLAY\n seq 10 permit 192.168.255.0/24 eq 32\n seq 20 - permit 192.168.254.0/24 eq 32\n!\nmlag configuration\n domain-id DC1_SVC3\n - \ local-interface Vlan4094\n peer-address 10.255.252.7\n peer-link Port-Channel5\n - \ reload-delay mlag 300\n reload-delay non-mlag 330\n!\nip route vrf MGMT 0.0.0.0/0 - 192.168.200.5\n!\nroute-map RM-CONN-2-BGP permit 10\n match ip address prefix-list - PL-LOOPBACKS-EVPN-OVERLAY\n!\nroute-map RM-MLAG-PEER-IN permit 10\n description - Make routes learned over MLAG Peer-link less preferred on spines to ensure optimal - routing\n set origin incomplete\n!\nrouter bfd\n multihop interval 1200 min-rx - 1200 multiplier 3\n!\nrouter bgp 65103\n router-id 192.168.255.8\n maximum-paths - 4 ecmp 4\n update wait-install\n no bgp default ipv4-unicast\n distance - bgp 20 200 200\n neighbor EVPN-OVERLAY-PEERS peer group\n neighbor EVPN-OVERLAY-PEERS - update-source Loopback0\n neighbor EVPN-OVERLAY-PEERS bfd\n neighbor EVPN-OVERLAY-PEERS - ebgp-multihop 3\n neighbor EVPN-OVERLAY-PEERS password 7 q+VNViP5i4rVjW1cxFv2wA==\n - \ neighbor EVPN-OVERLAY-PEERS send-community\n neighbor EVPN-OVERLAY-PEERS - maximum-routes 0\n neighbor IPv4-UNDERLAY-PEERS peer group\n neighbor IPv4-UNDERLAY-PEERS - password 7 AQQvKeimxJu+uGQ/yYvv9w==\n neighbor IPv4-UNDERLAY-PEERS send-community\n - \ neighbor IPv4-UNDERLAY-PEERS maximum-routes 12000\n neighbor MLAG-IPv4-UNDERLAY-PEER - peer group\n neighbor MLAG-IPv4-UNDERLAY-PEER remote-as 65103\n neighbor MLAG-IPv4-UNDERLAY-PEER - next-hop-self\n neighbor MLAG-IPv4-UNDERLAY-PEER description DC1-SVC3B\n neighbor - MLAG-IPv4-UNDERLAY-PEER password 7 vnEaG8gMeQf3d3cN6PktXQ==\n neighbor MLAG-IPv4-UNDERLAY-PEER - send-community\n neighbor MLAG-IPv4-UNDERLAY-PEER maximum-routes 12000\n neighbor - MLAG-IPv4-UNDERLAY-PEER route-map RM-MLAG-PEER-IN in\n neighbor 10.255.251.7 - peer group MLAG-IPv4-UNDERLAY-PEER\n neighbor 10.255.251.7 description DC1-SVC3B\n - \ neighbor 172.31.255.24 peer group IPv4-UNDERLAY-PEERS\n neighbor 172.31.255.24 - remote-as 65001\n neighbor 172.31.255.24 description DC1-SPINE1_Ethernet4\n - \ neighbor 172.31.255.26 peer group IPv4-UNDERLAY-PEERS\n neighbor 172.31.255.26 - remote-as 65001\n neighbor 172.31.255.26 description DC1-SPINE2_Ethernet4\n - \ neighbor 172.31.255.28 peer group IPv4-UNDERLAY-PEERS\n neighbor 172.31.255.28 - remote-as 65001\n neighbor 172.31.255.28 description DC1-SPINE3_Ethernet4\n - \ neighbor 172.31.255.30 peer group IPv4-UNDERLAY-PEERS\n neighbor 172.31.255.30 - remote-as 65001\n neighbor 172.31.255.30 description DC1-SPINE4_Ethernet4\n - \ neighbor 192.168.255.1 peer group EVPN-OVERLAY-PEERS\n neighbor 192.168.255.1 - remote-as 65001\n neighbor 192.168.255.1 description DC1-SPINE1\n neighbor - 192.168.255.2 peer group EVPN-OVERLAY-PEERS\n neighbor 192.168.255.2 remote-as - 65001\n neighbor 192.168.255.2 description DC1-SPINE2\n neighbor 192.168.255.3 - peer group EVPN-OVERLAY-PEERS\n neighbor 192.168.255.3 remote-as 65001\n neighbor - 192.168.255.3 description DC1-SPINE3\n neighbor 192.168.255.4 peer group EVPN-OVERLAY-PEERS\n - \ neighbor 192.168.255.4 remote-as 65001\n neighbor 192.168.255.4 description - DC1-SPINE4\n redistribute connected route-map RM-CONN-2-BGP\n !\n vlan-aware-bundle - Tenant_A_APP_Zone\n rd 192.168.255.8:12\n route-target both 12:12\n - \ redistribute learned\n vlan 130-131\n !\n vlan-aware-bundle Tenant_A_DB_Zone\n - \ rd 192.168.255.8:13\n route-target both 13:13\n redistribute learned\n - \ vlan 140-141\n !\n vlan-aware-bundle Tenant_A_OP_Zone\n rd 192.168.255.8:10\n - \ route-target both 10:10\n redistribute learned\n vlan 110-111\n - \ !\n vlan-aware-bundle Tenant_A_WAN_Zone\n rd 192.168.255.8:14\n route-target - both 14:14\n redistribute learned\n vlan 150\n !\n vlan-aware-bundle - Tenant_A_WEB_Zone\n rd 192.168.255.8:11\n route-target both 11:11\n - \ redistribute learned\n vlan 120-121\n !\n vlan-aware-bundle Tenant_B_OP_Zone\n - \ rd 192.168.255.8:20\n route-target both 20:20\n redistribute learned\n - \ vlan 210-211\n !\n vlan-aware-bundle Tenant_B_WAN_Zone\n rd 192.168.255.8:21\n - \ route-target both 21:21\n redistribute learned\n vlan 250\n !\n - \ vlan-aware-bundle Tenant_C_OP_Zone\n rd 192.168.255.8:30\n route-target - both 30:30\n redistribute learned\n vlan 310-311\n !\n vlan-aware-bundle - Tenant_C_WAN_Zone\n rd 192.168.255.8:31\n route-target both 31:31\n - \ redistribute learned\n vlan 350\n !\n address-family evpn\n neighbor - EVPN-OVERLAY-PEERS activate\n !\n address-family ipv4\n no neighbor EVPN-OVERLAY-PEERS - activate\n neighbor IPv4-UNDERLAY-PEERS activate\n neighbor MLAG-IPv4-UNDERLAY-PEER - activate\n !\n vrf Tenant_A_APP_Zone\n rd 192.168.255.8:12\n route-target - import evpn 12:12\n route-target export evpn 12:12\n router-id 192.168.255.8\n - \ update wait-install\n neighbor 10.255.251.7 peer group MLAG-IPv4-UNDERLAY-PEER\n - \ neighbor 10.255.251.7 description DC1-SVC3B\n redistribute connected\n - \ !\n vrf Tenant_A_DB_Zone\n rd 192.168.255.8:13\n route-target import - evpn 13:13\n route-target export evpn 13:13\n router-id 192.168.255.8\n - \ update wait-install\n neighbor 10.255.251.7 peer group MLAG-IPv4-UNDERLAY-PEER\n - \ neighbor 10.255.251.7 description DC1-SVC3B\n redistribute connected\n - \ !\n vrf Tenant_A_OP_Zone\n rd 192.168.255.8:10\n route-target import - evpn 10:10\n route-target export evpn 10:10\n router-id 192.168.255.8\n - \ update wait-install\n neighbor 10.255.251.7 peer group MLAG-IPv4-UNDERLAY-PEER\n - \ neighbor 10.255.251.7 description DC1-SVC3B\n redistribute connected\n - \ !\n vrf Tenant_A_WAN_Zone\n rd 192.168.255.8:14\n route-target - import evpn 14:14\n route-target export evpn 14:14\n router-id 192.168.255.8\n - \ update wait-install\n neighbor 10.255.251.7 peer group MLAG-IPv4-UNDERLAY-PEER\n - \ neighbor 10.255.251.7 description DC1-SVC3B\n redistribute connected\n - \ !\n vrf Tenant_A_WEB_Zone\n rd 192.168.255.8:11\n route-target - import evpn 11:11\n route-target export evpn 11:11\n router-id 192.168.255.8\n - \ update wait-install\n neighbor 10.255.251.7 peer group MLAG-IPv4-UNDERLAY-PEER\n - \ neighbor 10.255.251.7 description DC1-SVC3B\n redistribute connected\n - \ !\n vrf Tenant_B_OP_Zone\n rd 192.168.255.8:20\n route-target import - evpn 20:20\n route-target export evpn 20:20\n router-id 192.168.255.8\n - \ update wait-install\n neighbor 10.255.251.7 peer group MLAG-IPv4-UNDERLAY-PEER\n - \ neighbor 10.255.251.7 description DC1-SVC3B\n redistribute connected\n - \ !\n vrf Tenant_B_WAN_Zone\n rd 192.168.255.8:21\n route-target - import evpn 21:21\n route-target export evpn 21:21\n router-id 192.168.255.8\n - \ update wait-install\n neighbor 10.255.251.7 peer group MLAG-IPv4-UNDERLAY-PEER\n - \ neighbor 10.255.251.7 description DC1-SVC3B\n redistribute connected\n - \ !\n vrf Tenant_C_OP_Zone\n rd 192.168.255.8:30\n route-target import - evpn 30:30\n route-target export evpn 30:30\n router-id 192.168.255.8\n - \ update wait-install\n neighbor 10.255.251.7 peer group MLAG-IPv4-UNDERLAY-PEER\n - \ neighbor 10.255.251.7 description DC1-SVC3B\n redistribute connected\n - \ !\n vrf Tenant_C_WAN_Zone\n rd 192.168.255.8:31\n route-target - import evpn 31:31\n route-target export evpn 31:31\n router-id 192.168.255.8\n - \ update wait-install\n neighbor 10.255.251.7 peer group MLAG-IPv4-UNDERLAY-PEER\n - \ neighbor 10.255.251.7 description DC1-SVC3B\n redistribute connected\n!\nmanagement - api http-commands\n protocol https\n no shutdown\n !\n vrf MGMT\n no - shutdown\n!\nend\n" - AVD_DC1-SVC3B: "!\ndaemon TerminAttr\n exec /usr/bin/TerminAttr -cvaddr=192.168.200.11:9910 - -cvauth=key,telarista -cvvrf=MGMT -smashexcludes=ale,flexCounter,hardware,kni,pulse,strata - -ingestexclude=/Sysdb/cell/1/agent,/Sysdb/cell/2/agent -taillogs\n no shutdown\n!\nvlan - internal order ascending range 1006 1199\n!\nno ip igmp snooping vlan 120\n!\ntransceiver - qsfp default-mode 4x10G\n!\nservice routing protocols model multi-agent\n!\nhostname - DC1-SVC3B\nip name-server vrf MGMT 8.8.8.8\nip name-server vrf MGMT 192.168.200.5\n!\nntp - local-interface vrf MGMT Management1\nntp server vrf MGMT 192.168.200.5 prefer\n!\nspanning-tree - mode mstp\nno spanning-tree vlan-id 4093-4094\nspanning-tree mst 0 priority 4096\n!\nno - enable password\nno aaa root\n!\nusername admin privilege 15 role network-admin - nopassword\nusername cvpadmin privilege 15 role network-admin secret sha512 $6$rZKcbIZ7iWGAWTUM$TCgDn1KcavS0s.OV8lacMTUkxTByfzcGlFlYUWroxYuU7M/9bIodhRO7nXGzMweUxvbk8mJmQl8Bh44cRktUj.\n!\nvlan - 110\n name Tenant_A_OP_Zone_1\n!\nvlan 111\n name Tenant_A_OP_Zone_2\n!\nvlan - 120\n name Tenant_A_WEB_Zone_1\n!\nvlan 121\n name Tenant_A_WEBZone_2\n!\nvlan - 130\n name Tenant_A_APP_Zone_1\n!\nvlan 131\n name Tenant_A_APP_Zone_2\n!\nvlan - 140\n name Tenant_A_DB_BZone_1\n!\nvlan 141\n name Tenant_A_DB_Zone_2\n!\nvlan - 150\n name Tenant_A_WAN_Zone_1\n!\nvlan 210\n name Tenant_B_OP_Zone_1\n!\nvlan - 211\n name Tenant_B_OP_Zone_2\n!\nvlan 250\n name Tenant_B_WAN_Zone_1\n!\nvlan - 310\n name Tenant_C_OP_Zone_1\n!\nvlan 311\n name Tenant_C_OP_Zone_2\n!\nvlan - 350\n name Tenant_C_WAN_Zone_1\n!\nvlan 3009\n name MLAG_iBGP_Tenant_A_OP_Zone\n - \ trunk group LEAF_PEER_L3\n!\nvlan 3010\n name MLAG_iBGP_Tenant_A_WEB_Zone\n - \ trunk group LEAF_PEER_L3\n!\nvlan 3011\n name MLAG_iBGP_Tenant_A_APP_Zone\n - \ trunk group LEAF_PEER_L3\n!\nvlan 3012\n name MLAG_iBGP_Tenant_A_DB_Zone\n - \ trunk group LEAF_PEER_L3\n!\nvlan 3013\n name MLAG_iBGP_Tenant_A_WAN_Zone\n - \ trunk group LEAF_PEER_L3\n!\nvlan 3019\n name MLAG_iBGP_Tenant_B_OP_Zone\n - \ trunk group LEAF_PEER_L3\n!\nvlan 3020\n name MLAG_iBGP_Tenant_B_WAN_Zone\n - \ trunk group LEAF_PEER_L3\n!\nvlan 3029\n name MLAG_iBGP_Tenant_C_OP_Zone\n - \ trunk group LEAF_PEER_L3\n!\nvlan 3030\n name MLAG_iBGP_Tenant_C_WAN_Zone\n - \ trunk group LEAF_PEER_L3\n!\nvlan 4093\n name LEAF_PEER_L3\n trunk group - LEAF_PEER_L3\n!\nvlan 4094\n name MLAG_PEER\n trunk group MLAG\n!\nvrf instance - MGMT\n!\nvrf instance Tenant_A_APP_Zone\n!\nvrf instance Tenant_A_DB_Zone\n!\nvrf - instance Tenant_A_OP_Zone\n!\nvrf instance Tenant_A_WAN_Zone\n!\nvrf instance - Tenant_A_WEB_Zone\n!\nvrf instance Tenant_B_OP_Zone\n!\nvrf instance Tenant_B_WAN_Zone\n!\nvrf - instance Tenant_C_OP_Zone\n!\nvrf instance Tenant_C_WAN_Zone\n!\ninterface Port-Channel5\n - \ description MLAG_PEER_DC1-SVC3A_Po5\n no shutdown\n switchport\n switchport - mode trunk\n switchport trunk group LEAF_PEER_L3\n switchport trunk group - MLAG\n!\ninterface Port-Channel7\n description DC1_L2LEAF2_Po1\n no shutdown\n - \ switchport\n switchport trunk allowed vlan 110-111,120-121,130-131,140-141,150,210-211,250,310-311,350\n - \ switchport mode trunk\n mlag 7\n!\ninterface Ethernet1\n description P2P_LINK_TO_DC1-SPINE1_Ethernet5\n - \ no shutdown\n mtu 1500\n no switchport\n ip address 172.31.255.33/31\n!\ninterface - Ethernet2\n description P2P_LINK_TO_DC1-SPINE2_Ethernet5\n no shutdown\n mtu - 1500\n no switchport\n ip address 172.31.255.35/31\n!\ninterface Ethernet3\n - \ description P2P_LINK_TO_DC1-SPINE3_Ethernet5\n no shutdown\n mtu 1500\n - \ no switchport\n ip address 172.31.255.37/31\n!\ninterface Ethernet4\n description - P2P_LINK_TO_DC1-SPINE4_Ethernet5\n no shutdown\n mtu 1500\n no switchport\n - \ ip address 172.31.255.39/31\n!\ninterface Ethernet5\n description MLAG_PEER_DC1-SVC3A_Ethernet5\n - \ no shutdown\n channel-group 5 mode active\n!\ninterface Ethernet6\n description - MLAG_PEER_DC1-SVC3A_Ethernet6\n no shutdown\n channel-group 5 mode active\n!\ninterface - Ethernet7\n description DC1-L2LEAF2A_Ethernet2\n no shutdown\n channel-group - 7 mode active\n!\ninterface Ethernet8\n description DC1-L2LEAF2B_Ethernet2\n - \ no shutdown\n channel-group 7 mode active\n!\ninterface Loopback0\n description - EVPN_Overlay_Peering\n no shutdown\n ip address 192.168.255.9/32\n!\ninterface + Loopback0\n description ROUTER_ID\n no shutdown\n ip address 192.168.255.8/32\n!\ninterface Loopback1\n description VTEP_VXLAN_Tunnel_Source\n no shutdown\n ip address 192.168.254.8/32\n!\ninterface Loopback100\n description Tenant_A_OP_Zone_VTEP_DIAGNOSTICS\n - \ no shutdown\n vrf Tenant_A_OP_Zone\n ip address 10.255.1.9/32\n!\ninterface + \ no shutdown\n vrf Tenant_A_OP_Zone\n ip address 10.255.1.8/32\n!\ninterface Management1\n description oob_management\n no shutdown\n vrf MGMT\n ip - address 192.168.200.109/24\n!\ninterface Vlan110\n description Tenant_A_OP_Zone_1\n + address 192.168.200.108/24\n!\ninterface Vlan110\n description Tenant_A_OP_Zone_1\n \ no shutdown\n vrf Tenant_A_OP_Zone\n ip address virtual 10.1.10.1/24\n!\ninterface Vlan111\n description Tenant_A_OP_Zone_2\n no shutdown\n vrf Tenant_A_OP_Zone\n \ ip helper-address 1.1.1.1 vrf MGMT source-interface lo100\n ip address virtual @@ -1344,27 +1127,27 @@ cvp_configlets: \ ip address virtual 10.3.11.1/24\n!\ninterface Vlan350\n description Tenant_C_WAN_Zone_1\n \ no shutdown\n vrf Tenant_C_WAN_Zone\n ip address virtual 10.3.50.1/24\n!\ninterface Vlan3009\n description MLAG_PEER_L3_iBGP: vrf Tenant_A_OP_Zone\n no shutdown\n - \ mtu 1500\n vrf Tenant_A_OP_Zone\n ip address 10.255.251.7/31\n!\ninterface + \ mtu 1500\n vrf Tenant_A_OP_Zone\n ip address 10.255.251.6/31\n!\ninterface Vlan3010\n description MLAG_PEER_L3_iBGP: vrf Tenant_A_WEB_Zone\n no shutdown\n - \ mtu 1500\n vrf Tenant_A_WEB_Zone\n ip address 10.255.251.7/31\n!\ninterface + \ mtu 1500\n vrf Tenant_A_WEB_Zone\n ip address 10.255.251.6/31\n!\ninterface Vlan3011\n description MLAG_PEER_L3_iBGP: vrf Tenant_A_APP_Zone\n no shutdown\n - \ mtu 1500\n vrf Tenant_A_APP_Zone\n ip address 10.255.251.7/31\n!\ninterface + \ mtu 1500\n vrf Tenant_A_APP_Zone\n ip address 10.255.251.6/31\n!\ninterface Vlan3012\n description MLAG_PEER_L3_iBGP: vrf Tenant_A_DB_Zone\n no shutdown\n - \ mtu 1500\n vrf Tenant_A_DB_Zone\n ip address 10.255.251.7/31\n!\ninterface + \ mtu 1500\n vrf Tenant_A_DB_Zone\n ip address 10.255.251.6/31\n!\ninterface Vlan3013\n description MLAG_PEER_L3_iBGP: vrf Tenant_A_WAN_Zone\n no shutdown\n - \ mtu 1500\n vrf Tenant_A_WAN_Zone\n ip address 10.255.251.7/31\n!\ninterface + \ mtu 1500\n vrf Tenant_A_WAN_Zone\n ip address 10.255.251.6/31\n!\ninterface Vlan3019\n description MLAG_PEER_L3_iBGP: vrf Tenant_B_OP_Zone\n no shutdown\n - \ mtu 1500\n vrf Tenant_B_OP_Zone\n ip address 10.255.251.7/31\n!\ninterface + \ mtu 1500\n vrf Tenant_B_OP_Zone\n ip address 10.255.251.6/31\n!\ninterface Vlan3020\n description MLAG_PEER_L3_iBGP: vrf Tenant_B_WAN_Zone\n no shutdown\n - \ mtu 1500\n vrf Tenant_B_WAN_Zone\n ip address 10.255.251.7/31\n!\ninterface + \ mtu 1500\n vrf Tenant_B_WAN_Zone\n ip address 10.255.251.6/31\n!\ninterface Vlan3029\n description MLAG_PEER_L3_iBGP: vrf Tenant_C_OP_Zone\n no shutdown\n - \ mtu 1500\n vrf Tenant_C_OP_Zone\n ip address 10.255.251.7/31\n!\ninterface + \ mtu 1500\n vrf Tenant_C_OP_Zone\n ip address 10.255.251.6/31\n!\ninterface Vlan3030\n description MLAG_PEER_L3_iBGP: vrf Tenant_C_WAN_Zone\n no shutdown\n - \ mtu 1500\n vrf Tenant_C_WAN_Zone\n ip address 10.255.251.7/31\n!\ninterface + \ mtu 1500\n vrf Tenant_C_WAN_Zone\n ip address 10.255.251.6/31\n!\ninterface Vlan4093\n description MLAG_PEER_L3_PEERING\n no shutdown\n mtu 1500\n ip - address 10.255.251.7/31\n!\ninterface Vlan4094\n description MLAG_PEER\n no - shutdown\n mtu 1500\n no autostate\n ip address 10.255.252.7/31\n!\ninterface - Vxlan1\n description DC1-SVC3B_VTEP\n vxlan source-interface Loopback1\n vxlan + address 10.255.251.6/31\n!\ninterface Vlan4094\n description MLAG_PEER\n no + shutdown\n mtu 1500\n no autostate\n ip address 10.255.252.6/31\n!\ninterface + Vxlan1\n description DC1-SVC3A_VTEP\n vxlan source-interface Loopback1\n vxlan virtual-router encapsulation mac-address mlag-system-id\n vxlan udp-port 4789\n \ vxlan vlan 110 vni 10110\n vxlan vlan 111 vni 50111\n vxlan vlan 120 vni 10120\n vxlan vlan 121 vni 10121\n vxlan vlan 130 vni 10130\n vxlan vlan @@ -1377,20 +1160,20 @@ cvp_configlets: Tenant_B_OP_Zone vni 20\n vxlan vrf Tenant_B_WAN_Zone vni 21\n vxlan vrf Tenant_C_OP_Zone vni 30\n vxlan vrf Tenant_C_WAN_Zone vni 31\n!\nip virtual-router mac-address 00:dc:00:00:00:0a\n!\nip address virtual source-nat vrf Tenant_A_OP_Zone address - 10.255.1.9\n!\nip routing\nno ip routing vrf MGMT\nip routing vrf Tenant_A_APP_Zone\nip + 10.255.1.8\n!\nip routing\nno ip routing vrf MGMT\nip routing vrf Tenant_A_APP_Zone\nip routing vrf Tenant_A_DB_Zone\nip routing vrf Tenant_A_OP_Zone\nip routing vrf Tenant_A_WAN_Zone\nip routing vrf Tenant_A_WEB_Zone\nip routing vrf Tenant_B_OP_Zone\nip routing vrf Tenant_B_WAN_Zone\nip routing vrf Tenant_C_OP_Zone\nip routing vrf Tenant_C_WAN_Zone\n!\nip prefix-list PL-LOOPBACKS-EVPN-OVERLAY\n seq 10 permit 192.168.255.0/24 eq 32\n seq 20 permit 192.168.254.0/24 eq 32\n!\nmlag configuration\n - \ domain-id DC1_SVC3\n local-interface Vlan4094\n peer-address 10.255.252.6\n + \ domain-id DC1_SVC3\n local-interface Vlan4094\n peer-address 10.255.252.7\n \ peer-link Port-Channel5\n reload-delay mlag 300\n reload-delay non-mlag 330\n!\nip route vrf MGMT 0.0.0.0/0 192.168.200.5\n!\nroute-map RM-CONN-2-BGP permit 10\n match ip address prefix-list PL-LOOPBACKS-EVPN-OVERLAY\n!\nroute-map RM-MLAG-PEER-IN permit 10\n description Make routes learned over MLAG Peer-link less preferred on spines to ensure optimal routing\n set origin incomplete\n!\nrouter bfd\n multihop interval 1200 min-rx 1200 multiplier 3\n!\nrouter bgp 65103\n - \ router-id 192.168.255.9\n maximum-paths 4 ecmp 4\n update wait-install\n + \ router-id 192.168.255.8\n maximum-paths 4 ecmp 4\n update wait-install\n \ no bgp default ipv4-unicast\n distance bgp 20 200 200\n neighbor EVPN-OVERLAY-PEERS peer group\n neighbor EVPN-OVERLAY-PEERS update-source Loopback0\n neighbor EVPN-OVERLAY-PEERS bfd\n neighbor EVPN-OVERLAY-PEERS ebgp-multihop 3\n neighbor @@ -1400,19 +1183,19 @@ cvp_configlets: \ neighbor IPv4-UNDERLAY-PEERS send-community\n neighbor IPv4-UNDERLAY-PEERS maximum-routes 12000\n neighbor MLAG-IPv4-UNDERLAY-PEER peer group\n neighbor MLAG-IPv4-UNDERLAY-PEER remote-as 65103\n neighbor MLAG-IPv4-UNDERLAY-PEER next-hop-self\n - \ neighbor MLAG-IPv4-UNDERLAY-PEER description DC1-SVC3A\n neighbor MLAG-IPv4-UNDERLAY-PEER + \ neighbor MLAG-IPv4-UNDERLAY-PEER description DC1-SVC3B\n neighbor MLAG-IPv4-UNDERLAY-PEER password 7 vnEaG8gMeQf3d3cN6PktXQ==\n neighbor MLAG-IPv4-UNDERLAY-PEER send-community\n \ neighbor MLAG-IPv4-UNDERLAY-PEER maximum-routes 12000\n neighbor MLAG-IPv4-UNDERLAY-PEER - route-map RM-MLAG-PEER-IN in\n neighbor 10.255.251.6 peer group MLAG-IPv4-UNDERLAY-PEER\n - \ neighbor 10.255.251.6 description DC1-SVC3A\n neighbor 172.31.255.32 peer - group IPv4-UNDERLAY-PEERS\n neighbor 172.31.255.32 remote-as 65001\n neighbor - 172.31.255.32 description DC1-SPINE1_Ethernet5\n neighbor 172.31.255.34 peer - group IPv4-UNDERLAY-PEERS\n neighbor 172.31.255.34 remote-as 65001\n neighbor - 172.31.255.34 description DC1-SPINE2_Ethernet5\n neighbor 172.31.255.36 peer - group IPv4-UNDERLAY-PEERS\n neighbor 172.31.255.36 remote-as 65001\n neighbor - 172.31.255.36 description DC1-SPINE3_Ethernet5\n neighbor 172.31.255.38 peer - group IPv4-UNDERLAY-PEERS\n neighbor 172.31.255.38 remote-as 65001\n neighbor - 172.31.255.38 description DC1-SPINE4_Ethernet5\n neighbor 192.168.255.1 peer + route-map RM-MLAG-PEER-IN in\n neighbor 10.255.251.7 peer group MLAG-IPv4-UNDERLAY-PEER\n + \ neighbor 10.255.251.7 description DC1-SVC3B\n neighbor 172.31.255.24 peer + group IPv4-UNDERLAY-PEERS\n neighbor 172.31.255.24 remote-as 65001\n neighbor + 172.31.255.24 description DC1-SPINE1_Ethernet4\n neighbor 172.31.255.26 peer + group IPv4-UNDERLAY-PEERS\n neighbor 172.31.255.26 remote-as 65001\n neighbor + 172.31.255.26 description DC1-SPINE2_Ethernet4\n neighbor 172.31.255.28 peer + group IPv4-UNDERLAY-PEERS\n neighbor 172.31.255.28 remote-as 65001\n neighbor + 172.31.255.28 description DC1-SPINE3_Ethernet4\n neighbor 172.31.255.30 peer + group IPv4-UNDERLAY-PEERS\n neighbor 172.31.255.30 remote-as 65001\n neighbor + 172.31.255.30 description DC1-SPINE4_Ethernet4\n neighbor 192.168.255.1 peer group EVPN-OVERLAY-PEERS\n neighbor 192.168.255.1 remote-as 65001\n neighbor 192.168.255.1 description DC1-SPINE1\n neighbor 192.168.255.2 peer group EVPN-OVERLAY-PEERS\n \ neighbor 192.168.255.2 remote-as 65001\n neighbor 192.168.255.2 description @@ -1421,24 +1204,236 @@ cvp_configlets: \ neighbor 192.168.255.4 peer group EVPN-OVERLAY-PEERS\n neighbor 192.168.255.4 remote-as 65001\n neighbor 192.168.255.4 description DC1-SPINE4\n redistribute connected route-map RM-CONN-2-BGP\n !\n vlan-aware-bundle Tenant_A_APP_Zone\n - \ rd 192.168.255.9:12\n route-target both 12:12\n redistribute learned\n - \ vlan 130-131\n !\n vlan-aware-bundle Tenant_A_DB_Zone\n rd 192.168.255.9:13\n + \ rd 192.168.255.8:12\n route-target both 12:12\n redistribute learned\n + \ vlan 130-131\n !\n vlan-aware-bundle Tenant_A_DB_Zone\n rd 192.168.255.8:13\n \ route-target both 13:13\n redistribute learned\n vlan 140-141\n - \ !\n vlan-aware-bundle Tenant_A_OP_Zone\n rd 192.168.255.9:10\n route-target + \ !\n vlan-aware-bundle Tenant_A_OP_Zone\n rd 192.168.255.8:10\n route-target both 10:10\n redistribute learned\n vlan 110-111\n !\n vlan-aware-bundle - Tenant_A_WAN_Zone\n rd 192.168.255.9:14\n route-target both 14:14\n + Tenant_A_WAN_Zone\n rd 192.168.255.8:14\n route-target both 14:14\n \ redistribute learned\n vlan 150\n !\n vlan-aware-bundle Tenant_A_WEB_Zone\n - \ rd 192.168.255.9:11\n route-target both 11:11\n redistribute learned\n - \ vlan 120-121\n !\n vlan-aware-bundle Tenant_B_OP_Zone\n rd 192.168.255.9:20\n + \ rd 192.168.255.8:11\n route-target both 11:11\n redistribute learned\n + \ vlan 120-121\n !\n vlan-aware-bundle Tenant_B_OP_Zone\n rd 192.168.255.8:20\n \ route-target both 20:20\n redistribute learned\n vlan 210-211\n - \ !\n vlan-aware-bundle Tenant_B_WAN_Zone\n rd 192.168.255.9:21\n route-target + \ !\n vlan-aware-bundle Tenant_B_WAN_Zone\n rd 192.168.255.8:21\n route-target both 21:21\n redistribute learned\n vlan 250\n !\n vlan-aware-bundle - Tenant_C_OP_Zone\n rd 192.168.255.9:30\n route-target both 30:30\n redistribute + Tenant_C_OP_Zone\n rd 192.168.255.8:30\n route-target both 30:30\n redistribute learned\n vlan 310-311\n !\n vlan-aware-bundle Tenant_C_WAN_Zone\n rd - 192.168.255.9:31\n route-target both 31:31\n redistribute learned\n + 192.168.255.8:31\n route-target both 31:31\n redistribute learned\n \ vlan 350\n !\n address-family evpn\n neighbor EVPN-OVERLAY-PEERS activate\n !\n address-family ipv4\n no neighbor EVPN-OVERLAY-PEERS activate\n \ neighbor IPv4-UNDERLAY-PEERS activate\n neighbor MLAG-IPv4-UNDERLAY-PEER + activate\n !\n vrf Tenant_A_APP_Zone\n rd 192.168.255.8:12\n route-target + import evpn 12:12\n route-target export evpn 12:12\n router-id 192.168.255.8\n + \ update wait-install\n neighbor 10.255.251.7 peer group MLAG-IPv4-UNDERLAY-PEER\n + \ neighbor 10.255.251.7 description DC1-SVC3B\n redistribute connected\n + \ !\n vrf Tenant_A_DB_Zone\n rd 192.168.255.8:13\n route-target import + evpn 13:13\n route-target export evpn 13:13\n router-id 192.168.255.8\n + \ update wait-install\n neighbor 10.255.251.7 peer group MLAG-IPv4-UNDERLAY-PEER\n + \ neighbor 10.255.251.7 description DC1-SVC3B\n redistribute connected\n + \ !\n vrf Tenant_A_OP_Zone\n rd 192.168.255.8:10\n route-target import + evpn 10:10\n route-target export evpn 10:10\n router-id 192.168.255.8\n + \ update wait-install\n neighbor 10.255.251.7 peer group MLAG-IPv4-UNDERLAY-PEER\n + \ neighbor 10.255.251.7 description DC1-SVC3B\n redistribute connected\n + \ !\n vrf Tenant_A_WAN_Zone\n rd 192.168.255.8:14\n route-target + import evpn 14:14\n route-target export evpn 14:14\n router-id 192.168.255.8\n + \ update wait-install\n neighbor 10.255.251.7 peer group MLAG-IPv4-UNDERLAY-PEER\n + \ neighbor 10.255.251.7 description DC1-SVC3B\n redistribute connected\n + \ !\n vrf Tenant_A_WEB_Zone\n rd 192.168.255.8:11\n route-target + import evpn 11:11\n route-target export evpn 11:11\n router-id 192.168.255.8\n + \ update wait-install\n neighbor 10.255.251.7 peer group MLAG-IPv4-UNDERLAY-PEER\n + \ neighbor 10.255.251.7 description DC1-SVC3B\n redistribute connected\n + \ !\n vrf Tenant_B_OP_Zone\n rd 192.168.255.8:20\n route-target import + evpn 20:20\n route-target export evpn 20:20\n router-id 192.168.255.8\n + \ update wait-install\n neighbor 10.255.251.7 peer group MLAG-IPv4-UNDERLAY-PEER\n + \ neighbor 10.255.251.7 description DC1-SVC3B\n redistribute connected\n + \ !\n vrf Tenant_B_WAN_Zone\n rd 192.168.255.8:21\n route-target + import evpn 21:21\n route-target export evpn 21:21\n router-id 192.168.255.8\n + \ update wait-install\n neighbor 10.255.251.7 peer group MLAG-IPv4-UNDERLAY-PEER\n + \ neighbor 10.255.251.7 description DC1-SVC3B\n redistribute connected\n + \ !\n vrf Tenant_C_OP_Zone\n rd 192.168.255.8:30\n route-target import + evpn 30:30\n route-target export evpn 30:30\n router-id 192.168.255.8\n + \ update wait-install\n neighbor 10.255.251.7 peer group MLAG-IPv4-UNDERLAY-PEER\n + \ neighbor 10.255.251.7 description DC1-SVC3B\n redistribute connected\n + \ !\n vrf Tenant_C_WAN_Zone\n rd 192.168.255.8:31\n route-target + import evpn 31:31\n route-target export evpn 31:31\n router-id 192.168.255.8\n + \ update wait-install\n neighbor 10.255.251.7 peer group MLAG-IPv4-UNDERLAY-PEER\n + \ neighbor 10.255.251.7 description DC1-SVC3B\n redistribute connected\n!\nmanagement + api http-commands\n protocol https\n no shutdown\n !\n vrf MGMT\n no + shutdown\n!\nend\n" + AVD_DC1-SVC3B: "!\ndaemon TerminAttr\n exec /usr/bin/TerminAttr -cvaddr=192.168.200.11:9910 + -cvauth=key,telarista -cvvrf=MGMT -smashexcludes=ale,flexCounter,hardware,kni,pulse,strata + -ingestexclude=/Sysdb/cell/1/agent,/Sysdb/cell/2/agent -taillogs\n no shutdown\n!\nvlan + internal order ascending range 1006 1199\n!\nno ip igmp snooping vlan 120\n!\ntransceiver + qsfp default-mode 4x10G\n!\nservice routing protocols model multi-agent\n!\nhostname + DC1-SVC3B\nip name-server vrf MGMT 8.8.8.8\nip name-server vrf MGMT 192.168.200.5\n!\nntp + local-interface vrf MGMT Management1\nntp server vrf MGMT 192.168.200.5 prefer\n!\nspanning-tree + mode mstp\nno spanning-tree vlan-id 4093-4094\nspanning-tree mst 0 priority 4096\n!\nno + enable password\nno aaa root\n!\nusername admin privilege 15 role network-admin + nopassword\nusername cvpadmin privilege 15 role network-admin secret sha512 $6$rZKcbIZ7iWGAWTUM$TCgDn1KcavS0s.OV8lacMTUkxTByfzcGlFlYUWroxYuU7M/9bIodhRO7nXGzMweUxvbk8mJmQl8Bh44cRktUj.\n!\nvlan + 110\n name Tenant_A_OP_Zone_1\n!\nvlan 111\n name Tenant_A_OP_Zone_2\n!\nvlan + 120\n name Tenant_A_WEB_Zone_1\n!\nvlan 121\n name Tenant_A_WEBZone_2\n!\nvlan + 130\n name Tenant_A_APP_Zone_1\n!\nvlan 131\n name Tenant_A_APP_Zone_2\n!\nvlan + 140\n name Tenant_A_DB_BZone_1\n!\nvlan 141\n name Tenant_A_DB_Zone_2\n!\nvlan + 150\n name Tenant_A_WAN_Zone_1\n!\nvlan 210\n name Tenant_B_OP_Zone_1\n!\nvlan + 211\n name Tenant_B_OP_Zone_2\n!\nvlan 250\n name Tenant_B_WAN_Zone_1\n!\nvlan + 310\n name Tenant_C_OP_Zone_1\n!\nvlan 311\n name Tenant_C_OP_Zone_2\n!\nvlan + 350\n name Tenant_C_WAN_Zone_1\n!\nvlan 3009\n name MLAG_iBGP_Tenant_A_OP_Zone\n + \ trunk group LEAF_PEER_L3\n!\nvlan 3010\n name MLAG_iBGP_Tenant_A_WEB_Zone\n + \ trunk group LEAF_PEER_L3\n!\nvlan 3011\n name MLAG_iBGP_Tenant_A_APP_Zone\n + \ trunk group LEAF_PEER_L3\n!\nvlan 3012\n name MLAG_iBGP_Tenant_A_DB_Zone\n + \ trunk group LEAF_PEER_L3\n!\nvlan 3013\n name MLAG_iBGP_Tenant_A_WAN_Zone\n + \ trunk group LEAF_PEER_L3\n!\nvlan 3019\n name MLAG_iBGP_Tenant_B_OP_Zone\n + \ trunk group LEAF_PEER_L3\n!\nvlan 3020\n name MLAG_iBGP_Tenant_B_WAN_Zone\n + \ trunk group LEAF_PEER_L3\n!\nvlan 3029\n name MLAG_iBGP_Tenant_C_OP_Zone\n + \ trunk group LEAF_PEER_L3\n!\nvlan 3030\n name MLAG_iBGP_Tenant_C_WAN_Zone\n + \ trunk group LEAF_PEER_L3\n!\nvlan 4093\n name LEAF_PEER_L3\n trunk group + LEAF_PEER_L3\n!\nvlan 4094\n name MLAG_PEER\n trunk group MLAG\n!\nvrf instance + MGMT\n!\nvrf instance Tenant_A_APP_Zone\n!\nvrf instance Tenant_A_DB_Zone\n!\nvrf + instance Tenant_A_OP_Zone\n!\nvrf instance Tenant_A_WAN_Zone\n!\nvrf instance + Tenant_A_WEB_Zone\n!\nvrf instance Tenant_B_OP_Zone\n!\nvrf instance Tenant_B_WAN_Zone\n!\nvrf + instance Tenant_C_OP_Zone\n!\nvrf instance Tenant_C_WAN_Zone\n!\ninterface Port-Channel5\n + \ description MLAG_PEER_DC1-SVC3A_Po5\n no shutdown\n switchport\n switchport + mode trunk\n switchport trunk group LEAF_PEER_L3\n switchport trunk group + MLAG\n!\ninterface Port-Channel7\n description DC1_L2LEAF2_Po1\n no shutdown\n + \ switchport\n switchport trunk allowed vlan 110-111,120-121,130-131,140-141,150,210-211,250,310-311,350\n + \ switchport mode trunk\n mlag 7\n!\ninterface Ethernet1\n description P2P_LINK_TO_DC1-SPINE1_Ethernet5\n + \ no shutdown\n mtu 1500\n no switchport\n ip address 172.31.255.33/31\n!\ninterface + Ethernet2\n description P2P_LINK_TO_DC1-SPINE2_Ethernet5\n no shutdown\n mtu + 1500\n no switchport\n ip address 172.31.255.35/31\n!\ninterface Ethernet3\n + \ description P2P_LINK_TO_DC1-SPINE3_Ethernet5\n no shutdown\n mtu 1500\n + \ no switchport\n ip address 172.31.255.37/31\n!\ninterface Ethernet4\n description + P2P_LINK_TO_DC1-SPINE4_Ethernet5\n no shutdown\n mtu 1500\n no switchport\n + \ ip address 172.31.255.39/31\n!\ninterface Ethernet5\n description MLAG_PEER_DC1-SVC3A_Ethernet5\n + \ no shutdown\n channel-group 5 mode active\n!\ninterface Ethernet6\n description + MLAG_PEER_DC1-SVC3A_Ethernet6\n no shutdown\n channel-group 5 mode active\n!\ninterface + Ethernet7\n description DC1-L2LEAF2A_Ethernet2\n no shutdown\n channel-group + 7 mode active\n!\ninterface Ethernet8\n description DC1-L2LEAF2B_Ethernet2\n + \ no shutdown\n channel-group 7 mode active\n!\ninterface Loopback0\n description + ROUTER_ID\n no shutdown\n ip address 192.168.255.9/32\n!\ninterface Loopback1\n + \ description VTEP_VXLAN_Tunnel_Source\n no shutdown\n ip address 192.168.254.8/32\n!\ninterface + Loopback100\n description Tenant_A_OP_Zone_VTEP_DIAGNOSTICS\n no shutdown\n + \ vrf Tenant_A_OP_Zone\n ip address 10.255.1.9/32\n!\ninterface Management1\n + \ description oob_management\n no shutdown\n vrf MGMT\n ip address 192.168.200.109/24\n!\ninterface + Vlan110\n description Tenant_A_OP_Zone_1\n no shutdown\n vrf Tenant_A_OP_Zone\n + \ ip address virtual 10.1.10.1/24\n!\ninterface Vlan111\n description Tenant_A_OP_Zone_2\n + \ no shutdown\n vrf Tenant_A_OP_Zone\n ip helper-address 1.1.1.1 vrf MGMT + source-interface lo100\n ip address virtual 10.1.11.1/24\n!\ninterface Vlan120\n + \ description Tenant_A_WEB_Zone_1\n no shutdown\n vrf Tenant_A_WEB_Zone\n + \ ip helper-address 1.1.1.1 vrf TEST source-interface lo100\n ip address virtual + 10.1.20.1/24\n!\ninterface Vlan121\n description Tenant_A_WEBZone_2\n shutdown\n + \ mtu 1560\n vrf Tenant_A_WEB_Zone\n ip address virtual 10.1.10.254/24\n!\ninterface + Vlan130\n description Tenant_A_APP_Zone_1\n no shutdown\n vrf Tenant_A_APP_Zone\n + \ ip address virtual 10.1.30.1/24\n!\ninterface Vlan131\n description Tenant_A_APP_Zone_2\n + \ no shutdown\n vrf Tenant_A_APP_Zone\n ip address virtual 10.1.31.1/24\n!\ninterface + Vlan140\n description Tenant_A_DB_BZone_1\n no shutdown\n vrf Tenant_A_DB_Zone\n + \ ip address virtual 10.1.40.1/24\n!\ninterface Vlan141\n description Tenant_A_DB_Zone_2\n + \ no shutdown\n vrf Tenant_A_DB_Zone\n ip address virtual 10.1.41.1/24\n!\ninterface + Vlan150\n description Tenant_A_WAN_Zone_1\n no shutdown\n vrf Tenant_A_WAN_Zone\n + \ ip address virtual 10.1.40.1/24\n!\ninterface Vlan210\n description Tenant_B_OP_Zone_1\n + \ no shutdown\n vrf Tenant_B_OP_Zone\n ip address virtual 10.2.10.1/24\n!\ninterface + Vlan211\n description Tenant_B_OP_Zone_2\n no shutdown\n vrf Tenant_B_OP_Zone\n + \ ip address virtual 10.2.11.1/24\n!\ninterface Vlan250\n description Tenant_B_WAN_Zone_1\n + \ no shutdown\n vrf Tenant_B_WAN_Zone\n ip address virtual 10.2.50.1/24\n!\ninterface + Vlan310\n description Tenant_C_OP_Zone_1\n no shutdown\n vrf Tenant_C_OP_Zone\n + \ ip address virtual 10.3.10.1/24\n!\ninterface Vlan311\n description Tenant_C_OP_Zone_2\n + \ no shutdown\n vrf Tenant_C_OP_Zone\n ip address virtual 10.3.11.1/24\n!\ninterface + Vlan350\n description Tenant_C_WAN_Zone_1\n no shutdown\n vrf Tenant_C_WAN_Zone\n + \ ip address virtual 10.3.50.1/24\n!\ninterface Vlan3009\n description MLAG_PEER_L3_iBGP: + vrf Tenant_A_OP_Zone\n no shutdown\n mtu 1500\n vrf Tenant_A_OP_Zone\n ip + address 10.255.251.7/31\n!\ninterface Vlan3010\n description MLAG_PEER_L3_iBGP: + vrf Tenant_A_WEB_Zone\n no shutdown\n mtu 1500\n vrf Tenant_A_WEB_Zone\n + \ ip address 10.255.251.7/31\n!\ninterface Vlan3011\n description MLAG_PEER_L3_iBGP: + vrf Tenant_A_APP_Zone\n no shutdown\n mtu 1500\n vrf Tenant_A_APP_Zone\n + \ ip address 10.255.251.7/31\n!\ninterface Vlan3012\n description MLAG_PEER_L3_iBGP: + vrf Tenant_A_DB_Zone\n no shutdown\n mtu 1500\n vrf Tenant_A_DB_Zone\n ip + address 10.255.251.7/31\n!\ninterface Vlan3013\n description MLAG_PEER_L3_iBGP: + vrf Tenant_A_WAN_Zone\n no shutdown\n mtu 1500\n vrf Tenant_A_WAN_Zone\n + \ ip address 10.255.251.7/31\n!\ninterface Vlan3019\n description MLAG_PEER_L3_iBGP: + vrf Tenant_B_OP_Zone\n no shutdown\n mtu 1500\n vrf Tenant_B_OP_Zone\n ip + address 10.255.251.7/31\n!\ninterface Vlan3020\n description MLAG_PEER_L3_iBGP: + vrf Tenant_B_WAN_Zone\n no shutdown\n mtu 1500\n vrf Tenant_B_WAN_Zone\n + \ ip address 10.255.251.7/31\n!\ninterface Vlan3029\n description MLAG_PEER_L3_iBGP: + vrf Tenant_C_OP_Zone\n no shutdown\n mtu 1500\n vrf Tenant_C_OP_Zone\n ip + address 10.255.251.7/31\n!\ninterface Vlan3030\n description MLAG_PEER_L3_iBGP: + vrf Tenant_C_WAN_Zone\n no shutdown\n mtu 1500\n vrf Tenant_C_WAN_Zone\n + \ ip address 10.255.251.7/31\n!\ninterface Vlan4093\n description MLAG_PEER_L3_PEERING\n + \ no shutdown\n mtu 1500\n ip address 10.255.251.7/31\n!\ninterface Vlan4094\n + \ description MLAG_PEER\n no shutdown\n mtu 1500\n no autostate\n ip + address 10.255.252.7/31\n!\ninterface Vxlan1\n description DC1-SVC3B_VTEP\n + \ vxlan source-interface Loopback1\n vxlan virtual-router encapsulation mac-address + mlag-system-id\n vxlan udp-port 4789\n vxlan vlan 110 vni 10110\n vxlan + vlan 111 vni 50111\n vxlan vlan 120 vni 10120\n vxlan vlan 121 vni 10121\n + \ vxlan vlan 130 vni 10130\n vxlan vlan 131 vni 10131\n vxlan vlan 140 vni + 10140\n vxlan vlan 141 vni 10141\n vxlan vlan 150 vni 10150\n vxlan vlan + 210 vni 20210\n vxlan vlan 211 vni 20211\n vxlan vlan 250 vni 20250\n vxlan + vlan 310 vni 30310\n vxlan vlan 311 vni 30311\n vxlan vlan 350 vni 30350\n + \ vxlan vrf Tenant_A_APP_Zone vni 12\n vxlan vrf Tenant_A_DB_Zone vni 13\n + \ vxlan vrf Tenant_A_OP_Zone vni 10\n vxlan vrf Tenant_A_WAN_Zone vni 14\n + \ vxlan vrf Tenant_A_WEB_Zone vni 11\n vxlan vrf Tenant_B_OP_Zone vni 20\n + \ vxlan vrf Tenant_B_WAN_Zone vni 21\n vxlan vrf Tenant_C_OP_Zone vni 30\n + \ vxlan vrf Tenant_C_WAN_Zone vni 31\n!\nip virtual-router mac-address 00:dc:00:00:00:0a\n!\nip + address virtual source-nat vrf Tenant_A_OP_Zone address 10.255.1.9\n!\nip routing\nno + ip routing vrf MGMT\nip routing vrf Tenant_A_APP_Zone\nip routing vrf Tenant_A_DB_Zone\nip + routing vrf Tenant_A_OP_Zone\nip routing vrf Tenant_A_WAN_Zone\nip routing vrf + Tenant_A_WEB_Zone\nip routing vrf Tenant_B_OP_Zone\nip routing vrf Tenant_B_WAN_Zone\nip + routing vrf Tenant_C_OP_Zone\nip routing vrf Tenant_C_WAN_Zone\n!\nip prefix-list + PL-LOOPBACKS-EVPN-OVERLAY\n seq 10 permit 192.168.255.0/24 eq 32\n seq 20 + permit 192.168.254.0/24 eq 32\n!\nmlag configuration\n domain-id DC1_SVC3\n + \ local-interface Vlan4094\n peer-address 10.255.252.6\n peer-link Port-Channel5\n + \ reload-delay mlag 300\n reload-delay non-mlag 330\n!\nip route vrf MGMT 0.0.0.0/0 + 192.168.200.5\n!\nroute-map RM-CONN-2-BGP permit 10\n match ip address prefix-list + PL-LOOPBACKS-EVPN-OVERLAY\n!\nroute-map RM-MLAG-PEER-IN permit 10\n description + Make routes learned over MLAG Peer-link less preferred on spines to ensure optimal + routing\n set origin incomplete\n!\nrouter bfd\n multihop interval 1200 min-rx + 1200 multiplier 3\n!\nrouter bgp 65103\n router-id 192.168.255.9\n maximum-paths + 4 ecmp 4\n update wait-install\n no bgp default ipv4-unicast\n distance + bgp 20 200 200\n neighbor EVPN-OVERLAY-PEERS peer group\n neighbor EVPN-OVERLAY-PEERS + update-source Loopback0\n neighbor EVPN-OVERLAY-PEERS bfd\n neighbor EVPN-OVERLAY-PEERS + ebgp-multihop 3\n neighbor EVPN-OVERLAY-PEERS password 7 q+VNViP5i4rVjW1cxFv2wA==\n + \ neighbor EVPN-OVERLAY-PEERS send-community\n neighbor EVPN-OVERLAY-PEERS + maximum-routes 0\n neighbor IPv4-UNDERLAY-PEERS peer group\n neighbor IPv4-UNDERLAY-PEERS + password 7 AQQvKeimxJu+uGQ/yYvv9w==\n neighbor IPv4-UNDERLAY-PEERS send-community\n + \ neighbor IPv4-UNDERLAY-PEERS maximum-routes 12000\n neighbor MLAG-IPv4-UNDERLAY-PEER + peer group\n neighbor MLAG-IPv4-UNDERLAY-PEER remote-as 65103\n neighbor MLAG-IPv4-UNDERLAY-PEER + next-hop-self\n neighbor MLAG-IPv4-UNDERLAY-PEER description DC1-SVC3A\n neighbor + MLAG-IPv4-UNDERLAY-PEER password 7 vnEaG8gMeQf3d3cN6PktXQ==\n neighbor MLAG-IPv4-UNDERLAY-PEER + send-community\n neighbor MLAG-IPv4-UNDERLAY-PEER maximum-routes 12000\n neighbor + MLAG-IPv4-UNDERLAY-PEER route-map RM-MLAG-PEER-IN in\n neighbor 10.255.251.6 + peer group MLAG-IPv4-UNDERLAY-PEER\n neighbor 10.255.251.6 description DC1-SVC3A\n + \ neighbor 172.31.255.32 peer group IPv4-UNDERLAY-PEERS\n neighbor 172.31.255.32 + remote-as 65001\n neighbor 172.31.255.32 description DC1-SPINE1_Ethernet5\n + \ neighbor 172.31.255.34 peer group IPv4-UNDERLAY-PEERS\n neighbor 172.31.255.34 + remote-as 65001\n neighbor 172.31.255.34 description DC1-SPINE2_Ethernet5\n + \ neighbor 172.31.255.36 peer group IPv4-UNDERLAY-PEERS\n neighbor 172.31.255.36 + remote-as 65001\n neighbor 172.31.255.36 description DC1-SPINE3_Ethernet5\n + \ neighbor 172.31.255.38 peer group IPv4-UNDERLAY-PEERS\n neighbor 172.31.255.38 + remote-as 65001\n neighbor 172.31.255.38 description DC1-SPINE4_Ethernet5\n + \ neighbor 192.168.255.1 peer group EVPN-OVERLAY-PEERS\n neighbor 192.168.255.1 + remote-as 65001\n neighbor 192.168.255.1 description DC1-SPINE1\n neighbor + 192.168.255.2 peer group EVPN-OVERLAY-PEERS\n neighbor 192.168.255.2 remote-as + 65001\n neighbor 192.168.255.2 description DC1-SPINE2\n neighbor 192.168.255.3 + peer group EVPN-OVERLAY-PEERS\n neighbor 192.168.255.3 remote-as 65001\n neighbor + 192.168.255.3 description DC1-SPINE3\n neighbor 192.168.255.4 peer group EVPN-OVERLAY-PEERS\n + \ neighbor 192.168.255.4 remote-as 65001\n neighbor 192.168.255.4 description + DC1-SPINE4\n redistribute connected route-map RM-CONN-2-BGP\n !\n vlan-aware-bundle + Tenant_A_APP_Zone\n rd 192.168.255.9:12\n route-target both 12:12\n + \ redistribute learned\n vlan 130-131\n !\n vlan-aware-bundle Tenant_A_DB_Zone\n + \ rd 192.168.255.9:13\n route-target both 13:13\n redistribute learned\n + \ vlan 140-141\n !\n vlan-aware-bundle Tenant_A_OP_Zone\n rd 192.168.255.9:10\n + \ route-target both 10:10\n redistribute learned\n vlan 110-111\n + \ !\n vlan-aware-bundle Tenant_A_WAN_Zone\n rd 192.168.255.9:14\n route-target + both 14:14\n redistribute learned\n vlan 150\n !\n vlan-aware-bundle + Tenant_A_WEB_Zone\n rd 192.168.255.9:11\n route-target both 11:11\n + \ redistribute learned\n vlan 120-121\n !\n vlan-aware-bundle Tenant_B_OP_Zone\n + \ rd 192.168.255.9:20\n route-target both 20:20\n redistribute learned\n + \ vlan 210-211\n !\n vlan-aware-bundle Tenant_B_WAN_Zone\n rd 192.168.255.9:21\n + \ route-target both 21:21\n redistribute learned\n vlan 250\n !\n + \ vlan-aware-bundle Tenant_C_OP_Zone\n rd 192.168.255.9:30\n route-target + both 30:30\n redistribute learned\n vlan 310-311\n !\n vlan-aware-bundle + Tenant_C_WAN_Zone\n rd 192.168.255.9:31\n route-target both 31:31\n + \ redistribute learned\n vlan 350\n !\n address-family evpn\n neighbor + EVPN-OVERLAY-PEERS activate\n !\n address-family ipv4\n no neighbor EVPN-OVERLAY-PEERS + activate\n neighbor IPv4-UNDERLAY-PEERS activate\n neighbor MLAG-IPv4-UNDERLAY-PEER activate\n !\n vrf Tenant_A_APP_Zone\n rd 192.168.255.9:12\n route-target import evpn 12:12\n route-target export evpn 12:12\n router-id 192.168.255.9\n \ update wait-install\n neighbor 10.255.251.6 peer group MLAG-IPv4-UNDERLAY-PEER\n diff --git a/ansible_collections/arista/avd/molecule/eos_designs-l2ls/documentation/devices/BGP-SPINE1.md b/ansible_collections/arista/avd/molecule/eos_designs-l2ls/documentation/devices/BGP-SPINE1.md index 689d99b1e03..bfb709aaef2 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-l2ls/documentation/devices/BGP-SPINE1.md +++ b/ansible_collections/arista/avd/molecule/eos_designs-l2ls/documentation/devices/BGP-SPINE1.md @@ -268,20 +268,20 @@ interface Port-Channel3 | Interface | Description | VRF | IP Address | | --------- | ----------- | --- | ---------- | -| Loopback0 | Router_ID | default | 192.168.255.1/32 | +| Loopback0 | ROUTER_ID | default | 192.168.255.1/32 | ##### IPv6 | Interface | Description | VRF | IPv6 Address | | --------- | ----------- | --- | ------------ | -| Loopback0 | Router_ID | default | - | +| Loopback0 | ROUTER_ID | default | - | #### Loopback Interfaces Device Configuration ```eos ! interface Loopback0 - description Router_ID + description ROUTER_ID no shutdown ip address 192.168.255.1/32 ``` diff --git a/ansible_collections/arista/avd/molecule/eos_designs-l2ls/documentation/devices/BGP-SPINE2.md b/ansible_collections/arista/avd/molecule/eos_designs-l2ls/documentation/devices/BGP-SPINE2.md index 58d9d6c58ff..a2f4ffcf603 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-l2ls/documentation/devices/BGP-SPINE2.md +++ b/ansible_collections/arista/avd/molecule/eos_designs-l2ls/documentation/devices/BGP-SPINE2.md @@ -268,20 +268,20 @@ interface Port-Channel3 | Interface | Description | VRF | IP Address | | --------- | ----------- | --- | ---------- | -| Loopback0 | Router_ID | default | 192.168.255.2/32 | +| Loopback0 | ROUTER_ID | default | 192.168.255.2/32 | ##### IPv6 | Interface | Description | VRF | IPv6 Address | | --------- | ----------- | --- | ------------ | -| Loopback0 | Router_ID | default | - | +| Loopback0 | ROUTER_ID | default | - | #### Loopback Interfaces Device Configuration ```eos ! interface Loopback0 - description Router_ID + description ROUTER_ID no shutdown ip address 192.168.255.2/32 ``` diff --git a/ansible_collections/arista/avd/molecule/eos_designs-l2ls/documentation/devices/ISIS-SPINE1.md b/ansible_collections/arista/avd/molecule/eos_designs-l2ls/documentation/devices/ISIS-SPINE1.md index 891513f129e..1ea101d5c02 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-l2ls/documentation/devices/ISIS-SPINE1.md +++ b/ansible_collections/arista/avd/molecule/eos_designs-l2ls/documentation/devices/ISIS-SPINE1.md @@ -189,13 +189,13 @@ interface Port-Channel1 | Interface | Description | VRF | IP Address | | --------- | ----------- | --- | ---------- | -| Loopback0 | Router_ID | default | 192.168.255.1/32 | +| Loopback0 | ROUTER_ID | default | 192.168.255.1/32 | ##### IPv6 | Interface | Description | VRF | IPv6 Address | | --------- | ----------- | --- | ------------ | -| Loopback0 | Router_ID | default | - | +| Loopback0 | ROUTER_ID | default | - | ##### ISIS @@ -208,7 +208,7 @@ interface Port-Channel1 ```eos ! interface Loopback0 - description Router_ID + description ROUTER_ID no shutdown ip address 192.168.255.1/32 isis enable EVPN_UNDERLAY diff --git a/ansible_collections/arista/avd/molecule/eos_designs-l2ls/documentation/devices/OSPF-SPINE1.md b/ansible_collections/arista/avd/molecule/eos_designs-l2ls/documentation/devices/OSPF-SPINE1.md index 25422a56e96..6bd463d2ada 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-l2ls/documentation/devices/OSPF-SPINE1.md +++ b/ansible_collections/arista/avd/molecule/eos_designs-l2ls/documentation/devices/OSPF-SPINE1.md @@ -256,20 +256,20 @@ interface Port-Channel3 | Interface | Description | VRF | IP Address | | --------- | ----------- | --- | ---------- | -| Loopback0 | Router_ID | default | 192.168.255.1/32 | +| Loopback0 | ROUTER_ID | default | 192.168.255.1/32 | ##### IPv6 | Interface | Description | VRF | IPv6 Address | | --------- | ----------- | --- | ------------ | -| Loopback0 | Router_ID | default | - | +| Loopback0 | ROUTER_ID | default | - | #### Loopback Interfaces Device Configuration ```eos ! interface Loopback0 - description Router_ID + description ROUTER_ID no shutdown ip address 192.168.255.1/32 ip ospf area 0.0.0.0 diff --git a/ansible_collections/arista/avd/molecule/eos_designs-l2ls/documentation/devices/OSPF-SPINE2.md b/ansible_collections/arista/avd/molecule/eos_designs-l2ls/documentation/devices/OSPF-SPINE2.md index bfcc0f12dc9..cc6e3473487 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-l2ls/documentation/devices/OSPF-SPINE2.md +++ b/ansible_collections/arista/avd/molecule/eos_designs-l2ls/documentation/devices/OSPF-SPINE2.md @@ -256,20 +256,20 @@ interface Port-Channel3 | Interface | Description | VRF | IP Address | | --------- | ----------- | --- | ---------- | -| Loopback0 | Router_ID | default | 192.168.255.2/32 | +| Loopback0 | ROUTER_ID | default | 192.168.255.2/32 | ##### IPv6 | Interface | Description | VRF | IPv6 Address | | --------- | ----------- | --- | ------------ | -| Loopback0 | Router_ID | default | - | +| Loopback0 | ROUTER_ID | default | - | #### Loopback Interfaces Device Configuration ```eos ! interface Loopback0 - description Router_ID + description ROUTER_ID no shutdown ip address 192.168.255.2/32 ip ospf area 0.0.0.0 diff --git a/ansible_collections/arista/avd/molecule/eos_designs-l2ls/intended/configs/BGP-SPINE1.cfg b/ansible_collections/arista/avd/molecule/eos_designs-l2ls/intended/configs/BGP-SPINE1.cfg index d9f0358fcd3..49fdaa39e46 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-l2ls/intended/configs/BGP-SPINE1.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs-l2ls/intended/configs/BGP-SPINE1.cfg @@ -85,7 +85,7 @@ interface Ethernet5 ip address 192.168.253.4/31 ! interface Loopback0 - description Router_ID + description ROUTER_ID no shutdown ip address 192.168.255.1/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs-l2ls/intended/configs/BGP-SPINE2.cfg b/ansible_collections/arista/avd/molecule/eos_designs-l2ls/intended/configs/BGP-SPINE2.cfg index 67e4406debe..bf3d3efe015 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-l2ls/intended/configs/BGP-SPINE2.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs-l2ls/intended/configs/BGP-SPINE2.cfg @@ -85,7 +85,7 @@ interface Ethernet5 ip address 192.168.253.6/31 ! interface Loopback0 - description Router_ID + description ROUTER_ID no shutdown ip address 192.168.255.2/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs-l2ls/intended/configs/ISIS-SPINE1.cfg b/ansible_collections/arista/avd/molecule/eos_designs-l2ls/intended/configs/ISIS-SPINE1.cfg index 071be256ad8..e3d87ecdddf 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-l2ls/intended/configs/ISIS-SPINE1.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs-l2ls/intended/configs/ISIS-SPINE1.cfg @@ -38,7 +38,7 @@ interface Ethernet10 switchport ! interface Loopback0 - description Router_ID + description ROUTER_ID no shutdown ip address 192.168.255.1/32 isis enable EVPN_UNDERLAY diff --git a/ansible_collections/arista/avd/molecule/eos_designs-l2ls/intended/configs/OSPF-SPINE1.cfg b/ansible_collections/arista/avd/molecule/eos_designs-l2ls/intended/configs/OSPF-SPINE1.cfg index cf1fda0ef3c..81298d8cd23 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-l2ls/intended/configs/OSPF-SPINE1.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs-l2ls/intended/configs/OSPF-SPINE1.cfg @@ -78,7 +78,7 @@ interface Ethernet5 ip ospf area 0.0.0.0 ! interface Loopback0 - description Router_ID + description ROUTER_ID no shutdown ip address 192.168.255.1/32 ip ospf area 0.0.0.0 diff --git a/ansible_collections/arista/avd/molecule/eos_designs-l2ls/intended/configs/OSPF-SPINE2.cfg b/ansible_collections/arista/avd/molecule/eos_designs-l2ls/intended/configs/OSPF-SPINE2.cfg index f9369e25ed3..5d7ef8ea467 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-l2ls/intended/configs/OSPF-SPINE2.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs-l2ls/intended/configs/OSPF-SPINE2.cfg @@ -78,7 +78,7 @@ interface Ethernet5 ip ospf area 0.0.0.0 ! interface Loopback0 - description Router_ID + description ROUTER_ID no shutdown ip address 192.168.255.2/32 ip ospf area 0.0.0.0 diff --git a/ansible_collections/arista/avd/molecule/eos_designs-l2ls/intended/structured_configs/BGP-SPINE1.yml b/ansible_collections/arista/avd/molecule/eos_designs-l2ls/intended/structured_configs/BGP-SPINE1.yml index 2b71867c7c2..b2dff16f536 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-l2ls/intended/structured_configs/BGP-SPINE1.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs-l2ls/intended/structured_configs/BGP-SPINE1.yml @@ -217,7 +217,7 @@ route_maps: description: Make routes learned over MLAG Peer-link less preferred on spines to ensure optimal routing loopback_interfaces: - name: Loopback0 - description: Router_ID + description: ROUTER_ID shutdown: false ip_address: 192.168.255.1/32 ip_igmp_snooping: diff --git a/ansible_collections/arista/avd/molecule/eos_designs-l2ls/intended/structured_configs/BGP-SPINE2.yml b/ansible_collections/arista/avd/molecule/eos_designs-l2ls/intended/structured_configs/BGP-SPINE2.yml index 5fb4fb0da2d..aa539be4cab 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-l2ls/intended/structured_configs/BGP-SPINE2.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs-l2ls/intended/structured_configs/BGP-SPINE2.yml @@ -221,7 +221,7 @@ route_maps: description: Make routes learned over MLAG Peer-link less preferred on spines to ensure optimal routing loopback_interfaces: - name: Loopback0 - description: Router_ID + description: ROUTER_ID shutdown: false ip_address: 192.168.255.2/32 ip_igmp_snooping: diff --git a/ansible_collections/arista/avd/molecule/eos_designs-l2ls/intended/structured_configs/ISIS-SPINE1.yml b/ansible_collections/arista/avd/molecule/eos_designs-l2ls/intended/structured_configs/ISIS-SPINE1.yml index 7c3f5a4647b..164ca104993 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-l2ls/intended/structured_configs/ISIS-SPINE1.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs-l2ls/intended/structured_configs/ISIS-SPINE1.yml @@ -63,7 +63,7 @@ port_channel_interfaces: vlans: 110,4092 loopback_interfaces: - name: Loopback0 - description: Router_ID + description: ROUTER_ID shutdown: false ip_address: 192.168.255.1/32 isis_enable: EVPN_UNDERLAY diff --git a/ansible_collections/arista/avd/molecule/eos_designs-l2ls/intended/structured_configs/OSPF-SPINE1.yml b/ansible_collections/arista/avd/molecule/eos_designs-l2ls/intended/structured_configs/OSPF-SPINE1.yml index 4472fb1fafc..17ca998ecea 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-l2ls/intended/structured_configs/OSPF-SPINE1.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs-l2ls/intended/structured_configs/OSPF-SPINE1.yml @@ -146,7 +146,7 @@ mlag_configuration: reload_delay_non_mlag: '330' loopback_interfaces: - name: Loopback0 - description: Router_ID + description: ROUTER_ID shutdown: false ip_address: 192.168.255.1/32 ospf_area: 0.0.0.0 diff --git a/ansible_collections/arista/avd/molecule/eos_designs-l2ls/intended/structured_configs/OSPF-SPINE2.yml b/ansible_collections/arista/avd/molecule/eos_designs-l2ls/intended/structured_configs/OSPF-SPINE2.yml index d03631c2629..add2d7130eb 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-l2ls/intended/structured_configs/OSPF-SPINE2.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs-l2ls/intended/structured_configs/OSPF-SPINE2.yml @@ -149,7 +149,7 @@ mlag_configuration: reload_delay_non_mlag: '330' loopback_interfaces: - name: Loopback0 - description: Router_ID + description: ROUTER_ID shutdown: false ip_address: 192.168.255.2/32 ospf_area: 0.0.0.0 diff --git a/ansible_collections/arista/avd/molecule/eos_designs-mpls-isis-sr-ldp/documentation/devices/SITE1-LER1.md b/ansible_collections/arista/avd/molecule/eos_designs-mpls-isis-sr-ldp/documentation/devices/SITE1-LER1.md index ba338e11edb..0e22361d1ed 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-mpls-isis-sr-ldp/documentation/devices/SITE1-LER1.md +++ b/ansible_collections/arista/avd/molecule/eos_designs-mpls-isis-sr-ldp/documentation/devices/SITE1-LER1.md @@ -378,13 +378,13 @@ interface Port-Channel8.333 | Interface | Description | VRF | IP Address | | --------- | ----------- | --- | ---------- | -| Loopback0 | LSR_Router_ID | default | 100.70.0.5/32 | +| Loopback0 | ROUTER_ID | default | 100.70.0.5/32 | ##### IPv6 | Interface | Description | VRF | IPv6 Address | | --------- | ----------- | --- | ------------ | -| Loopback0 | LSR_Router_ID | default | 2000:1234:ffff:ffff::5/128 | +| Loopback0 | ROUTER_ID | default | 2000:1234:ffff:ffff::5/128 | ##### ISIS @@ -397,7 +397,7 @@ interface Port-Channel8.333 ```eos ! interface Loopback0 - description LSR_Router_ID + description ROUTER_ID no shutdown ip address 100.70.0.5/32 ipv6 address 2000:1234:ffff:ffff::5/128 diff --git a/ansible_collections/arista/avd/molecule/eos_designs-mpls-isis-sr-ldp/documentation/devices/SITE1-LER2.md b/ansible_collections/arista/avd/molecule/eos_designs-mpls-isis-sr-ldp/documentation/devices/SITE1-LER2.md index 572c1daab55..0e1eb206d91 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-mpls-isis-sr-ldp/documentation/devices/SITE1-LER2.md +++ b/ansible_collections/arista/avd/molecule/eos_designs-mpls-isis-sr-ldp/documentation/devices/SITE1-LER2.md @@ -372,13 +372,13 @@ interface Port-Channel8.333 | Interface | Description | VRF | IP Address | | --------- | ----------- | --- | ---------- | -| Loopback0 | MPLS_Overlay_peering | default | 100.70.0.6/32 | +| Loopback0 | ROUTER_ID | default | 100.70.0.6/32 | ##### IPv6 | Interface | Description | VRF | IPv6 Address | | --------- | ----------- | --- | ------------ | -| Loopback0 | MPLS_Overlay_peering | default | 2000:1234:ffff:ffff::6/128 | +| Loopback0 | ROUTER_ID | default | 2000:1234:ffff:ffff::6/128 | ##### ISIS @@ -391,7 +391,7 @@ interface Port-Channel8.333 ```eos ! interface Loopback0 - description MPLS_Overlay_peering + description ROUTER_ID no shutdown ip address 100.70.0.6/32 ipv6 address 2000:1234:ffff:ffff::6/128 diff --git a/ansible_collections/arista/avd/molecule/eos_designs-mpls-isis-sr-ldp/documentation/devices/SITE1-LSR1.md b/ansible_collections/arista/avd/molecule/eos_designs-mpls-isis-sr-ldp/documentation/devices/SITE1-LSR1.md index 645f156c826..3f9aec00a6c 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-mpls-isis-sr-ldp/documentation/devices/SITE1-LSR1.md +++ b/ansible_collections/arista/avd/molecule/eos_designs-mpls-isis-sr-ldp/documentation/devices/SITE1-LSR1.md @@ -232,13 +232,13 @@ interface Ethernet4 | Interface | Description | VRF | IP Address | | --------- | ----------- | --- | ---------- | -| Loopback0 | LSR_Router_ID | default | 100.70.0.1/32 | +| Loopback0 | ROUTER_ID | default | 100.70.0.1/32 | ##### IPv6 | Interface | Description | VRF | IPv6 Address | | --------- | ----------- | --- | ------------ | -| Loopback0 | LSR_Router_ID | default | 2000:1234:ffff:ffff::1/128 | +| Loopback0 | ROUTER_ID | default | 2000:1234:ffff:ffff::1/128 | ##### ISIS @@ -251,7 +251,7 @@ interface Ethernet4 ```eos ! interface Loopback0 - description LSR_Router_ID + description ROUTER_ID no shutdown ip address 100.70.0.1/32 ipv6 address 2000:1234:ffff:ffff::1/128 diff --git a/ansible_collections/arista/avd/molecule/eos_designs-mpls-isis-sr-ldp/documentation/devices/SITE1-LSR2.md b/ansible_collections/arista/avd/molecule/eos_designs-mpls-isis-sr-ldp/documentation/devices/SITE1-LSR2.md index 0b6e029e075..dc056914718 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-mpls-isis-sr-ldp/documentation/devices/SITE1-LSR2.md +++ b/ansible_collections/arista/avd/molecule/eos_designs-mpls-isis-sr-ldp/documentation/devices/SITE1-LSR2.md @@ -208,13 +208,13 @@ interface Ethernet3 | Interface | Description | VRF | IP Address | | --------- | ----------- | --- | ---------- | -| Loopback0 | LSR_Router_ID | default | 100.70.0.2/32 | +| Loopback0 | ROUTER_ID | default | 100.70.0.2/32 | ##### IPv6 | Interface | Description | VRF | IPv6 Address | | --------- | ----------- | --- | ------------ | -| Loopback0 | LSR_Router_ID | default | 2000:1234:ffff:ffff::2/128 | +| Loopback0 | ROUTER_ID | default | 2000:1234:ffff:ffff::2/128 | ##### ISIS @@ -227,7 +227,7 @@ interface Ethernet3 ```eos ! interface Loopback0 - description LSR_Router_ID + description ROUTER_ID no shutdown ip address 100.70.0.2/32 ipv6 address 2000:1234:ffff:ffff::2/128 diff --git a/ansible_collections/arista/avd/molecule/eos_designs-mpls-isis-sr-ldp/documentation/devices/SITE1-RR1.md b/ansible_collections/arista/avd/molecule/eos_designs-mpls-isis-sr-ldp/documentation/devices/SITE1-RR1.md index 96e10f90c9b..df23a954996 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-mpls-isis-sr-ldp/documentation/devices/SITE1-RR1.md +++ b/ansible_collections/arista/avd/molecule/eos_designs-mpls-isis-sr-ldp/documentation/devices/SITE1-RR1.md @@ -187,13 +187,13 @@ interface Ethernet4 | Interface | Description | VRF | IP Address | | --------- | ----------- | --- | ---------- | -| Loopback0 | MPLS_Overlay_peering | default | 100.70.0.8/32 | +| Loopback0 | ROUTER_ID | default | 100.70.0.8/32 | ##### IPv6 | Interface | Description | VRF | IPv6 Address | | --------- | ----------- | --- | ------------ | -| Loopback0 | MPLS_Overlay_peering | default | 2000:1234:ffff:ffff::8/128 | +| Loopback0 | ROUTER_ID | default | 2000:1234:ffff:ffff::8/128 | ##### ISIS @@ -206,7 +206,7 @@ interface Ethernet4 ```eos ! interface Loopback0 - description MPLS_Overlay_peering + description ROUTER_ID no shutdown ip address 100.70.0.8/32 ipv6 address 2000:1234:ffff:ffff::8/128 diff --git a/ansible_collections/arista/avd/molecule/eos_designs-mpls-isis-sr-ldp/documentation/devices/SITE2-LER1.md b/ansible_collections/arista/avd/molecule/eos_designs-mpls-isis-sr-ldp/documentation/devices/SITE2-LER1.md index a08e00aac9a..1d7f92924d6 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-mpls-isis-sr-ldp/documentation/devices/SITE2-LER1.md +++ b/ansible_collections/arista/avd/molecule/eos_designs-mpls-isis-sr-ldp/documentation/devices/SITE2-LER1.md @@ -445,13 +445,13 @@ interface Port-Channel220 | Interface | Description | VRF | IP Address | | --------- | ----------- | --- | ---------- | -| Loopback0 | MPLS_Overlay_peering | default | 100.70.0.7/32 | +| Loopback0 | ROUTER_ID | default | 100.70.0.7/32 | ##### IPv6 | Interface | Description | VRF | IPv6 Address | | --------- | ----------- | --- | ------------ | -| Loopback0 | MPLS_Overlay_peering | default | 2000:1234:ffff:ffff::7/128 | +| Loopback0 | ROUTER_ID | default | 2000:1234:ffff:ffff::7/128 | ##### ISIS @@ -464,7 +464,7 @@ interface Port-Channel220 ```eos ! interface Loopback0 - description MPLS_Overlay_peering + description ROUTER_ID no shutdown ip address 100.70.0.7/32 ipv6 address 2000:1234:ffff:ffff::7/128 diff --git a/ansible_collections/arista/avd/molecule/eos_designs-mpls-isis-sr-ldp/documentation/devices/SITE2-LSR1.md b/ansible_collections/arista/avd/molecule/eos_designs-mpls-isis-sr-ldp/documentation/devices/SITE2-LSR1.md index 32af521da8d..d870ab69242 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-mpls-isis-sr-ldp/documentation/devices/SITE2-LSR1.md +++ b/ansible_collections/arista/avd/molecule/eos_designs-mpls-isis-sr-ldp/documentation/devices/SITE2-LSR1.md @@ -232,13 +232,13 @@ interface Ethernet4 | Interface | Description | VRF | IP Address | | --------- | ----------- | --- | ---------- | -| Loopback0 | LSR_Router_ID | default | 100.70.0.3/32 | +| Loopback0 | ROUTER_ID | default | 100.70.0.3/32 | ##### IPv6 | Interface | Description | VRF | IPv6 Address | | --------- | ----------- | --- | ------------ | -| Loopback0 | LSR_Router_ID | default | 2000:1234:ffff:ffff::3/128 | +| Loopback0 | ROUTER_ID | default | 2000:1234:ffff:ffff::3/128 | ##### ISIS @@ -251,7 +251,7 @@ interface Ethernet4 ```eos ! interface Loopback0 - description LSR_Router_ID + description ROUTER_ID no shutdown ip address 100.70.0.3/32 ipv6 address 2000:1234:ffff:ffff::3/128 diff --git a/ansible_collections/arista/avd/molecule/eos_designs-mpls-isis-sr-ldp/documentation/devices/SITE2-LSR2.md b/ansible_collections/arista/avd/molecule/eos_designs-mpls-isis-sr-ldp/documentation/devices/SITE2-LSR2.md index 925037a5525..a024b32d6a0 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-mpls-isis-sr-ldp/documentation/devices/SITE2-LSR2.md +++ b/ansible_collections/arista/avd/molecule/eos_designs-mpls-isis-sr-ldp/documentation/devices/SITE2-LSR2.md @@ -295,13 +295,13 @@ interface Port-Channel110 | Interface | Description | VRF | IP Address | | --------- | ----------- | --- | ---------- | -| Loopback0 | LSR_Router_ID | default | 100.70.0.4/32 | +| Loopback0 | ROUTER_ID | default | 100.70.0.4/32 | ##### IPv6 | Interface | Description | VRF | IPv6 Address | | --------- | ----------- | --- | ------------ | -| Loopback0 | LSR_Router_ID | default | 2000:1234:ffff:ffff::4/128 | +| Loopback0 | ROUTER_ID | default | 2000:1234:ffff:ffff::4/128 | ##### ISIS @@ -314,7 +314,7 @@ interface Port-Channel110 ```eos ! interface Loopback0 - description LSR_Router_ID + description ROUTER_ID no shutdown ip address 100.70.0.4/32 ipv6 address 2000:1234:ffff:ffff::4/128 diff --git a/ansible_collections/arista/avd/molecule/eos_designs-mpls-isis-sr-ldp/documentation/devices/SITE2-RR1.md b/ansible_collections/arista/avd/molecule/eos_designs-mpls-isis-sr-ldp/documentation/devices/SITE2-RR1.md index d53f311a6f4..2096d1e5393 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-mpls-isis-sr-ldp/documentation/devices/SITE2-RR1.md +++ b/ansible_collections/arista/avd/molecule/eos_designs-mpls-isis-sr-ldp/documentation/devices/SITE2-RR1.md @@ -187,13 +187,13 @@ interface Ethernet4 | Interface | Description | VRF | IP Address | | --------- | ----------- | --- | ---------- | -| Loopback0 | MPLS_Overlay_peering | default | 100.70.0.9/32 | +| Loopback0 | ROUTER_ID | default | 100.70.0.9/32 | ##### IPv6 | Interface | Description | VRF | IPv6 Address | | --------- | ----------- | --- | ------------ | -| Loopback0 | MPLS_Overlay_peering | default | 2000:1234:ffff:ffff::9/128 | +| Loopback0 | ROUTER_ID | default | 2000:1234:ffff:ffff::9/128 | ##### ISIS @@ -206,7 +206,7 @@ interface Ethernet4 ```eos ! interface Loopback0 - description MPLS_Overlay_peering + description ROUTER_ID no shutdown ip address 100.70.0.9/32 ipv6 address 2000:1234:ffff:ffff::9/128 diff --git a/ansible_collections/arista/avd/molecule/eos_designs-mpls-isis-sr-ldp/documentation/devices/SITE3-LER1.md b/ansible_collections/arista/avd/molecule/eos_designs-mpls-isis-sr-ldp/documentation/devices/SITE3-LER1.md index 8039cc159a5..b3afcbfed9e 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-mpls-isis-sr-ldp/documentation/devices/SITE3-LER1.md +++ b/ansible_collections/arista/avd/molecule/eos_designs-mpls-isis-sr-ldp/documentation/devices/SITE3-LER1.md @@ -138,13 +138,13 @@ vlan internal order ascending range 1006 1199 | Interface | Description | VRF | IP Address | | --------- | ----------- | --- | ---------- | -| Loopback0 | LSR_Router_ID | default | 100.70.0.10/32 | +| Loopback0 | ROUTER_ID | default | 100.70.0.10/32 | ##### IPv6 | Interface | Description | VRF | IPv6 Address | | --------- | ----------- | --- | ------------ | -| Loopback0 | LSR_Router_ID | default | 2000:1234:ffff:ffff::a/128 | +| Loopback0 | ROUTER_ID | default | 2000:1234:ffff:ffff::a/128 | ##### ISIS @@ -157,7 +157,7 @@ vlan internal order ascending range 1006 1199 ```eos ! interface Loopback0 - description LSR_Router_ID + description ROUTER_ID no shutdown ip address 100.70.0.10/32 ipv6 address 2000:1234:ffff:ffff::a/128 diff --git a/ansible_collections/arista/avd/molecule/eos_designs-mpls-isis-sr-ldp/intended/configs/SITE1-LER1.cfg b/ansible_collections/arista/avd/molecule/eos_designs-mpls-isis-sr-ldp/intended/configs/SITE1-LER1.cfg index cc92ba1e9f0..9a6aeb827a8 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-mpls-isis-sr-ldp/intended/configs/SITE1-LER1.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs-mpls-isis-sr-ldp/intended/configs/SITE1-LER1.cfg @@ -151,7 +151,7 @@ interface Ethernet8 channel-group 8 mode active ! interface Loopback0 - description LSR_Router_ID + description ROUTER_ID no shutdown ip address 100.70.0.5/32 ipv6 address 2000:1234:ffff:ffff::5/128 diff --git a/ansible_collections/arista/avd/molecule/eos_designs-mpls-isis-sr-ldp/intended/configs/SITE1-LER2.cfg b/ansible_collections/arista/avd/molecule/eos_designs-mpls-isis-sr-ldp/intended/configs/SITE1-LER2.cfg index 8124779ffc7..6ec11597088 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-mpls-isis-sr-ldp/intended/configs/SITE1-LER2.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs-mpls-isis-sr-ldp/intended/configs/SITE1-LER2.cfg @@ -148,7 +148,7 @@ interface Ethernet8 channel-group 8 mode active ! interface Loopback0 - description MPLS_Overlay_peering + description ROUTER_ID no shutdown ip address 100.70.0.6/32 ipv6 address 2000:1234:ffff:ffff::6/128 diff --git a/ansible_collections/arista/avd/molecule/eos_designs-mpls-isis-sr-ldp/intended/configs/SITE1-LSR1.cfg b/ansible_collections/arista/avd/molecule/eos_designs-mpls-isis-sr-ldp/intended/configs/SITE1-LSR1.cfg index 5f827375a9d..5869e1eb2a2 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-mpls-isis-sr-ldp/intended/configs/SITE1-LSR1.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs-mpls-isis-sr-ldp/intended/configs/SITE1-LSR1.cfg @@ -78,7 +78,7 @@ interface Ethernet4 ! interface Loopback0 - description LSR_Router_ID + description ROUTER_ID no shutdown ip address 100.70.0.1/32 ipv6 address 2000:1234:ffff:ffff::1/128 diff --git a/ansible_collections/arista/avd/molecule/eos_designs-mpls-isis-sr-ldp/intended/configs/SITE1-LSR2.cfg b/ansible_collections/arista/avd/molecule/eos_designs-mpls-isis-sr-ldp/intended/configs/SITE1-LSR2.cfg index 12cf3780f16..23b76350580 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-mpls-isis-sr-ldp/intended/configs/SITE1-LSR2.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs-mpls-isis-sr-ldp/intended/configs/SITE1-LSR2.cfg @@ -57,7 +57,7 @@ interface Ethernet3 ! interface Loopback0 - description LSR_Router_ID + description ROUTER_ID no shutdown ip address 100.70.0.2/32 ipv6 address 2000:1234:ffff:ffff::2/128 diff --git a/ansible_collections/arista/avd/molecule/eos_designs-mpls-isis-sr-ldp/intended/configs/SITE1-RR1.cfg b/ansible_collections/arista/avd/molecule/eos_designs-mpls-isis-sr-ldp/intended/configs/SITE1-RR1.cfg index 072b92a18f5..4d860071f9e 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-mpls-isis-sr-ldp/intended/configs/SITE1-RR1.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs-mpls-isis-sr-ldp/intended/configs/SITE1-RR1.cfg @@ -36,7 +36,7 @@ interface Ethernet4 ! interface Loopback0 - description MPLS_Overlay_peering + description ROUTER_ID no shutdown ip address 100.70.0.8/32 ipv6 address 2000:1234:ffff:ffff::8/128 diff --git a/ansible_collections/arista/avd/molecule/eos_designs-mpls-isis-sr-ldp/intended/configs/SITE2-LER1.cfg b/ansible_collections/arista/avd/molecule/eos_designs-mpls-isis-sr-ldp/intended/configs/SITE2-LER1.cfg index b45a4cf62e7..8b5e96b15c2 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-mpls-isis-sr-ldp/intended/configs/SITE2-LER1.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs-mpls-isis-sr-ldp/intended/configs/SITE2-LER1.cfg @@ -196,7 +196,7 @@ interface Ethernet14 channel-group 220 mode active ! interface Loopback0 - description MPLS_Overlay_peering + description ROUTER_ID no shutdown ip address 100.70.0.7/32 ipv6 address 2000:1234:ffff:ffff::7/128 diff --git a/ansible_collections/arista/avd/molecule/eos_designs-mpls-isis-sr-ldp/intended/configs/SITE2-LSR1.cfg b/ansible_collections/arista/avd/molecule/eos_designs-mpls-isis-sr-ldp/intended/configs/SITE2-LSR1.cfg index 9bbacf340b8..675d8a1b67c 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-mpls-isis-sr-ldp/intended/configs/SITE2-LSR1.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs-mpls-isis-sr-ldp/intended/configs/SITE2-LSR1.cfg @@ -78,7 +78,7 @@ interface Ethernet4 ! interface Loopback0 - description LSR_Router_ID + description ROUTER_ID no shutdown ip address 100.70.0.3/32 ipv6 address 2000:1234:ffff:ffff::3/128 diff --git a/ansible_collections/arista/avd/molecule/eos_designs-mpls-isis-sr-ldp/intended/configs/SITE2-LSR2.cfg b/ansible_collections/arista/avd/molecule/eos_designs-mpls-isis-sr-ldp/intended/configs/SITE2-LSR2.cfg index 452d2ec5170..a6030fc04e9 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-mpls-isis-sr-ldp/intended/configs/SITE2-LSR2.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs-mpls-isis-sr-ldp/intended/configs/SITE2-LSR2.cfg @@ -100,7 +100,7 @@ interface Ethernet15 channel-group 110 mode active ! interface Loopback0 - description LSR_Router_ID + description ROUTER_ID no shutdown ip address 100.70.0.4/32 ipv6 address 2000:1234:ffff:ffff::4/128 diff --git a/ansible_collections/arista/avd/molecule/eos_designs-mpls-isis-sr-ldp/intended/configs/SITE2-RR1.cfg b/ansible_collections/arista/avd/molecule/eos_designs-mpls-isis-sr-ldp/intended/configs/SITE2-RR1.cfg index cd4b05579b8..41e37af7210 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-mpls-isis-sr-ldp/intended/configs/SITE2-RR1.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs-mpls-isis-sr-ldp/intended/configs/SITE2-RR1.cfg @@ -36,7 +36,7 @@ interface Ethernet4 ! interface Loopback0 - description MPLS_Overlay_peering + description ROUTER_ID no shutdown ip address 100.70.0.9/32 ipv6 address 2000:1234:ffff:ffff::9/128 diff --git a/ansible_collections/arista/avd/molecule/eos_designs-mpls-isis-sr-ldp/intended/configs/SITE3-LER1.cfg b/ansible_collections/arista/avd/molecule/eos_designs-mpls-isis-sr-ldp/intended/configs/SITE3-LER1.cfg index cb2f024d254..7e5c16d928a 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-mpls-isis-sr-ldp/intended/configs/SITE3-LER1.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs-mpls-isis-sr-ldp/intended/configs/SITE3-LER1.cfg @@ -16,7 +16,7 @@ no aaa root vrf instance MGMT ! interface Loopback0 - description LSR_Router_ID + description ROUTER_ID no shutdown ip address 100.70.0.10/32 ipv6 address 2000:1234:ffff:ffff::a/128 diff --git a/ansible_collections/arista/avd/molecule/eos_designs-mpls-isis-sr-ldp/intended/structured_configs/SITE1-LER1.yml b/ansible_collections/arista/avd/molecule/eos_designs-mpls-isis-sr-ldp/intended/structured_configs/SITE1-LER1.yml index 1ba0766d399..75b6807deda 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-mpls-isis-sr-ldp/intended/structured_configs/SITE1-LER1.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs-mpls-isis-sr-ldp/intended/structured_configs/SITE1-LER1.yml @@ -156,7 +156,7 @@ management_api_http: eos_cli: "management security\n password encryption-key common\n" loopback_interfaces: - name: Loopback0 - description: LSR_Router_ID + description: ROUTER_ID shutdown: false ip_address: 100.70.0.5/32 ipv6_address: 2000:1234:ffff:ffff::5/128 diff --git a/ansible_collections/arista/avd/molecule/eos_designs-mpls-isis-sr-ldp/intended/structured_configs/SITE1-LER2.yml b/ansible_collections/arista/avd/molecule/eos_designs-mpls-isis-sr-ldp/intended/structured_configs/SITE1-LER2.yml index 49b30c47ebc..c0e1178840d 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-mpls-isis-sr-ldp/intended/structured_configs/SITE1-LER2.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs-mpls-isis-sr-ldp/intended/structured_configs/SITE1-LER2.yml @@ -201,7 +201,7 @@ management_api_http: eos_cli: "management security\n password encryption-key common\n" loopback_interfaces: - name: Loopback0 - description: MPLS_Overlay_peering + description: ROUTER_ID shutdown: false ip_address: 100.70.0.6/32 ipv6_address: 2000:1234:ffff:ffff::6/128 diff --git a/ansible_collections/arista/avd/molecule/eos_designs-mpls-isis-sr-ldp/intended/structured_configs/SITE1-LSR1.yml b/ansible_collections/arista/avd/molecule/eos_designs-mpls-isis-sr-ldp/intended/structured_configs/SITE1-LSR1.yml index 2f9050de15c..a9c57146c69 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-mpls-isis-sr-ldp/intended/structured_configs/SITE1-LSR1.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs-mpls-isis-sr-ldp/intended/structured_configs/SITE1-LSR1.yml @@ -38,7 +38,7 @@ management_api_http: eos_cli: "management security\n password encryption-key common\n" loopback_interfaces: - name: Loopback0 - description: LSR_Router_ID + description: ROUTER_ID shutdown: false ip_address: 100.70.0.1/32 ipv6_address: 2000:1234:ffff:ffff::1/128 diff --git a/ansible_collections/arista/avd/molecule/eos_designs-mpls-isis-sr-ldp/intended/structured_configs/SITE1-LSR2.yml b/ansible_collections/arista/avd/molecule/eos_designs-mpls-isis-sr-ldp/intended/structured_configs/SITE1-LSR2.yml index 57022a3388c..00e218852b5 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-mpls-isis-sr-ldp/intended/structured_configs/SITE1-LSR2.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs-mpls-isis-sr-ldp/intended/structured_configs/SITE1-LSR2.yml @@ -38,7 +38,7 @@ management_api_http: eos_cli: "management security\n password encryption-key common\n" loopback_interfaces: - name: Loopback0 - description: LSR_Router_ID + description: ROUTER_ID shutdown: false ip_address: 100.70.0.2/32 ipv6_address: 2000:1234:ffff:ffff::2/128 diff --git a/ansible_collections/arista/avd/molecule/eos_designs-mpls-isis-sr-ldp/intended/structured_configs/SITE1-RR1.yml b/ansible_collections/arista/avd/molecule/eos_designs-mpls-isis-sr-ldp/intended/structured_configs/SITE1-RR1.yml index 3be40eeb2ea..eeadba51495 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-mpls-isis-sr-ldp/intended/structured_configs/SITE1-RR1.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs-mpls-isis-sr-ldp/intended/structured_configs/SITE1-RR1.yml @@ -114,7 +114,7 @@ management_api_http: eos_cli: "management security\n password encryption-key common\n" loopback_interfaces: - name: Loopback0 - description: MPLS_Overlay_peering + description: ROUTER_ID shutdown: false ip_address: 100.70.0.8/32 ipv6_address: 2000:1234:ffff:ffff::8/128 diff --git a/ansible_collections/arista/avd/molecule/eos_designs-mpls-isis-sr-ldp/intended/structured_configs/SITE2-LER1.yml b/ansible_collections/arista/avd/molecule/eos_designs-mpls-isis-sr-ldp/intended/structured_configs/SITE2-LER1.yml index c0a01e2bc66..1a2e57e9db1 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-mpls-isis-sr-ldp/intended/structured_configs/SITE2-LER1.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs-mpls-isis-sr-ldp/intended/structured_configs/SITE2-LER1.yml @@ -208,7 +208,7 @@ management_api_http: eos_cli: "management security\n password encryption-key common\n" loopback_interfaces: - name: Loopback0 - description: MPLS_Overlay_peering + description: ROUTER_ID shutdown: false ip_address: 100.70.0.7/32 ipv6_address: 2000:1234:ffff:ffff::7/128 diff --git a/ansible_collections/arista/avd/molecule/eos_designs-mpls-isis-sr-ldp/intended/structured_configs/SITE2-LSR1.yml b/ansible_collections/arista/avd/molecule/eos_designs-mpls-isis-sr-ldp/intended/structured_configs/SITE2-LSR1.yml index 2fb1e3e535c..885e9eb62e7 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-mpls-isis-sr-ldp/intended/structured_configs/SITE2-LSR1.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs-mpls-isis-sr-ldp/intended/structured_configs/SITE2-LSR1.yml @@ -38,7 +38,7 @@ management_api_http: eos_cli: "management security\n password encryption-key common\n" loopback_interfaces: - name: Loopback0 - description: LSR_Router_ID + description: ROUTER_ID shutdown: false ip_address: 100.70.0.3/32 ipv6_address: 2000:1234:ffff:ffff::3/128 diff --git a/ansible_collections/arista/avd/molecule/eos_designs-mpls-isis-sr-ldp/intended/structured_configs/SITE2-LSR2.yml b/ansible_collections/arista/avd/molecule/eos_designs-mpls-isis-sr-ldp/intended/structured_configs/SITE2-LSR2.yml index f3df1886d0e..ec5dbfeada4 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-mpls-isis-sr-ldp/intended/structured_configs/SITE2-LSR2.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs-mpls-isis-sr-ldp/intended/structured_configs/SITE2-LSR2.yml @@ -38,7 +38,7 @@ management_api_http: eos_cli: "management security\n password encryption-key common\n" loopback_interfaces: - name: Loopback0 - description: LSR_Router_ID + description: ROUTER_ID shutdown: false ip_address: 100.70.0.4/32 ipv6_address: 2000:1234:ffff:ffff::4/128 diff --git a/ansible_collections/arista/avd/molecule/eos_designs-mpls-isis-sr-ldp/intended/structured_configs/SITE2-RR1.yml b/ansible_collections/arista/avd/molecule/eos_designs-mpls-isis-sr-ldp/intended/structured_configs/SITE2-RR1.yml index 001e1a03af0..79d886f1ca6 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-mpls-isis-sr-ldp/intended/structured_configs/SITE2-RR1.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs-mpls-isis-sr-ldp/intended/structured_configs/SITE2-RR1.yml @@ -114,7 +114,7 @@ management_api_http: eos_cli: "management security\n password encryption-key common\n" loopback_interfaces: - name: Loopback0 - description: MPLS_Overlay_peering + description: ROUTER_ID shutdown: false ip_address: 100.70.0.9/32 ipv6_address: 2000:1234:ffff:ffff::9/128 diff --git a/ansible_collections/arista/avd/molecule/eos_designs-mpls-isis-sr-ldp/intended/structured_configs/SITE3-LER1.yml b/ansible_collections/arista/avd/molecule/eos_designs-mpls-isis-sr-ldp/intended/structured_configs/SITE3-LER1.yml index c17ef778a1a..b06f004dab9 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-mpls-isis-sr-ldp/intended/structured_configs/SITE3-LER1.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs-mpls-isis-sr-ldp/intended/structured_configs/SITE3-LER1.yml @@ -41,7 +41,7 @@ management_api_http: eos_cli: "management security\n password encryption-key common\n" loopback_interfaces: - name: Loopback0 - description: LSR_Router_ID + description: ROUTER_ID shutdown: false ip_address: 100.70.0.10/32 ipv6_address: 2000:1234:ffff:ffff::a/128 diff --git a/ansible_collections/arista/avd/molecule/eos_designs-mpls-isis-sr-ldp/inventory/group_vars/MPLS_CORE.yml b/ansible_collections/arista/avd/molecule/eos_designs-mpls-isis-sr-ldp/inventory/group_vars/MPLS_CORE.yml index 72307e82fed..0978c995aa0 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-mpls-isis-sr-ldp/inventory/group_vars/MPLS_CORE.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs-mpls-isis-sr-ldp/inventory/group_vars/MPLS_CORE.yml @@ -37,7 +37,7 @@ bgp_peer_groups: # RD/RT Format overlay_rd_type: - admin_subfield: overlay_loopback + admin_subfield: router_id overlay_rt_type: admin_subfield: 65000 diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-LEAF1A.md b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-LEAF1A.md index 7694e423eec..cb83a6d8995 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-LEAF1A.md +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-LEAF1A.md @@ -240,14 +240,14 @@ interface Port-Channel3 | Interface | Description | VRF | IP Address | | --------- | ----------- | --- | ---------- | -| Loopback0 | EVPN_Overlay_Peering | default | 172.16.110.3/32 | +| Loopback0 | ROUTER_ID | default | 172.16.110.3/32 | | Loopback1 | VTEP_VXLAN_Tunnel_Source | default | 172.18.110.3/32 | ##### IPv6 | Interface | Description | VRF | IPv6 Address | | --------- | ----------- | --- | ------------ | -| Loopback0 | EVPN_Overlay_Peering | default | - | +| Loopback0 | ROUTER_ID | default | - | | Loopback1 | VTEP_VXLAN_Tunnel_Source | default | - | #### Loopback Interfaces Device Configuration @@ -255,7 +255,7 @@ interface Port-Channel3 ```eos ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 172.16.110.3/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-LEAF2B.md b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-LEAF2B.md index ddc405befee..838bc66daa0 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-LEAF2B.md +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-LEAF2B.md @@ -501,7 +501,7 @@ interface Port-Channel19 | Interface | Description | VRF | IP Address | | --------- | ----------- | --- | ---------- | -| Loopback0 | EVPN_Overlay_Peering | default | 172.16.110.5/32 | +| Loopback0 | ROUTER_ID | default | 172.16.110.5/32 | | Loopback1 | VTEP_VXLAN_Tunnel_Source | default | 172.18.110.4/32 | | Loopback100 | vrf_with_loopbacks_from_overlapping_pool_VTEP_DIAGNOSTICS | vrf_with_loopbacks_from_overlapping_pool | 10.100.0.5/32 | | Loopback101 | vrf_with_loopbacks_from_pod_pools_VTEP_DIAGNOSTICS | vrf_with_loopbacks_from_pod_pools | 10.101.101.5/32 | @@ -511,7 +511,7 @@ interface Port-Channel19 | Interface | Description | VRF | IPv6 Address | | --------- | ----------- | --- | ------------ | -| Loopback0 | EVPN_Overlay_Peering | default | - | +| Loopback0 | ROUTER_ID | default | - | | Loopback1 | VTEP_VXLAN_Tunnel_Source | default | - | | Loopback100 | vrf_with_loopbacks_from_overlapping_pool_VTEP_DIAGNOSTICS | vrf_with_loopbacks_from_overlapping_pool | - | | Loopback101 | vrf_with_loopbacks_from_pod_pools_VTEP_DIAGNOSTICS | vrf_with_loopbacks_from_pod_pools | - | @@ -522,7 +522,7 @@ interface Port-Channel19 ```eos ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 172.16.110.5/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-SPINE1.md b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-SPINE1.md index 027fa3e7283..0c74938cc49 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-SPINE1.md +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-SPINE1.md @@ -236,20 +236,20 @@ interface Ethernet8 | Interface | Description | VRF | IP Address | | --------- | ----------- | --- | ---------- | -| Loopback0 | EVPN_Overlay_Peering | default | 172.16.110.1/32 | +| Loopback0 | ROUTER_ID | default | 172.16.110.1/32 | ##### IPv6 | Interface | Description | VRF | IPv6 Address | | --------- | ----------- | --- | ------------ | -| Loopback0 | EVPN_Overlay_Peering | default | - | +| Loopback0 | ROUTER_ID | default | - | #### Loopback Interfaces Device Configuration ```eos ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 172.16.110.1/32 ``` diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-SPINE2.md b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-SPINE2.md index 18765113016..8cc9fc9ca00 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-SPINE2.md +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD1-SPINE2.md @@ -252,20 +252,20 @@ interface Ethernet8 | Interface | Description | VRF | IP Address | | --------- | ----------- | --- | ---------- | -| Loopback0 | EVPN_Overlay_Peering | default | 172.16.110.2/32 | +| Loopback0 | ROUTER_ID | default | 172.16.110.2/32 | ##### IPv6 | Interface | Description | VRF | IPv6 Address | | --------- | ----------- | --- | ------------ | -| Loopback0 | EVPN_Overlay_Peering | default | - | +| Loopback0 | ROUTER_ID | default | - | #### Loopback Interfaces Device Configuration ```eos ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 172.16.110.2/32 ``` diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD2-LEAF1A.md b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD2-LEAF1A.md index d3068c5bc51..73f57d05790 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD2-LEAF1A.md +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD2-LEAF1A.md @@ -292,7 +292,7 @@ interface Ethernet3 | Interface | Description | VRF | IP Address | | --------- | ----------- | --- | ---------- | -| Loopback0 | EVPN_Overlay_Peering | default | 172.16.120.3/32 | +| Loopback0 | ROUTER_ID | default | 172.16.120.3/32 | | Loopback1 | VTEP_VXLAN_Tunnel_Source | default | 172.18.120.3/32 | | Loopback100 | vrf_with_loopbacks_from_overlapping_pool_VTEP_DIAGNOSTICS | vrf_with_loopbacks_from_overlapping_pool | 10.100.0.3/32 | | Loopback101 | vrf_with_loopbacks_from_pod_pools_VTEP_DIAGNOSTICS | vrf_with_loopbacks_from_pod_pools | 10.101.102.3/32 | @@ -301,7 +301,7 @@ interface Ethernet3 | Interface | Description | VRF | IPv6 Address | | --------- | ----------- | --- | ------------ | -| Loopback0 | EVPN_Overlay_Peering | default | - | +| Loopback0 | ROUTER_ID | default | - | | Loopback1 | VTEP_VXLAN_Tunnel_Source | default | - | | Loopback100 | vrf_with_loopbacks_from_overlapping_pool_VTEP_DIAGNOSTICS | vrf_with_loopbacks_from_overlapping_pool | - | | Loopback101 | vrf_with_loopbacks_from_pod_pools_VTEP_DIAGNOSTICS | vrf_with_loopbacks_from_pod_pools | - | @@ -311,7 +311,7 @@ interface Ethernet3 ```eos ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 172.16.120.3/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD2-SPINE1.md b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD2-SPINE1.md index 78cb735b18c..a6123135b7d 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD2-SPINE1.md +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD2-SPINE1.md @@ -232,20 +232,20 @@ interface Ethernet5 | Interface | Description | VRF | IP Address | | --------- | ----------- | --- | ---------- | -| Loopback0 | EVPN_Overlay_Peering | default | 172.16.120.1/32 | +| Loopback0 | ROUTER_ID | default | 172.16.120.1/32 | ##### IPv6 | Interface | Description | VRF | IPv6 Address | | --------- | ----------- | --- | ------------ | -| Loopback0 | EVPN_Overlay_Peering | default | - | +| Loopback0 | ROUTER_ID | default | - | #### Loopback Interfaces Device Configuration ```eos ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 172.16.120.1/32 ``` diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD2-SPINE2.md b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD2-SPINE2.md index cccb4a872fc..e2efddfd272 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD2-SPINE2.md +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-POD2-SPINE2.md @@ -225,20 +225,20 @@ interface Ethernet4 | Interface | Description | VRF | IP Address | | --------- | ----------- | --- | ---------- | -| Loopback0 | EVPN_Overlay_Peering | default | 172.16.120.2/32 | +| Loopback0 | ROUTER_ID | default | 172.16.120.2/32 | ##### IPv6 | Interface | Description | VRF | IPv6 Address | | --------- | ----------- | --- | ------------ | -| Loopback0 | EVPN_Overlay_Peering | default | - | +| Loopback0 | ROUTER_ID | default | - | #### Loopback Interfaces Device Configuration ```eos ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 172.16.120.2/32 ``` diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-RS1.md b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-RS1.md index c408eb94464..cd895f30593 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-RS1.md +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-RS1.md @@ -183,20 +183,20 @@ interface Ethernet3 | Interface | Description | VRF | IP Address | | --------- | ----------- | --- | ---------- | -| Loopback0 | EVPN_Overlay_Peering | default | 172.16.10.1/32 | +| Loopback0 | ROUTER_ID | default | 172.16.10.1/32 | ##### IPv6 | Interface | Description | VRF | IPv6 Address | | --------- | ----------- | --- | ------------ | -| Loopback0 | EVPN_Overlay_Peering | default | - | +| Loopback0 | ROUTER_ID | default | - | #### Loopback Interfaces Device Configuration ```eos ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 172.16.10.1/32 ``` diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-RS2.md b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-RS2.md index 28ce061577e..97f3f18053d 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-RS2.md +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-RS2.md @@ -211,20 +211,20 @@ interface Ethernet3 | Interface | Description | VRF | IP Address | | --------- | ----------- | --- | ---------- | -| Loopback0 | EVPN_Overlay_Peering | default | 172.16.10.2/32 | +| Loopback0 | ROUTER_ID | default | 172.16.10.2/32 | ##### IPv6 | Interface | Description | VRF | IPv6 Address | | --------- | ----------- | --- | ------------ | -| Loopback0 | EVPN_Overlay_Peering | default | - | +| Loopback0 | ROUTER_ID | default | - | #### Loopback Interfaces Device Configuration ```eos ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 172.16.10.2/32 ``` diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-SUPER-SPINE1.md b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-SUPER-SPINE1.md index e3e7ca3e4b8..7762eb2879f 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-SUPER-SPINE1.md +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-SUPER-SPINE1.md @@ -214,20 +214,20 @@ interface Ethernet6 | Interface | Description | VRF | IP Address | | --------- | ----------- | --- | ---------- | -| Loopback0 | EVPN_Overlay_Peering | default | 172.16.100.1/32 | +| Loopback0 | ROUTER_ID | default | 172.16.100.1/32 | ##### IPv6 | Interface | Description | VRF | IPv6 Address | | --------- | ----------- | --- | ------------ | -| Loopback0 | EVPN_Overlay_Peering | default | - | +| Loopback0 | ROUTER_ID | default | - | #### Loopback Interfaces Device Configuration ```eos ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 172.16.100.1/32 ``` diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-SUPER-SPINE2.md b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-SUPER-SPINE2.md index c417f9e140f..64f14ddcbd4 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-SUPER-SPINE2.md +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1-SUPER-SPINE2.md @@ -240,20 +240,20 @@ interface Ethernet6 | Interface | Description | VRF | IP Address | | --------- | ----------- | --- | ---------- | -| Loopback0 | EVPN_Overlay_Peering | default | 172.16.100.2/32 | +| Loopback0 | ROUTER_ID | default | 172.16.100.2/32 | ##### IPv6 | Interface | Description | VRF | IPv6 Address | | --------- | ----------- | --- | ------------ | -| Loopback0 | EVPN_Overlay_Peering | default | - | +| Loopback0 | ROUTER_ID | default | - | #### Loopback Interfaces Device Configuration ```eos ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 172.16.100.2/32 ``` diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1.POD1.LEAF2A.md b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1.POD1.LEAF2A.md index b791f6cab75..a5cb7143914 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1.POD1.LEAF2A.md +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC1.POD1.LEAF2A.md @@ -476,7 +476,7 @@ interface Port-Channel19 | Interface | Description | VRF | IP Address | | --------- | ----------- | --- | ---------- | -| Loopback0 | EVPN_Overlay_Peering | default | 172.16.110.4/32 | +| Loopback0 | ROUTER_ID | default | 172.16.110.4/32 | | Loopback1 | VTEP_VXLAN_Tunnel_Source | default | 172.18.110.4/32 | | Loopback100 | vrf_with_loopbacks_from_overlapping_pool_VTEP_DIAGNOSTICS | vrf_with_loopbacks_from_overlapping_pool | 10.100.0.4/32 | | Loopback101 | vrf_with_loopbacks_from_pod_pools_VTEP_DIAGNOSTICS | vrf_with_loopbacks_from_pod_pools | 10.101.101.4/32 | @@ -486,7 +486,7 @@ interface Port-Channel19 | Interface | Description | VRF | IPv6 Address | | --------- | ----------- | --- | ------------ | -| Loopback0 | EVPN_Overlay_Peering | default | - | +| Loopback0 | ROUTER_ID | default | - | | Loopback1 | VTEP_VXLAN_Tunnel_Source | default | - | | Loopback100 | vrf_with_loopbacks_from_overlapping_pool_VTEP_DIAGNOSTICS | vrf_with_loopbacks_from_overlapping_pool | - | | Loopback101 | vrf_with_loopbacks_from_pod_pools_VTEP_DIAGNOSTICS | vrf_with_loopbacks_from_pod_pools | - | @@ -497,7 +497,7 @@ interface Port-Channel19 ```eos ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 172.16.110.4/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-LEAF1A.md b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-LEAF1A.md index 19df25452af..912ab7a2cb0 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-LEAF1A.md +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-LEAF1A.md @@ -296,7 +296,7 @@ interface Port-Channel3 | Interface | Description | VRF | IP Address | | --------- | ----------- | --- | ---------- | -| Loopback0 | EVPN_Overlay_Peering | default | 172.16.210.3/32 | +| Loopback0 | ROUTER_ID | default | 172.16.210.3/32 | | Loopback1 | VTEP_VXLAN_Tunnel_Source | default | 172.18.210.3/32 | | Loopback100 | vrf_with_loopbacks_from_overlapping_pool_VTEP_DIAGNOSTICS | vrf_with_loopbacks_from_overlapping_pool | 10.100.0.3/32 | | Loopback101 | vrf_with_loopbacks_from_pod_pools_VTEP_DIAGNOSTICS | vrf_with_loopbacks_from_pod_pools | 10.101.201.3/32 | @@ -305,7 +305,7 @@ interface Port-Channel3 | Interface | Description | VRF | IPv6 Address | | --------- | ----------- | --- | ------------ | -| Loopback0 | EVPN_Overlay_Peering | default | - | +| Loopback0 | ROUTER_ID | default | - | | Loopback1 | VTEP_VXLAN_Tunnel_Source | default | - | | Loopback100 | vrf_with_loopbacks_from_overlapping_pool_VTEP_DIAGNOSTICS | vrf_with_loopbacks_from_overlapping_pool | - | | Loopback101 | vrf_with_loopbacks_from_pod_pools_VTEP_DIAGNOSTICS | vrf_with_loopbacks_from_pod_pools | - | @@ -315,7 +315,7 @@ interface Port-Channel3 ```eos ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 172.16.210.3/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-LEAF2A.md b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-LEAF2A.md index 806a1627e88..f7273c4d1d2 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-LEAF2A.md +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-LEAF2A.md @@ -264,14 +264,14 @@ interface Port-Channel3 | Interface | Description | VRF | IP Address | | --------- | ----------- | --- | ---------- | -| Loopback0 | EVPN_Overlay_Peering | default | 172.16.210.4/32 | +| Loopback0 | ROUTER_ID | default | 172.16.210.4/32 | | Loopback1 | VTEP_VXLAN_Tunnel_Source | default | 172.18.210.4/32 | ##### IPv6 | Interface | Description | VRF | IPv6 Address | | --------- | ----------- | --- | ------------ | -| Loopback0 | EVPN_Overlay_Peering | default | - | +| Loopback0 | ROUTER_ID | default | - | | Loopback1 | VTEP_VXLAN_Tunnel_Source | default | - | #### Loopback Interfaces Device Configuration @@ -279,7 +279,7 @@ interface Port-Channel3 ```eos ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 172.16.210.4/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-SPINE1.md b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-SPINE1.md index e59588c925e..0d66aa02cc6 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-SPINE1.md +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-SPINE1.md @@ -230,20 +230,20 @@ interface Ethernet5 | Interface | Description | VRF | IP Address | | --------- | ----------- | --- | ---------- | -| Loopback0 | EVPN_Overlay_Peering | default | 172.16.210.1/32 | +| Loopback0 | ROUTER_ID | default | 172.16.210.1/32 | ##### IPv6 | Interface | Description | VRF | IPv6 Address | | --------- | ----------- | --- | ------------ | -| Loopback0 | EVPN_Overlay_Peering | default | - | +| Loopback0 | ROUTER_ID | default | - | #### Loopback Interfaces Device Configuration ```eos ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 172.16.210.1/32 ``` diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-SPINE2.md b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-SPINE2.md index fd94ea57563..611a8fc8590 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-SPINE2.md +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-POD1-SPINE2.md @@ -229,20 +229,20 @@ interface Ethernet5 | Interface | Description | VRF | IP Address | | --------- | ----------- | --- | ---------- | -| Loopback0 | EVPN_Overlay_Peering | default | 172.16.210.2/32 | +| Loopback0 | ROUTER_ID | default | 172.16.210.2/32 | ##### IPv6 | Interface | Description | VRF | IPv6 Address | | --------- | ----------- | --- | ------------ | -| Loopback0 | EVPN_Overlay_Peering | default | - | +| Loopback0 | ROUTER_ID | default | - | #### Loopback Interfaces Device Configuration ```eos ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 172.16.210.2/32 ``` diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-RS1.md b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-RS1.md index 7bdcab0fe9f..076af5ada96 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-RS1.md +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-RS1.md @@ -203,20 +203,20 @@ interface Ethernet2 | Interface | Description | VRF | IP Address | | --------- | ----------- | --- | ---------- | -| Loopback0 | EVPN_Overlay_Peering | default | 172.16.20.1/32 | +| Loopback0 | ROUTER_ID | default | 172.16.20.1/32 | ##### IPv6 | Interface | Description | VRF | IPv6 Address | | --------- | ----------- | --- | ------------ | -| Loopback0 | EVPN_Overlay_Peering | default | - | +| Loopback0 | ROUTER_ID | default | - | #### Loopback Interfaces Device Configuration ```eos ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 172.16.20.1/32 ``` diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-RS2.md b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-RS2.md index 6b4c096f1bb..843e3ccd581 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-RS2.md +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-RS2.md @@ -201,20 +201,20 @@ interface Ethernet2 | Interface | Description | VRF | IP Address | | --------- | ----------- | --- | ---------- | -| Loopback0 | EVPN_Overlay_Peering | default | 172.16.20.2/32 | +| Loopback0 | ROUTER_ID | default | 172.16.20.2/32 | ##### IPv6 | Interface | Description | VRF | IPv6 Address | | --------- | ----------- | --- | ------------ | -| Loopback0 | EVPN_Overlay_Peering | default | - | +| Loopback0 | ROUTER_ID | default | - | #### Loopback Interfaces Device Configuration ```eos ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 172.16.20.2/32 ``` diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-SUPER-SPINE1.md b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-SUPER-SPINE1.md index fa6b9cdcec6..a66709b3f78 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-SUPER-SPINE1.md +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-SUPER-SPINE1.md @@ -246,20 +246,20 @@ interface Ethernet7 | Interface | Description | VRF | IP Address | | --------- | ----------- | --- | ---------- | -| Loopback0 | EVPN_Overlay_Peering | default | 172.16.200.1/32 | +| Loopback0 | ROUTER_ID | default | 172.16.200.1/32 | ##### IPv6 | Interface | Description | VRF | IPv6 Address | | --------- | ----------- | --- | ------------ | -| Loopback0 | EVPN_Overlay_Peering | default | - | +| Loopback0 | ROUTER_ID | default | - | #### Loopback Interfaces Device Configuration ```eos ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 172.16.200.1/32 ``` diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-SUPER-SPINE2.md b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-SUPER-SPINE2.md index 7af03ec324b..6a81225ed74 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-SUPER-SPINE2.md +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/documentation/devices/DC2-SUPER-SPINE2.md @@ -210,20 +210,20 @@ interface Ethernet4 | Interface | Description | VRF | IP Address | | --------- | ----------- | --- | ---------- | -| Loopback0 | EVPN_Overlay_Peering | default | 172.16.200.2/32 | +| Loopback0 | ROUTER_ID | default | 172.16.200.2/32 | ##### IPv6 | Interface | Description | VRF | IPv6 Address | | --------- | ----------- | --- | ------------ | -| Loopback0 | EVPN_Overlay_Peering | default | - | +| Loopback0 | ROUTER_ID | default | - | #### Loopback Interfaces Device Configuration ```eos ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 172.16.200.2/32 ``` diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/configs/DC1-POD1-LEAF1A.cfg b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/configs/DC1-POD1-LEAF1A.cfg index 5fcf0f288c7..1eb212f5cf6 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/configs/DC1-POD1-LEAF1A.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/configs/DC1-POD1-LEAF1A.cfg @@ -60,7 +60,7 @@ interface Ethernet4 service-profile QOS-PROFILE ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 172.16.110.3/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/configs/DC1-POD1-LEAF2B.cfg b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/configs/DC1-POD1-LEAF2B.cfg index 2559474d792..21235923252 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/configs/DC1-POD1-LEAF2B.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/configs/DC1-POD1-LEAF2B.cfg @@ -224,7 +224,7 @@ interface Ethernet19 ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 172.16.110.5/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/configs/DC1-POD1-SPINE1.cfg b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/configs/DC1-POD1-SPINE1.cfg index 30d9db72a0c..526504d0df9 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/configs/DC1-POD1-SPINE1.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/configs/DC1-POD1-SPINE1.cfg @@ -89,7 +89,7 @@ interface Ethernet8 service-profile QOS-PROFILE ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 172.16.110.1/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/configs/DC1-POD1-SPINE2.cfg b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/configs/DC1-POD1-SPINE2.cfg index 55afd687666..e91b6d08882 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/configs/DC1-POD1-SPINE2.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/configs/DC1-POD1-SPINE2.cfg @@ -82,7 +82,7 @@ interface Ethernet8 service-profile QOS-PROFILE ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 172.16.110.2/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/configs/DC1-POD2-LEAF1A.cfg b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/configs/DC1-POD2-LEAF1A.cfg index 8ffa0a480dd..23519923dc1 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/configs/DC1-POD2-LEAF1A.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/configs/DC1-POD2-LEAF1A.cfg @@ -83,7 +83,7 @@ interface Ethernet3 service-profile QOS-PROFILE ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 172.16.120.3/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/configs/DC1-POD2-SPINE1.cfg b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/configs/DC1-POD2-SPINE1.cfg index 0a9ffeae8cc..f94a6b4478f 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/configs/DC1-POD2-SPINE1.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/configs/DC1-POD2-SPINE1.cfg @@ -59,7 +59,7 @@ interface Ethernet5 ip address 11.1.1.18/31 ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 172.16.120.1/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/configs/DC1-POD2-SPINE2.cfg b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/configs/DC1-POD2-SPINE2.cfg index b39cdec556f..3189b45078d 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/configs/DC1-POD2-SPINE2.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/configs/DC1-POD2-SPINE2.cfg @@ -53,7 +53,7 @@ interface Ethernet4 ptp enable ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 172.16.120.2/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/configs/DC1-RS1.cfg b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/configs/DC1-RS1.cfg index e26b77d4d2b..3ae3dd3db0f 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/configs/DC1-RS1.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/configs/DC1-RS1.cfg @@ -40,7 +40,7 @@ interface Ethernet3 service-profile QOS-PROFILE ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 172.16.10.1/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/configs/DC1-RS2.cfg b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/configs/DC1-RS2.cfg index b31c07f7b8f..eb27a4cecb0 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/configs/DC1-RS2.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/configs/DC1-RS2.cfg @@ -40,7 +40,7 @@ interface Ethernet3 service-profile QOS-PROFILE ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 172.16.10.2/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/configs/DC1-SUPER-SPINE1.cfg b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/configs/DC1-SUPER-SPINE1.cfg index 8dac12a8764..bf8372d5284 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/configs/DC1-SUPER-SPINE1.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/configs/DC1-SUPER-SPINE1.cfg @@ -70,7 +70,7 @@ interface Ethernet6 ptp enable ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 172.16.100.1/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/configs/DC1-SUPER-SPINE2.cfg b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/configs/DC1-SUPER-SPINE2.cfg index de455df5bf9..c60a326e08e 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/configs/DC1-SUPER-SPINE2.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/configs/DC1-SUPER-SPINE2.cfg @@ -68,7 +68,7 @@ interface Ethernet6 ip address 11.1.2.2/31 ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 172.16.100.2/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/configs/DC1.POD1.LEAF2A.cfg b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/configs/DC1.POD1.LEAF2A.cfg index 4ff147cd548..5a1fcf904ae 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/configs/DC1.POD1.LEAF2A.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/configs/DC1.POD1.LEAF2A.cfg @@ -224,7 +224,7 @@ interface Ethernet19 ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 172.16.110.4/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/configs/DC2-POD1-LEAF1A.cfg b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/configs/DC2-POD1-LEAF1A.cfg index 51133c51d46..928ade29855 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/configs/DC2-POD1-LEAF1A.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/configs/DC2-POD1-LEAF1A.cfg @@ -74,7 +74,7 @@ interface Ethernet7 ptp enable ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 172.16.210.3/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/configs/DC2-POD1-LEAF2A.cfg b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/configs/DC2-POD1-LEAF2A.cfg index 5bfcfafa052..95e228b5a0e 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/configs/DC2-POD1-LEAF2A.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/configs/DC2-POD1-LEAF2A.cfg @@ -52,7 +52,7 @@ interface Ethernet3 channel-group 3 mode active ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 172.16.210.4/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/configs/DC2-POD1-SPINE1.cfg b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/configs/DC2-POD1-SPINE1.cfg index 4132f01a791..e8d92799880 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/configs/DC2-POD1-SPINE1.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/configs/DC2-POD1-SPINE1.cfg @@ -57,7 +57,7 @@ interface Ethernet5 ip address 11.1.1.19/31 ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 172.16.210.1/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/configs/DC2-POD1-SPINE2.cfg b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/configs/DC2-POD1-SPINE2.cfg index 8858b17638d..13e9c7b55ce 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/configs/DC2-POD1-SPINE2.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/configs/DC2-POD1-SPINE2.cfg @@ -58,7 +58,7 @@ interface Ethernet5 ptp enable ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 172.16.210.2/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/configs/DC2-RS1.cfg b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/configs/DC2-RS1.cfg index a52d95e1127..f5e4a0b9e74 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/configs/DC2-RS1.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/configs/DC2-RS1.cfg @@ -33,7 +33,7 @@ interface Ethernet2 service-profile QOS-PROFILE ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 172.16.20.1/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/configs/DC2-RS2.cfg b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/configs/DC2-RS2.cfg index 10f66b1b6bc..463e8095b4b 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/configs/DC2-RS2.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/configs/DC2-RS2.cfg @@ -33,7 +33,7 @@ interface Ethernet2 service-profile QOS-PROFILE ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 172.16.20.2/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/configs/DC2-SUPER-SPINE1.cfg b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/configs/DC2-SUPER-SPINE1.cfg index 92fa388feb4..7fcb5b17b47 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/configs/DC2-SUPER-SPINE1.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/configs/DC2-SUPER-SPINE1.cfg @@ -71,7 +71,7 @@ interface Ethernet7 service-profile QOS-PROFILE ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 172.16.200.1/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/configs/DC2-SUPER-SPINE2.cfg b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/configs/DC2-SUPER-SPINE2.cfg index 5fb1d29003f..3151e777c19 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/configs/DC2-SUPER-SPINE2.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/configs/DC2-SUPER-SPINE2.cfg @@ -41,7 +41,7 @@ interface Ethernet4 ip address 11.1.2.3/31 ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 172.16.200.2/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/structured_configs/DC1-POD1-LEAF1A.yml b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/structured_configs/DC1-POD1-LEAF1A.yml index b22a716405d..e3050643d42 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/structured_configs/DC1-POD1-LEAF1A.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/structured_configs/DC1-POD1-LEAF1A.yml @@ -192,7 +192,7 @@ port_channel_interfaces: vlans: '4085' loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 172.16.110.3/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/structured_configs/DC1-POD1-LEAF2B.yml b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/structured_configs/DC1-POD1-LEAF2B.yml index 5ecaf617b3f..2544df9410c 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/structured_configs/DC1-POD1-LEAF2B.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/structured_configs/DC1-POD1-LEAF2B.yml @@ -758,7 +758,7 @@ route_maps: type: permit loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 172.16.110.5/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/structured_configs/DC1-POD1-SPINE1.yml b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/structured_configs/DC1-POD1-SPINE1.yml index 73eb46a14d4..8070686468b 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/structured_configs/DC1-POD1-SPINE1.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/structured_configs/DC1-POD1-SPINE1.yml @@ -260,7 +260,7 @@ ethernet_interfaces: ip_address: 172.17.110.20/31 loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 172.16.110.1/32 router_bfd: diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/structured_configs/DC1-POD1-SPINE2.yml b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/structured_configs/DC1-POD1-SPINE2.yml index 440d162d4f3..87fece6078e 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/structured_configs/DC1-POD1-SPINE2.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/structured_configs/DC1-POD1-SPINE2.yml @@ -199,7 +199,7 @@ ethernet_interfaces: ip_address: 172.17.110.22/31 loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 172.16.110.2/32 metadata: diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/structured_configs/DC1-POD2-LEAF1A.yml b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/structured_configs/DC1-POD2-LEAF1A.yml index 845a9779e0d..6f909c7c369 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/structured_configs/DC1-POD2-LEAF1A.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/structured_configs/DC1-POD2-LEAF1A.yml @@ -306,7 +306,7 @@ ethernet_interfaces: ip_address: 172.17.10.12/31 loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 172.16.120.3/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/structured_configs/DC1-POD2-SPINE1.yml b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/structured_configs/DC1-POD2-SPINE1.yml index f08f892e2a1..938cf95e4f5 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/structured_configs/DC1-POD2-SPINE1.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/structured_configs/DC1-POD2-SPINE1.yml @@ -181,7 +181,7 @@ ethernet_interfaces: ip_address: 11.1.1.18/31 loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 172.16.120.1/32 prefix_lists: diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/structured_configs/DC1-POD2-SPINE2.yml b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/structured_configs/DC1-POD2-SPINE2.yml index f95a73f6000..2234990f5e3 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/structured_configs/DC1-POD2-SPINE2.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/structured_configs/DC1-POD2-SPINE2.yml @@ -170,7 +170,7 @@ ethernet_interfaces: enable: true loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 172.16.120.2/32 prefix_lists: diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/structured_configs/DC1-RS1.yml b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/structured_configs/DC1-RS1.yml index 98add6a0ac4..3a5a9a86c22 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/structured_configs/DC1-RS1.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/structured_configs/DC1-RS1.yml @@ -165,7 +165,7 @@ ethernet_interfaces: ip_address: 172.17.10.5/31 loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 172.16.10.1/32 prefix_lists: diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/structured_configs/DC1-RS2.yml b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/structured_configs/DC1-RS2.yml index a9b6de034d4..875dc474244 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/structured_configs/DC1-RS2.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/structured_configs/DC1-RS2.yml @@ -163,7 +163,7 @@ ethernet_interfaces: ip_address: 172.17.10.13/31 loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 172.16.10.2/32 prefix_lists: diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/structured_configs/DC1-SUPER-SPINE1.yml b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/structured_configs/DC1-SUPER-SPINE1.yml index 215a588e923..b9dbba2c359 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/structured_configs/DC1-SUPER-SPINE1.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/structured_configs/DC1-SUPER-SPINE1.yml @@ -170,7 +170,7 @@ ethernet_interfaces: enable: true loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 172.16.100.1/32 prefix_lists: diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/structured_configs/DC1-SUPER-SPINE2.yml b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/structured_configs/DC1-SUPER-SPINE2.yml index 70e2089544e..862d827215a 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/structured_configs/DC1-SUPER-SPINE2.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/structured_configs/DC1-SUPER-SPINE2.yml @@ -173,7 +173,7 @@ ethernet_interfaces: ip_address: 11.1.2.2/31 loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 172.16.100.2/32 prefix_lists: diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/structured_configs/DC1.POD1.LEAF2A.yml b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/structured_configs/DC1.POD1.LEAF2A.yml index 77dc0315c0e..894d4ef46e2 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/structured_configs/DC1.POD1.LEAF2A.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/structured_configs/DC1.POD1.LEAF2A.yml @@ -720,7 +720,7 @@ route_maps: type: permit loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 172.16.110.4/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/structured_configs/DC2-POD1-LEAF1A.yml b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/structured_configs/DC2-POD1-LEAF1A.yml index b82a2b27fcd..aafd426ccde 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/structured_configs/DC2-POD1-LEAF1A.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/structured_configs/DC2-POD1-LEAF1A.yml @@ -276,7 +276,7 @@ port_channel_interfaces: vlans: '4092' loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 172.16.210.3/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/structured_configs/DC2-POD1-LEAF2A.yml b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/structured_configs/DC2-POD1-LEAF2A.yml index 0259fe6da4c..4281ef464d8 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/structured_configs/DC2-POD1-LEAF2A.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/structured_configs/DC2-POD1-LEAF2A.yml @@ -147,7 +147,7 @@ port_channel_interfaces: vlans: '4092' loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 172.16.210.4/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/structured_configs/DC2-POD1-SPINE1.yml b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/structured_configs/DC2-POD1-SPINE1.yml index 9a6a91d5e5b..2c733043b0f 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/structured_configs/DC2-POD1-SPINE1.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/structured_configs/DC2-POD1-SPINE1.yml @@ -190,7 +190,7 @@ ethernet_interfaces: ip_address: 11.1.1.19/31 loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 172.16.210.1/32 prefix_lists: diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/structured_configs/DC2-POD1-SPINE2.yml b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/structured_configs/DC2-POD1-SPINE2.yml index c0e346c3364..4b923d44463 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/structured_configs/DC2-POD1-SPINE2.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/structured_configs/DC2-POD1-SPINE2.yml @@ -153,7 +153,7 @@ ethernet_interfaces: enable: true loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 172.16.210.2/32 prefix_lists: diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/structured_configs/DC2-RS1.yml b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/structured_configs/DC2-RS1.yml index a4402dd9dbf..ad8c6a73da1 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/structured_configs/DC2-RS1.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/structured_configs/DC2-RS1.yml @@ -140,7 +140,7 @@ ethernet_interfaces: ip_address: 172.17.20.3/31 loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 172.16.20.1/32 prefix_lists: diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/structured_configs/DC2-RS2.yml b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/structured_configs/DC2-RS2.yml index e5e087460de..0f6d60808d6 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/structured_configs/DC2-RS2.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/structured_configs/DC2-RS2.yml @@ -100,7 +100,7 @@ ethernet_interfaces: ip_address: 172.17.20.11/31 loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 172.16.20.2/32 prefix_lists: diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/structured_configs/DC2-SUPER-SPINE1.yml b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/structured_configs/DC2-SUPER-SPINE1.yml index 56ae76a75a9..bf1cf0ec64e 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/structured_configs/DC2-SUPER-SPINE1.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/structured_configs/DC2-SUPER-SPINE1.yml @@ -218,7 +218,7 @@ ethernet_interfaces: enable: true loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 172.16.200.1/32 prefix_lists: diff --git a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/structured_configs/DC2-SUPER-SPINE2.yml b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/structured_configs/DC2-SUPER-SPINE2.yml index f343da42cd4..01b6841d387 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/structured_configs/DC2-SUPER-SPINE2.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs-twodc-5stage-clos/intended/structured_configs/DC2-SUPER-SPINE2.yml @@ -117,7 +117,7 @@ ethernet_interfaces: ip_address: 11.1.2.3/31 loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 172.16.200.2/32 prefix_lists: diff --git a/ansible_collections/arista/avd/molecule/eos_designs_deprecated_vars/custom_templates/overlay-loopback.j2 b/ansible_collections/arista/avd/molecule/eos_designs_deprecated_vars/custom_templates/overlay-loopback.j2 new file mode 100644 index 00000000000..cdc6c86282e --- /dev/null +++ b/ansible_collections/arista/avd/molecule/eos_designs_deprecated_vars/custom_templates/overlay-loopback.j2 @@ -0,0 +1 @@ +CUSTOM_ROUTER_ID diff --git a/ansible_collections/arista/avd/molecule/eos_designs_deprecated_vars/intended/configs/host1.cfg b/ansible_collections/arista/avd/molecule/eos_designs_deprecated_vars/intended/configs/host1.cfg index d8d717dca20..321e1db30de 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_deprecated_vars/intended/configs/host1.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_deprecated_vars/intended/configs/host1.cfg @@ -13,7 +13,7 @@ no aaa root vrf instance MGMT ! interface Loopback0 - description EVPN_Overlay_Peering + description CUSTOM_ROUTER_ID no shutdown ip address 192.168.255.101/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_deprecated_vars/intended/configs/host2.cfg b/ansible_collections/arista/avd/molecule/eos_designs_deprecated_vars/intended/configs/host2.cfg index 428157010c8..0a51832b9f5 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_deprecated_vars/intended/configs/host2.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_deprecated_vars/intended/configs/host2.cfg @@ -13,7 +13,7 @@ no aaa root vrf instance MGMT ! interface Loopback0 - description MPLS_Overlay_peering + description MY_OVERLAY_LOOPBACK no shutdown ip address 10.42.0.102/32 isis enable CORE diff --git a/ansible_collections/arista/avd/molecule/eos_designs_deprecated_vars/intended/structured_configs/host1.yml b/ansible_collections/arista/avd/molecule/eos_designs_deprecated_vars/intended/structured_configs/host1.yml index 3cee740c354..1d5488beeed 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_deprecated_vars/intended/structured_configs/host1.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_deprecated_vars/intended/structured_configs/host1.yml @@ -58,7 +58,7 @@ management_api_http: enable_https: true loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: CUSTOM_ROUTER_ID shutdown: false ip_address: 192.168.255.101/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_deprecated_vars/intended/structured_configs/host2.yml b/ansible_collections/arista/avd/molecule/eos_designs_deprecated_vars/intended/structured_configs/host2.yml index e0f622a7ed1..031cde096d5 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_deprecated_vars/intended/structured_configs/host2.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_deprecated_vars/intended/structured_configs/host2.yml @@ -51,7 +51,7 @@ management_api_http: enable_https: true loopback_interfaces: - name: Loopback0 - description: MPLS_Overlay_peering + description: MY_OVERLAY_LOOPBACK shutdown: false ip_address: 10.42.0.102/32 isis_enable: CORE diff --git a/ansible_collections/arista/avd/molecule/eos_designs_deprecated_vars/inventory/host_vars/host1/custom_node_type_keys.yml b/ansible_collections/arista/avd/molecule/eos_designs_deprecated_vars/inventory/host_vars/host1/custom_node_type_keys.yml new file mode 100644 index 00000000000..09a3e49a0c2 --- /dev/null +++ b/ansible_collections/arista/avd/molecule/eos_designs_deprecated_vars/inventory/host_vars/host1/custom_node_type_keys.yml @@ -0,0 +1,14 @@ +--- +custom_node_type_keys: + - key: l3leaf + type: l3leaf + connected_endpoints: true + default_evpn_role: client + mlag_support: true + network_services: + l2: true + l3: true + vtep: true + interface_descriptions: + # Testing custom template using the deprecated overlay_loopback_interface + overlay_loopback_interface: 'custom_templates/overlay-loopback.j2' diff --git a/ansible_collections/arista/avd/molecule/eos_designs_deprecated_vars/inventory/host_vars/host1/node_type.yml b/ansible_collections/arista/avd/molecule/eos_designs_deprecated_vars/inventory/host_vars/host1/node_type.yml index f0ee118c042..17572cae5f9 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_deprecated_vars/inventory/host_vars/host1/node_type.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_deprecated_vars/inventory/host_vars/host1/node_type.yml @@ -1,3 +1,5 @@ +--- +# Not testing anything, but just a placeholder for future tests. type: l3leaf l3leaf: defaults: diff --git a/ansible_collections/arista/avd/molecule/eos_designs_deprecated_vars/inventory/host_vars/host2/overlay_loopback_description.yml b/ansible_collections/arista/avd/molecule/eos_designs_deprecated_vars/inventory/host_vars/host2/overlay_loopback_description.yml new file mode 100644 index 00000000000..6ab84b1cb68 --- /dev/null +++ b/ansible_collections/arista/avd/molecule/eos_designs_deprecated_vars/inventory/host_vars/host2/overlay_loopback_description.yml @@ -0,0 +1,3 @@ +--- +# Testing the deprecated overlay loopback description override +overlay_loopback_description: "MY_OVERLAY_LOOPBACK" diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/custom_templates/interface_descriptions/loopbacks/overlay-loopback.j2 b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/custom_templates/interface_descriptions/loopbacks/router-id-loopback.j2 similarity index 100% rename from ansible_collections/arista/avd/molecule/eos_designs_unit_tests/custom_templates/interface_descriptions/loopbacks/overlay-loopback.j2 rename to ansible_collections/arista/avd/molecule/eos_designs_unit_tests/custom_templates/interface_descriptions/loopbacks/router-id-loopback.j2 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/7010TX-LEAF1.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/7010TX-LEAF1.cfg index 47ca2016d16..5252f270ada 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/7010TX-LEAF1.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/7010TX-LEAF1.cfg @@ -41,7 +41,7 @@ interface Ethernet6 channel-group 5 mode active ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.35/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/7010TX-LEAF2.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/7010TX-LEAF2.cfg index 0a66055d014..7392a0fc89d 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/7010TX-LEAF2.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/7010TX-LEAF2.cfg @@ -41,7 +41,7 @@ interface Ethernet6 channel-group 5 mode active ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.36/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/AUTO_BGP_ASN_LEAF1A.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/AUTO_BGP_ASN_LEAF1A.cfg index bf0c1da92b7..c132555079b 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/AUTO_BGP_ASN_LEAF1A.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/AUTO_BGP_ASN_LEAF1A.cfg @@ -16,7 +16,7 @@ no aaa root vrf instance MGMT ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.3/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/AUTO_BGP_ASN_LEAF1B.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/AUTO_BGP_ASN_LEAF1B.cfg index 66a2baf2777..ea49d39714e 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/AUTO_BGP_ASN_LEAF1B.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/AUTO_BGP_ASN_LEAF1B.cfg @@ -16,7 +16,7 @@ no aaa root vrf instance MGMT ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.4/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/AUTO_BGP_ASN_LEAF2.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/AUTO_BGP_ASN_LEAF2.cfg index eb28b615c63..7bac9f31a8a 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/AUTO_BGP_ASN_LEAF2.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/AUTO_BGP_ASN_LEAF2.cfg @@ -16,7 +16,7 @@ no aaa root vrf instance MGMT ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.5/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/AUTO_BGP_ASN_LEAF3A.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/AUTO_BGP_ASN_LEAF3A.cfg index b453969c986..cbe8fce4384 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/AUTO_BGP_ASN_LEAF3A.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/AUTO_BGP_ASN_LEAF3A.cfg @@ -43,7 +43,7 @@ interface Ethernet4 channel-group 3 mode active ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.7/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/AUTO_BGP_ASN_LEAF3B.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/AUTO_BGP_ASN_LEAF3B.cfg index 88e9c483d2b..26ae6151cc1 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/AUTO_BGP_ASN_LEAF3B.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/AUTO_BGP_ASN_LEAF3B.cfg @@ -43,7 +43,7 @@ interface Ethernet4 channel-group 3 mode active ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.8/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/AUTO_BGP_ASN_LEAF4A.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/AUTO_BGP_ASN_LEAF4A.cfg index 1a3ddddfa35..aa7ae571777 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/AUTO_BGP_ASN_LEAF4A.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/AUTO_BGP_ASN_LEAF4A.cfg @@ -43,7 +43,7 @@ interface Ethernet4 channel-group 3 mode active ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.9/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/AUTO_BGP_ASN_LEAF4B.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/AUTO_BGP_ASN_LEAF4B.cfg index 4ed3aafdb82..c786dff083b 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/AUTO_BGP_ASN_LEAF4B.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/AUTO_BGP_ASN_LEAF4B.cfg @@ -43,7 +43,7 @@ interface Ethernet4 channel-group 3 mode active ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.10/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/AUTO_BGP_ASN_LEAF5A.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/AUTO_BGP_ASN_LEAF5A.cfg index 9f19af75f64..9d2acb0ab77 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/AUTO_BGP_ASN_LEAF5A.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/AUTO_BGP_ASN_LEAF5A.cfg @@ -16,7 +16,7 @@ no aaa root vrf instance MGMT ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.11/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/AUTO_BGP_ASN_LEAF7A.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/AUTO_BGP_ASN_LEAF7A.cfg index fea371fba73..bb34ea21979 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/AUTO_BGP_ASN_LEAF7A.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/AUTO_BGP_ASN_LEAF7A.cfg @@ -43,7 +43,7 @@ interface Ethernet4 channel-group 3 mode active ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.13/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/AUTO_BGP_ASN_LEAF7B.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/AUTO_BGP_ASN_LEAF7B.cfg index 04b0eed9ff4..90fe07ff9ae 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/AUTO_BGP_ASN_LEAF7B.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/AUTO_BGP_ASN_LEAF7B.cfg @@ -43,7 +43,7 @@ interface Ethernet4 channel-group 3 mode active ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.14/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/AUTO_BGP_ASN_LEAF8A.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/AUTO_BGP_ASN_LEAF8A.cfg index c7c72689eb1..8df1dfadf13 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/AUTO_BGP_ASN_LEAF8A.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/AUTO_BGP_ASN_LEAF8A.cfg @@ -16,7 +16,7 @@ no aaa root vrf instance MGMT ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.15/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/AUTO_BGP_ASN_LEAF8B.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/AUTO_BGP_ASN_LEAF8B.cfg index 0a64a3a2231..93b14e5751a 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/AUTO_BGP_ASN_LEAF8B.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/AUTO_BGP_ASN_LEAF8B.cfg @@ -16,7 +16,7 @@ no aaa root vrf instance MGMT ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.16/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/AUTO_BGP_UNGROUPED_LEAF6.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/AUTO_BGP_UNGROUPED_LEAF6.cfg index 4df46131898..0153bf359c8 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/AUTO_BGP_UNGROUPED_LEAF6.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/AUTO_BGP_UNGROUPED_LEAF6.cfg @@ -16,7 +16,7 @@ no aaa root vrf instance MGMT ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.12/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/AUTO_NODE_TYPE_LEAF01.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/AUTO_NODE_TYPE_LEAF01.cfg index 403cad98d00..f6dae2bac13 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/AUTO_NODE_TYPE_LEAF01.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/AUTO_NODE_TYPE_LEAF01.cfg @@ -30,7 +30,7 @@ interface Ethernet2 ip address 172.31.255.3/31 ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.3/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/AUTO_NODE_TYPE_SPINE01.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/AUTO_NODE_TYPE_SPINE01.cfg index 81923f407b1..0a5d1e06a3e 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/AUTO_NODE_TYPE_SPINE01.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/AUTO_NODE_TYPE_SPINE01.cfg @@ -29,7 +29,7 @@ interface Ethernet2 ip address 172.31.255.4/31 ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.1/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/AUTO_NODE_TYPE_SPINE02.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/AUTO_NODE_TYPE_SPINE02.cfg index 58573564d2f..c3aed6e2f92 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/AUTO_NODE_TYPE_SPINE02.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/AUTO_NODE_TYPE_SPINE02.cfg @@ -29,7 +29,7 @@ interface Ethernet2 ip address 172.31.255.6/31 ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.2/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/AUTO_NODE_TYPE_UNGROUPED_LEAF02.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/AUTO_NODE_TYPE_UNGROUPED_LEAF02.cfg index ef7e43c3ac3..41f017fe8f8 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/AUTO_NODE_TYPE_UNGROUPED_LEAF02.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/AUTO_NODE_TYPE_UNGROUPED_LEAF02.cfg @@ -30,7 +30,7 @@ interface Ethernet2 ip address 172.31.255.7/31 ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.4/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/DC1-BL1A.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/DC1-BL1A.cfg index 2fb9d05a43e..46d15a3af8e 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/DC1-BL1A.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/DC1-BL1A.cfg @@ -178,7 +178,7 @@ interface Ethernet4000 ip address 10.3.2.1/21 ! interface Loopback0 - description MY_OVERLAY_LOOPBACK + description MY_ROUTER_ID_LOOPBACK no shutdown ip address 192.168.255.14/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/DC1-BL1B.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/DC1-BL1B.cfg index 921ada134de..b9243b0e325 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/DC1-BL1B.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/DC1-BL1B.cfg @@ -169,7 +169,7 @@ interface Ethernet4000 ip address 10.1.2.3/12 ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.15/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/DC1-BL2A.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/DC1-BL2A.cfg index 73e177bc1da..bd2d3196463 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/DC1-BL2A.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/DC1-BL2A.cfg @@ -90,7 +90,7 @@ interface Ethernet4 ip address 172.31.254.231/31 ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.16/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/DC1-BL2B.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/DC1-BL2B.cfg index 2c1a00ef78e..264b8433a15 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/DC1-BL2B.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/DC1-BL2B.cfg @@ -88,7 +88,7 @@ interface Ethernet4 ip address 172.31.255.7/31 ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.17/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/DC1-CL1A.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/DC1-CL1A.cfg index d99407c17b2..e99353bd755 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/DC1-CL1A.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/DC1-CL1A.cfg @@ -157,7 +157,7 @@ interface Ethernet4 ip address 172.31.255.39/31 ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.18/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/DC1-CL1B.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/DC1-CL1B.cfg index 3d7a66357f2..5fb42b2757e 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/DC1-CL1B.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/DC1-CL1B.cfg @@ -157,7 +157,7 @@ interface Ethernet4 ip address 172.31.255.71/31 ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.19/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/DC1-LEAF1A.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/DC1-LEAF1A.cfg index 7bf8818a0d4..bca64bef915 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/DC1-LEAF1A.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/DC1-LEAF1A.cfg @@ -144,7 +144,7 @@ interface Ethernet30 ip address 172.31.254.7/31 ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.42.42/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/DC1-LEAF2A.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/DC1-LEAF2A.cfg index 1f3568e0d91..bd455503597 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/DC1-LEAF2A.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/DC1-LEAF2A.cfg @@ -408,7 +408,7 @@ interface Ethernet56/1 ip address 172.31.254.47/31 ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.10/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/DC1-LEAF2B.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/DC1-LEAF2B.cfg index e80368ca151..b4677e23221 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/DC1-LEAF2B.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/DC1-LEAF2B.cfg @@ -372,7 +372,7 @@ interface Ethernet56/1 ip address 172.31.254.79/31 ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.11/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/DC1-SPINE1.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/DC1-SPINE1.cfg index bac0b1ccdef..101303450db 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/DC1-SPINE1.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/DC1-SPINE1.cfg @@ -192,7 +192,7 @@ interface Ethernet220 ip address 10.10.101.8/31 ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.1/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/DC1-SPINE2.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/DC1-SPINE2.cfg index 4bba1ee962e..1f70d1eded7 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/DC1-SPINE2.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/DC1-SPINE2.cfg @@ -159,7 +159,7 @@ interface Ethernet29 ip address 172.31.255.162/31 ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.2/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/DC1-SPINE3.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/DC1-SPINE3.cfg index 25ed68717e0..5fe9fdc0bb9 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/DC1-SPINE3.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/DC1-SPINE3.cfg @@ -157,7 +157,7 @@ interface Ethernet29 ip address 172.31.255.164/31 ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.3/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/DC1-SPINE4.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/DC1-SPINE4.cfg index c7257344aa8..3dfc1d4d38d 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/DC1-SPINE4.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/DC1-SPINE4.cfg @@ -157,7 +157,7 @@ interface Ethernet29 ip address 172.31.255.166/31 ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.4/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/DC1-SVC3A.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/DC1-SVC3A.cfg index 4ee82f93bf5..e7fcd868259 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/DC1-SVC3A.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/DC1-SVC3A.cfg @@ -595,7 +595,7 @@ interface Ethernet54/1 channel-group 2000 mode active ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.12/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/DC1-SVC3B.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/DC1-SVC3B.cfg index ac3fdeddf33..41e33251bf6 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/DC1-SVC3B.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/DC1-SVC3B.cfg @@ -561,7 +561,7 @@ interface Ethernet54/1 channel-group 2000 mode active ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.13/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/DC1_UNDEPLOYED_LEAF1A.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/DC1_UNDEPLOYED_LEAF1A.cfg index e46085b3c4d..060d7424bc5 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/DC1_UNDEPLOYED_LEAF1A.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/DC1_UNDEPLOYED_LEAF1A.cfg @@ -220,7 +220,7 @@ interface Ethernet58/1 channel-group 571 mode active ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.21/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/DC1_UNDEPLOYED_LEAF1B.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/DC1_UNDEPLOYED_LEAF1B.cfg index 504b2c83a9b..faf6dd8cffa 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/DC1_UNDEPLOYED_LEAF1B.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/DC1_UNDEPLOYED_LEAF1B.cfg @@ -220,7 +220,7 @@ interface Ethernet58/1 channel-group 571 mode active ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.22/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/DUP-LEAF1.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/DUP-LEAF1.cfg index 16a8ba299cc..e71937b9a2b 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/DUP-LEAF1.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/DUP-LEAF1.cfg @@ -22,7 +22,7 @@ vrf instance TEST description TEST ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 10.0.0.1/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/DUP-LEAF2.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/DUP-LEAF2.cfg index e72c481e29e..ea24d3e038b 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/DUP-LEAF2.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/DUP-LEAF2.cfg @@ -22,7 +22,7 @@ vrf instance TEST description TEST ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 10.0.0.2/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/EVPN-MULTICAST-DISABLED.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/EVPN-MULTICAST-DISABLED.cfg index 22e5cefc267..4df150553df 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/EVPN-MULTICAST-DISABLED.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/EVPN-MULTICAST-DISABLED.cfg @@ -177,7 +177,7 @@ interface Ethernet1 pim ipv4 sparse-mode ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.8/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/EVPN-MULTICAST-L3LEAF1A.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/EVPN-MULTICAST-L3LEAF1A.cfg index 306a0bd8c5c..7b8e455e0f7 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/EVPN-MULTICAST-L3LEAF1A.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/EVPN-MULTICAST-L3LEAF1A.cfg @@ -344,7 +344,7 @@ interface Ethernet10 pim ipv4 sparse-mode ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.3/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/EVPN-MULTICAST-L3LEAF1B.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/EVPN-MULTICAST-L3LEAF1B.cfg index 69b16ed07ea..14224c2a54f 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/EVPN-MULTICAST-L3LEAF1B.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/EVPN-MULTICAST-L3LEAF1B.cfg @@ -344,7 +344,7 @@ interface Ethernet10 pim ipv4 sparse-mode ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.4/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/EVPN-MULTICAST-L3LEAF2A.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/EVPN-MULTICAST-L3LEAF2A.cfg index 394593ffd8e..62a21231dee 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/EVPN-MULTICAST-L3LEAF2A.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/EVPN-MULTICAST-L3LEAF2A.cfg @@ -217,7 +217,7 @@ interface Ethernet1 pim ipv4 sparse-mode ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.5/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/EVPN-MULTICAST-L3LEAF3A.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/EVPN-MULTICAST-L3LEAF3A.cfg index 9830fe6d34a..4a9ea18a123 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/EVPN-MULTICAST-L3LEAF3A.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/EVPN-MULTICAST-L3LEAF3A.cfg @@ -239,7 +239,7 @@ interface Ethernet9 pim ipv4 sparse-mode ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.6/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/EVPN-MULTICAST-L3LEAF3B.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/EVPN-MULTICAST-L3LEAF3B.cfg index 6a07c68345e..053132085b2 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/EVPN-MULTICAST-L3LEAF3B.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/EVPN-MULTICAST-L3LEAF3B.cfg @@ -239,7 +239,7 @@ interface Ethernet9 pim ipv4 sparse-mode ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.7/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/EVPN-MULTICAST-SPINE1.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/EVPN-MULTICAST-SPINE1.cfg index ad20f8d144e..5dd3c047bd9 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/EVPN-MULTICAST-SPINE1.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/EVPN-MULTICAST-SPINE1.cfg @@ -63,7 +63,7 @@ interface Ethernet6 pim ipv4 sparse-mode ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.1/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/IGMP-QUERIER-L3LEAF1A.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/IGMP-QUERIER-L3LEAF1A.cfg index 50e1c0c2fab..00f7f5a10a9 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/IGMP-QUERIER-L3LEAF1A.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/IGMP-QUERIER-L3LEAF1A.cfg @@ -130,7 +130,7 @@ interface Ethernet1 channel-group 1 mode active ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.1/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/MH-LEAF1A.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/MH-LEAF1A.cfg index 327849f9682..4286275ae77 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/MH-LEAF1A.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/MH-LEAF1A.cfg @@ -291,7 +291,7 @@ interface Ethernet23 route-target import 26:2b:7d:f9:c9:8b ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.33/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/MH-LEAF1B.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/MH-LEAF1B.cfg index 9a83d99de89..2b5374199f3 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/MH-LEAF1B.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/MH-LEAF1B.cfg @@ -291,7 +291,7 @@ interface Ethernet23 route-target import 26:2b:7d:f9:c9:8b ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.34/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/MH-LEAF2A.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/MH-LEAF2A.cfg index 627177a6605..fae9734a513 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/MH-LEAF2A.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/MH-LEAF2A.cfg @@ -76,7 +76,7 @@ interface Ethernet10 link tracking group Eth-conn-to-router downstream ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.35/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/MLAG-OSPF-L3LEAF1A.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/MLAG-OSPF-L3LEAF1A.cfg index 65013b43e69..edac3312162 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/MLAG-OSPF-L3LEAF1A.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/MLAG-OSPF-L3LEAF1A.cfg @@ -71,7 +71,7 @@ interface Ethernet6 channel-group 5 mode active ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.36/32 ip ospf area 0.0.0.0 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/MLAG-OSPF-L3LEAF1B.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/MLAG-OSPF-L3LEAF1B.cfg index 672449418a4..a0fce353905 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/MLAG-OSPF-L3LEAF1B.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/MLAG-OSPF-L3LEAF1B.cfg @@ -71,7 +71,7 @@ interface Ethernet6 channel-group 5 mode active ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.37/32 ip ospf area 0.0.0.0 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/MLAG_IPV6_L3LEAF1A.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/MLAG_IPV6_L3LEAF1A.cfg index 3c9cde9ca2b..6cce8951b14 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/MLAG_IPV6_L3LEAF1A.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/MLAG_IPV6_L3LEAF1A.cfg @@ -41,7 +41,7 @@ interface Ethernet6 channel-group 5 mode active ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.35/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/MLAG_IPV6_L3LEAF1B.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/MLAG_IPV6_L3LEAF1B.cfg index efca48a6769..997cac24673 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/MLAG_IPV6_L3LEAF1B.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/MLAG_IPV6_L3LEAF1B.cfg @@ -41,7 +41,7 @@ interface Ethernet6 channel-group 5 mode active ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.36/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/MLAG_ODD_ID_L3LEAF1A.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/MLAG_ODD_ID_L3LEAF1A.cfg index e0315e028bd..2313b8b3a5e 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/MLAG_ODD_ID_L3LEAF1A.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/MLAG_ODD_ID_L3LEAF1A.cfg @@ -48,7 +48,7 @@ interface Ethernet10 ip address 10.254.255.249/30 ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.35/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/MLAG_ODD_ID_L3LEAF1B.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/MLAG_ODD_ID_L3LEAF1B.cfg index 93944d465b0..fc5fe4ef0cf 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/MLAG_ODD_ID_L3LEAF1B.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/MLAG_ODD_ID_L3LEAF1B.cfg @@ -48,7 +48,7 @@ interface Ethernet10 ip address 10.254.255.253/30 ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.36/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/MLAG_SAME_SUBNET_L3LEAF1A.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/MLAG_SAME_SUBNET_L3LEAF1A.cfg index 9075a426e0e..71aa1c4bd9e 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/MLAG_SAME_SUBNET_L3LEAF1A.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/MLAG_SAME_SUBNET_L3LEAF1A.cfg @@ -50,7 +50,7 @@ interface Ethernet6 channel-group 5 mode active ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.32/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/MLAG_SAME_SUBNET_L3LEAF1B.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/MLAG_SAME_SUBNET_L3LEAF1B.cfg index 68d777eabbc..26e59bfbbd1 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/MLAG_SAME_SUBNET_L3LEAF1B.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/MLAG_SAME_SUBNET_L3LEAF1B.cfg @@ -50,7 +50,7 @@ interface Ethernet6 channel-group 5 mode active ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.33/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/MLAG_SAME_SUBNET_L3LEAF2A.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/MLAG_SAME_SUBNET_L3LEAF2A.cfg index 2cfa88e63a1..8b1ac070689 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/MLAG_SAME_SUBNET_L3LEAF2A.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/MLAG_SAME_SUBNET_L3LEAF2A.cfg @@ -50,7 +50,7 @@ interface Ethernet6 channel-group 5 mode active ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.34/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/MLAG_SAME_SUBNET_L3LEAF2B.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/MLAG_SAME_SUBNET_L3LEAF2B.cfg index ffe2d7c7556..eaa06f4ce57 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/MLAG_SAME_SUBNET_L3LEAF2B.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/MLAG_SAME_SUBNET_L3LEAF2B.cfg @@ -50,7 +50,7 @@ interface Ethernet6 channel-group 5 mode active ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.35/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/OVERLAY_ROUTING_PROTOCOL_CVX_L3LEAF1.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/OVERLAY_ROUTING_PROTOCOL_CVX_L3LEAF1.cfg index 38c7b0a587b..28015b114e3 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/OVERLAY_ROUTING_PROTOCOL_CVX_L3LEAF1.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/OVERLAY_ROUTING_PROTOCOL_CVX_L3LEAF1.cfg @@ -24,7 +24,7 @@ vrf instance MGMT vrf instance TEST ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.254.1/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/OVERLAY_ROUTING_PROTOCOL_CVX_L3LEAF2.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/OVERLAY_ROUTING_PROTOCOL_CVX_L3LEAF2.cfg index 9e4b9767a03..214dce1b6ef 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/OVERLAY_ROUTING_PROTOCOL_CVX_L3LEAF2.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/OVERLAY_ROUTING_PROTOCOL_CVX_L3LEAF2.cfg @@ -24,7 +24,7 @@ vrf instance MGMT vrf instance TEST ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.254.2/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/OVERLAY_ROUTING_PROTOCOL_HER_L3LEAF1.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/OVERLAY_ROUTING_PROTOCOL_HER_L3LEAF1.cfg index 72d1ef05159..cf438f6f2b9 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/OVERLAY_ROUTING_PROTOCOL_HER_L3LEAF1.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/OVERLAY_ROUTING_PROTOCOL_HER_L3LEAF1.cfg @@ -33,7 +33,7 @@ vrf instance MGMT vrf instance TEST ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.254.1/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/OVERLAY_ROUTING_PROTOCOL_HER_L3LEAF2.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/OVERLAY_ROUTING_PROTOCOL_HER_L3LEAF2.cfg index 966a797a24b..89a4abae4b1 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/OVERLAY_ROUTING_PROTOCOL_HER_L3LEAF2.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/OVERLAY_ROUTING_PROTOCOL_HER_L3LEAF2.cfg @@ -33,7 +33,7 @@ vrf instance MGMT vrf instance TEST ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.254.2/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/OVERLAY_ROUTING_PROTOCOL_HER_L3LEAF3A.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/OVERLAY_ROUTING_PROTOCOL_HER_L3LEAF3A.cfg index 9b9c1db4369..f38c9ef4008 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/OVERLAY_ROUTING_PROTOCOL_HER_L3LEAF3A.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/OVERLAY_ROUTING_PROTOCOL_HER_L3LEAF3A.cfg @@ -59,7 +59,7 @@ interface Eth2 channel-group 1 mode active ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.254.3/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/OVERLAY_ROUTING_PROTOCOL_HER_L3LEAF3B.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/OVERLAY_ROUTING_PROTOCOL_HER_L3LEAF3B.cfg index 0a09adee9f9..bac64390137 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/OVERLAY_ROUTING_PROTOCOL_HER_L3LEAF3B.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/OVERLAY_ROUTING_PROTOCOL_HER_L3LEAF3B.cfg @@ -59,7 +59,7 @@ interface Eth2 channel-group 1 mode active ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.254.4/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/OVERRIDE_VTEP_L3LEAF1A.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/OVERRIDE_VTEP_L3LEAF1A.cfg index 28378461150..cda1da13900 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/OVERRIDE_VTEP_L3LEAF1A.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/OVERRIDE_VTEP_L3LEAF1A.cfg @@ -41,7 +41,7 @@ interface Ethernet6 channel-group 5 mode active ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.35/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/OVERRIDE_VTEP_L3LEAF1B.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/OVERRIDE_VTEP_L3LEAF1B.cfg index e379c073c0f..b4441b328b2 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/OVERRIDE_VTEP_L3LEAF1B.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/OVERRIDE_VTEP_L3LEAF1B.cfg @@ -41,7 +41,7 @@ interface Ethernet6 channel-group 5 mode active ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.36/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/P2P-UPLINKS-IPV4-PREFIX-LENGTH.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/P2P-UPLINKS-IPV4-PREFIX-LENGTH.cfg index 9d8169e955d..3cf5c7625df 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/P2P-UPLINKS-IPV4-PREFIX-LENGTH.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/P2P-UPLINKS-IPV4-PREFIX-LENGTH.cfg @@ -29,7 +29,7 @@ interface Ethernet2 ip address 10.254.255.254/30 ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 10.254.254.32/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/RD-RT-ADMIN-SUBFIELD-L3LEAF1.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/RD-RT-ADMIN-SUBFIELD-L3LEAF1.cfg index 50fe70d96eb..3816ba998b4 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/RD-RT-ADMIN-SUBFIELD-L3LEAF1.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/RD-RT-ADMIN-SUBFIELD-L3LEAF1.cfg @@ -28,7 +28,7 @@ vrf instance TEST1 description TEST1 ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.1/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/RD-RT-ADMIN-SUBFIELD-L3LEAF2.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/RD-RT-ADMIN-SUBFIELD-L3LEAF2.cfg index 5fce3440aed..33a44523310 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/RD-RT-ADMIN-SUBFIELD-L3LEAF2.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/RD-RT-ADMIN-SUBFIELD-L3LEAF2.cfg @@ -28,7 +28,7 @@ vrf instance TEST1 description TEST1 ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.2/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/RD-RT-ADMIN-SUBFIELD-L3LEAF3.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/RD-RT-ADMIN-SUBFIELD-L3LEAF3.cfg index 9dfdae53661..e558b018957 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/RD-RT-ADMIN-SUBFIELD-L3LEAF3.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/RD-RT-ADMIN-SUBFIELD-L3LEAF3.cfg @@ -28,7 +28,7 @@ vrf instance TEST1 description TEST1 ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.3/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/RD-RT-ADMIN-SUBFIELD-L3LEAF4.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/RD-RT-ADMIN-SUBFIELD-L3LEAF4.cfg index 76d27b6afe4..bfa0f8b5472 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/RD-RT-ADMIN-SUBFIELD-L3LEAF4.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/RD-RT-ADMIN-SUBFIELD-L3LEAF4.cfg @@ -28,7 +28,7 @@ vrf instance TEST1 description TEST1 ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.4/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/RD-RT-ADMIN-SUBFIELD-L3LEAF5.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/RD-RT-ADMIN-SUBFIELD-L3LEAF5.cfg index 4f27490f691..e135acea94e 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/RD-RT-ADMIN-SUBFIELD-L3LEAF5.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/RD-RT-ADMIN-SUBFIELD-L3LEAF5.cfg @@ -28,7 +28,7 @@ vrf instance TEST1 description TEST1 ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.5/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/RD-RT-ADMIN-SUBFIELD-L3LEAF6.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/RD-RT-ADMIN-SUBFIELD-L3LEAF6.cfg index b6577121cde..f12f4f58888 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/RD-RT-ADMIN-SUBFIELD-L3LEAF6.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/RD-RT-ADMIN-SUBFIELD-L3LEAF6.cfg @@ -28,7 +28,7 @@ vrf instance TEST1 description TEST1 ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.6/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/RD-RT-ADMIN-SUBFIELD-L3LEAF7.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/RD-RT-ADMIN-SUBFIELD-L3LEAF7.cfg index 1a06d6de18a..c936e2ad6eb 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/RD-RT-ADMIN-SUBFIELD-L3LEAF7.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/RD-RT-ADMIN-SUBFIELD-L3LEAF7.cfg @@ -28,7 +28,7 @@ vrf instance TEST1 description TEST1 ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.7/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/SVI_PROFILE_NODE_1.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/SVI_PROFILE_NODE_1.cfg index 36bb92eccec..be87f165fef 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/SVI_PROFILE_NODE_1.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/SVI_PROFILE_NODE_1.cfg @@ -79,7 +79,7 @@ vrf instance MGMT vrf instance svi_profile_tests_vrf ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.1/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/SVI_PROFILE_NODE_2.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/SVI_PROFILE_NODE_2.cfg index 40446dea760..50290746bd6 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/SVI_PROFILE_NODE_2.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/SVI_PROFILE_NODE_2.cfg @@ -79,7 +79,7 @@ vrf instance MGMT vrf instance svi_profile_tests_vrf ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.1/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/UNDERLAY-MULTICAST-L3LEAF1A.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/UNDERLAY-MULTICAST-L3LEAF1A.cfg index c757219f72f..cbb583c4558 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/UNDERLAY-MULTICAST-L3LEAF1A.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/UNDERLAY-MULTICAST-L3LEAF1A.cfg @@ -68,7 +68,7 @@ interface Ethernet6 channel-group 6 mode active ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.3/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/UNDERLAY-MULTICAST-L3LEAF1B.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/UNDERLAY-MULTICAST-L3LEAF1B.cfg index a4aec94c06b..1db93b17422 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/UNDERLAY-MULTICAST-L3LEAF1B.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/UNDERLAY-MULTICAST-L3LEAF1B.cfg @@ -56,7 +56,7 @@ interface Ethernet4 channel-group 3 mode active ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.4/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/UNDERLAY-MULTICAST-L3LEAF2A.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/UNDERLAY-MULTICAST-L3LEAF2A.cfg index 4df05704a10..d1c0694cbe4 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/UNDERLAY-MULTICAST-L3LEAF2A.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/UNDERLAY-MULTICAST-L3LEAF2A.cfg @@ -52,7 +52,7 @@ interface Ethernet4 channel-group 3 mode active ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.5/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/UNDERLAY-MULTICAST-L3LEAF2B.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/UNDERLAY-MULTICAST-L3LEAF2B.cfg index ae949ce1d6e..e528ffeaa31 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/UNDERLAY-MULTICAST-L3LEAF2B.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/UNDERLAY-MULTICAST-L3LEAF2B.cfg @@ -52,7 +52,7 @@ interface Ethernet4 channel-group 3 mode active ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.6/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/UNDERLAY-MULTICAST-SPINE1.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/UNDERLAY-MULTICAST-SPINE1.cfg index d06ce1549fb..1ff8edf243a 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/UNDERLAY-MULTICAST-SPINE1.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/UNDERLAY-MULTICAST-SPINE1.cfg @@ -47,7 +47,7 @@ interface Ethernet4 pim ipv4 sparse-mode ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.1/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/UNDERLAY-MULTICAST-SPINE2.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/UNDERLAY-MULTICAST-SPINE2.cfg index 2627a475df9..9f362b8fd28 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/UNDERLAY-MULTICAST-SPINE2.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/UNDERLAY-MULTICAST-SPINE2.cfg @@ -43,7 +43,7 @@ interface Ethernet4 ip address 172.31.255.14/31 ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.2/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/UNDERLAY_FILTER_PEER_AS_L3LEAF1.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/UNDERLAY_FILTER_PEER_AS_L3LEAF1.cfg index 6c1f3354a1e..5116e2f9e71 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/UNDERLAY_FILTER_PEER_AS_L3LEAF1.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/UNDERLAY_FILTER_PEER_AS_L3LEAF1.cfg @@ -27,7 +27,7 @@ interface Ethernet2 ip address 192.168.0.3/31 ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.3/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/UNDERLAY_FILTER_PEER_AS_SPINE1.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/UNDERLAY_FILTER_PEER_AS_SPINE1.cfg index 7b52d1310f8..c1a25828a29 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/UNDERLAY_FILTER_PEER_AS_SPINE1.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/UNDERLAY_FILTER_PEER_AS_SPINE1.cfg @@ -22,7 +22,7 @@ interface Ethernet1 ip address 192.168.0.0/31 ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.1/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/UNDERLAY_FILTER_PEER_AS_SPINE2.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/UNDERLAY_FILTER_PEER_AS_SPINE2.cfg index 561101868d6..2513ede8445 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/UNDERLAY_FILTER_PEER_AS_SPINE2.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/UNDERLAY_FILTER_PEER_AS_SPINE2.cfg @@ -22,7 +22,7 @@ interface Ethernet1 ip address 192.168.0.2/31 ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.2/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/UPLINK-MLAG-STRUCTURED-CONFIG-L3LEAF1A.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/UPLINK-MLAG-STRUCTURED-CONFIG-L3LEAF1A.cfg index 1e9c548f465..aec18c63fa3 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/UPLINK-MLAG-STRUCTURED-CONFIG-L3LEAF1A.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/UPLINK-MLAG-STRUCTURED-CONFIG-L3LEAF1A.cfg @@ -72,7 +72,7 @@ interface Ethernet6 channel-group 5 mode active ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.3/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/UPLINK-MLAG-STRUCTURED-CONFIG-L3LEAF1B.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/UPLINK-MLAG-STRUCTURED-CONFIG-L3LEAF1B.cfg index 940e77621e1..335d475f470 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/UPLINK-MLAG-STRUCTURED-CONFIG-L3LEAF1B.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/UPLINK-MLAG-STRUCTURED-CONFIG-L3LEAF1B.cfg @@ -72,7 +72,7 @@ interface Ethernet6 channel-group 5 mode active ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.4/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/UPLINK-MLAG-STRUCTURED-CONFIG-SPINE1.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/UPLINK-MLAG-STRUCTURED-CONFIG-SPINE1.cfg index d275644bce8..a0336de639f 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/UPLINK-MLAG-STRUCTURED-CONFIG-SPINE1.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/UPLINK-MLAG-STRUCTURED-CONFIG-SPINE1.cfg @@ -31,7 +31,7 @@ interface Ethernet2 pim ipv4 sparse-mode ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.1/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/UPLINK_P2P_VRFS_TESTS_LEAF1.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/UPLINK_P2P_VRFS_TESTS_LEAF1.cfg index 54ca0b78714..b6a4f20f00d 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/UPLINK_P2P_VRFS_TESTS_LEAF1.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/UPLINK_P2P_VRFS_TESTS_LEAF1.cfg @@ -87,7 +87,7 @@ interface Ethernet52 channel-group 51 mode active ! interface Loopback0 - description Router_ID + description ROUTER_ID no shutdown ip address 192.168.42.3/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/UPLINK_P2P_VRFS_TESTS_SPINE1.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/UPLINK_P2P_VRFS_TESTS_SPINE1.cfg index 5e69afec0a6..366c16efbac 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/UPLINK_P2P_VRFS_TESTS_SPINE1.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/UPLINK_P2P_VRFS_TESTS_SPINE1.cfg @@ -43,7 +43,7 @@ interface Ethernet1.66 ip address 10.42.42.8/31 ! interface Loopback0 - description Router_ID + description ROUTER_ID no shutdown ip address 192.168.42.1/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/UPLINK_P2P_VRFS_TESTS_SPINE2.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/UPLINK_P2P_VRFS_TESTS_SPINE2.cfg index f468400e67b..db5f6c5dec7 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/UPLINK_P2P_VRFS_TESTS_SPINE2.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/UPLINK_P2P_VRFS_TESTS_SPINE2.cfg @@ -43,7 +43,7 @@ interface Ethernet2.100 ip address 10.42.42.10/31 ! interface Loopback0 - description Router_ID + description ROUTER_ID no shutdown ip address 192.168.42.2/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/autovpn-edge-no-default-policy.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/autovpn-edge-no-default-policy.cfg index 3385821bda6..efee43abfd9 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/autovpn-edge-no-default-policy.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/autovpn-edge-no-default-policy.cfg @@ -98,7 +98,7 @@ interface Ethernet1 dhcp client accept default-route ! interface Loopback0 - description Router_ID + description ROUTER_ID no shutdown ip address 192.168.30.1/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/autovpn-edge.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/autovpn-edge.cfg index 9d43c120ac1..7c3d5af934d 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/autovpn-edge.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/autovpn-edge.cfg @@ -127,7 +127,7 @@ interface Ethernet2 ip address 10.14.14.14/31 ! interface Loopback0 - description Router_ID + description ROUTER_ID no shutdown ip address 192.168.30.1/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/autovpn-rr1.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/autovpn-rr1.cfg index 35eccadf357..10072f57ccf 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/autovpn-rr1.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/autovpn-rr1.cfg @@ -107,7 +107,7 @@ interface Ethernet1 dhcp client accept default-route ! interface Loopback0 - description Router_ID + description ROUTER_ID no shutdown ip address 192.168.31.1/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/autovpn-rr2.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/autovpn-rr2.cfg index 84a250d92e1..d7a2d969694 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/autovpn-rr2.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/autovpn-rr2.cfg @@ -106,7 +106,7 @@ interface Ethernet1 ip address 10.8.8.8/31 ! interface Loopback0 - description Router_ID + description ROUTER_ID no shutdown ip address 192.168.31.2/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/bgp-from-network-services-1.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/bgp-from-network-services-1.cfg index 260b62f38a9..4acbd4a0bf8 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/bgp-from-network-services-1.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/bgp-from-network-services-1.cfg @@ -42,7 +42,7 @@ interface Ethernet47 ip address 10.10.1.1/30 ! interface Loopback0 - description Router_ID + description ROUTER_ID no shutdown ip address 192.0.255.1/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/bgp-from-network-services-2.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/bgp-from-network-services-2.cfg index 089deab6d12..4d7660f6b06 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/bgp-from-network-services-2.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/bgp-from-network-services-2.cfg @@ -33,7 +33,7 @@ interface Ethernet10 channel-group 10 mode active ! interface Loopback0 - description Router_ID + description ROUTER_ID no shutdown ip address 192.0.255.2/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/bgp-options.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/bgp-options.cfg index 00388c04bf4..caf3f3a80a0 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/bgp-options.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/bgp-options.cfg @@ -15,7 +15,7 @@ no aaa root vrf instance MGMT ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 10.10.10.1/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/bgp-peer-groups-1.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/bgp-peer-groups-1.cfg index bcaa83eb4a4..02eb5b3b4f6 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/bgp-peer-groups-1.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/bgp-peer-groups-1.cfg @@ -32,7 +32,7 @@ interface Ethernet3 channel-group 3 mode active ! interface Loopback0 - description MPLS_Overlay_peering + description ROUTER_ID no shutdown ip address 192.168.255.111/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/bgp-peer-groups-2.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/bgp-peer-groups-2.cfg index 008f6f37a8a..5f6c996c397 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/bgp-peer-groups-2.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/bgp-peer-groups-2.cfg @@ -32,7 +32,7 @@ interface Ethernet3 channel-group 3 mode active ! interface Loopback0 - description MPLS_Overlay_peering + description ROUTER_ID no shutdown ip address 192.168.255.112/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/bgp-peer-groups-3.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/bgp-peer-groups-3.cfg index bf0da624aab..fc74b1a3d04 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/bgp-peer-groups-3.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/bgp-peer-groups-3.cfg @@ -13,7 +13,7 @@ no aaa root vrf instance MGMT ! interface Loopback0 - description MPLS_Overlay_peering + description ROUTER_ID no shutdown ip address 192.168.255.114/32 isis enable CORE diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/core-1-isis-sr-ldp.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/core-1-isis-sr-ldp.cfg index 95351b3fdd5..22450047f78 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/core-1-isis-sr-ldp.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/core-1-isis-sr-ldp.cfg @@ -213,7 +213,7 @@ interface ethernet25 mpls ip ! interface Loopback0 - description LSR_Router_ID + description ROUTER_ID no shutdown ip address 10.0.0.1/32 ipv6 address 2000:1234:ffff:ffff::1/128 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/core-2-ospf-ldp.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/core-2-ospf-ldp.cfg index ce2206ddfc2..62348e7afdd 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/core-2-ospf-ldp.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/core-2-ospf-ldp.cfg @@ -133,7 +133,7 @@ interface Ethernet13 channel-group 12 mode active ! interface Loopback0 - description LSR_Router_ID + description ROUTER_ID no shutdown ip address 10.0.0.2/32 ipv6 address 2000:1234:ffff:ffff::2/128 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/core-3-isis-sr-ldp.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/core-3-isis-sr-ldp.cfg index a6426fafdd6..ce36960b1ea 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/core-3-isis-sr-ldp.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/core-3-isis-sr-ldp.cfg @@ -15,7 +15,7 @@ no aaa root vrf instance MGMT ! interface Loopback0 - description LSR_Router_ID + description ROUTER_ID no shutdown ip address 10.0.0.3/32 ipv6 address 2000:1234:ffff:ffff::3/128 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/core-4-multicast.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/core-4-multicast.cfg index 01bd61907d9..2bd8832840b 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/core-4-multicast.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/core-4-multicast.cfg @@ -40,7 +40,7 @@ interface Ethernet3 mpls ip ! interface Loopback0 - description LSR_Router_ID + description ROUTER_ID no shutdown ip address 10.0.0.4/32 ipv6 address 2000:1234:ffff:ffff::4/128 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/cv-pathfinder-custom-control-plane-policy-edge-1.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/cv-pathfinder-custom-control-plane-policy-edge-1.cfg index 53323c98e1c..2c80ff32ad3 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/cv-pathfinder-custom-control-plane-policy-edge-1.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/cv-pathfinder-custom-control-plane-policy-edge-1.cfg @@ -148,7 +148,7 @@ interface Ethernet1 dhcp client accept default-route ! interface Loopback0 - description Router_ID + description ROUTER_ID no shutdown ip address 192.168.42.1/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/cv-pathfinder-custom-control-plane-policy-edge-2.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/cv-pathfinder-custom-control-plane-policy-edge-2.cfg index cd795d9a03e..539acfa679b 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/cv-pathfinder-custom-control-plane-policy-edge-2.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/cv-pathfinder-custom-control-plane-policy-edge-2.cfg @@ -148,7 +148,7 @@ interface Ethernet1 dhcp client accept default-route ! interface Loopback0 - description Router_ID + description ROUTER_ID no shutdown ip address 192.168.42.2/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/cv-pathfinder-custom-control-plane-policy-edge-3.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/cv-pathfinder-custom-control-plane-policy-edge-3.cfg index ac3bd588de0..db7ba3aa580 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/cv-pathfinder-custom-control-plane-policy-edge-3.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/cv-pathfinder-custom-control-plane-policy-edge-3.cfg @@ -148,7 +148,7 @@ interface Ethernet1 dhcp client accept default-route ! interface Loopback0 - description Router_ID + description ROUTER_ID no shutdown ip address 192.168.42.3/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/cv-pathfinder-custom-control-plane-policy-pathfinder-1.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/cv-pathfinder-custom-control-plane-policy-pathfinder-1.cfg index 8570078248f..72369a5b1b7 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/cv-pathfinder-custom-control-plane-policy-pathfinder-1.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/cv-pathfinder-custom-control-plane-policy-pathfinder-1.cfg @@ -166,7 +166,7 @@ interface Ethernet3 ip address 10.9.9.9/31 ! interface Loopback0 - description Router_ID + description ROUTER_ID no shutdown ip address 192.168.44.1/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/cv-pathfinder-edge-custom-default-policy.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/cv-pathfinder-edge-custom-default-policy.cfg index a92e1a28dc6..39dae8307c8 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/cv-pathfinder-edge-custom-default-policy.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/cv-pathfinder-edge-custom-default-policy.cfg @@ -172,7 +172,7 @@ interface Ethernet3 ip address 172.20.20.20/31 ! interface Loopback0 - description Router_ID + description ROUTER_ID no shutdown ip address 192.168.42.1/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/cv-pathfinder-edge-no-default-policy.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/cv-pathfinder-edge-no-default-policy.cfg index 2ad94ff80d9..5daf0b8f1da 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/cv-pathfinder-edge-no-default-policy.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/cv-pathfinder-edge-no-default-policy.cfg @@ -166,7 +166,7 @@ interface Ethernet3 ip address 172.20.20.20/31 ! interface Loopback0 - description Router_ID + description ROUTER_ID no shutdown ip address 192.168.42.1/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/cv-pathfinder-edge.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/cv-pathfinder-edge.cfg index e658aec376a..2deda712059 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/cv-pathfinder-edge.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/cv-pathfinder-edge.cfg @@ -359,7 +359,7 @@ interface Ethernet52.1000 ip address 172.17.0.1/31 ! interface Loopback0 - description Router_ID + description ROUTER_ID no shutdown ip address 192.168.42.1/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/cv-pathfinder-edge1.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/cv-pathfinder-edge1.cfg index 360d601745e..ca19ea44dc8 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/cv-pathfinder-edge1.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/cv-pathfinder-edge1.cfg @@ -387,7 +387,7 @@ interface Ethernet52.1000 ip address 172.17.0.3/31 ! interface Loopback0 - description Router_ID + description ROUTER_ID no shutdown ip address 192.168.42.2/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/cv-pathfinder-edge2A.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/cv-pathfinder-edge2A.cfg index aa51af63608..5997f242add 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/cv-pathfinder-edge2A.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/cv-pathfinder-edge2A.cfg @@ -284,7 +284,7 @@ interface Ethernet53.1000 ip address 172.17.0.7/31 ! interface Loopback0 - description Router_ID + description ROUTER_ID no shutdown ip address 192.168.42.2/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/cv-pathfinder-edge2B.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/cv-pathfinder-edge2B.cfg index 73cba8e7f54..3c62d542b5c 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/cv-pathfinder-edge2B.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/cv-pathfinder-edge2B.cfg @@ -294,7 +294,7 @@ interface Ethernet53.1000 ip address 172.17.0.11/31 ! interface Loopback0 - description Router_ID + description ROUTER_ID no shutdown ip address 192.168.42.3/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/cv-pathfinder-edge3A.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/cv-pathfinder-edge3A.cfg index 3d2f41c25f7..9300d556004 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/cv-pathfinder-edge3A.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/cv-pathfinder-edge3A.cfg @@ -205,7 +205,7 @@ interface Ethernet52 ip address 10.10.10.0/31 ! interface Loopback0 - description Router_ID + description ROUTER_ID no shutdown ip address 192.168.42.6/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/cv-pathfinder-edge3B.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/cv-pathfinder-edge3B.cfg index fc6d0c0ee8b..4b700c7fe41 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/cv-pathfinder-edge3B.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/cv-pathfinder-edge3B.cfg @@ -215,7 +215,7 @@ interface Ethernet52 ip address 10.10.10.1/31 ! interface Loopback0 - description Router_ID + description ROUTER_ID no shutdown ip address 192.168.42.7/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/cv-pathfinder-pathfinder.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/cv-pathfinder-pathfinder.cfg index 1f3c81ad40a..1a1ab9a9af2 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/cv-pathfinder-pathfinder.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/cv-pathfinder-pathfinder.cfg @@ -260,7 +260,7 @@ interface Ethernet3 ip address 10.9.9.9/31 ! interface Loopback0 - description Router_ID + description ROUTER_ID no shutdown ip address 192.168.44.1/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/cv-pathfinder-pathfinder1.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/cv-pathfinder-pathfinder1.cfg index ac5d2becb36..d5ff98ddd65 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/cv-pathfinder-pathfinder1.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/cv-pathfinder-pathfinder1.cfg @@ -251,7 +251,7 @@ interface Ethernet1 ip address 10.8.8.8/31 ! interface Loopback0 - description Router_ID + description ROUTER_ID no shutdown ip address 192.168.44.2/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/cv-pathfinder-pathfinder2.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/cv-pathfinder-pathfinder2.cfg index 0bcc2351c93..1b65c2323d2 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/cv-pathfinder-pathfinder2.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/cv-pathfinder-pathfinder2.cfg @@ -264,7 +264,7 @@ interface Ethernet2 ip address 172.19.9.9/31 ! interface Loopback0 - description Router_ID + description ROUTER_ID no shutdown ip address 192.168.44.3/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/cv-pathfinder-transit1A.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/cv-pathfinder-transit1A.cfg index 061e07dad9b..ddffa12bbd7 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/cv-pathfinder-transit1A.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/cv-pathfinder-transit1A.cfg @@ -343,7 +343,7 @@ interface Ethernet52.1000 ip address 172.17.0.1/31 ! interface Loopback0 - description Router_ID + description ROUTER_ID no shutdown ip address 192.168.43.1/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/cv-pathfinder-transit1B.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/cv-pathfinder-transit1B.cfg index ef02ebbe627..0b959f3879e 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/cv-pathfinder-transit1B.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/cv-pathfinder-transit1B.cfg @@ -323,7 +323,7 @@ interface Ethernet52.1000 ip address 172.17.0.3/31 ! interface Loopback0 - description Router_ID + description ROUTER_ID no shutdown ip address 192.168.43.2/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/cvp-instance-ips-cvaas.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/cvp-instance-ips-cvaas.cfg index 5a6b284b2b5..80b1babf77f 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/cvp-instance-ips-cvaas.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/cvp-instance-ips-cvaas.cfg @@ -19,7 +19,7 @@ no aaa root vrf instance MGMT ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 1.2.3.1/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/default_overlay_protocol_cvx.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/default_overlay_protocol_cvx.cfg index a1220642f23..2a8ad2ec2b8 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/default_overlay_protocol_cvx.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/default_overlay_protocol_cvx.cfg @@ -15,7 +15,7 @@ no aaa root vrf instance MGMT ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.0.42/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/default_overlay_protocol_her.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/default_overlay_protocol_her.cfg index 29040907d1f..a1c29645da3 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/default_overlay_protocol_her.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/default_overlay_protocol_her.cfg @@ -15,7 +15,7 @@ no aaa root vrf instance MGMT ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.0.42/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/device.with.dots.in.hostname.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/device.with.dots.in.hostname.cfg index 4bd6753074f..c444e53fc30 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/device.with.dots.in.hostname.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/device.with.dots.in.hostname.cfg @@ -15,7 +15,7 @@ no aaa root vrf instance MGMT ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 1.2.3.1/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/downlink-pools-l3leaf1.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/downlink-pools-l3leaf1.cfg index 5c485b04541..b69d7569e90 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/downlink-pools-l3leaf1.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/downlink-pools-l3leaf1.cfg @@ -27,7 +27,7 @@ interface Ethernet2 ip address 10.0.1.3/31 ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.1.10/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/downlink-pools-l3leaf2.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/downlink-pools-l3leaf2.cfg index cf30187d79e..b9470e52ed3 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/downlink-pools-l3leaf2.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/downlink-pools-l3leaf2.cfg @@ -27,7 +27,7 @@ interface Ethernet2 ip address 10.0.2.3/31 ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.1.20/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/downlink-pools-l3leaf3.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/downlink-pools-l3leaf3.cfg index d67357464db..73613497157 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/downlink-pools-l3leaf3.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/downlink-pools-l3leaf3.cfg @@ -41,7 +41,7 @@ interface Ethernet4 ip address 10.0.4.5/31 ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.1.30/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/downlink-pools-l3leaf4.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/downlink-pools-l3leaf4.cfg index 379dc2d388a..ef8cdc4fdcc 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/downlink-pools-l3leaf4.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/downlink-pools-l3leaf4.cfg @@ -41,7 +41,7 @@ interface Ethernet4 ip address 10.0.4.7/31 ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.1.40/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/downlink-pools-spine1.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/downlink-pools-spine1.cfg index bd5e1b0ff1d..6f0e0edde9c 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/downlink-pools-spine1.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/downlink-pools-spine1.cfg @@ -57,7 +57,7 @@ interface Ethernet16 ip address 10.0.3.18/31 ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.0.10/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/downlink-pools-spine2.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/downlink-pools-spine2.cfg index e85b6e6f24e..48e204ec55c 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/downlink-pools-spine2.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/downlink-pools-spine2.cfg @@ -57,7 +57,7 @@ interface Ethernet16 ip address 10.0.4.6/31 ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.0.20/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/duplicate-vrfs.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/duplicate-vrfs.cfg index a4cca4a3c76..5555b6867a6 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/duplicate-vrfs.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/duplicate-vrfs.cfg @@ -21,7 +21,7 @@ vrf instance MGMT vrf instance VRF1 ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.101/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/evpn-to-ipvpn-gateway.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/evpn-to-ipvpn-gateway.cfg index 5bfb9d1b9c2..19bf52ae82a 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/evpn-to-ipvpn-gateway.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/evpn-to-ipvpn-gateway.cfg @@ -18,7 +18,7 @@ vrf instance MGMT vrf instance testvrf ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 10.10.0.1/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/evpn-vtep-with-default-vrf-not-evpn.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/evpn-vtep-with-default-vrf-not-evpn.cfg index 888aa3d0c9b..de1bd8915b8 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/evpn-vtep-with-default-vrf-not-evpn.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/evpn-vtep-with-default-vrf-not-evpn.cfg @@ -16,7 +16,7 @@ vlan 110 vrf instance MGMT ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.109/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/evpn_services_l2_only_false.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/evpn_services_l2_only_false.cfg index a0fbffd0db1..bf118b4d1dc 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/evpn_services_l2_only_false.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/evpn_services_l2_only_false.cfg @@ -159,7 +159,7 @@ vrf instance Tenant_C_WAN_Zone vrf instance Tenant_D_OP_Zone ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.109/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/evpn_services_l2_only_true.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/evpn_services_l2_only_true.cfg index 8f9f6ba9fb1..93206aebd84 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/evpn_services_l2_only_true.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/evpn_services_l2_only_true.cfg @@ -136,7 +136,7 @@ vlan 1234 vrf instance MGMT ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.109/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/evpn_vlan_bundle.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/evpn_vlan_bundle.cfg index 607c05a3a55..591b1ae79b6 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/evpn_vlan_bundle.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/evpn_vlan_bundle.cfg @@ -81,7 +81,7 @@ vrf instance SIT3 vrf instance SIT_VRF ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 10.10.0.3/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/evpn_vlan_bundle_svi_l2vlan.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/evpn_vlan_bundle_svi_l2vlan.cfg index ff2f507f60e..e64a027b866 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/evpn_vlan_bundle_svi_l2vlan.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/evpn_vlan_bundle_svi_l2vlan.cfg @@ -36,7 +36,7 @@ vrf instance MGMT vrf instance SIT_VRF ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 10.10.0.3/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/filter.vrfs.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/filter.vrfs.cfg index a280306ac45..c7bd6df9a63 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/filter.vrfs.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/filter.vrfs.cfg @@ -19,7 +19,7 @@ vrf instance VRF5 description This VRF will be configured because of always_include_vrfs_in_tenants and it is permitted by filter.allow_vrfs ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 10.0.0.1/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/flow-tracking-tests-leaf1.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/flow-tracking-tests-leaf1.cfg index 65dcff950a9..79c3223c04b 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/flow-tracking-tests-leaf1.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/flow-tracking-tests-leaf1.cfg @@ -112,7 +112,7 @@ interface Ethernet84 ip address 10.1.55.0/31 ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 10.254.1.1/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/flow-tracking-tests-leaf2.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/flow-tracking-tests-leaf2.cfg index 926ad3bbb91..92ee5446e56 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/flow-tracking-tests-leaf2.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/flow-tracking-tests-leaf2.cfg @@ -111,7 +111,7 @@ interface Ethernet84 ip address 10.1.55.2/31 ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 10.254.1.2/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/flow-tracking-tests-leaf3.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/flow-tracking-tests-leaf3.cfg index 6224bf9b1dd..560f7467d18 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/flow-tracking-tests-leaf3.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/flow-tracking-tests-leaf3.cfg @@ -156,7 +156,7 @@ interface Ethernet32 channel-group 32 mode active ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 10.254.1.5/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/flow-tracking-tests-leaf4.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/flow-tracking-tests-leaf4.cfg index 92a4866efba..69d7661b364 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/flow-tracking-tests-leaf4.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/flow-tracking-tests-leaf4.cfg @@ -156,7 +156,7 @@ interface Ethernet32 channel-group 32 mode active ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 10.254.1.6/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/flow-tracking-tests-spine1.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/flow-tracking-tests-spine1.cfg index 0e10fe26d2a..b657df0921e 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/flow-tracking-tests-spine1.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/flow-tracking-tests-spine1.cfg @@ -121,7 +121,7 @@ interface Ethernet16 flow tracker sampled FLOW-TRACKER ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 10.255.0.1/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/flow-tracking-tests-spine2.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/flow-tracking-tests-spine2.cfg index 27331c9f034..786195e0fb1 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/flow-tracking-tests-spine2.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/flow-tracking-tests-spine2.cfg @@ -117,7 +117,7 @@ interface Ethernet16 no switchport ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 10.255.0.2/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/generate-cv-tags-1.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/generate-cv-tags-1.cfg index e2a291457fc..0a966ba99ec 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/generate-cv-tags-1.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/generate-cv-tags-1.cfg @@ -21,7 +21,7 @@ interface Ethernet1 ip address 10.20.30.40/24 ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 10.10.255.1/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/generate-cv-tags-2.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/generate-cv-tags-2.cfg index ac8a8fdc67f..4a2fe2c83f8 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/generate-cv-tags-2.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/generate-cv-tags-2.cfg @@ -15,7 +15,7 @@ no aaa root vrf instance MGMT ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 10.10.255.1/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/inband-mgmt-parent-dualstack1.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/inband-mgmt-parent-dualstack1.cfg index 4c254d83673..6446dc59a92 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/inband-mgmt-parent-dualstack1.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/inband-mgmt-parent-dualstack1.cfg @@ -127,7 +127,7 @@ interface Ethernet25 channel-group 25 mode active ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 10.0.255.3/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/inband-mgmt-parent-dualstack2.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/inband-mgmt-parent-dualstack2.cfg index 5db32fdac6e..45c9ae580d1 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/inband-mgmt-parent-dualstack2.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/inband-mgmt-parent-dualstack2.cfg @@ -127,7 +127,7 @@ interface Ethernet25 channel-group 25 mode active ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 10.0.255.4/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/inband-mgmt-parent-ipv6-1.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/inband-mgmt-parent-ipv6-1.cfg index d404cbbf2a6..07588619c35 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/inband-mgmt-parent-ipv6-1.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/inband-mgmt-parent-ipv6-1.cfg @@ -121,7 +121,7 @@ interface Ethernet27 channel-group 27 mode active ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 10.0.255.5/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/inband-mgmt-parent-ipv6-2.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/inband-mgmt-parent-ipv6-2.cfg index 00a368350fe..07194a7a838 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/inband-mgmt-parent-ipv6-2.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/inband-mgmt-parent-ipv6-2.cfg @@ -123,7 +123,7 @@ interface Ethernet27 channel-group 27 mode active ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 10.0.255.6/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/inband-mgmt-parent-vrf.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/inband-mgmt-parent-vrf.cfg index b17f16e7f6f..38adda34ed1 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/inband-mgmt-parent-vrf.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/inband-mgmt-parent-vrf.cfg @@ -91,7 +91,7 @@ interface Ethernet102 channel-group 101 mode active ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 10.0.255.2/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/inband-mgmt-parent.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/inband-mgmt-parent.cfg index 33300890764..3619f66110d 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/inband-mgmt-parent.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/inband-mgmt-parent.cfg @@ -91,7 +91,7 @@ interface Ethernet102 channel-group 101 mode active ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 10.0.255.1/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/ipv4-acls.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/ipv4-acls.cfg index 47b0214c897..7c9a0372fed 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/ipv4-acls.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/ipv4-acls.cfg @@ -61,7 +61,7 @@ interface Ethernet6/6.6 ip access-group TEST-IPV4-ACL-WITH-IP-FIELDS-OUT_Ethernet6_6.6 out ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.0.1/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/isis-system-id-format-using-node-id.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/isis-system-id-format-using-node-id.cfg index 5706fec2f4d..a5da76033f4 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/isis-system-id-format-using-node-id.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/isis-system-id-format-using-node-id.cfg @@ -13,7 +13,7 @@ no aaa root vrf instance MGMT ! interface Loopback0 - description MPLS_Overlay_peering + description ROUTER_ID no shutdown ip address 172.28.4.99/32 isis enable CORE diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/isis-system-id-format-using-underlay-loopback.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/isis-system-id-format-using-underlay-loopback.cfg index 7c0b139837a..56d0e9c9c80 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/isis-system-id-format-using-underlay-loopback.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/isis-system-id-format-using-underlay-loopback.cfg @@ -13,7 +13,7 @@ no aaa root vrf instance MGMT ! interface Loopback0 - description MPLS_Overlay_peering + description ROUTER_ID no shutdown ip address 172.28.4.99/32 isis enable CORE diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/l3_edge_bgp.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/l3_edge_bgp.cfg index b999b0817fa..c1c9dcedfd5 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/l3_edge_bgp.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/l3_edge_bgp.cfg @@ -85,7 +85,7 @@ interface Ethernet8 channel-group 7 mode active ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 1.2.3.1/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/l3_edge_isis.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/l3_edge_isis.cfg index dddab701f1e..9fa39d288db 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/l3_edge_isis.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/l3_edge_isis.cfg @@ -67,7 +67,7 @@ interface ethernet4 isis network point-to-point ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 1.2.3.1/32 isis enable EVPN_UNDERLAY diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/l3_edge_multicast.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/l3_edge_multicast.cfg index e13dd33b963..ca1565bce0e 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/l3_edge_multicast.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/l3_edge_multicast.cfg @@ -34,7 +34,7 @@ interface ethernet2 pim ipv4 sparse-mode ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 1.2.3.1/32 ip ospf area 0.0.0.0 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/l3_edge_ospf.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/l3_edge_ospf.cfg index 194d221cc9e..8a80547dbc5 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/l3_edge_ospf.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/l3_edge_ospf.cfg @@ -53,7 +53,7 @@ interface ethernet4 ip ospf area 0.0.0.0 ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 1.2.3.1/32 ip ospf area 0.0.0.0 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/node-type-l3-interfaces.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/node-type-l3-interfaces.cfg index c15e668acc1..d85dab5294f 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/node-type-l3-interfaces.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/node-type-l3-interfaces.cfg @@ -45,7 +45,7 @@ interface Ethernet43 ip address 192.168.42.42/24 ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 1.2.3.1/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/override_uplink_type-d.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/override_uplink_type-d.cfg index 6184f0433db..7c27325a930 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/override_uplink_type-d.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/override_uplink_type-d.cfg @@ -27,7 +27,7 @@ interface Ethernet1 channel-group 1 mode active ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.42.2/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/override_uplink_type-u.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/override_uplink_type-u.cfg index c1d58f132b2..b8fbd623a20 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/override_uplink_type-u.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/override_uplink_type-u.cfg @@ -28,7 +28,7 @@ interface Ethernet1 channel-group 1 mode active ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.42.1/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/ptp-tests-leaf1.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/ptp-tests-leaf1.cfg index 4db6ff85cdf..a5c0aad3d61 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/ptp-tests-leaf1.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/ptp-tests-leaf1.cfg @@ -204,7 +204,7 @@ interface Ethernet14 channel-group 14 mode active ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 10.254.1.1/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/ptp-tests-leaf2.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/ptp-tests-leaf2.cfg index 4a153e9b292..3d4b5b8a7e2 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/ptp-tests-leaf2.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/ptp-tests-leaf2.cfg @@ -184,7 +184,7 @@ interface Ethernet14 channel-group 14 mode active ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 10.254.1.2/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/ptp-tests-spine1.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/ptp-tests-spine1.cfg index 4d534b24bf8..cd62d10b7ed 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/ptp-tests-spine1.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/ptp-tests-spine1.cfg @@ -128,7 +128,7 @@ interface Ethernet9 ptp delay-req interval -3 ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 10.255.0.1/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/ptp-tests-spine2.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/ptp-tests-spine2.cfg index d03974ae359..01ffc966497 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/ptp-tests-spine2.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/ptp-tests-spine2.cfg @@ -84,7 +84,7 @@ interface Ethernet9 ptp delay-req interval -3 ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 10.255.0.2/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/ptp-tests-spine3.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/ptp-tests-spine3.cfg index 556644f4b97..3c235b74038 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/ptp-tests-spine3.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/ptp-tests-spine3.cfg @@ -27,7 +27,7 @@ no aaa root vrf instance MGMT ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 10.255.0.3/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/sflow-tests-leaf1.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/sflow-tests-leaf1.cfg index 07ad57987fa..7bb46fda38b 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/sflow-tests-leaf1.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/sflow-tests-leaf1.cfg @@ -68,7 +68,7 @@ interface Ethernet14 sflow enable ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 10.254.1.1/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/sflow-tests-leaf2.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/sflow-tests-leaf2.cfg index 93bab54cb2e..eb2e714e4b8 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/sflow-tests-leaf2.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/sflow-tests-leaf2.cfg @@ -44,7 +44,7 @@ interface Ethernet2 sflow enable ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 10.254.1.2/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/sflow-tests-leaf3.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/sflow-tests-leaf3.cfg index 3fc31f4e00f..880b9077a8a 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/sflow-tests-leaf3.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/sflow-tests-leaf3.cfg @@ -137,7 +137,7 @@ interface Ethernet17 channel-group 17 mode active ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 10.254.1.5/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/sflow-tests-leaf4.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/sflow-tests-leaf4.cfg index 8268154f601..77211435e4b 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/sflow-tests-leaf4.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/sflow-tests-leaf4.cfg @@ -137,7 +137,7 @@ interface Ethernet17 channel-group 17 mode active ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 10.254.1.6/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/sflow-tests-spine1.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/sflow-tests-spine1.cfg index fff40b94edd..9a69f1e4bc5 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/sflow-tests-spine1.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/sflow-tests-spine1.cfg @@ -128,7 +128,7 @@ interface Ethernet14 sflow enable ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 10.255.0.1/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/sflow-tests-spine2.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/sflow-tests-spine2.cfg index 1f0a8ca2358..4aa03439d5e 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/sflow-tests-spine2.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/sflow-tests-spine2.cfg @@ -64,7 +64,7 @@ interface Ethernet14 sflow enable ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 10.255.0.2/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/site-ha-disabled-leaf.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/site-ha-disabled-leaf.cfg index b66fbd75390..df7661a3441 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/site-ha-disabled-leaf.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/site-ha-disabled-leaf.cfg @@ -90,7 +90,7 @@ interface Ethernet2.1000 ip address 172.17.0.2/31 ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.45.4/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/site-ha-enabled-leaf1.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/site-ha-enabled-leaf1.cfg index ae7721732fa..a5c2d586fa7 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/site-ha-enabled-leaf1.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/site-ha-enabled-leaf1.cfg @@ -90,7 +90,7 @@ interface Ethernet2.1000 ip address 172.17.0.2/31 ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.45.1/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/site-ha-enabled-leaf2A.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/site-ha-enabled-leaf2A.cfg index f15c53448f0..7ecf25f1648 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/site-ha-enabled-leaf2A.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/site-ha-enabled-leaf2A.cfg @@ -90,7 +90,7 @@ interface Ethernet2.1000 ip address 172.17.0.8/31 ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.45.2/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/site-ha-enabled-leaf2B.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/site-ha-enabled-leaf2B.cfg index 4ce392c8b19..9697885c498 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/site-ha-enabled-leaf2B.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/site-ha-enabled-leaf2B.cfg @@ -90,7 +90,7 @@ interface Ethernet2.1000 ip address 172.17.0.10/31 ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.45.3/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/trunk-group-tests-l3leaf1a.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/trunk-group-tests-l3leaf1a.cfg index 6149de1cfc9..2dbc01110f8 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/trunk-group-tests-l3leaf1a.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/trunk-group-tests-l3leaf1a.cfg @@ -178,7 +178,7 @@ interface Ethernet13 channel-group 13 mode active ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.250.9/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/trunk-group-tests-l3leaf1b.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/trunk-group-tests-l3leaf1b.cfg index baa677c393f..ce25c7d047e 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/trunk-group-tests-l3leaf1b.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/trunk-group-tests-l3leaf1b.cfg @@ -158,7 +158,7 @@ interface Ethernet13 channel-group 13 mode active ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.250.10/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/trunk-group-tests-l3leaf2a.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/trunk-group-tests-l3leaf2a.cfg index 159cdec5c7f..bf09ae906f8 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/trunk-group-tests-l3leaf2a.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/trunk-group-tests-l3leaf2a.cfg @@ -74,7 +74,7 @@ interface Ethernet4 channel-group 3 mode active ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.250.11/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/trunk-group-tests-l3leaf2b.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/trunk-group-tests-l3leaf2b.cfg index 4e6125544d6..fa75ad8b3b7 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/trunk-group-tests-l3leaf2b.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/trunk-group-tests-l3leaf2b.cfg @@ -69,7 +69,7 @@ interface Ethernet4 channel-group 3 mode active ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.250.12/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/underlay_filter_peer_as_evpn_1.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/underlay_filter_peer_as_evpn_1.cfg index 3c2ef82f432..df74d828389 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/underlay_filter_peer_as_evpn_1.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/underlay_filter_peer_as_evpn_1.cfg @@ -27,7 +27,7 @@ interface Ethernet2 ip address 192.168.153.3/31 ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.1/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/underlay_filter_peer_as_evpn_2.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/underlay_filter_peer_as_evpn_2.cfg index 6bb6c5a5d83..d7ff5dbc6e9 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/underlay_filter_peer_as_evpn_2.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/underlay_filter_peer_as_evpn_2.cfg @@ -20,7 +20,7 @@ interface Ethernet1 ip address 192.168.153.0/31 ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.2/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/underlay_filter_peer_as_evpn_3.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/underlay_filter_peer_as_evpn_3.cfg index e3588026b85..4600e742360 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/underlay_filter_peer_as_evpn_3.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/underlay_filter_peer_as_evpn_3.cfg @@ -20,7 +20,7 @@ interface Ethernet1 ip address 192.168.153.2/31 ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.3/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/uplink_lan_wan_router1.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/uplink_lan_wan_router1.cfg index 547cf012fd8..6207ddcc216 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/uplink_lan_wan_router1.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/uplink_lan_wan_router1.cfg @@ -126,7 +126,7 @@ interface Ethernet2.100 comment yo ! interface Loopback0 - description Router_ID + description ROUTER_ID no shutdown ip address 192.168.1.1/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/uplink_lan_wan_router2.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/uplink_lan_wan_router2.cfg index 7b6158475a1..8b170fee28c 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/uplink_lan_wan_router2.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/uplink_lan_wan_router2.cfg @@ -132,7 +132,7 @@ interface Ethernet2.100 comment yo ! interface Loopback0 - description Router_ID + description ROUTER_ID no shutdown ip address 192.168.1.2/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/varpv6.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/varpv6.cfg index ce69c4311e1..15a71e2479e 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/varpv6.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/varpv6.cfg @@ -30,7 +30,7 @@ vrf instance MGMT vrf instance VRF1 ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.101/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/vrfs_rd_rt_override.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/vrfs_rd_rt_override.cfg index 4504d493347..e0ba871cfef 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/vrfs_rd_rt_override.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/vrfs_rd_rt_override.cfg @@ -23,7 +23,7 @@ vrf instance VRF1 vrf instance VRF2 ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 10.10.0.20/32 ! diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/7010TX-LEAF1.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/7010TX-LEAF1.yml index 36e4e85e9d8..d445ee0277e 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/7010TX-LEAF1.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/7010TX-LEAF1.yml @@ -155,7 +155,7 @@ route_maps: - ip address prefix-list PL-LOOPBACKS-EVPN-OVERLAY loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.35/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/7010TX-LEAF2.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/7010TX-LEAF2.yml index ae78e0febee..c55daac3190 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/7010TX-LEAF2.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/7010TX-LEAF2.yml @@ -155,7 +155,7 @@ route_maps: - ip address prefix-list PL-LOOPBACKS-EVPN-OVERLAY loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.36/32 prefix_lists: diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/AUTO_BGP_ASN_LEAF1A.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/AUTO_BGP_ASN_LEAF1A.yml index b37142250fe..c0f7424b36d 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/AUTO_BGP_ASN_LEAF1A.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/AUTO_BGP_ASN_LEAF1A.yml @@ -77,7 +77,7 @@ management_api_http: enable_https: true loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.3/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/AUTO_BGP_ASN_LEAF1B.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/AUTO_BGP_ASN_LEAF1B.yml index 2abee04dd80..2765636eb47 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/AUTO_BGP_ASN_LEAF1B.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/AUTO_BGP_ASN_LEAF1B.yml @@ -77,7 +77,7 @@ management_api_http: enable_https: true loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.4/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/AUTO_BGP_ASN_LEAF2.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/AUTO_BGP_ASN_LEAF2.yml index d46b6d919be..7cc0e2f10bb 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/AUTO_BGP_ASN_LEAF2.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/AUTO_BGP_ASN_LEAF2.yml @@ -77,7 +77,7 @@ management_api_http: enable_https: true loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.5/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/AUTO_BGP_ASN_LEAF3A.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/AUTO_BGP_ASN_LEAF3A.yml index 03eed69fe7e..7f63d3a3a55 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/AUTO_BGP_ASN_LEAF3A.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/AUTO_BGP_ASN_LEAF3A.yml @@ -167,7 +167,7 @@ route_maps: - ip address prefix-list PL-LOOPBACKS-EVPN-OVERLAY loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.7/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/AUTO_BGP_ASN_LEAF3B.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/AUTO_BGP_ASN_LEAF3B.yml index c35c238f084..57882b47229 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/AUTO_BGP_ASN_LEAF3B.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/AUTO_BGP_ASN_LEAF3B.yml @@ -167,7 +167,7 @@ route_maps: - ip address prefix-list PL-LOOPBACKS-EVPN-OVERLAY loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.8/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/AUTO_BGP_ASN_LEAF4A.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/AUTO_BGP_ASN_LEAF4A.yml index 38099751902..6de42ca661b 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/AUTO_BGP_ASN_LEAF4A.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/AUTO_BGP_ASN_LEAF4A.yml @@ -167,7 +167,7 @@ route_maps: - ip address prefix-list PL-LOOPBACKS-EVPN-OVERLAY loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.9/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/AUTO_BGP_ASN_LEAF4B.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/AUTO_BGP_ASN_LEAF4B.yml index 3f4fe98274b..4cdf1b92822 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/AUTO_BGP_ASN_LEAF4B.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/AUTO_BGP_ASN_LEAF4B.yml @@ -167,7 +167,7 @@ route_maps: - ip address prefix-list PL-LOOPBACKS-EVPN-OVERLAY loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.10/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/AUTO_BGP_ASN_LEAF5A.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/AUTO_BGP_ASN_LEAF5A.yml index b00b7691b72..89987529443 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/AUTO_BGP_ASN_LEAF5A.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/AUTO_BGP_ASN_LEAF5A.yml @@ -77,7 +77,7 @@ management_api_http: enable_https: true loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.11/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/AUTO_BGP_ASN_LEAF7A.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/AUTO_BGP_ASN_LEAF7A.yml index 2a2a1d7de1e..db1e17da7d6 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/AUTO_BGP_ASN_LEAF7A.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/AUTO_BGP_ASN_LEAF7A.yml @@ -167,7 +167,7 @@ route_maps: - ip address prefix-list PL-LOOPBACKS-EVPN-OVERLAY loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.13/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/AUTO_BGP_ASN_LEAF7B.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/AUTO_BGP_ASN_LEAF7B.yml index 55a1c29f338..8f712dd8166 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/AUTO_BGP_ASN_LEAF7B.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/AUTO_BGP_ASN_LEAF7B.yml @@ -167,7 +167,7 @@ route_maps: - ip address prefix-list PL-LOOPBACKS-EVPN-OVERLAY loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.14/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/AUTO_BGP_ASN_LEAF8A.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/AUTO_BGP_ASN_LEAF8A.yml index f1dd1d1b8de..71b9963ab40 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/AUTO_BGP_ASN_LEAF8A.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/AUTO_BGP_ASN_LEAF8A.yml @@ -77,7 +77,7 @@ management_api_http: enable_https: true loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.15/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/AUTO_BGP_ASN_LEAF8B.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/AUTO_BGP_ASN_LEAF8B.yml index 888b4e663f9..99a64597bf2 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/AUTO_BGP_ASN_LEAF8B.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/AUTO_BGP_ASN_LEAF8B.yml @@ -77,7 +77,7 @@ management_api_http: enable_https: true loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.16/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/AUTO_BGP_UNGROUPED_LEAF6.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/AUTO_BGP_UNGROUPED_LEAF6.yml index 55328815e4d..3f02c397e0f 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/AUTO_BGP_UNGROUPED_LEAF6.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/AUTO_BGP_UNGROUPED_LEAF6.yml @@ -77,7 +77,7 @@ management_api_http: enable_https: true loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.12/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/AUTO_NODE_TYPE_LEAF01.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/AUTO_NODE_TYPE_LEAF01.yml index f4e889e127c..71aad445b51 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/AUTO_NODE_TYPE_LEAF01.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/AUTO_NODE_TYPE_LEAF01.yml @@ -117,7 +117,7 @@ ethernet_interfaces: ip_address: 172.31.255.3/31 loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.3/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/AUTO_NODE_TYPE_SPINE01.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/AUTO_NODE_TYPE_SPINE01.yml index 3d06a44a329..6cb27465320 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/AUTO_NODE_TYPE_SPINE01.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/AUTO_NODE_TYPE_SPINE01.yml @@ -115,7 +115,7 @@ ethernet_interfaces: ip_address: 172.31.255.4/31 loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.1/32 prefix_lists: diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/AUTO_NODE_TYPE_SPINE02.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/AUTO_NODE_TYPE_SPINE02.yml index 6c77fd3d02b..67d0f32691c 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/AUTO_NODE_TYPE_SPINE02.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/AUTO_NODE_TYPE_SPINE02.yml @@ -115,7 +115,7 @@ ethernet_interfaces: ip_address: 172.31.255.6/31 loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.2/32 prefix_lists: diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/AUTO_NODE_TYPE_UNGROUPED_LEAF02.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/AUTO_NODE_TYPE_UNGROUPED_LEAF02.yml index d40204fd31d..f24947108db 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/AUTO_NODE_TYPE_UNGROUPED_LEAF02.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/AUTO_NODE_TYPE_UNGROUPED_LEAF02.yml @@ -117,7 +117,7 @@ ethernet_interfaces: ip_address: 172.31.255.7/31 loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.4/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/DC1-BL1A.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/DC1-BL1A.yml index 21ba325ee4e..4c8d81724d7 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/DC1-BL1A.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/DC1-BL1A.yml @@ -538,7 +538,7 @@ ethernet_interfaces: peer_type: my_precious loopback_interfaces: - name: Loopback0 - description: MY_OVERLAY_LOOPBACK + description: MY_ROUTER_ID_LOOPBACK shutdown: false ip_address: 192.168.255.14/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/DC1-BL1B.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/DC1-BL1B.yml index 79206cc659c..c8b20098c47 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/DC1-BL1B.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/DC1-BL1B.yml @@ -515,7 +515,7 @@ ethernet_interfaces: peer_type: my_precious loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.15/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/DC1-BL2A.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/DC1-BL2A.yml index 845c0269f01..94b413164b2 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/DC1-BL2A.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/DC1-BL2A.yml @@ -407,7 +407,7 @@ ethernet_interfaces: ip_address: 172.31.254.231/31 loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.16/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/DC1-BL2B.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/DC1-BL2B.yml index 3083d418dde..f0ee6c84feb 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/DC1-BL2B.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/DC1-BL2B.yml @@ -401,7 +401,7 @@ ethernet_interfaces: ip_address: 172.31.255.7/31 loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.17/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/DC1-CL1A.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/DC1-CL1A.yml index 208c002b233..a2b657b86b6 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/DC1-CL1A.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/DC1-CL1A.yml @@ -436,7 +436,7 @@ mlag_configuration: reload_delay_non_mlag: '330' loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.18/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/DC1-CL1B.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/DC1-CL1B.yml index cd22117de30..8f597a004ef 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/DC1-CL1B.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/DC1-CL1B.yml @@ -451,7 +451,7 @@ route_maps: - ip address prefix-list PL-LOOPBACKS-EVPN-OVERLAY loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.19/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/DC1-LEAF1A.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/DC1-LEAF1A.yml index 45f88e13592..1833cac722b 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/DC1-LEAF1A.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/DC1-LEAF1A.yml @@ -377,7 +377,7 @@ ethernet_interfaces: trunk: tagged loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.42.42/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/DC1-LEAF2A.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/DC1-LEAF2A.yml index 6f4bca3f9f5..dd6523a17fd 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/DC1-LEAF2A.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/DC1-LEAF2A.yml @@ -837,7 +837,7 @@ port_channel_interfaces: trunk: untagged loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.10/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/DC1-LEAF2B.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/DC1-LEAF2B.yml index 5c6ac7b2c0a..b149ad85c3f 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/DC1-LEAF2B.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/DC1-LEAF2B.yml @@ -781,7 +781,7 @@ port_channel_interfaces: trunk: untagged loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.11/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/DC1-SPINE1.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/DC1-SPINE1.yml index bc777cd90c5..1adea78ec91 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/DC1-SPINE1.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/DC1-SPINE1.yml @@ -515,7 +515,7 @@ ethernet_interfaces: ip_address: 10.10.101.8/31 loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.1/32 prefix_lists: diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/DC1-SPINE2.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/DC1-SPINE2.yml index 01249d85dc5..6575e74fa99 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/DC1-SPINE2.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/DC1-SPINE2.yml @@ -426,7 +426,7 @@ ethernet_interfaces: ip_address: 172.31.255.162/31 loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.2/32 prefix_lists: diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/DC1-SPINE3.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/DC1-SPINE3.yml index 58357ab08bd..8f118fde352 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/DC1-SPINE3.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/DC1-SPINE3.yml @@ -422,7 +422,7 @@ ethernet_interfaces: ip_address: 172.31.255.164/31 loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.3/32 prefix_lists: diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/DC1-SPINE4.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/DC1-SPINE4.yml index f64f78309a1..f32bc84939b 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/DC1-SPINE4.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/DC1-SPINE4.yml @@ -416,7 +416,7 @@ ethernet_interfaces: ip_address: 172.31.255.166/31 loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.4/32 prefix_lists: diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/DC1-SVC3A.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/DC1-SVC3A.yml index abf2f656683..28c95efef5f 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/DC1-SVC3A.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/DC1-SVC3A.yml @@ -1535,7 +1535,7 @@ route_maps: type: permit loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.12/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/DC1-SVC3B.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/DC1-SVC3B.yml index 46ad1321664..6328b63a55c 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/DC1-SVC3B.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/DC1-SVC3B.yml @@ -1487,7 +1487,7 @@ route_maps: type: permit loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.13/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/DC1_UNDEPLOYED_LEAF1A.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/DC1_UNDEPLOYED_LEAF1A.yml index 2c5b3681df0..6ddf740af5e 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/DC1_UNDEPLOYED_LEAF1A.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/DC1_UNDEPLOYED_LEAF1A.yml @@ -963,7 +963,7 @@ route_maps: type: permit loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.21/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/DC1_UNDEPLOYED_LEAF1B.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/DC1_UNDEPLOYED_LEAF1B.yml index 7d1e413e0f5..88ab4d36cdb 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/DC1_UNDEPLOYED_LEAF1B.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/DC1_UNDEPLOYED_LEAF1B.yml @@ -963,7 +963,7 @@ route_maps: type: permit loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.22/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/DUP-LEAF1.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/DUP-LEAF1.yml index 21dbb5e5cf4..777b315189b 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/DUP-LEAF1.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/DUP-LEAF1.yml @@ -102,7 +102,7 @@ management_api_http: enable_https: true loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 10.0.0.1/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/DUP-LEAF2.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/DUP-LEAF2.yml index 0ed9326afa8..fadff73d3c9 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/DUP-LEAF2.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/DUP-LEAF2.yml @@ -102,7 +102,7 @@ management_api_http: enable_https: true loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 10.0.0.2/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/EVPN-MULTICAST-DISABLED.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/EVPN-MULTICAST-DISABLED.yml index 1c18f4b43c7..d4b01949cca 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/EVPN-MULTICAST-DISABLED.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/EVPN-MULTICAST-DISABLED.yml @@ -657,7 +657,7 @@ ethernet_interfaces: sparse_mode: true loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.8/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/EVPN-MULTICAST-L3LEAF1A.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/EVPN-MULTICAST-L3LEAF1A.yml index f0b35cd6382..1fdb905d432 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/EVPN-MULTICAST-L3LEAF1A.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/EVPN-MULTICAST-L3LEAF1A.yml @@ -1406,7 +1406,7 @@ route_maps: - ip address prefix-list PL-LOOPBACKS-EVPN-OVERLAY loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.3/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/EVPN-MULTICAST-L3LEAF1B.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/EVPN-MULTICAST-L3LEAF1B.yml index 073c20356ba..f3a4ba8ae88 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/EVPN-MULTICAST-L3LEAF1B.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/EVPN-MULTICAST-L3LEAF1B.yml @@ -1406,7 +1406,7 @@ route_maps: - ip address prefix-list PL-LOOPBACKS-EVPN-OVERLAY loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.4/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/EVPN-MULTICAST-L3LEAF2A.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/EVPN-MULTICAST-L3LEAF2A.yml index 4dbefd3869f..ee72d762beb 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/EVPN-MULTICAST-L3LEAF2A.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/EVPN-MULTICAST-L3LEAF2A.yml @@ -704,7 +704,7 @@ ethernet_interfaces: sparse_mode: true loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.5/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/EVPN-MULTICAST-L3LEAF3A.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/EVPN-MULTICAST-L3LEAF3A.yml index 33dc1397979..35855a98856 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/EVPN-MULTICAST-L3LEAF3A.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/EVPN-MULTICAST-L3LEAF3A.yml @@ -736,7 +736,7 @@ ethernet_interfaces: shutdown: false loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.6/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/EVPN-MULTICAST-L3LEAF3B.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/EVPN-MULTICAST-L3LEAF3B.yml index c8d612d37cb..54112a1f026 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/EVPN-MULTICAST-L3LEAF3B.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/EVPN-MULTICAST-L3LEAF3B.yml @@ -736,7 +736,7 @@ ethernet_interfaces: shutdown: false loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.7/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/EVPN-MULTICAST-SPINE1.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/EVPN-MULTICAST-SPINE1.yml index 92f6b0f7a84..b778fe2d643 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/EVPN-MULTICAST-SPINE1.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/EVPN-MULTICAST-SPINE1.yml @@ -210,7 +210,7 @@ ethernet_interfaces: sparse_mode: true loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.1/32 prefix_lists: diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/IGMP-QUERIER-L3LEAF1A.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/IGMP-QUERIER-L3LEAF1A.yml index 405104f2174..987b3509e3a 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/IGMP-QUERIER-L3LEAF1A.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/IGMP-QUERIER-L3LEAF1A.yml @@ -280,7 +280,7 @@ port_channel_interfaces: vlans: 1-3,11-12,21-23,101-103,111-113,121-123 loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.1/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/MH-LEAF1A.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/MH-LEAF1A.yml index 2e4994035b7..734b8818826 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/MH-LEAF1A.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/MH-LEAF1A.yml @@ -365,7 +365,7 @@ ethernet_interfaces: mode: active loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.33/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/MH-LEAF1B.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/MH-LEAF1B.yml index 83a72da2dbb..9483bddfb87 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/MH-LEAF1B.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/MH-LEAF1B.yml @@ -365,7 +365,7 @@ ethernet_interfaces: mode: active loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.34/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/MH-LEAF2A.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/MH-LEAF2A.yml index 584d4fdd712..745589df888 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/MH-LEAF2A.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/MH-LEAF2A.yml @@ -238,7 +238,7 @@ port_channel_interfaces: vlans: '310' loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.35/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/MLAG-OSPF-L3LEAF1A.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/MLAG-OSPF-L3LEAF1A.yml index b1300a83e57..edf440a8b7c 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/MLAG-OSPF-L3LEAF1A.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/MLAG-OSPF-L3LEAF1A.yml @@ -193,7 +193,7 @@ mlag_configuration: reload_delay_non_mlag: '330' loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.36/32 ospf_area: 0.0.0.0 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/MLAG-OSPF-L3LEAF1B.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/MLAG-OSPF-L3LEAF1B.yml index 9cbc18bdc84..c7f64e805fd 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/MLAG-OSPF-L3LEAF1B.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/MLAG-OSPF-L3LEAF1B.yml @@ -193,7 +193,7 @@ mlag_configuration: reload_delay_non_mlag: '330' loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.37/32 ospf_area: 0.0.0.0 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/MLAG_IPV6_L3LEAF1A.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/MLAG_IPV6_L3LEAF1A.yml index 5bfdb9fce45..681b675bd23 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/MLAG_IPV6_L3LEAF1A.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/MLAG_IPV6_L3LEAF1A.yml @@ -157,7 +157,7 @@ route_maps: - ip address prefix-list PL-LOOPBACKS-EVPN-OVERLAY loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.35/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/MLAG_IPV6_L3LEAF1B.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/MLAG_IPV6_L3LEAF1B.yml index 3d1634a1015..61bbfc01732 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/MLAG_IPV6_L3LEAF1B.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/MLAG_IPV6_L3LEAF1B.yml @@ -157,7 +157,7 @@ route_maps: - ip address prefix-list PL-LOOPBACKS-EVPN-OVERLAY loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.36/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/MLAG_ODD_ID_L3LEAF1A.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/MLAG_ODD_ID_L3LEAF1A.yml index 0e8a96c42af..1d4a98974f1 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/MLAG_ODD_ID_L3LEAF1A.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/MLAG_ODD_ID_L3LEAF1A.yml @@ -171,7 +171,7 @@ route_maps: - ip address prefix-list PL-LOOPBACKS-EVPN-OVERLAY loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.35/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/MLAG_ODD_ID_L3LEAF1B.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/MLAG_ODD_ID_L3LEAF1B.yml index 341284a572e..80ca0e03c11 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/MLAG_ODD_ID_L3LEAF1B.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/MLAG_ODD_ID_L3LEAF1B.yml @@ -169,7 +169,7 @@ route_maps: - ip address prefix-list PL-LOOPBACKS-EVPN-OVERLAY loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.36/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/MLAG_SAME_SUBNET_L3LEAF1A.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/MLAG_SAME_SUBNET_L3LEAF1A.yml index 838f6a274fb..dffc08ffe98 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/MLAG_SAME_SUBNET_L3LEAF1A.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/MLAG_SAME_SUBNET_L3LEAF1A.yml @@ -212,7 +212,7 @@ route_maps: - ip address prefix-list PL-LOOPBACKS-EVPN-OVERLAY loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.32/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/MLAG_SAME_SUBNET_L3LEAF1B.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/MLAG_SAME_SUBNET_L3LEAF1B.yml index 1d46b735486..aa93e8104f4 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/MLAG_SAME_SUBNET_L3LEAF1B.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/MLAG_SAME_SUBNET_L3LEAF1B.yml @@ -212,7 +212,7 @@ route_maps: - ip address prefix-list PL-LOOPBACKS-EVPN-OVERLAY loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.33/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/MLAG_SAME_SUBNET_L3LEAF2A.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/MLAG_SAME_SUBNET_L3LEAF2A.yml index 2cbf28ec6df..22a6bf8f847 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/MLAG_SAME_SUBNET_L3LEAF2A.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/MLAG_SAME_SUBNET_L3LEAF2A.yml @@ -212,7 +212,7 @@ route_maps: - ip address prefix-list PL-LOOPBACKS-EVPN-OVERLAY loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.34/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/MLAG_SAME_SUBNET_L3LEAF2B.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/MLAG_SAME_SUBNET_L3LEAF2B.yml index 56c3c595d74..73b0e89a7ef 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/MLAG_SAME_SUBNET_L3LEAF2B.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/MLAG_SAME_SUBNET_L3LEAF2B.yml @@ -212,7 +212,7 @@ route_maps: - ip address prefix-list PL-LOOPBACKS-EVPN-OVERLAY loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.35/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/OVERLAY_ROUTING_PROTOCOL_CVX_L3LEAF1.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/OVERLAY_ROUTING_PROTOCOL_CVX_L3LEAF1.yml index a09223ef657..0888ebf713d 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/OVERLAY_ROUTING_PROTOCOL_CVX_L3LEAF1.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/OVERLAY_ROUTING_PROTOCOL_CVX_L3LEAF1.yml @@ -48,7 +48,7 @@ management_api_http: enable_https: true loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.254.1/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/OVERLAY_ROUTING_PROTOCOL_CVX_L3LEAF2.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/OVERLAY_ROUTING_PROTOCOL_CVX_L3LEAF2.yml index 771d84a8a82..af927c1bbd8 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/OVERLAY_ROUTING_PROTOCOL_CVX_L3LEAF2.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/OVERLAY_ROUTING_PROTOCOL_CVX_L3LEAF2.yml @@ -48,7 +48,7 @@ management_api_http: enable_https: true loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.254.2/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/OVERLAY_ROUTING_PROTOCOL_HER_L3LEAF1.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/OVERLAY_ROUTING_PROTOCOL_HER_L3LEAF1.yml index c2ccc72a1fe..5df4bf50418 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/OVERLAY_ROUTING_PROTOCOL_HER_L3LEAF1.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/OVERLAY_ROUTING_PROTOCOL_HER_L3LEAF1.yml @@ -48,7 +48,7 @@ management_api_http: enable_https: true loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.254.1/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/OVERLAY_ROUTING_PROTOCOL_HER_L3LEAF2.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/OVERLAY_ROUTING_PROTOCOL_HER_L3LEAF2.yml index 73f72b5b1df..fa2ac593ad4 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/OVERLAY_ROUTING_PROTOCOL_HER_L3LEAF2.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/OVERLAY_ROUTING_PROTOCOL_HER_L3LEAF2.yml @@ -48,7 +48,7 @@ management_api_http: enable_https: true loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.254.2/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/OVERLAY_ROUTING_PROTOCOL_HER_L3LEAF3A.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/OVERLAY_ROUTING_PROTOCOL_HER_L3LEAF3A.yml index 12f196a210b..2fa44596212 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/OVERLAY_ROUTING_PROTOCOL_HER_L3LEAF3A.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/OVERLAY_ROUTING_PROTOCOL_HER_L3LEAF3A.yml @@ -181,7 +181,7 @@ route_maps: - ip address prefix-list PL-LOOPBACKS-EVPN-OVERLAY loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.254.3/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/OVERLAY_ROUTING_PROTOCOL_HER_L3LEAF3B.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/OVERLAY_ROUTING_PROTOCOL_HER_L3LEAF3B.yml index 4a282c4664b..4ec82ebd543 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/OVERLAY_ROUTING_PROTOCOL_HER_L3LEAF3B.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/OVERLAY_ROUTING_PROTOCOL_HER_L3LEAF3B.yml @@ -181,7 +181,7 @@ route_maps: - ip address prefix-list PL-LOOPBACKS-EVPN-OVERLAY loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.254.4/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/OVERRIDE_VTEP_L3LEAF1A.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/OVERRIDE_VTEP_L3LEAF1A.yml index 3d332183699..e18bf1581e4 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/OVERRIDE_VTEP_L3LEAF1A.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/OVERRIDE_VTEP_L3LEAF1A.yml @@ -157,7 +157,7 @@ route_maps: - ip address prefix-list PL-LOOPBACKS-EVPN-OVERLAY loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.35/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/OVERRIDE_VTEP_L3LEAF1B.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/OVERRIDE_VTEP_L3LEAF1B.yml index a5ddf5b1313..e5798a10e04 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/OVERRIDE_VTEP_L3LEAF1B.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/OVERRIDE_VTEP_L3LEAF1B.yml @@ -157,7 +157,7 @@ route_maps: - ip address prefix-list PL-LOOPBACKS-EVPN-OVERLAY loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.36/32 prefix_lists: diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/P2P-UPLINKS-IPV4-PREFIX-LENGTH.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/P2P-UPLINKS-IPV4-PREFIX-LENGTH.yml index 7a860e9179e..993e37cc70d 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/P2P-UPLINKS-IPV4-PREFIX-LENGTH.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/P2P-UPLINKS-IPV4-PREFIX-LENGTH.yml @@ -91,7 +91,7 @@ ethernet_interfaces: ip_address: 10.254.255.254/30 loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 10.254.254.32/32 prefix_lists: diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/RD-RT-ADMIN-SUBFIELD-L3LEAF1.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/RD-RT-ADMIN-SUBFIELD-L3LEAF1.yml index 21a08ef3137..e2578feb143 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/RD-RT-ADMIN-SUBFIELD-L3LEAF1.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/RD-RT-ADMIN-SUBFIELD-L3LEAF1.yml @@ -122,7 +122,7 @@ management_api_http: enable_https: true loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.1/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/RD-RT-ADMIN-SUBFIELD-L3LEAF2.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/RD-RT-ADMIN-SUBFIELD-L3LEAF2.yml index 06933eb062f..dd29dad4e0d 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/RD-RT-ADMIN-SUBFIELD-L3LEAF2.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/RD-RT-ADMIN-SUBFIELD-L3LEAF2.yml @@ -122,7 +122,7 @@ management_api_http: enable_https: true loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.2/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/RD-RT-ADMIN-SUBFIELD-L3LEAF3.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/RD-RT-ADMIN-SUBFIELD-L3LEAF3.yml index fcdc4e77e86..da7b5c3ccc0 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/RD-RT-ADMIN-SUBFIELD-L3LEAF3.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/RD-RT-ADMIN-SUBFIELD-L3LEAF3.yml @@ -122,7 +122,7 @@ management_api_http: enable_https: true loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.3/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/RD-RT-ADMIN-SUBFIELD-L3LEAF4.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/RD-RT-ADMIN-SUBFIELD-L3LEAF4.yml index 25f9f4ca9f0..a23973fd7a2 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/RD-RT-ADMIN-SUBFIELD-L3LEAF4.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/RD-RT-ADMIN-SUBFIELD-L3LEAF4.yml @@ -122,7 +122,7 @@ management_api_http: enable_https: true loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.4/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/RD-RT-ADMIN-SUBFIELD-L3LEAF5.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/RD-RT-ADMIN-SUBFIELD-L3LEAF5.yml index ac012c4642b..ee5a743e240 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/RD-RT-ADMIN-SUBFIELD-L3LEAF5.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/RD-RT-ADMIN-SUBFIELD-L3LEAF5.yml @@ -122,7 +122,7 @@ management_api_http: enable_https: true loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.5/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/RD-RT-ADMIN-SUBFIELD-L3LEAF6.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/RD-RT-ADMIN-SUBFIELD-L3LEAF6.yml index 90ba3b3f0a0..bd60b288e25 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/RD-RT-ADMIN-SUBFIELD-L3LEAF6.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/RD-RT-ADMIN-SUBFIELD-L3LEAF6.yml @@ -122,7 +122,7 @@ management_api_http: enable_https: true loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.6/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/RD-RT-ADMIN-SUBFIELD-L3LEAF7.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/RD-RT-ADMIN-SUBFIELD-L3LEAF7.yml index 1807c156eb9..c17f8ee6cd2 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/RD-RT-ADMIN-SUBFIELD-L3LEAF7.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/RD-RT-ADMIN-SUBFIELD-L3LEAF7.yml @@ -122,7 +122,7 @@ management_api_http: enable_https: true loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.7/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/SVI_PROFILE_NODE_1.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/SVI_PROFILE_NODE_1.yml index 34b1125ee37..19730180bbf 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/SVI_PROFILE_NODE_1.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/SVI_PROFILE_NODE_1.yml @@ -230,7 +230,7 @@ management_api_http: enable_https: true loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.1/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/SVI_PROFILE_NODE_2.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/SVI_PROFILE_NODE_2.yml index d995f607792..887173bf851 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/SVI_PROFILE_NODE_2.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/SVI_PROFILE_NODE_2.yml @@ -102,7 +102,7 @@ management_api_http: enable_https: true loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.1/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/UNDERLAY-MULTICAST-L3LEAF1A.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/UNDERLAY-MULTICAST-L3LEAF1A.yml index b556d0af181..a39579a162c 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/UNDERLAY-MULTICAST-L3LEAF1A.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/UNDERLAY-MULTICAST-L3LEAF1A.yml @@ -228,7 +228,7 @@ route_maps: - ip address prefix-list PL-LOOPBACKS-PIM-RP loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.3/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/UNDERLAY-MULTICAST-L3LEAF1B.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/UNDERLAY-MULTICAST-L3LEAF1B.yml index bd73cb35ba0..53151e5e3f4 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/UNDERLAY-MULTICAST-L3LEAF1B.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/UNDERLAY-MULTICAST-L3LEAF1B.yml @@ -212,7 +212,7 @@ route_maps: - ip address prefix-list PL-LOOPBACKS-PIM-RP loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.4/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/UNDERLAY-MULTICAST-L3LEAF2A.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/UNDERLAY-MULTICAST-L3LEAF2A.yml index 716552f6c10..68feb0367dd 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/UNDERLAY-MULTICAST-L3LEAF2A.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/UNDERLAY-MULTICAST-L3LEAF2A.yml @@ -202,7 +202,7 @@ route_maps: - ip address prefix-list PL-LOOPBACKS-PIM-RP loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.5/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/UNDERLAY-MULTICAST-L3LEAF2B.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/UNDERLAY-MULTICAST-L3LEAF2B.yml index 46a8008ab4b..c6e6b051212 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/UNDERLAY-MULTICAST-L3LEAF2B.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/UNDERLAY-MULTICAST-L3LEAF2B.yml @@ -202,7 +202,7 @@ route_maps: - ip address prefix-list PL-LOOPBACKS-PIM-RP loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.6/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/UNDERLAY-MULTICAST-SPINE1.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/UNDERLAY-MULTICAST-SPINE1.yml index 4827edd6f39..a4734ab7445 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/UNDERLAY-MULTICAST-SPINE1.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/UNDERLAY-MULTICAST-SPINE1.yml @@ -166,7 +166,7 @@ ethernet_interfaces: sparse_mode: true loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.1/32 prefix_lists: diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/UNDERLAY-MULTICAST-SPINE2.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/UNDERLAY-MULTICAST-SPINE2.yml index 51a0e6efca9..e7eb83f7751 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/UNDERLAY-MULTICAST-SPINE2.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/UNDERLAY-MULTICAST-SPINE2.yml @@ -151,7 +151,7 @@ ethernet_interfaces: ip_address: 172.31.255.14/31 loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.2/32 prefix_lists: diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/UNDERLAY_FILTER_PEER_AS_L3LEAF1.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/UNDERLAY_FILTER_PEER_AS_L3LEAF1.yml index 0a0fb9b4239..8eebdb92f3e 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/UNDERLAY_FILTER_PEER_AS_L3LEAF1.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/UNDERLAY_FILTER_PEER_AS_L3LEAF1.yml @@ -76,7 +76,7 @@ ethernet_interfaces: ip_address: 192.168.0.3/31 loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.3/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/UNDERLAY_FILTER_PEER_AS_SPINE1.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/UNDERLAY_FILTER_PEER_AS_SPINE1.yml index 5670c4d2d56..f6f6058c60c 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/UNDERLAY_FILTER_PEER_AS_SPINE1.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/UNDERLAY_FILTER_PEER_AS_SPINE1.yml @@ -64,7 +64,7 @@ ethernet_interfaces: ip_address: 192.168.0.0/31 loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.1/32 prefix_lists: diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/UNDERLAY_FILTER_PEER_AS_SPINE2.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/UNDERLAY_FILTER_PEER_AS_SPINE2.yml index ab4f6a1f1a4..ca087552e02 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/UNDERLAY_FILTER_PEER_AS_SPINE2.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/UNDERLAY_FILTER_PEER_AS_SPINE2.yml @@ -64,7 +64,7 @@ ethernet_interfaces: ip_address: 192.168.0.2/31 loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.2/32 prefix_lists: diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/UPLINK-MLAG-STRUCTURED-CONFIG-L3LEAF1A.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/UPLINK-MLAG-STRUCTURED-CONFIG-L3LEAF1A.yml index ac5ce812efb..93a2a9e54fc 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/UPLINK-MLAG-STRUCTURED-CONFIG-L3LEAF1A.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/UPLINK-MLAG-STRUCTURED-CONFIG-L3LEAF1A.yml @@ -223,7 +223,7 @@ route_maps: - ip address prefix-list PL-LOOPBACKS-EVPN-OVERLAY loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.3/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/UPLINK-MLAG-STRUCTURED-CONFIG-L3LEAF1B.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/UPLINK-MLAG-STRUCTURED-CONFIG-L3LEAF1B.yml index 5b37cfab725..6639ccda457 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/UPLINK-MLAG-STRUCTURED-CONFIG-L3LEAF1B.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/UPLINK-MLAG-STRUCTURED-CONFIG-L3LEAF1B.yml @@ -223,7 +223,7 @@ route_maps: - ip address prefix-list PL-LOOPBACKS-EVPN-OVERLAY loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.4/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/UPLINK-MLAG-STRUCTURED-CONFIG-SPINE1.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/UPLINK-MLAG-STRUCTURED-CONFIG-SPINE1.yml index e81ba11d54d..8a8c062cd00 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/UPLINK-MLAG-STRUCTURED-CONFIG-SPINE1.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/UPLINK-MLAG-STRUCTURED-CONFIG-SPINE1.yml @@ -119,7 +119,7 @@ ethernet_interfaces: sparse_mode: true loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.1/32 prefix_lists: diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/UPLINK_P2P_VRFS_TESTS_LEAF1.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/UPLINK_P2P_VRFS_TESTS_LEAF1.yml index 1760f4ec066..4ee397f2707 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/UPLINK_P2P_VRFS_TESTS_LEAF1.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/UPLINK_P2P_VRFS_TESTS_LEAF1.yml @@ -190,7 +190,7 @@ port_channel_interfaces: vlans: '66' loopback_interfaces: - name: Loopback0 - description: Router_ID + description: ROUTER_ID shutdown: false ip_address: 192.168.42.3/32 vlans: diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/UPLINK_P2P_VRFS_TESTS_SPINE1.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/UPLINK_P2P_VRFS_TESTS_SPINE1.yml index a2e510e1f04..d2d319358b5 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/UPLINK_P2P_VRFS_TESTS_SPINE1.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/UPLINK_P2P_VRFS_TESTS_SPINE1.yml @@ -107,7 +107,7 @@ ethernet_interfaces: ip_address: 10.42.42.8/31 loopback_interfaces: - name: Loopback0 - description: Router_ID + description: ROUTER_ID shutdown: false ip_address: 192.168.42.1/32 metadata: diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/UPLINK_P2P_VRFS_TESTS_SPINE2.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/UPLINK_P2P_VRFS_TESTS_SPINE2.yml index aa88d17658b..a4594becf38 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/UPLINK_P2P_VRFS_TESTS_SPINE2.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/UPLINK_P2P_VRFS_TESTS_SPINE2.yml @@ -107,7 +107,7 @@ ethernet_interfaces: ip_address: 10.42.42.10/31 loopback_interfaces: - name: Loopback0 - description: Router_ID + description: ROUTER_ID shutdown: false ip_address: 192.168.42.2/32 metadata: diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/autovpn-edge-no-default-policy.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/autovpn-edge-no-default-policy.yml index d690c1744a5..c8dd52cef61 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/autovpn-edge-no-default-policy.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/autovpn-edge-no-default-policy.yml @@ -125,7 +125,7 @@ ethernet_interfaces: dhcp_client_accept_default_route: true loopback_interfaces: - name: Loopback0 - description: Router_ID + description: ROUTER_ID shutdown: false ip_address: 192.168.30.1/32 prefix_lists: diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/autovpn-edge.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/autovpn-edge.yml index 0871a315118..cc154f2ec8e 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/autovpn-edge.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/autovpn-edge.yml @@ -121,7 +121,7 @@ ethernet_interfaces: description: MPLS-SP-1_Cat6 loopback_interfaces: - name: Loopback0 - description: Router_ID + description: ROUTER_ID shutdown: false ip_address: 192.168.30.1/32 prefix_lists: diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/autovpn-rr1.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/autovpn-rr1.yml index 377e3e4e1c6..b02e67d9448 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/autovpn-rr1.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/autovpn-rr1.yml @@ -119,7 +119,7 @@ ethernet_interfaces: dhcp_client_accept_default_route: true loopback_interfaces: - name: Loopback0 - description: Router_ID + description: ROUTER_ID shutdown: false ip_address: 192.168.31.1/32 prefix_lists: diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/autovpn-rr2.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/autovpn-rr2.yml index e2ebddff810..3a81c6c9982 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/autovpn-rr2.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/autovpn-rr2.yml @@ -118,7 +118,7 @@ ethernet_interfaces: description: ATT_888 loopback_interfaces: - name: Loopback0 - description: Router_ID + description: ROUTER_ID shutdown: false ip_address: 192.168.31.2/32 prefix_lists: diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/bgp-from-network-services-1.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/bgp-from-network-services-1.yml index d79d9172935..b418b7c663c 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/bgp-from-network-services-1.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/bgp-from-network-services-1.yml @@ -128,7 +128,7 @@ mlag_configuration: reload_delay_non_mlag: '330' loopback_interfaces: - name: Loopback0 - description: Router_ID + description: ROUTER_ID shutdown: false ip_address: 192.0.255.1/32 ip_igmp_snooping: diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/bgp-from-network-services-2.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/bgp-from-network-services-2.yml index 4bc94c30c4d..328e2c0b016 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/bgp-from-network-services-2.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/bgp-from-network-services-2.yml @@ -73,7 +73,7 @@ mlag_configuration: reload_delay_non_mlag: '330' loopback_interfaces: - name: Loopback0 - description: Router_ID + description: ROUTER_ID shutdown: false ip_address: 192.0.255.2/32 ip_igmp_snooping: diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/bgp-options.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/bgp-options.yml index 4fb5f14f92b..a078a956be1 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/bgp-options.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/bgp-options.yml @@ -65,7 +65,7 @@ management_api_http: enable_https: true loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 10.10.10.1/32 prefix_lists: diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/bgp-peer-groups-1.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/bgp-peer-groups-1.yml index 468bd18c52a..fb5a8de853b 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/bgp-peer-groups-1.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/bgp-peer-groups-1.yml @@ -158,7 +158,7 @@ route_maps: - extcommunity soo 192.168.254.111:1 additive loopback_interfaces: - name: Loopback0 - description: MPLS_Overlay_peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.111/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/bgp-peer-groups-2.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/bgp-peer-groups-2.yml index b990470df24..e61366b7106 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/bgp-peer-groups-2.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/bgp-peer-groups-2.yml @@ -157,7 +157,7 @@ route_maps: - ip address prefix-list PL-LOOPBACKS-EVPN-OVERLAY loopback_interfaces: - name: Loopback0 - description: MPLS_Overlay_peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.112/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/bgp-peer-groups-3.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/bgp-peer-groups-3.yml index aa4a293bca6..2815a65d6b9 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/bgp-peer-groups-3.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/bgp-peer-groups-3.yml @@ -78,7 +78,7 @@ management_api_http: enable_https: true loopback_interfaces: - name: Loopback0 - description: MPLS_Overlay_peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.114/32 isis_enable: CORE diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/core-1-isis-sr-ldp.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/core-1-isis-sr-ldp.yml index 55c05a4ff61..86e0c4d5241 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/core-1-isis-sr-ldp.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/core-1-isis-sr-ldp.yml @@ -29,7 +29,7 @@ management_api_http: enable_https: true loopback_interfaces: - name: Loopback0 - description: LSR_Router_ID + description: ROUTER_ID shutdown: false ip_address: 10.0.0.1/32 ipv6_address: 2000:1234:ffff:ffff::1/128 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/core-2-ospf-ldp.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/core-2-ospf-ldp.yml index ba377cd44d9..72929deb6a6 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/core-2-ospf-ldp.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/core-2-ospf-ldp.yml @@ -29,7 +29,7 @@ management_api_http: enable_https: true loopback_interfaces: - name: Loopback0 - description: LSR_Router_ID + description: ROUTER_ID shutdown: false ip_address: 10.0.0.2/32 ipv6_address: 2000:1234:ffff:ffff::2/128 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/core-3-isis-sr-ldp.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/core-3-isis-sr-ldp.yml index 18b5f955024..f48a212d8cf 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/core-3-isis-sr-ldp.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/core-3-isis-sr-ldp.yml @@ -29,7 +29,7 @@ management_api_http: enable_https: true loopback_interfaces: - name: Loopback0 - description: LSR_Router_ID + description: ROUTER_ID shutdown: false ip_address: 10.0.0.3/32 ipv6_address: 2000:1234:ffff:ffff::3/128 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/core-4-multicast.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/core-4-multicast.yml index e3620183cce..c12b1fc9dd8 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/core-4-multicast.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/core-4-multicast.yml @@ -78,7 +78,7 @@ management_api_http: enable_https: true loopback_interfaces: - name: Loopback0 - description: LSR_Router_ID + description: ROUTER_ID shutdown: false ip_address: 10.0.0.4/32 ipv6_address: 2000:1234:ffff:ffff::4/128 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/cv-pathfinder-custom-control-plane-policy-edge-1.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/cv-pathfinder-custom-control-plane-policy-edge-1.yml index ed9eb651976..58d29b537c3 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/cv-pathfinder-custom-control-plane-policy-edge-1.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/cv-pathfinder-custom-control-plane-policy-edge-1.yml @@ -145,7 +145,7 @@ ethernet_interfaces: dhcp_client_accept_default_route: true loopback_interfaces: - name: Loopback0 - description: Router_ID + description: ROUTER_ID shutdown: false ip_address: 192.168.42.1/32 prefix_lists: diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/cv-pathfinder-custom-control-plane-policy-edge-2.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/cv-pathfinder-custom-control-plane-policy-edge-2.yml index 7abd29e7d9b..bc65ffb0f41 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/cv-pathfinder-custom-control-plane-policy-edge-2.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/cv-pathfinder-custom-control-plane-policy-edge-2.yml @@ -145,7 +145,7 @@ ethernet_interfaces: dhcp_client_accept_default_route: true loopback_interfaces: - name: Loopback0 - description: Router_ID + description: ROUTER_ID shutdown: false ip_address: 192.168.42.2/32 prefix_lists: diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/cv-pathfinder-custom-control-plane-policy-edge-3.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/cv-pathfinder-custom-control-plane-policy-edge-3.yml index 5ffed4dd923..069cfb6b11a 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/cv-pathfinder-custom-control-plane-policy-edge-3.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/cv-pathfinder-custom-control-plane-policy-edge-3.yml @@ -145,7 +145,7 @@ ethernet_interfaces: dhcp_client_accept_default_route: true loopback_interfaces: - name: Loopback0 - description: Router_ID + description: ROUTER_ID shutdown: false ip_address: 192.168.42.3/32 prefix_lists: diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/cv-pathfinder-custom-control-plane-policy-pathfinder-1.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/cv-pathfinder-custom-control-plane-policy-pathfinder-1.yml index 113bc84eaef..050e55fe5e2 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/cv-pathfinder-custom-control-plane-policy-pathfinder-1.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/cv-pathfinder-custom-control-plane-policy-pathfinder-1.yml @@ -158,7 +158,7 @@ ethernet_interfaces: description: Another-ISP_999 loopback_interfaces: - name: Loopback0 - description: Router_ID + description: ROUTER_ID shutdown: false ip_address: 192.168.44.1/32 prefix_lists: diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/cv-pathfinder-edge-custom-default-policy.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/cv-pathfinder-edge-custom-default-policy.yml index 2c0e54b50fc..c2fa905cae0 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/cv-pathfinder-edge-custom-default-policy.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/cv-pathfinder-edge-custom-default-policy.yml @@ -131,7 +131,7 @@ ethernet_interfaces: description: Comcast-5G_AF830 loopback_interfaces: - name: Loopback0 - description: Router_ID + description: ROUTER_ID shutdown: false ip_address: 192.168.42.1/32 prefix_lists: diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/cv-pathfinder-edge-no-default-policy.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/cv-pathfinder-edge-no-default-policy.yml index 30c820dd45a..c29b947fd31 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/cv-pathfinder-edge-no-default-policy.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/cv-pathfinder-edge-no-default-policy.yml @@ -148,7 +148,7 @@ ethernet_interfaces: description: Comcast-5G_AF830 loopback_interfaces: - name: Loopback0 - description: Router_ID + description: ROUTER_ID shutdown: false ip_address: 192.168.42.1/32 prefix_lists: diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/cv-pathfinder-edge.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/cv-pathfinder-edge.yml index 451dcc3f482..9668bbfa4fb 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/cv-pathfinder-edge.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/cv-pathfinder-edge.yml @@ -261,7 +261,7 @@ ethernet_interfaces: description: Comcast-5G_AF830 loopback_interfaces: - name: Loopback0 - description: Router_ID + description: ROUTER_ID shutdown: false ip_address: 192.168.42.1/32 prefix_lists: diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/cv-pathfinder-edge1.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/cv-pathfinder-edge1.yml index 675436f3d58..d4188a75ea1 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/cv-pathfinder-edge1.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/cv-pathfinder-edge1.yml @@ -266,7 +266,7 @@ ethernet_interfaces: shutdown: false loopback_interfaces: - name: Loopback0 - description: Router_ID + description: ROUTER_ID shutdown: false ip_address: 192.168.42.2/32 prefix_lists: diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/cv-pathfinder-edge2A.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/cv-pathfinder-edge2A.yml index cef7f41beb1..672e3e11225 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/cv-pathfinder-edge2A.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/cv-pathfinder-edge2A.yml @@ -300,7 +300,7 @@ ethernet_interfaces: dhcp_client_accept_default_route: true loopback_interfaces: - name: Loopback0 - description: Router_ID + description: ROUTER_ID shutdown: false ip_address: 192.168.42.2/32 as_path: diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/cv-pathfinder-edge2B.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/cv-pathfinder-edge2B.yml index 7dfd20ab421..986ee46c815 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/cv-pathfinder-edge2B.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/cv-pathfinder-edge2B.yml @@ -299,7 +299,7 @@ ethernet_interfaces: description: Colt_10423 loopback_interfaces: - name: Loopback0 - description: Router_ID + description: ROUTER_ID shutdown: false ip_address: 192.168.42.3/32 as_path: diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/cv-pathfinder-edge3A.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/cv-pathfinder-edge3A.yml index cd2eaee9191..01f4d076ded 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/cv-pathfinder-edge3A.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/cv-pathfinder-edge3A.yml @@ -167,7 +167,7 @@ ethernet_interfaces: flow_tracker: null loopback_interfaces: - name: Loopback0 - description: Router_ID + description: ROUTER_ID shutdown: false ip_address: 192.168.42.6/32 prefix_lists: diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/cv-pathfinder-edge3B.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/cv-pathfinder-edge3B.yml index 9b0bf99d9eb..d3cfbbcc190 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/cv-pathfinder-edge3B.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/cv-pathfinder-edge3B.yml @@ -166,7 +166,7 @@ ethernet_interfaces: flow_tracker: null loopback_interfaces: - name: Loopback0 - description: Router_ID + description: ROUTER_ID shutdown: false ip_address: 192.168.42.7/32 prefix_lists: diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/cv-pathfinder-pathfinder.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/cv-pathfinder-pathfinder.yml index f1f641bc8c3..38f5cda79f3 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/cv-pathfinder-pathfinder.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/cv-pathfinder-pathfinder.yml @@ -130,7 +130,7 @@ ethernet_interfaces: description: Another-ISP_999 loopback_interfaces: - name: Loopback0 - description: Router_ID + description: ROUTER_ID shutdown: false ip_address: 192.168.44.1/32 prefix_lists: diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/cv-pathfinder-pathfinder1.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/cv-pathfinder-pathfinder1.yml index 3d8ab5df3ae..bd524c9185e 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/cv-pathfinder-pathfinder1.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/cv-pathfinder-pathfinder1.yml @@ -150,7 +150,7 @@ ethernet_interfaces: description: Orange_888 loopback_interfaces: - name: Loopback0 - description: Router_ID + description: ROUTER_ID shutdown: false ip_address: 192.168.44.2/32 prefix_lists: diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/cv-pathfinder-pathfinder2.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/cv-pathfinder-pathfinder2.yml index b958bc92b61..b380df70a05 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/cv-pathfinder-pathfinder2.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/cv-pathfinder-pathfinder2.yml @@ -156,7 +156,7 @@ ethernet_interfaces: description: ATT-MPLS_10999 loopback_interfaces: - name: Loopback0 - description: Router_ID + description: ROUTER_ID shutdown: false ip_address: 192.168.44.3/32 prefix_lists: diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/cv-pathfinder-transit1A.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/cv-pathfinder-transit1A.yml index 57c2bfceb84..c5ff8d769be 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/cv-pathfinder-transit1A.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/cv-pathfinder-transit1A.yml @@ -283,7 +283,7 @@ ethernet_interfaces: shutdown: false loopback_interfaces: - name: Loopback0 - description: Router_ID + description: ROUTER_ID shutdown: false ip_address: 192.168.43.1/32 as_path: diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/cv-pathfinder-transit1B.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/cv-pathfinder-transit1B.yml index a23506c9573..bde9ceb38e1 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/cv-pathfinder-transit1B.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/cv-pathfinder-transit1B.yml @@ -281,7 +281,7 @@ ethernet_interfaces: shutdown: false loopback_interfaces: - name: Loopback0 - description: Router_ID + description: ROUTER_ID shutdown: false ip_address: 192.168.43.2/32 as_path: diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/cvp-instance-ips-cvaas.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/cvp-instance-ips-cvaas.yml index 533622ab206..7c21a6504f5 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/cvp-instance-ips-cvaas.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/cvp-instance-ips-cvaas.yml @@ -75,7 +75,7 @@ management_api_http: enable_https: true loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 1.2.3.1/32 prefix_lists: diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/default_overlay_protocol_cvx.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/default_overlay_protocol_cvx.yml index 699c4ee9791..a8c46ed0265 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/default_overlay_protocol_cvx.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/default_overlay_protocol_cvx.yml @@ -47,7 +47,7 @@ management_api_http: enable_https: true loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.0.42/32 prefix_lists: diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/default_overlay_protocol_her.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/default_overlay_protocol_her.yml index 1fe54476b01..4700ac27779 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/default_overlay_protocol_her.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/default_overlay_protocol_her.yml @@ -47,7 +47,7 @@ management_api_http: enable_https: true loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.0.42/32 prefix_lists: diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/device.with.dots.in.hostname.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/device.with.dots.in.hostname.yml index f1ffa57bd60..d656bf99049 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/device.with.dots.in.hostname.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/device.with.dots.in.hostname.yml @@ -65,7 +65,7 @@ management_api_http: enable_https: true loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 1.2.3.1/32 prefix_lists: diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/downlink-pools-l3leaf1.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/downlink-pools-l3leaf1.yml index b466e87393b..816e26225ca 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/downlink-pools-l3leaf1.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/downlink-pools-l3leaf1.yml @@ -93,7 +93,7 @@ ethernet_interfaces: ip_address: 10.0.1.3/31 loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.1.10/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/downlink-pools-l3leaf2.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/downlink-pools-l3leaf2.yml index bac9bd127df..897c2c64279 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/downlink-pools-l3leaf2.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/downlink-pools-l3leaf2.yml @@ -93,7 +93,7 @@ ethernet_interfaces: ip_address: 10.0.2.3/31 loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.1.20/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/downlink-pools-l3leaf3.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/downlink-pools-l3leaf3.yml index ebac94439d6..40c6c2a5fd3 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/downlink-pools-l3leaf3.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/downlink-pools-l3leaf3.yml @@ -126,7 +126,7 @@ ethernet_interfaces: ip_address: 10.0.4.5/31 loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.1.30/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/downlink-pools-l3leaf4.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/downlink-pools-l3leaf4.yml index 2a969338c13..001b5fce6dd 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/downlink-pools-l3leaf4.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/downlink-pools-l3leaf4.yml @@ -126,7 +126,7 @@ ethernet_interfaces: ip_address: 10.0.4.7/31 loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.1.40/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/downlink-pools-spine1.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/downlink-pools-spine1.yml index 16cf27f83bc..59d8e577eda 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/downlink-pools-spine1.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/downlink-pools-spine1.yml @@ -162,7 +162,7 @@ ethernet_interfaces: ip_address: 10.0.3.18/31 loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.0.10/32 prefix_lists: diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/downlink-pools-spine2.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/downlink-pools-spine2.yml index 9faad6ea626..ccbda798813 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/downlink-pools-spine2.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/downlink-pools-spine2.yml @@ -162,7 +162,7 @@ ethernet_interfaces: ip_address: 10.0.4.6/31 loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.0.20/32 prefix_lists: diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/duplicate-vrfs.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/duplicate-vrfs.yml index c53e4fc3acd..e864c69faf2 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/duplicate-vrfs.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/duplicate-vrfs.yml @@ -93,7 +93,7 @@ management_api_http: enable_https: true loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.101/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/evpn-to-ipvpn-gateway.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/evpn-to-ipvpn-gateway.yml index 19771a3bc43..18ea8d54dcd 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/evpn-to-ipvpn-gateway.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/evpn-to-ipvpn-gateway.yml @@ -116,7 +116,7 @@ management_api_http: enable_https: true loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 10.10.0.1/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/evpn-vtep-with-default-vrf-not-evpn.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/evpn-vtep-with-default-vrf-not-evpn.yml index c4bfdcf2bcc..de34bb28ccc 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/evpn-vtep-with-default-vrf-not-evpn.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/evpn-vtep-with-default-vrf-not-evpn.yml @@ -67,7 +67,7 @@ management_api_http: enable_https: true loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.109/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/evpn_services_l2_only_false.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/evpn_services_l2_only_false.yml index 6143ae99809..ffc51d82f07 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/evpn_services_l2_only_false.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/evpn_services_l2_only_false.yml @@ -466,7 +466,7 @@ snmp_server: location: EOS_DESIGNS_UNIT_TESTS evpn_services_l2_only_false loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.109/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/evpn_services_l2_only_true.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/evpn_services_l2_only_true.yml index f40ea733faf..b2827de567f 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/evpn_services_l2_only_true.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/evpn_services_l2_only_true.yml @@ -257,7 +257,7 @@ snmp_server: location: EOS_DESIGNS_UNIT_TESTS evpn_services_l2_only_true loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.109/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/evpn_vlan_bundle.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/evpn_vlan_bundle.yml index 005c075c59c..08fc635a4d3 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/evpn_vlan_bundle.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/evpn_vlan_bundle.yml @@ -204,7 +204,7 @@ management_api_http: enable_https: true loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 10.10.0.3/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/evpn_vlan_bundle_svi_l2vlan.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/evpn_vlan_bundle_svi_l2vlan.yml index 0c9caeebac8..50298fdb117 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/evpn_vlan_bundle_svi_l2vlan.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/evpn_vlan_bundle_svi_l2vlan.yml @@ -110,7 +110,7 @@ management_api_http: enable_https: true loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 10.10.0.3/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/filter.vrfs.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/filter.vrfs.yml index 073d5c79d20..f27139e0299 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/filter.vrfs.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/filter.vrfs.yml @@ -66,7 +66,7 @@ management_api_http: enable_https: true loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 10.0.0.1/32 - name: Loopback2 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/flow-tracking-tests-leaf1.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/flow-tracking-tests-leaf1.yml index b56300bbc48..80ac8f723e8 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/flow-tracking-tests-leaf1.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/flow-tracking-tests-leaf1.yml @@ -216,7 +216,7 @@ ethernet_interfaces: hardware: FLOW-TRACKER loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 10.254.1.1/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/flow-tracking-tests-leaf2.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/flow-tracking-tests-leaf2.yml index 98d757ba3fe..248f04742e8 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/flow-tracking-tests-leaf2.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/flow-tracking-tests-leaf2.yml @@ -206,7 +206,7 @@ ethernet_interfaces: vlans: '11' loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 10.254.1.2/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/flow-tracking-tests-leaf3.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/flow-tracking-tests-leaf3.yml index 20d9b1c7f04..b3c0ee951ec 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/flow-tracking-tests-leaf3.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/flow-tracking-tests-leaf3.yml @@ -369,7 +369,7 @@ route_maps: - ip address prefix-list PL-L2LEAF-INBAND-MGMT loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 10.254.1.5/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/flow-tracking-tests-leaf4.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/flow-tracking-tests-leaf4.yml index 1f6e630355d..4b4a2b4fc06 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/flow-tracking-tests-leaf4.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/flow-tracking-tests-leaf4.yml @@ -369,7 +369,7 @@ route_maps: - ip address prefix-list PL-L2LEAF-INBAND-MGMT loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 10.254.1.6/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/flow-tracking-tests-spine1.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/flow-tracking-tests-spine1.yml index d33fc270c97..70671586236 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/flow-tracking-tests-spine1.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/flow-tracking-tests-spine1.yml @@ -235,7 +235,7 @@ ethernet_interfaces: sampled: FLOW-TRACKER loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 10.255.0.1/32 prefix_lists: diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/flow-tracking-tests-spine2.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/flow-tracking-tests-spine2.yml index 612be33595f..8d4272c99b8 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/flow-tracking-tests-spine2.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/flow-tracking-tests-spine2.yml @@ -231,7 +231,7 @@ ethernet_interfaces: mtu: 9214 loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 10.255.0.2/32 prefix_lists: diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/generate-cv-tags-1.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/generate-cv-tags-1.yml index 4ce1333c859..0d40db92990 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/generate-cv-tags-1.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/generate-cv-tags-1.yml @@ -69,7 +69,7 @@ ethernet_interfaces: description: Test interface loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 10.10.255.1/32 prefix_lists: diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/generate-cv-tags-2.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/generate-cv-tags-2.yml index 7518b6b2090..12d322ddfcb 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/generate-cv-tags-2.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/generate-cv-tags-2.yml @@ -61,7 +61,7 @@ management_api_http: enable_https: true loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 10.10.255.1/32 prefix_lists: diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/inband-mgmt-parent-dualstack1.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/inband-mgmt-parent-dualstack1.yml index 9ddaeddadfb..79b347d4931 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/inband-mgmt-parent-dualstack1.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/inband-mgmt-parent-dualstack1.yml @@ -353,7 +353,7 @@ route_maps: - ipv6 address prefix-list IPv6-PL-L2LEAF-INBAND-MGMT loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 10.0.255.3/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/inband-mgmt-parent-dualstack2.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/inband-mgmt-parent-dualstack2.yml index 5bc427511d1..2cb8c0062fa 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/inband-mgmt-parent-dualstack2.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/inband-mgmt-parent-dualstack2.yml @@ -353,7 +353,7 @@ route_maps: - ipv6 address prefix-list IPv6-PL-L2LEAF-INBAND-MGMT loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 10.0.255.4/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/inband-mgmt-parent-ipv6-1.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/inband-mgmt-parent-ipv6-1.yml index 81901cdcd03..bd297c18404 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/inband-mgmt-parent-ipv6-1.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/inband-mgmt-parent-ipv6-1.yml @@ -304,7 +304,7 @@ route_maps: - ipv6 address prefix-list IPv6-PL-L2LEAF-INBAND-MGMT loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 10.0.255.5/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/inband-mgmt-parent-ipv6-2.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/inband-mgmt-parent-ipv6-2.yml index 63a6beac9f8..cf60ad1ec13 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/inband-mgmt-parent-ipv6-2.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/inband-mgmt-parent-ipv6-2.yml @@ -302,7 +302,7 @@ route_maps: - ip address prefix-list PL-LOOPBACKS-EVPN-OVERLAY loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 10.0.255.6/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/inband-mgmt-parent-vrf.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/inband-mgmt-parent-vrf.yml index 12502eafa10..6146d9297fb 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/inband-mgmt-parent-vrf.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/inband-mgmt-parent-vrf.yml @@ -166,7 +166,7 @@ port_channel_interfaces: lacp_fallback_timeout: 30 loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 10.0.255.2/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/inband-mgmt-parent.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/inband-mgmt-parent.yml index 57609861c4d..c9476402ba0 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/inband-mgmt-parent.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/inband-mgmt-parent.yml @@ -167,7 +167,7 @@ port_channel_interfaces: lacp_fallback_timeout: 30 loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 10.0.255.1/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/ipv4-acls.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/ipv4-acls.yml index 3ac81f84c68..f8400243f94 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/ipv4-acls.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/ipv4-acls.yml @@ -109,7 +109,7 @@ ethernet_interfaces: shutdown: false loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.0.1/32 prefix_lists: diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/isis-system-id-format-using-node-id.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/isis-system-id-format-using-node-id.yml index 92ea4ff1d1b..92f664f30b9 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/isis-system-id-format-using-node-id.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/isis-system-id-format-using-node-id.yml @@ -52,7 +52,7 @@ management_api_http: enable_https: true loopback_interfaces: - name: Loopback0 - description: MPLS_Overlay_peering + description: ROUTER_ID shutdown: false ip_address: 172.28.4.99/32 isis_enable: CORE diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/isis-system-id-format-using-underlay-loopback.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/isis-system-id-format-using-underlay-loopback.yml index dca3ed359ee..91bdc00e58e 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/isis-system-id-format-using-underlay-loopback.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/isis-system-id-format-using-underlay-loopback.yml @@ -52,7 +52,7 @@ management_api_http: enable_https: true loopback_interfaces: - name: Loopback0 - description: MPLS_Overlay_peering + description: ROUTER_ID shutdown: false ip_address: 172.28.4.99/32 isis_enable: CORE diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/l3_edge_bgp.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/l3_edge_bgp.yml index 680e3568334..b9f01c620c6 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/l3_edge_bgp.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/l3_edge_bgp.yml @@ -73,7 +73,7 @@ management_api_http: enable_https: true loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 1.2.3.1/32 prefix_lists: diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/l3_edge_isis.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/l3_edge_isis.yml index 724338de3ff..b96a4808362 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/l3_edge_isis.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/l3_edge_isis.yml @@ -24,7 +24,7 @@ management_api_http: enable_https: true loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 1.2.3.1/32 isis_enable: EVPN_UNDERLAY diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/l3_edge_multicast.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/l3_edge_multicast.yml index 3aebe3849fe..95e71ab9ba3 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/l3_edge_multicast.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/l3_edge_multicast.yml @@ -27,7 +27,7 @@ management_api_http: enable_https: true loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 1.2.3.1/32 ospf_area: 0.0.0.0 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/l3_edge_ospf.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/l3_edge_ospf.yml index 08f03fb6dc0..a6f25e8f2c0 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/l3_edge_ospf.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/l3_edge_ospf.yml @@ -24,7 +24,7 @@ management_api_http: enable_https: true loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 1.2.3.1/32 ospf_area: 0.0.0.0 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/node-type-l3-interfaces.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/node-type-l3-interfaces.yml index f518b0cde49..d16ed441274 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/node-type-l3-interfaces.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/node-type-l3-interfaces.yml @@ -85,7 +85,7 @@ ethernet_interfaces: type: routed loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 1.2.3.1/32 prefix_lists: diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/override_uplink_type-d.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/override_uplink_type-d.yml index d999d1dd2cd..75714f2a9f7 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/override_uplink_type-d.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/override_uplink_type-d.yml @@ -42,6 +42,6 @@ port_channel_interfaces: vlans: none loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.42.2/32 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/override_uplink_type-u.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/override_uplink_type-u.yml index a3672645919..fc605c3c3e9 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/override_uplink_type-u.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/override_uplink_type-u.yml @@ -80,7 +80,7 @@ port_channel_interfaces: vlans: none loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.42.1/32 prefix_lists: diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/ptp-tests-leaf1.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/ptp-tests-leaf1.yml index ebda72a6719..1743f17135c 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/ptp-tests-leaf1.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/ptp-tests-leaf1.yml @@ -441,7 +441,7 @@ route_maps: - ip address prefix-list PL-LOOPBACKS-EVPN-OVERLAY loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 10.254.1.1/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/ptp-tests-leaf2.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/ptp-tests-leaf2.yml index 8ebb8d298a1..73c5140cc10 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/ptp-tests-leaf2.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/ptp-tests-leaf2.yml @@ -414,7 +414,7 @@ route_maps: - ip address prefix-list PL-LOOPBACKS-EVPN-OVERLAY loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 10.254.1.2/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/ptp-tests-spine1.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/ptp-tests-spine1.yml index d7d963e700b..3c88f642b60 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/ptp-tests-spine1.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/ptp-tests-spine1.yml @@ -264,7 +264,7 @@ ethernet_interfaces: enable: true loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 10.255.0.1/32 prefix_lists: diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/ptp-tests-spine2.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/ptp-tests-spine2.yml index 6e08b5cb58b..d4209daeb3f 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/ptp-tests-spine2.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/ptp-tests-spine2.yml @@ -105,7 +105,7 @@ ptp: sync: 14 loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 10.255.0.2/32 prefix_lists: diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/ptp-tests-spine3.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/ptp-tests-spine3.yml index 4c05fca9efd..762f9269997 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/ptp-tests-spine3.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/ptp-tests-spine3.yml @@ -91,7 +91,7 @@ ptp: sync: 3 loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 10.255.0.3/32 prefix_lists: diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/sflow-tests-leaf1.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/sflow-tests-leaf1.yml index 41734e90a4c..60143644c2d 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/sflow-tests-leaf1.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/sflow-tests-leaf1.yml @@ -172,7 +172,7 @@ ethernet_interfaces: enable: true loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 10.254.1.1/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/sflow-tests-leaf2.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/sflow-tests-leaf2.yml index 7ef77f15176..e4c0f0d9725 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/sflow-tests-leaf2.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/sflow-tests-leaf2.yml @@ -139,7 +139,7 @@ ethernet_interfaces: ip_address: 10.254.2.7/31 loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 10.254.1.2/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/sflow-tests-leaf3.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/sflow-tests-leaf3.yml index 155d74a7edd..9069ccb319c 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/sflow-tests-leaf3.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/sflow-tests-leaf3.yml @@ -353,7 +353,7 @@ route_maps: - ip address prefix-list PL-L2LEAF-INBAND-MGMT loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 10.254.1.5/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/sflow-tests-leaf4.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/sflow-tests-leaf4.yml index 61598a879da..3bd515a0a9d 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/sflow-tests-leaf4.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/sflow-tests-leaf4.yml @@ -353,7 +353,7 @@ route_maps: - ip address prefix-list PL-L2LEAF-INBAND-MGMT loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 10.254.1.6/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/sflow-tests-spine1.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/sflow-tests-spine1.yml index fe2b39b2777..4fccb7f6a2e 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/sflow-tests-spine1.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/sflow-tests-spine1.yml @@ -283,7 +283,7 @@ ethernet_interfaces: enable: true loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 10.255.0.1/32 prefix_lists: diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/sflow-tests-spine2.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/sflow-tests-spine2.yml index bc245079042..6920a4f6259 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/sflow-tests-spine2.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/sflow-tests-spine2.yml @@ -73,7 +73,7 @@ management_api_http: enable_https: true loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 10.255.0.2/32 prefix_lists: diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/site-ha-disabled-leaf.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/site-ha-disabled-leaf.yml index 64d8b832823..b058f4e0790 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/site-ha-disabled-leaf.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/site-ha-disabled-leaf.yml @@ -269,7 +269,7 @@ ethernet_interfaces: ip_address: 172.17.0.2/31 loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.45.4/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/site-ha-enabled-leaf1.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/site-ha-enabled-leaf1.yml index f4f8b973064..07d76da608d 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/site-ha-enabled-leaf1.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/site-ha-enabled-leaf1.yml @@ -269,7 +269,7 @@ ethernet_interfaces: ip_address: 172.17.0.2/31 loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.45.1/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/site-ha-enabled-leaf2A.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/site-ha-enabled-leaf2A.yml index 82b0a641b94..d0fc4ba80b1 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/site-ha-enabled-leaf2A.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/site-ha-enabled-leaf2A.yml @@ -269,7 +269,7 @@ ethernet_interfaces: ip_address: 172.17.0.8/31 loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.45.2/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/site-ha-enabled-leaf2B.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/site-ha-enabled-leaf2B.yml index 48b18cfaa53..b470635e510 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/site-ha-enabled-leaf2B.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/site-ha-enabled-leaf2B.yml @@ -269,7 +269,7 @@ ethernet_interfaces: ip_address: 172.17.0.10/31 loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.45.3/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/trunk-group-tests-l3leaf1a.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/trunk-group-tests-l3leaf1a.yml index b7749cffc0a..2e27e9e9fc8 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/trunk-group-tests-l3leaf1a.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/trunk-group-tests-l3leaf1a.yml @@ -539,7 +539,7 @@ route_maps: - ip address prefix-list PL-LOOPBACKS-EVPN-OVERLAY loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.250.9/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/trunk-group-tests-l3leaf1b.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/trunk-group-tests-l3leaf1b.yml index 46bdea56e09..dff400f4e7c 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/trunk-group-tests-l3leaf1b.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/trunk-group-tests-l3leaf1b.yml @@ -516,7 +516,7 @@ route_maps: - ip address prefix-list PL-LOOPBACKS-EVPN-OVERLAY loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.250.10/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/trunk-group-tests-l3leaf2a.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/trunk-group-tests-l3leaf2a.yml index 6305217a154..88cf59e6ebb 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/trunk-group-tests-l3leaf2a.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/trunk-group-tests-l3leaf2a.yml @@ -250,7 +250,7 @@ route_maps: - ip address prefix-list PL-LOOPBACKS-EVPN-OVERLAY loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.250.11/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/trunk-group-tests-l3leaf2b.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/trunk-group-tests-l3leaf2b.yml index 87da004184a..6a3d8493e79 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/trunk-group-tests-l3leaf2b.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/trunk-group-tests-l3leaf2b.yml @@ -245,7 +245,7 @@ route_maps: - ip address prefix-list PL-LOOPBACKS-EVPN-OVERLAY loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.250.12/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/underlay_filter_peer_as_evpn_1.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/underlay_filter_peer_as_evpn_1.yml index 00ee49d76d1..b44f93e594f 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/underlay_filter_peer_as_evpn_1.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/underlay_filter_peer_as_evpn_1.yml @@ -100,7 +100,7 @@ ethernet_interfaces: ip_address: 192.168.153.3/31 loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.1/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/underlay_filter_peer_as_evpn_2.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/underlay_filter_peer_as_evpn_2.yml index 16876fc776d..2574774c1c9 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/underlay_filter_peer_as_evpn_2.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/underlay_filter_peer_as_evpn_2.yml @@ -81,7 +81,7 @@ ethernet_interfaces: ip_address: 192.168.153.0/31 loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.2/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/underlay_filter_peer_as_evpn_3.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/underlay_filter_peer_as_evpn_3.yml index d703dcebc2e..648cae41574 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/underlay_filter_peer_as_evpn_3.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/underlay_filter_peer_as_evpn_3.yml @@ -81,7 +81,7 @@ ethernet_interfaces: ip_address: 192.168.153.2/31 loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.3/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/uplink_lan_wan_router1.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/uplink_lan_wan_router1.yml index 9aedfceb530..fb11fa2ed7a 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/uplink_lan_wan_router1.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/uplink_lan_wan_router1.yml @@ -141,7 +141,7 @@ ethernet_interfaces: description: Comcast_999 loopback_interfaces: - name: Loopback0 - description: Router_ID + description: ROUTER_ID shutdown: false ip_address: 192.168.1.1/32 prefix_lists: diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/uplink_lan_wan_router2.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/uplink_lan_wan_router2.yml index 6a66b599694..460d26f438a 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/uplink_lan_wan_router2.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/uplink_lan_wan_router2.yml @@ -150,7 +150,7 @@ ethernet_interfaces: description: Comcast_999 loopback_interfaces: - name: Loopback0 - description: Router_ID + description: ROUTER_ID shutdown: false ip_address: 192.168.1.2/32 prefix_lists: diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/varpv6.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/varpv6.yml index 6da39ba85bd..d13c7247d6f 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/varpv6.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/varpv6.yml @@ -118,7 +118,7 @@ management_api_http: enable_https: true loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.101/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/vrfs_rd_rt_override.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/vrfs_rd_rt_override.yml index c1ead58ddf3..5576cdea229 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/vrfs_rd_rt_override.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/vrfs_rd_rt_override.yml @@ -110,7 +110,7 @@ management_api_http: enable_https: true loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 10.10.0.20/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/inventory/group_vars/CUSTOM_TEMPLATES_TESTS.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/inventory/group_vars/CUSTOM_TEMPLATES_TESTS.yml index 7f5695f026c..93fbe89a9c0 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/inventory/group_vars/CUSTOM_TEMPLATES_TESTS.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/inventory/group_vars/CUSTOM_TEMPLATES_TESTS.yml @@ -14,7 +14,7 @@ node_type_keys: mlag_port_channel_interfaces: 'custom_templates/interface_descriptions/mlag/port-channel-interfaces.j2' connected_endpoints_ethernet_interfaces: 'custom_templates/interface_descriptions/connected_endpoints/ethernet-interfaces.j2' connected_endpoints_port_channel_interfaces: 'custom_templates/interface_descriptions/connected_endpoints/port-channel-interfaces.j2' - overlay_loopback_interface: 'custom_templates/interface_descriptions/loopbacks/overlay-loopback.j2' + router_id_loopback_interface: 'custom_templates/interface_descriptions/loopbacks/router-id-loopback.j2' vtep_loopback_interface: 'custom_templates/interface_descriptions/loopbacks/vtep-loopback.j2' - key: l3leaf type: l3leaf @@ -46,7 +46,7 @@ node_type_keys: mlag_port_channel_interfaces: 'custom_templates/interface_descriptions/mlag/port-channel-interfaces.j2' connected_endpoints_ethernet_interfaces: 'custom_templates/interface_descriptions/connected_endpoints/ethernet-interfaces.j2' connected_endpoints_port_channel_interfaces: 'custom_templates/interface_descriptions/connected_endpoints/port-channel-interfaces.j2' - overlay_loopback_interface: 'custom_templates/interface_descriptions/loopbacks/overlay-loopback.j2' + router_id_loopback_interface: 'custom_templates/interface_descriptions/loopbacks/router-id-loopback.j2' vtep_loopback_interface: 'custom_templates/interface_descriptions/loopbacks/vtep-loopback.j2' - key: l2leaf type: l2leaf diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/inventory/group_vars/EVPN_MULTICAST_TESTS.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/inventory/group_vars/EVPN_MULTICAST_TESTS.yml index 4f9f63f6841..bf055987c06 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/inventory/group_vars/EVPN_MULTICAST_TESTS.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/inventory/group_vars/EVPN_MULTICAST_TESTS.yml @@ -6,10 +6,10 @@ underlay_multicast: true # If set to "false" will raise an error. evpn_multicast: true # default_igmp_snooping_enabled: true # Default is true, if set to "false" will raise error. -# Default is overlay_loopback_ip +# Default is router_id # If set to same value on MLAG pairs will raise error. Trigger error with "bgp_as" or "vtep_loopback". # overlay_rd_type: -# admin_subfield: overlay_loopback_ip +# admin_subfield: router_id tenants: - name: Tenant_A diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/inventory/host_vars/DC1-BL1A.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/inventory/host_vars/DC1-BL1A.yml index 4f2fa11cf79..8c881a25603 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/inventory/host_vars/DC1-BL1A.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/inventory/host_vars/DC1-BL1A.yml @@ -13,8 +13,8 @@ override_ip_name_servers: # Testing empty key cvp_ingestauth_key: "" -# Testing overlay loopback description override -overlay_loopback_description: "MY_OVERLAY_LOOPBACK" +# Testing router id loopback description override +router_id_loopback_description: "MY_ROUTER_ID_LOOPBACK" vtep_vvtep_ip: 192.168.255.255/32 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/inventory/host_vars/RD-RT-ADMIN-SUBFIELD-L3LEAF1.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/inventory/host_vars/RD-RT-ADMIN-SUBFIELD-L3LEAF1.yml index 9548b98c67f..ce6b59243f1 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/inventory/host_vars/RD-RT-ADMIN-SUBFIELD-L3LEAF1.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/inventory/host_vars/RD-RT-ADMIN-SUBFIELD-L3LEAF1.yml @@ -4,7 +4,7 @@ # Expected result: rd 192.168.255.1:* # overlay_rd_type: -# admin_subfield: overlay_loopback_ip +# admin_subfield: router_id # Expected results: # - vlan1: rt 10001:10001 diff --git a/ansible_collections/arista/avd/molecule/eos_validate_state/intended/structured_configs/dc1-leaf1a.yml b/ansible_collections/arista/avd/molecule/eos_validate_state/intended/structured_configs/dc1-leaf1a.yml index bcc555143c4..de0994def3c 100644 --- a/ansible_collections/arista/avd/molecule/eos_validate_state/intended/structured_configs/dc1-leaf1a.yml +++ b/ansible_collections/arista/avd/molecule/eos_validate_state/intended/structured_configs/dc1-leaf1a.yml @@ -483,7 +483,7 @@ route_maps: - ip address prefix-list PL-L2LEAF-INBAND-MGMT loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 10.255.0.3/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_validate_state/intended/structured_configs/dc1-leaf1b.yml b/ansible_collections/arista/avd/molecule/eos_validate_state/intended/structured_configs/dc1-leaf1b.yml index 82204456c6a..22cc0ac0e94 100644 --- a/ansible_collections/arista/avd/molecule/eos_validate_state/intended/structured_configs/dc1-leaf1b.yml +++ b/ansible_collections/arista/avd/molecule/eos_validate_state/intended/structured_configs/dc1-leaf1b.yml @@ -546,7 +546,7 @@ route_maps: - ip address prefix-list PL-L2LEAF-INBAND-MGMT loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 10.255.0.4/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_validate_state/intended/structured_configs/dc1-leaf2a.yml b/ansible_collections/arista/avd/molecule/eos_validate_state/intended/structured_configs/dc1-leaf2a.yml index 80fcccb59a6..c406c67c05f 100644 --- a/ansible_collections/arista/avd/molecule/eos_validate_state/intended/structured_configs/dc1-leaf2a.yml +++ b/ansible_collections/arista/avd/molecule/eos_validate_state/intended/structured_configs/dc1-leaf2a.yml @@ -499,7 +499,7 @@ route_maps: - ip address prefix-list PL-L2LEAF-INBAND-MGMT loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 10.255.0.5/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_validate_state/intended/structured_configs/dc1-leaf2b.yml b/ansible_collections/arista/avd/molecule/eos_validate_state/intended/structured_configs/dc1-leaf2b.yml index 775bf446cff..b0ece618f61 100644 --- a/ansible_collections/arista/avd/molecule/eos_validate_state/intended/structured_configs/dc1-leaf2b.yml +++ b/ansible_collections/arista/avd/molecule/eos_validate_state/intended/structured_configs/dc1-leaf2b.yml @@ -499,7 +499,7 @@ route_maps: - ip address prefix-list PL-L2LEAF-INBAND-MGMT loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 10.255.0.6/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_validate_state/intended/structured_configs/dc1-spine1.yml b/ansible_collections/arista/avd/molecule/eos_validate_state/intended/structured_configs/dc1-spine1.yml index 7211e103af7..4ffe93979ed 100644 --- a/ansible_collections/arista/avd/molecule/eos_validate_state/intended/structured_configs/dc1-spine1.yml +++ b/ansible_collections/arista/avd/molecule/eos_validate_state/intended/structured_configs/dc1-spine1.yml @@ -245,7 +245,7 @@ ethernet_interfaces: ip_address: 10.33.255.20/31 loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 10.255.0.1/32 prefix_lists: diff --git a/ansible_collections/arista/avd/molecule/eos_validate_state/intended/structured_configs/dc1-spine2.yml b/ansible_collections/arista/avd/molecule/eos_validate_state/intended/structured_configs/dc1-spine2.yml index 33d8268c50d..12156f4a5b3 100644 --- a/ansible_collections/arista/avd/molecule/eos_validate_state/intended/structured_configs/dc1-spine2.yml +++ b/ansible_collections/arista/avd/molecule/eos_validate_state/intended/structured_configs/dc1-spine2.yml @@ -227,7 +227,7 @@ ethernet_interfaces: ip_address: 10.33.255.22/31 loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 10.255.0.2/32 prefix_lists: diff --git a/ansible_collections/arista/avd/molecule/eos_validate_state/intended/structured_configs/dc1-svc-leaf1a.yml b/ansible_collections/arista/avd/molecule/eos_validate_state/intended/structured_configs/dc1-svc-leaf1a.yml index 530a8006a9f..2e6ac5eadfc 100644 --- a/ansible_collections/arista/avd/molecule/eos_validate_state/intended/structured_configs/dc1-svc-leaf1a.yml +++ b/ansible_collections/arista/avd/molecule/eos_validate_state/intended/structured_configs/dc1-svc-leaf1a.yml @@ -214,7 +214,7 @@ route_maps: - ip address prefix-list PL-LOOPBACKS-EVPN-OVERLAY loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 10.33.0.5/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_validate_state/intended/structured_configs/dc1-svc-leaf1b.yml b/ansible_collections/arista/avd/molecule/eos_validate_state/intended/structured_configs/dc1-svc-leaf1b.yml index a91f5809309..8fcfb85b1d0 100644 --- a/ansible_collections/arista/avd/molecule/eos_validate_state/intended/structured_configs/dc1-svc-leaf1b.yml +++ b/ansible_collections/arista/avd/molecule/eos_validate_state/intended/structured_configs/dc1-svc-leaf1b.yml @@ -214,7 +214,7 @@ route_maps: - ip address prefix-list PL-LOOPBACKS-EVPN-OVERLAY loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 10.33.0.6/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_validate_state/intended/structured_configs/dc1-wan1.yml b/ansible_collections/arista/avd/molecule/eos_validate_state/intended/structured_configs/dc1-wan1.yml index 3ed2ca6a01c..f1f5efecf57 100644 --- a/ansible_collections/arista/avd/molecule/eos_validate_state/intended/structured_configs/dc1-wan1.yml +++ b/ansible_collections/arista/avd/molecule/eos_validate_state/intended/structured_configs/dc1-wan1.yml @@ -192,7 +192,7 @@ ethernet_interfaces: description: isp-1_DC1-INET-3 loopback_interfaces: - name: Loopback0 - description: Router_ID + description: ROUTER_ID shutdown: false ip_address: 10.255.2.1/32 as_path: diff --git a/ansible_collections/arista/avd/molecule/eos_validate_state/intended/structured_configs/dc1-wan2.yml b/ansible_collections/arista/avd/molecule/eos_validate_state/intended/structured_configs/dc1-wan2.yml index 7b53d40cec1..0bf3abb63f1 100644 --- a/ansible_collections/arista/avd/molecule/eos_validate_state/intended/structured_configs/dc1-wan2.yml +++ b/ansible_collections/arista/avd/molecule/eos_validate_state/intended/structured_configs/dc1-wan2.yml @@ -192,7 +192,7 @@ ethernet_interfaces: description: isp-1_DC1-INET-4 loopback_interfaces: - name: Loopback0 - description: Router_ID + description: ROUTER_ID shutdown: false ip_address: 10.255.2.2/32 as_path: diff --git a/ansible_collections/arista/avd/molecule/eos_validate_state/intended/structured_configs/dc2-leaf1a.yml b/ansible_collections/arista/avd/molecule/eos_validate_state/intended/structured_configs/dc2-leaf1a.yml index 5780392db3a..2fdb93118d7 100644 --- a/ansible_collections/arista/avd/molecule/eos_validate_state/intended/structured_configs/dc2-leaf1a.yml +++ b/ansible_collections/arista/avd/molecule/eos_validate_state/intended/structured_configs/dc2-leaf1a.yml @@ -410,7 +410,7 @@ route_maps: - ip address prefix-list PL-LOOPBACKS-EVPN-OVERLAY loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 10.255.128.13/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_validate_state/intended/structured_configs/dc2-leaf1b.yml b/ansible_collections/arista/avd/molecule/eos_validate_state/intended/structured_configs/dc2-leaf1b.yml index 4b42fcdfcd9..297ee923031 100644 --- a/ansible_collections/arista/avd/molecule/eos_validate_state/intended/structured_configs/dc2-leaf1b.yml +++ b/ansible_collections/arista/avd/molecule/eos_validate_state/intended/structured_configs/dc2-leaf1b.yml @@ -410,7 +410,7 @@ route_maps: - ip address prefix-list PL-LOOPBACKS-EVPN-OVERLAY loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 10.255.128.14/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_validate_state/intended/structured_configs/dc2-leaf2a.yml b/ansible_collections/arista/avd/molecule/eos_validate_state/intended/structured_configs/dc2-leaf2a.yml index 5fc71bd3da2..a38dfd23d71 100644 --- a/ansible_collections/arista/avd/molecule/eos_validate_state/intended/structured_configs/dc2-leaf2a.yml +++ b/ansible_collections/arista/avd/molecule/eos_validate_state/intended/structured_configs/dc2-leaf2a.yml @@ -481,7 +481,7 @@ route_maps: - ip address prefix-list PL-LOOPBACKS-EVPN-OVERLAY loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 10.255.128.15/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_validate_state/intended/structured_configs/dc2-leaf2b.yml b/ansible_collections/arista/avd/molecule/eos_validate_state/intended/structured_configs/dc2-leaf2b.yml index 19e06bf592d..2b48e79c48c 100644 --- a/ansible_collections/arista/avd/molecule/eos_validate_state/intended/structured_configs/dc2-leaf2b.yml +++ b/ansible_collections/arista/avd/molecule/eos_validate_state/intended/structured_configs/dc2-leaf2b.yml @@ -481,7 +481,7 @@ route_maps: - ip address prefix-list PL-LOOPBACKS-EVPN-OVERLAY loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 10.255.128.16/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_validate_state/intended/structured_configs/dc2-leaf3a.arista.com.yml b/ansible_collections/arista/avd/molecule/eos_validate_state/intended/structured_configs/dc2-leaf3a.arista.com.yml index 77f4cbc7d44..e4033f997bb 100644 --- a/ansible_collections/arista/avd/molecule/eos_validate_state/intended/structured_configs/dc2-leaf3a.arista.com.yml +++ b/ansible_collections/arista/avd/molecule/eos_validate_state/intended/structured_configs/dc2-leaf3a.arista.com.yml @@ -391,7 +391,7 @@ route_maps: - ip address prefix-list PL-LOOPBACKS-EVPN-OVERLAY loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 10.255.128.17/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_validate_state/intended/structured_configs/dc2-leaf3b.arista.com.yml b/ansible_collections/arista/avd/molecule/eos_validate_state/intended/structured_configs/dc2-leaf3b.arista.com.yml index a8dbc9cbcb5..1d0db19e738 100644 --- a/ansible_collections/arista/avd/molecule/eos_validate_state/intended/structured_configs/dc2-leaf3b.arista.com.yml +++ b/ansible_collections/arista/avd/molecule/eos_validate_state/intended/structured_configs/dc2-leaf3b.arista.com.yml @@ -391,7 +391,7 @@ route_maps: - ip address prefix-list PL-LOOPBACKS-EVPN-OVERLAY loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 10.255.128.18/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_validate_state/intended/structured_configs/dc2-spine1.yml b/ansible_collections/arista/avd/molecule/eos_validate_state/intended/structured_configs/dc2-spine1.yml index d7a1e11c772..813071c542e 100644 --- a/ansible_collections/arista/avd/molecule/eos_validate_state/intended/structured_configs/dc2-spine1.yml +++ b/ansible_collections/arista/avd/molecule/eos_validate_state/intended/structured_configs/dc2-spine1.yml @@ -199,7 +199,7 @@ ethernet_interfaces: ip_address: 10.255.255.124/31 loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 10.255.128.11/32 prefix_lists: diff --git a/ansible_collections/arista/avd/molecule/eos_validate_state/intended/structured_configs/dc2-spine2.yml b/ansible_collections/arista/avd/molecule/eos_validate_state/intended/structured_configs/dc2-spine2.yml index 1da5409b59c..08dbab98581 100644 --- a/ansible_collections/arista/avd/molecule/eos_validate_state/intended/structured_configs/dc2-spine2.yml +++ b/ansible_collections/arista/avd/molecule/eos_validate_state/intended/structured_configs/dc2-spine2.yml @@ -199,7 +199,7 @@ ethernet_interfaces: ip_address: 10.255.255.126/31 loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 10.255.128.12/32 prefix_lists: diff --git a/ansible_collections/arista/avd/molecule/eos_validate_state/intended/test_catalogs/dc1-leaf1a-catalog.yml b/ansible_collections/arista/avd/molecule/eos_validate_state/intended/test_catalogs/dc1-leaf1a-catalog.yml index c040c743f2c..00dd6859997 100644 --- a/ansible_collections/arista/avd/molecule/eos_validate_state/intended/test_catalogs/dc1-leaf1a-catalog.yml +++ b/ansible_collections/arista/avd/molecule/eos_validate_state/intended/test_catalogs/dc1-leaf1a-catalog.yml @@ -461,7 +461,7 @@ anta.tests.interfaces: - name: Loopback0 status: up result_overwrite: - custom_field: Interface Loopback0 - EVPN_Overlay_Peering = 'up' + custom_field: Interface Loopback0 - ROUTER_ID = 'up' - VerifyInterfacesStatus: interfaces: - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_validate_state/intended/test_catalogs/dc1-leaf1b-catalog.yml b/ansible_collections/arista/avd/molecule/eos_validate_state/intended/test_catalogs/dc1-leaf1b-catalog.yml index 9d0f1cb3db9..25327e6d6ac 100644 --- a/ansible_collections/arista/avd/molecule/eos_validate_state/intended/test_catalogs/dc1-leaf1b-catalog.yml +++ b/ansible_collections/arista/avd/molecule/eos_validate_state/intended/test_catalogs/dc1-leaf1b-catalog.yml @@ -458,7 +458,7 @@ anta.tests.interfaces: - name: Loopback0 status: up result_overwrite: - custom_field: Interface Loopback0 - EVPN_Overlay_Peering = 'up' + custom_field: Interface Loopback0 - ROUTER_ID = 'up' - VerifyInterfacesStatus: interfaces: - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_validate_state/intended/test_catalogs/dc1-leaf2a-catalog.yml b/ansible_collections/arista/avd/molecule/eos_validate_state/intended/test_catalogs/dc1-leaf2a-catalog.yml index edabca76758..093a7d850e7 100644 --- a/ansible_collections/arista/avd/molecule/eos_validate_state/intended/test_catalogs/dc1-leaf2a-catalog.yml +++ b/ansible_collections/arista/avd/molecule/eos_validate_state/intended/test_catalogs/dc1-leaf2a-catalog.yml @@ -422,7 +422,7 @@ anta.tests.interfaces: - name: Loopback0 status: up result_overwrite: - custom_field: Interface Loopback0 - EVPN_Overlay_Peering = 'up' + custom_field: Interface Loopback0 - ROUTER_ID = 'up' - VerifyInterfacesStatus: interfaces: - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_validate_state/intended/test_catalogs/dc1-spine1-catalog.yml b/ansible_collections/arista/avd/molecule/eos_validate_state/intended/test_catalogs/dc1-spine1-catalog.yml index 31164284b68..fd7699c639d 100644 --- a/ansible_collections/arista/avd/molecule/eos_validate_state/intended/test_catalogs/dc1-spine1-catalog.yml +++ b/ansible_collections/arista/avd/molecule/eos_validate_state/intended/test_catalogs/dc1-spine1-catalog.yml @@ -236,7 +236,7 @@ anta.tests.interfaces: - name: Loopback0 status: up result_overwrite: - custom_field: Interface Loopback0 - EVPN_Overlay_Peering = 'up' + custom_field: Interface Loopback0 - ROUTER_ID = 'up' - VerifyInterfaceUtilization: threshold: 70.0 - VerifyInterfaceErrors: null diff --git a/ansible_collections/arista/avd/molecule/eos_validate_state/intended/test_catalogs/dc1-spine2-catalog.yml b/ansible_collections/arista/avd/molecule/eos_validate_state/intended/test_catalogs/dc1-spine2-catalog.yml index 55bc5cf4af7..5c3f986bce2 100644 --- a/ansible_collections/arista/avd/molecule/eos_validate_state/intended/test_catalogs/dc1-spine2-catalog.yml +++ b/ansible_collections/arista/avd/molecule/eos_validate_state/intended/test_catalogs/dc1-spine2-catalog.yml @@ -236,7 +236,7 @@ anta.tests.interfaces: - name: Loopback0 status: up result_overwrite: - custom_field: Interface Loopback0 - EVPN_Overlay_Peering = 'up' + custom_field: Interface Loopback0 - ROUTER_ID = 'up' - VerifyInterfaceUtilization: threshold: 70.0 - VerifyInterfaceErrors: null diff --git a/ansible_collections/arista/avd/molecule/eos_validate_state/intended/test_catalogs/dc1-svc-leaf1a-catalog.yml b/ansible_collections/arista/avd/molecule/eos_validate_state/intended/test_catalogs/dc1-svc-leaf1a-catalog.yml index 5d1fb13d7a9..68c5ae42fcd 100644 --- a/ansible_collections/arista/avd/molecule/eos_validate_state/intended/test_catalogs/dc1-svc-leaf1a-catalog.yml +++ b/ansible_collections/arista/avd/molecule/eos_validate_state/intended/test_catalogs/dc1-svc-leaf1a-catalog.yml @@ -340,7 +340,7 @@ anta.tests.interfaces: - name: Loopback0 status: up result_overwrite: - custom_field: Interface Loopback0 - EVPN_Overlay_Peering = 'up' + custom_field: Interface Loopback0 - ROUTER_ID = 'up' - VerifyInterfacesStatus: interfaces: - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_validate_state/intended/test_catalogs/dc1-svc-leaf1b-catalog.yml b/ansible_collections/arista/avd/molecule/eos_validate_state/intended/test_catalogs/dc1-svc-leaf1b-catalog.yml index 8193e1f8b03..1a4cc9cd4c9 100644 --- a/ansible_collections/arista/avd/molecule/eos_validate_state/intended/test_catalogs/dc1-svc-leaf1b-catalog.yml +++ b/ansible_collections/arista/avd/molecule/eos_validate_state/intended/test_catalogs/dc1-svc-leaf1b-catalog.yml @@ -340,7 +340,7 @@ anta.tests.interfaces: - name: Loopback0 status: up result_overwrite: - custom_field: Interface Loopback0 - EVPN_Overlay_Peering = 'up' + custom_field: Interface Loopback0 - ROUTER_ID = 'up' - VerifyInterfacesStatus: interfaces: - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_validate_state/intended/test_catalogs/dc1-wan1-catalog.yml b/ansible_collections/arista/avd/molecule/eos_validate_state/intended/test_catalogs/dc1-wan1-catalog.yml index 0750bbae946..57ca347c2c4 100644 --- a/ansible_collections/arista/avd/molecule/eos_validate_state/intended/test_catalogs/dc1-wan1-catalog.yml +++ b/ansible_collections/arista/avd/molecule/eos_validate_state/intended/test_catalogs/dc1-wan1-catalog.yml @@ -173,7 +173,7 @@ anta.tests.interfaces: - name: Loopback0 status: up result_overwrite: - custom_field: Interface Loopback0 - Router_ID = 'up' + custom_field: Interface Loopback0 - ROUTER_ID = 'up' - VerifyInterfacesStatus: interfaces: - name: Dps1 diff --git a/ansible_collections/arista/avd/molecule/eos_validate_state/intended/test_catalogs/dc1-wan2-catalog.yml b/ansible_collections/arista/avd/molecule/eos_validate_state/intended/test_catalogs/dc1-wan2-catalog.yml index c5362fc4d46..135152ecadc 100644 --- a/ansible_collections/arista/avd/molecule/eos_validate_state/intended/test_catalogs/dc1-wan2-catalog.yml +++ b/ansible_collections/arista/avd/molecule/eos_validate_state/intended/test_catalogs/dc1-wan2-catalog.yml @@ -173,7 +173,7 @@ anta.tests.interfaces: - name: Loopback0 status: up result_overwrite: - custom_field: Interface Loopback0 - Router_ID = 'up' + custom_field: Interface Loopback0 - ROUTER_ID = 'up' - VerifyInterfacesStatus: interfaces: - name: Dps1 diff --git a/ansible_collections/arista/avd/molecule/eos_validate_state/intended/test_catalogs/dc2-leaf1a-catalog.yml b/ansible_collections/arista/avd/molecule/eos_validate_state/intended/test_catalogs/dc2-leaf1a-catalog.yml index 1118e3f938a..dbb1ea98387 100644 --- a/ansible_collections/arista/avd/molecule/eos_validate_state/intended/test_catalogs/dc2-leaf1a-catalog.yml +++ b/ansible_collections/arista/avd/molecule/eos_validate_state/intended/test_catalogs/dc2-leaf1a-catalog.yml @@ -408,7 +408,7 @@ anta.tests.interfaces: - name: Loopback0 status: up result_overwrite: - custom_field: Interface Loopback0 - EVPN_Overlay_Peering = 'up' + custom_field: Interface Loopback0 - ROUTER_ID = 'up' - VerifyInterfacesStatus: interfaces: - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_validate_state/intended/test_catalogs/dc2-leaf1b-catalog.yml b/ansible_collections/arista/avd/molecule/eos_validate_state/intended/test_catalogs/dc2-leaf1b-catalog.yml index 2b7d108dcd9..06e77a99f5b 100644 --- a/ansible_collections/arista/avd/molecule/eos_validate_state/intended/test_catalogs/dc2-leaf1b-catalog.yml +++ b/ansible_collections/arista/avd/molecule/eos_validate_state/intended/test_catalogs/dc2-leaf1b-catalog.yml @@ -408,7 +408,7 @@ anta.tests.interfaces: - name: Loopback0 status: up result_overwrite: - custom_field: Interface Loopback0 - EVPN_Overlay_Peering = 'up' + custom_field: Interface Loopback0 - ROUTER_ID = 'up' - VerifyInterfacesStatus: interfaces: - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_validate_state/intended/test_catalogs/dc2-leaf2a-catalog.yml b/ansible_collections/arista/avd/molecule/eos_validate_state/intended/test_catalogs/dc2-leaf2a-catalog.yml index 0dd53b6d5b4..eecad7e455b 100644 --- a/ansible_collections/arista/avd/molecule/eos_validate_state/intended/test_catalogs/dc2-leaf2a-catalog.yml +++ b/ansible_collections/arista/avd/molecule/eos_validate_state/intended/test_catalogs/dc2-leaf2a-catalog.yml @@ -430,7 +430,7 @@ anta.tests.interfaces: - name: Loopback0 status: up result_overwrite: - custom_field: Interface Loopback0 - EVPN_Overlay_Peering = 'up' + custom_field: Interface Loopback0 - ROUTER_ID = 'up' - VerifyInterfacesStatus: interfaces: - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_validate_state/intended/test_catalogs/dc2-leaf2b-catalog.yml b/ansible_collections/arista/avd/molecule/eos_validate_state/intended/test_catalogs/dc2-leaf2b-catalog.yml index b0987cb4481..6fe7f69055e 100644 --- a/ansible_collections/arista/avd/molecule/eos_validate_state/intended/test_catalogs/dc2-leaf2b-catalog.yml +++ b/ansible_collections/arista/avd/molecule/eos_validate_state/intended/test_catalogs/dc2-leaf2b-catalog.yml @@ -414,7 +414,7 @@ anta.tests.interfaces: - name: Loopback0 status: up result_overwrite: - custom_field: Interface Loopback0 - EVPN_Overlay_Peering = 'up' + custom_field: Interface Loopback0 - ROUTER_ID = 'up' - VerifyInterfacesStatus: interfaces: - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_validate_state/intended/test_catalogs/dc2-leaf3a.arista.com-catalog.yml b/ansible_collections/arista/avd/molecule/eos_validate_state/intended/test_catalogs/dc2-leaf3a.arista.com-catalog.yml index db9116173dc..46833c0b708 100644 --- a/ansible_collections/arista/avd/molecule/eos_validate_state/intended/test_catalogs/dc2-leaf3a.arista.com-catalog.yml +++ b/ansible_collections/arista/avd/molecule/eos_validate_state/intended/test_catalogs/dc2-leaf3a.arista.com-catalog.yml @@ -391,7 +391,7 @@ anta.tests.interfaces: - name: Loopback0 status: up result_overwrite: - custom_field: Interface Loopback0 - EVPN_Overlay_Peering = 'up' + custom_field: Interface Loopback0 - ROUTER_ID = 'up' - VerifyInterfacesStatus: interfaces: - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_validate_state/intended/test_catalogs/dc2-leaf3b.arista.com-catalog.yml b/ansible_collections/arista/avd/molecule/eos_validate_state/intended/test_catalogs/dc2-leaf3b.arista.com-catalog.yml index 2f7da83e055..002174ff831 100644 --- a/ansible_collections/arista/avd/molecule/eos_validate_state/intended/test_catalogs/dc2-leaf3b.arista.com-catalog.yml +++ b/ansible_collections/arista/avd/molecule/eos_validate_state/intended/test_catalogs/dc2-leaf3b.arista.com-catalog.yml @@ -391,7 +391,7 @@ anta.tests.interfaces: - name: Loopback0 status: up result_overwrite: - custom_field: Interface Loopback0 - EVPN_Overlay_Peering = 'up' + custom_field: Interface Loopback0 - ROUTER_ID = 'up' - VerifyInterfacesStatus: interfaces: - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/eos_validate_state/intended/test_catalogs/dc2-spine1-catalog.yml b/ansible_collections/arista/avd/molecule/eos_validate_state/intended/test_catalogs/dc2-spine1-catalog.yml index a162a4ef029..312bb242a1e 100644 --- a/ansible_collections/arista/avd/molecule/eos_validate_state/intended/test_catalogs/dc2-spine1-catalog.yml +++ b/ansible_collections/arista/avd/molecule/eos_validate_state/intended/test_catalogs/dc2-spine1-catalog.yml @@ -233,7 +233,7 @@ anta.tests.interfaces: - name: Loopback0 status: up result_overwrite: - custom_field: Interface Loopback0 - EVPN_Overlay_Peering = 'up' + custom_field: Interface Loopback0 - ROUTER_ID = 'up' anta.tests.lanz: - VerifyLANZ: null anta.tests.ptp: diff --git a/ansible_collections/arista/avd/molecule/eos_validate_state/intended/test_catalogs/dc2-spine2-catalog.yml b/ansible_collections/arista/avd/molecule/eos_validate_state/intended/test_catalogs/dc2-spine2-catalog.yml index 12486aba496..d65646b6fbf 100644 --- a/ansible_collections/arista/avd/molecule/eos_validate_state/intended/test_catalogs/dc2-spine2-catalog.yml +++ b/ansible_collections/arista/avd/molecule/eos_validate_state/intended/test_catalogs/dc2-spine2-catalog.yml @@ -233,7 +233,7 @@ anta.tests.interfaces: - name: Loopback0 status: up result_overwrite: - custom_field: Interface Loopback0 - EVPN_Overlay_Peering = 'up' + custom_field: Interface Loopback0 - ROUTER_ID = 'up' anta.tests.lanz: - VerifyLANZ: null anta.tests.ptp: diff --git a/ansible_collections/arista/avd/molecule/eos_validate_state/reports/FABRIC-state.csv b/ansible_collections/arista/avd/molecule/eos_validate_state/reports/FABRIC-state.csv index d52b7e49f1a..726df92da39 100644 --- a/ansible_collections/arista/avd/molecule/eos_validate_state/reports/FABRIC-state.csv +++ b/ansible_collections/arista/avd/molecule/eos_validate_state/reports/FABRIC-state.csv @@ -67,7 +67,7 @@ id,dut,categories,test,description,inputs,result,messages 66,dc1-leaf1a,Interfaces,VerifyInterfacesStatus,Verifies the status of the provided interfaces.,Interface Ethernet6 - P2P_LINK_TO_DC1-WAN1_Ethernet1 = 'up',NOT RUN, 67,dc1-leaf1a,Interfaces,VerifyInterfacesStatus,Verifies the status of the provided interfaces.,Interface Ethernet7 - P2P_LINK_TO_DC1-WAN2_Ethernet1 = 'up',NOT RUN, 68,dc1-leaf1a,Interfaces,VerifyInterfacesStatus,Verifies the status of the provided interfaces.,Interface Ethernet8 - DC1-LEAF1C_Ethernet1 = 'up',NOT RUN, -69,dc1-leaf1a,Interfaces,VerifyInterfacesStatus,Verifies the status of the provided interfaces.,Interface Loopback0 - EVPN_Overlay_Peering = 'up',NOT RUN, +69,dc1-leaf1a,Interfaces,VerifyInterfacesStatus,Verifies the status of the provided interfaces.,Interface Loopback0 - ROUTER_ID = 'up',NOT RUN, 70,dc1-leaf1a,Interfaces,VerifyInterfacesStatus,Verifies the status of the provided interfaces.,Interface Loopback1 - VTEP_VXLAN_Tunnel_Source = 'up',NOT RUN, 71,dc1-leaf1a,Interfaces,VerifyInterfacesStatus,Verifies the status of the provided interfaces.,Interface Loopback10 - VRF10_VTEP_DIAGNOSTICS = 'up',NOT RUN, 72,dc1-leaf1a,Interfaces,VerifyInterfacesStatus,Verifies the status of the provided interfaces.,Interface Loopback11 - VRF11_VTEP_DIAGNOSTICS = 'up',NOT RUN, @@ -226,7 +226,7 @@ id,dut,categories,test,description,inputs,result,messages 225,dc1-leaf1b,Interfaces,VerifyInterfacesStatus,Verifies the status of the provided interfaces.,Interface Ethernet6 - P2P_LINK_TO_DC1-WAN1_Ethernet2 = 'up',NOT RUN, 226,dc1-leaf1b,Interfaces,VerifyInterfacesStatus,Verifies the status of the provided interfaces.,Interface Ethernet7 - P2P_LINK_TO_DC1-WAN2_Ethernet2 = 'up',NOT RUN, 227,dc1-leaf1b,Interfaces,VerifyInterfacesStatus,Verifies the status of the provided interfaces.,Interface Ethernet8 - DC1-LEAF1C_Ethernet2 = 'up',NOT RUN, -228,dc1-leaf1b,Interfaces,VerifyInterfacesStatus,Verifies the status of the provided interfaces.,Interface Loopback0 - EVPN_Overlay_Peering = 'up',NOT RUN, +228,dc1-leaf1b,Interfaces,VerifyInterfacesStatus,Verifies the status of the provided interfaces.,Interface Loopback0 - ROUTER_ID = 'up',NOT RUN, 229,dc1-leaf1b,Interfaces,VerifyInterfacesStatus,Verifies the status of the provided interfaces.,Interface Loopback1 - VTEP_VXLAN_Tunnel_Source = 'up',NOT RUN, 230,dc1-leaf1b,Interfaces,VerifyInterfacesStatus,Verifies the status of the provided interfaces.,Interface Loopback10 - VRF10_VTEP_DIAGNOSTICS = 'up',NOT RUN, 231,dc1-leaf1b,Interfaces,VerifyInterfacesStatus,Verifies the status of the provided interfaces.,Interface Loopback11 - VRF11_VTEP_DIAGNOSTICS = 'up',NOT RUN, @@ -461,7 +461,7 @@ id,dut,categories,test,description,inputs,result,messages 460,dc1-leaf2a,Interfaces,VerifyInterfacesStatus,Verifies the status of the provided interfaces.,Interface Ethernet5 - dc1-leaf2-server1_PCI1 = 'up',NOT RUN, 461,dc1-leaf2a,Interfaces,VerifyInterfacesStatus,Verifies the status of the provided interfaces.,Interface Ethernet6 - P2P_LINK_TO_dc2-leaf2a_Ethernet6 = 'up',NOT RUN, 462,dc1-leaf2a,Interfaces,VerifyInterfacesStatus,Verifies the status of the provided interfaces.,Interface Ethernet8 - DC1-LEAF2C_Ethernet1 = 'up',NOT RUN, -463,dc1-leaf2a,Interfaces,VerifyInterfacesStatus,Verifies the status of the provided interfaces.,Interface Loopback0 - EVPN_Overlay_Peering = 'up',NOT RUN, +463,dc1-leaf2a,Interfaces,VerifyInterfacesStatus,Verifies the status of the provided interfaces.,Interface Loopback0 - ROUTER_ID = 'up',NOT RUN, 464,dc1-leaf2a,Interfaces,VerifyInterfacesStatus,Verifies the status of the provided interfaces.,Interface Loopback1 - VTEP_VXLAN_Tunnel_Source = 'up',NOT RUN, 465,dc1-leaf2a,Interfaces,VerifyInterfacesStatus,Verifies the status of the provided interfaces.,Interface Loopback10 - VRF10_VTEP_DIAGNOSTICS = 'up',NOT RUN, 466,dc1-leaf2a,Interfaces,VerifyInterfacesStatus,Verifies the status of the provided interfaces.,Interface Loopback11 - VRF11_VTEP_DIAGNOSTICS = 'up',NOT RUN, @@ -720,7 +720,7 @@ id,dut,categories,test,description,inputs,result,messages 719,dc1-spine1,Interfaces,VerifyInterfacesStatus,Verifies the status of the provided interfaces.,Interface Ethernet4 - P2P_LINK_TO_DC1-LEAF2B_Ethernet1 = 'adminDown',NOT RUN, 720,dc1-spine1,Interfaces,VerifyInterfacesStatus,Verifies the status of the provided interfaces.,Interface Ethernet5 - P2P_LINK_TO_DC1-SVC-LEAF1A_Ethernet1 = 'up',NOT RUN, 721,dc1-spine1,Interfaces,VerifyInterfacesStatus,Verifies the status of the provided interfaces.,Interface Ethernet6 - P2P_LINK_TO_DC1-SVC-LEAF1B_Ethernet1 = 'up',NOT RUN, -722,dc1-spine1,Interfaces,VerifyInterfacesStatus,Verifies the status of the provided interfaces.,Interface Loopback0 - EVPN_Overlay_Peering = 'up',NOT RUN, +722,dc1-spine1,Interfaces,VerifyInterfacesStatus,Verifies the status of the provided interfaces.,Interface Loopback0 - ROUTER_ID = 'up',NOT RUN, 723,dc1-spine1,Interfaces,VerifyInterfaceUtilization,Verifies that the utilization of interfaces is below a certain threshold.,,NOT RUN, 724,dc1-spine1,Interfaces,VerifyIPProxyARP,Verifies if Proxy ARP is enabled.,,NOT RUN, 725,dc1-spine1,Interfaces,VerifyL2MTU,Verifies the global L2 MTU of all L2 interfaces.,,NOT RUN, @@ -836,7 +836,7 @@ id,dut,categories,test,description,inputs,result,messages 835,dc1-spine2,Interfaces,VerifyInterfacesStatus,Verifies the status of the provided interfaces.,Interface Ethernet4 - P2P_LINK_TO_DC1-LEAF2B_Ethernet2 = 'adminDown',NOT RUN, 836,dc1-spine2,Interfaces,VerifyInterfacesStatus,Verifies the status of the provided interfaces.,Interface Ethernet5 - P2P_LINK_TO_DC1-SVC-LEAF1A_Ethernet2 = 'up',NOT RUN, 837,dc1-spine2,Interfaces,VerifyInterfacesStatus,Verifies the status of the provided interfaces.,Interface Ethernet6 - P2P_LINK_TO_DC1-SVC-LEAF1B_Ethernet2 = 'up',NOT RUN, -838,dc1-spine2,Interfaces,VerifyInterfacesStatus,Verifies the status of the provided interfaces.,Interface Loopback0 - EVPN_Overlay_Peering = 'up',NOT RUN, +838,dc1-spine2,Interfaces,VerifyInterfacesStatus,Verifies the status of the provided interfaces.,Interface Loopback0 - ROUTER_ID = 'up',NOT RUN, 839,dc1-spine2,Interfaces,VerifyInterfaceUtilization,Verifies that the utilization of interfaces is below a certain threshold.,,NOT RUN, 840,dc1-spine2,Interfaces,VerifyIPProxyARP,Verifies if Proxy ARP is enabled.,,NOT RUN, 841,dc1-spine2,Interfaces,VerifyL2MTU,Verifies the global L2 MTU of all L2 interfaces.,,NOT RUN, @@ -949,7 +949,7 @@ id,dut,categories,test,description,inputs,result,messages 948,dc1-svc-leaf1a,Interfaces,VerifyInterfacesStatus,Verifies the status of the provided interfaces.,Interface Ethernet2 - P2P_LINK_TO_DC1-SPINE2_Ethernet5 = 'up',NOT RUN, 949,dc1-svc-leaf1a,Interfaces,VerifyInterfacesStatus,Verifies the status of the provided interfaces.,Interface Ethernet3 - MLAG_PEER_dc1-svc-leaf1b_Ethernet3 = 'up',NOT RUN, 950,dc1-svc-leaf1a,Interfaces,VerifyInterfacesStatus,Verifies the status of the provided interfaces.,Interface Ethernet4 - MLAG_PEER_dc1-svc-leaf1b_Ethernet4 = 'up',NOT RUN, -951,dc1-svc-leaf1a,Interfaces,VerifyInterfacesStatus,Verifies the status of the provided interfaces.,Interface Loopback0 - EVPN_Overlay_Peering = 'up',NOT RUN, +951,dc1-svc-leaf1a,Interfaces,VerifyInterfacesStatus,Verifies the status of the provided interfaces.,Interface Loopback0 - ROUTER_ID = 'up',NOT RUN, 952,dc1-svc-leaf1a,Interfaces,VerifyInterfacesStatus,Verifies the status of the provided interfaces.,Interface Loopback1 - VTEP_VXLAN_Tunnel_Source = 'up',NOT RUN, 953,dc1-svc-leaf1a,Interfaces,VerifyInterfacesStatus,Verifies the status of the provided interfaces.,Interface Port-Channel3 - MLAG_PEER_dc1-svc-leaf1b_Po3 = 'up',NOT RUN, 954,dc1-svc-leaf1a,Interfaces,VerifyInterfacesStatus,Verifies the status of the provided interfaces.,Interface Vlan4093 - MLAG_PEER_L3_PEERING = 'up',NOT RUN, @@ -1078,7 +1078,7 @@ id,dut,categories,test,description,inputs,result,messages 1077,dc1-svc-leaf1b,Interfaces,VerifyInterfacesStatus,Verifies the status of the provided interfaces.,Interface Ethernet2 - P2P_LINK_TO_DC1-SPINE2_Ethernet6 = 'up',NOT RUN, 1078,dc1-svc-leaf1b,Interfaces,VerifyInterfacesStatus,Verifies the status of the provided interfaces.,Interface Ethernet3 - MLAG_PEER_dc1-svc-leaf1a_Ethernet3 = 'up',NOT RUN, 1079,dc1-svc-leaf1b,Interfaces,VerifyInterfacesStatus,Verifies the status of the provided interfaces.,Interface Ethernet4 - MLAG_PEER_dc1-svc-leaf1a_Ethernet4 = 'up',NOT RUN, -1080,dc1-svc-leaf1b,Interfaces,VerifyInterfacesStatus,Verifies the status of the provided interfaces.,Interface Loopback0 - EVPN_Overlay_Peering = 'up',NOT RUN, +1080,dc1-svc-leaf1b,Interfaces,VerifyInterfacesStatus,Verifies the status of the provided interfaces.,Interface Loopback0 - ROUTER_ID = 'up',NOT RUN, 1081,dc1-svc-leaf1b,Interfaces,VerifyInterfacesStatus,Verifies the status of the provided interfaces.,Interface Loopback1 - VTEP_VXLAN_Tunnel_Source = 'up',NOT RUN, 1082,dc1-svc-leaf1b,Interfaces,VerifyInterfacesStatus,Verifies the status of the provided interfaces.,Interface Port-Channel3 - MLAG_PEER_dc1-svc-leaf1a_Po3 = 'up',NOT RUN, 1083,dc1-svc-leaf1b,Interfaces,VerifyInterfacesStatus,Verifies the status of the provided interfaces.,Interface Vlan4093 - MLAG_PEER_L3_PEERING = 'up',NOT RUN, @@ -1197,7 +1197,7 @@ id,dut,categories,test,description,inputs,result,messages 1196,dc1-wan1,Interfaces,VerifyInterfacesStatus,Verifies the status of the provided interfaces.,Interface Ethernet2 - P2P_LINK_TO_DC1-LEAF1B_Ethernet6 = 'up',NOT RUN, 1197,dc1-wan1,Interfaces,VerifyInterfacesStatus,Verifies the status of the provided interfaces.,Interface Ethernet3 - mpls-sp-1_DC1-MPLS-3 = 'up',NOT RUN, 1198,dc1-wan1,Interfaces,VerifyInterfacesStatus,Verifies the status of the provided interfaces.,Interface Ethernet4 - isp-1_DC1-INET-3 = 'up',NOT RUN, -1199,dc1-wan1,Interfaces,VerifyInterfacesStatus,Verifies the status of the provided interfaces.,Interface Loopback0 - Router_ID = 'up',NOT RUN, +1199,dc1-wan1,Interfaces,VerifyInterfacesStatus,Verifies the status of the provided interfaces.,Interface Loopback0 - ROUTER_ID = 'up',NOT RUN, 1200,dc1-wan1,Interfaces,VerifyInterfacesStatus,Verifies the status of the provided interfaces.,Interface Vxlan1 = 'up',NOT RUN, 1201,dc1-wan1,LANZ,VerifyLANZ,Verifies if LANZ is enabled.,,NOT RUN, 1202,dc1-wan1,PTP,VerifyPtpGMStatus,Verifies that the device is locked to a valid PTP Grandmaster.,,NOT RUN, @@ -1293,7 +1293,7 @@ id,dut,categories,test,description,inputs,result,messages 1292,dc1-wan2,Interfaces,VerifyInterfacesStatus,Verifies the status of the provided interfaces.,Interface Ethernet2 - P2P_LINK_TO_DC1-LEAF1B_Ethernet7 = 'up',NOT RUN, 1293,dc1-wan2,Interfaces,VerifyInterfacesStatus,Verifies the status of the provided interfaces.,Interface Ethernet3 - mpls-sp-1_DC1-MPLS-4 = 'up',NOT RUN, 1294,dc1-wan2,Interfaces,VerifyInterfacesStatus,Verifies the status of the provided interfaces.,Interface Ethernet4 - isp-1_DC1-INET-4 = 'up',NOT RUN, -1295,dc1-wan2,Interfaces,VerifyInterfacesStatus,Verifies the status of the provided interfaces.,Interface Loopback0 - Router_ID = 'up',NOT RUN, +1295,dc1-wan2,Interfaces,VerifyInterfacesStatus,Verifies the status of the provided interfaces.,Interface Loopback0 - ROUTER_ID = 'up',NOT RUN, 1296,dc1-wan2,Interfaces,VerifyInterfacesStatus,Verifies the status of the provided interfaces.,Interface Vxlan1 = 'up',NOT RUN, 1297,dc1-wan2,LANZ,VerifyLANZ,Verifies if LANZ is enabled.,,NOT RUN, 1298,dc1-wan2,PTP,VerifyPtpGMStatus,Verifies that the device is locked to a valid PTP Grandmaster.,,NOT RUN, @@ -1402,7 +1402,7 @@ id,dut,categories,test,description,inputs,result,messages 1401,dc2-leaf1a,Interfaces,VerifyInterfacesStatus,Verifies the status of the provided interfaces.,Interface Ethernet4 - MLAG_PEER_dc2-leaf1b_Ethernet4 = 'up',NOT RUN, 1402,dc2-leaf1a,Interfaces,VerifyInterfacesStatus,Verifies the status of the provided interfaces.,Interface Ethernet5 - dc2-leaf1-server1_PCI1 = 'up',NOT RUN, 1403,dc2-leaf1a,Interfaces,VerifyInterfacesStatus,Verifies the status of the provided interfaces.,Interface Ethernet8 - DC2-LEAF1C_Ethernet1 = 'up',NOT RUN, -1404,dc2-leaf1a,Interfaces,VerifyInterfacesStatus,Verifies the status of the provided interfaces.,Interface Loopback0 - EVPN_Overlay_Peering = 'up',NOT RUN, +1404,dc2-leaf1a,Interfaces,VerifyInterfacesStatus,Verifies the status of the provided interfaces.,Interface Loopback0 - ROUTER_ID = 'up',NOT RUN, 1405,dc2-leaf1a,Interfaces,VerifyInterfacesStatus,Verifies the status of the provided interfaces.,Interface Loopback1 - VTEP_VXLAN_Tunnel_Source = 'up',NOT RUN, 1406,dc2-leaf1a,Interfaces,VerifyInterfacesStatus,Verifies the status of the provided interfaces.,Interface Loopback10 - VRF10_VTEP_DIAGNOSTICS = 'up',NOT RUN, 1407,dc2-leaf1a,Interfaces,VerifyInterfacesStatus,Verifies the status of the provided interfaces.,Interface Loopback11 - VRF11_VTEP_DIAGNOSTICS = 'up',NOT RUN, @@ -1564,7 +1564,7 @@ id,dut,categories,test,description,inputs,result,messages 1563,dc2-leaf1b,Interfaces,VerifyInterfacesStatus,Verifies the status of the provided interfaces.,Interface Ethernet4 - MLAG_PEER_dc2-leaf1a_Ethernet4 = 'up',NOT RUN, 1564,dc2-leaf1b,Interfaces,VerifyInterfacesStatus,Verifies the status of the provided interfaces.,Interface Ethernet5 - dc2-leaf1-server1_PCI2 = 'up',NOT RUN, 1565,dc2-leaf1b,Interfaces,VerifyInterfacesStatus,Verifies the status of the provided interfaces.,Interface Ethernet8 - DC2-LEAF1C_Ethernet2 = 'up',NOT RUN, -1566,dc2-leaf1b,Interfaces,VerifyInterfacesStatus,Verifies the status of the provided interfaces.,Interface Loopback0 - EVPN_Overlay_Peering = 'up',NOT RUN, +1566,dc2-leaf1b,Interfaces,VerifyInterfacesStatus,Verifies the status of the provided interfaces.,Interface Loopback0 - ROUTER_ID = 'up',NOT RUN, 1567,dc2-leaf1b,Interfaces,VerifyInterfacesStatus,Verifies the status of the provided interfaces.,Interface Loopback1 - VTEP_VXLAN_Tunnel_Source = 'up',NOT RUN, 1568,dc2-leaf1b,Interfaces,VerifyInterfacesStatus,Verifies the status of the provided interfaces.,Interface Loopback10 - VRF10_VTEP_DIAGNOSTICS = 'up',NOT RUN, 1569,dc2-leaf1b,Interfaces,VerifyInterfacesStatus,Verifies the status of the provided interfaces.,Interface Loopback11 - VRF11_VTEP_DIAGNOSTICS = 'up',NOT RUN, @@ -1803,7 +1803,7 @@ id,dut,categories,test,description,inputs,result,messages 1802,dc2-leaf2a,Interfaces,VerifyInterfacesStatus,Verifies the status of the provided interfaces.,Interface Ethernet5 - dc2-leaf2-server1_PCI1 = 'up',NOT RUN, 1803,dc2-leaf2a,Interfaces,VerifyInterfacesStatus,Verifies the status of the provided interfaces.,Interface Ethernet6 - P2P_LINK_TO_dc1-leaf2a_Ethernet6 = 'up',NOT RUN, 1804,dc2-leaf2a,Interfaces,VerifyInterfacesStatus,Verifies the status of the provided interfaces.,Interface Ethernet8 - DC2-LEAF2C_Ethernet1 = 'up',NOT RUN, -1805,dc2-leaf2a,Interfaces,VerifyInterfacesStatus,Verifies the status of the provided interfaces.,Interface Loopback0 - EVPN_Overlay_Peering = 'up',NOT RUN, +1805,dc2-leaf2a,Interfaces,VerifyInterfacesStatus,Verifies the status of the provided interfaces.,Interface Loopback0 - ROUTER_ID = 'up',NOT RUN, 1806,dc2-leaf2a,Interfaces,VerifyInterfacesStatus,Verifies the status of the provided interfaces.,Interface Loopback1 - VTEP_VXLAN_Tunnel_Source = 'up',NOT RUN, 1807,dc2-leaf2a,Interfaces,VerifyInterfacesStatus,Verifies the status of the provided interfaces.,Interface Loopback10 - VRF10_VTEP_DIAGNOSTICS = 'up',NOT RUN, 1808,dc2-leaf2a,Interfaces,VerifyInterfacesStatus,Verifies the status of the provided interfaces.,Interface Loopback11 - VRF11_VTEP_DIAGNOSTICS = 'up',NOT RUN, @@ -1966,7 +1966,7 @@ id,dut,categories,test,description,inputs,result,messages 1965,dc2-leaf2b,Interfaces,VerifyInterfacesStatus,Verifies the status of the provided interfaces.,Interface Ethernet5 - dc2-leaf2-server1_PCI2 = 'up',NOT RUN, 1966,dc2-leaf2b,Interfaces,VerifyInterfacesStatus,Verifies the status of the provided interfaces.,Interface Ethernet6 - P2P_LINK_TO_dc1-leaf2b_Ethernet6 = 'up',NOT RUN, 1967,dc2-leaf2b,Interfaces,VerifyInterfacesStatus,Verifies the status of the provided interfaces.,Interface Ethernet8 - DC2-LEAF2C_Ethernet2 = 'up',NOT RUN, -1968,dc2-leaf2b,Interfaces,VerifyInterfacesStatus,Verifies the status of the provided interfaces.,Interface Loopback0 - EVPN_Overlay_Peering = 'up',NOT RUN, +1968,dc2-leaf2b,Interfaces,VerifyInterfacesStatus,Verifies the status of the provided interfaces.,Interface Loopback0 - ROUTER_ID = 'up',NOT RUN, 1969,dc2-leaf2b,Interfaces,VerifyInterfacesStatus,Verifies the status of the provided interfaces.,Interface Loopback1 - VTEP_VXLAN_Tunnel_Source = 'up',NOT RUN, 1970,dc2-leaf2b,Interfaces,VerifyInterfacesStatus,Verifies the status of the provided interfaces.,Interface Loopback10 - VRF10_VTEP_DIAGNOSTICS = 'up',NOT RUN, 1971,dc2-leaf2b,Interfaces,VerifyInterfacesStatus,Verifies the status of the provided interfaces.,Interface Loopback11 - VRF11_VTEP_DIAGNOSTICS = 'up',NOT RUN, @@ -2198,7 +2198,7 @@ id,dut,categories,test,description,inputs,result,messages 2197,dc2-leaf3a.arista.com,Interfaces,VerifyInterfacesStatus,Verifies the status of the provided interfaces.,Interface Ethernet2 - P2P_LINK_TO_DC2-SPINE2_Ethernet5 = 'up',NOT RUN, 2198,dc2-leaf3a.arista.com,Interfaces,VerifyInterfacesStatus,Verifies the status of the provided interfaces.,Interface Ethernet3 - MLAG_PEER_dc2-leaf3b.arista.com_Ethernet3 = 'up',NOT RUN, 2199,dc2-leaf3a.arista.com,Interfaces,VerifyInterfacesStatus,Verifies the status of the provided interfaces.,Interface Ethernet4 - MLAG_PEER_dc2-leaf3b.arista.com_Ethernet4 = 'up',NOT RUN, -2200,dc2-leaf3a.arista.com,Interfaces,VerifyInterfacesStatus,Verifies the status of the provided interfaces.,Interface Loopback0 - EVPN_Overlay_Peering = 'up',NOT RUN, +2200,dc2-leaf3a.arista.com,Interfaces,VerifyInterfacesStatus,Verifies the status of the provided interfaces.,Interface Loopback0 - ROUTER_ID = 'up',NOT RUN, 2201,dc2-leaf3a.arista.com,Interfaces,VerifyInterfacesStatus,Verifies the status of the provided interfaces.,Interface Loopback1 - VTEP_VXLAN_Tunnel_Source = 'up',NOT RUN, 2202,dc2-leaf3a.arista.com,Interfaces,VerifyInterfacesStatus,Verifies the status of the provided interfaces.,Interface Loopback10 - VRF10_VTEP_DIAGNOSTICS = 'up',NOT RUN, 2203,dc2-leaf3a.arista.com,Interfaces,VerifyInterfacesStatus,Verifies the status of the provided interfaces.,Interface Loopback11 - VRF11_VTEP_DIAGNOSTICS = 'up',NOT RUN, @@ -2357,7 +2357,7 @@ id,dut,categories,test,description,inputs,result,messages 2356,dc2-leaf3b.arista.com,Interfaces,VerifyInterfacesStatus,Verifies the status of the provided interfaces.,Interface Ethernet2 - P2P_LINK_TO_DC2-SPINE2_Ethernet6 = 'up',NOT RUN, 2357,dc2-leaf3b.arista.com,Interfaces,VerifyInterfacesStatus,Verifies the status of the provided interfaces.,Interface Ethernet3 - MLAG_PEER_dc2-leaf3a.arista.com_Ethernet3 = 'up',NOT RUN, 2358,dc2-leaf3b.arista.com,Interfaces,VerifyInterfacesStatus,Verifies the status of the provided interfaces.,Interface Ethernet4 - MLAG_PEER_dc2-leaf3a.arista.com_Ethernet4 = 'up',NOT RUN, -2359,dc2-leaf3b.arista.com,Interfaces,VerifyInterfacesStatus,Verifies the status of the provided interfaces.,Interface Loopback0 - EVPN_Overlay_Peering = 'up',NOT RUN, +2359,dc2-leaf3b.arista.com,Interfaces,VerifyInterfacesStatus,Verifies the status of the provided interfaces.,Interface Loopback0 - ROUTER_ID = 'up',NOT RUN, 2360,dc2-leaf3b.arista.com,Interfaces,VerifyInterfacesStatus,Verifies the status of the provided interfaces.,Interface Loopback1 - VTEP_VXLAN_Tunnel_Source = 'up',NOT RUN, 2361,dc2-leaf3b.arista.com,Interfaces,VerifyInterfacesStatus,Verifies the status of the provided interfaces.,Interface Loopback10 - VRF10_VTEP_DIAGNOSTICS = 'up',NOT RUN, 2362,dc2-leaf3b.arista.com,Interfaces,VerifyInterfacesStatus,Verifies the status of the provided interfaces.,Interface Loopback11 - VRF11_VTEP_DIAGNOSTICS = 'up',NOT RUN, @@ -2513,7 +2513,7 @@ id,dut,categories,test,description,inputs,result,messages 2512,dc2-spine1,Interfaces,VerifyInterfacesStatus,Verifies the status of the provided interfaces.,Interface Ethernet4 - P2P_LINK_TO_DC2-LEAF2B_Ethernet1 = 'up',NOT RUN, 2513,dc2-spine1,Interfaces,VerifyInterfacesStatus,Verifies the status of the provided interfaces.,Interface Ethernet5 - P2P_LINK_TO_DC2-LEAF3A.ARISTA.COM_Ethernet1 = 'up',NOT RUN, 2514,dc2-spine1,Interfaces,VerifyInterfacesStatus,Verifies the status of the provided interfaces.,Interface Ethernet6 - P2P_LINK_TO_DC2-LEAF3B.ARISTA.COM_Ethernet1 = 'up',NOT RUN, -2515,dc2-spine1,Interfaces,VerifyInterfacesStatus,Verifies the status of the provided interfaces.,Interface Loopback0 - EVPN_Overlay_Peering = 'up',NOT RUN, +2515,dc2-spine1,Interfaces,VerifyInterfacesStatus,Verifies the status of the provided interfaces.,Interface Loopback0 - ROUTER_ID = 'up',NOT RUN, 2516,dc2-spine1,LANZ,VerifyLANZ,Verifies if LANZ is enabled.,,NOT RUN, 2517,dc2-spine1,PTP,VerifyPtpGMStatus,Verifies that the device is locked to a valid PTP Grandmaster.,,NOT RUN, 2518,dc2-spine1,PTP,VerifyPtpLockStatus,Verifies that the device was locked to the upstream PTP GM in the last minute.,,NOT RUN, @@ -2611,7 +2611,7 @@ id,dut,categories,test,description,inputs,result,messages 2610,dc2-spine2,Interfaces,VerifyInterfacesStatus,Verifies the status of the provided interfaces.,Interface Ethernet4 - P2P_LINK_TO_DC2-LEAF2B_Ethernet2 = 'up',NOT RUN, 2611,dc2-spine2,Interfaces,VerifyInterfacesStatus,Verifies the status of the provided interfaces.,Interface Ethernet5 - P2P_LINK_TO_DC2-LEAF3A.ARISTA.COM_Ethernet2 = 'up',NOT RUN, 2612,dc2-spine2,Interfaces,VerifyInterfacesStatus,Verifies the status of the provided interfaces.,Interface Ethernet6 - P2P_LINK_TO_DC2-LEAF3B.ARISTA.COM_Ethernet2 = 'up',NOT RUN, -2613,dc2-spine2,Interfaces,VerifyInterfacesStatus,Verifies the status of the provided interfaces.,Interface Loopback0 - EVPN_Overlay_Peering = 'up',NOT RUN, +2613,dc2-spine2,Interfaces,VerifyInterfacesStatus,Verifies the status of the provided interfaces.,Interface Loopback0 - ROUTER_ID = 'up',NOT RUN, 2614,dc2-spine2,LANZ,VerifyLANZ,Verifies if LANZ is enabled.,,NOT RUN, 2615,dc2-spine2,PTP,VerifyPtpGMStatus,Verifies that the device is locked to a valid PTP Grandmaster.,,NOT RUN, 2616,dc2-spine2,PTP,VerifyPtpLockStatus,Verifies that the device was locked to the upstream PTP GM in the last minute.,,NOT RUN, diff --git a/ansible_collections/arista/avd/molecule/eos_validate_state/reports/FABRIC-state.md b/ansible_collections/arista/avd/molecule/eos_validate_state/reports/FABRIC-state.md index f6a2de02827..c23dc120bec 100644 --- a/ansible_collections/arista/avd/molecule/eos_validate_state/reports/FABRIC-state.md +++ b/ansible_collections/arista/avd/molecule/eos_validate_state/reports/FABRIC-state.md @@ -149,7 +149,7 @@ | 66 | dc1-leaf1a | Interfaces | VerifyInterfacesStatus | Verifies the status of the provided interfaces. | Interface Ethernet6 - P2P_LINK_TO_DC1-WAN1_Ethernet1 = 'up' | NOT RUN | - | | 67 | dc1-leaf1a | Interfaces | VerifyInterfacesStatus | Verifies the status of the provided interfaces. | Interface Ethernet7 - P2P_LINK_TO_DC1-WAN2_Ethernet1 = 'up' | NOT RUN | - | | 68 | dc1-leaf1a | Interfaces | VerifyInterfacesStatus | Verifies the status of the provided interfaces. | Interface Ethernet8 - DC1-LEAF1C_Ethernet1 = 'up' | NOT RUN | - | -| 69 | dc1-leaf1a | Interfaces | VerifyInterfacesStatus | Verifies the status of the provided interfaces. | Interface Loopback0 - EVPN_Overlay_Peering = 'up' | NOT RUN | - | +| 69 | dc1-leaf1a | Interfaces | VerifyInterfacesStatus | Verifies the status of the provided interfaces. | Interface Loopback0 - ROUTER_ID = 'up' | NOT RUN | - | | 70 | dc1-leaf1a | Interfaces | VerifyInterfacesStatus | Verifies the status of the provided interfaces. | Interface Loopback1 - VTEP_VXLAN_Tunnel_Source = 'up' | NOT RUN | - | | 71 | dc1-leaf1a | Interfaces | VerifyInterfacesStatus | Verifies the status of the provided interfaces. | Interface Loopback10 - VRF10_VTEP_DIAGNOSTICS = 'up' | NOT RUN | - | | 72 | dc1-leaf1a | Interfaces | VerifyInterfacesStatus | Verifies the status of the provided interfaces. | Interface Loopback11 - VRF11_VTEP_DIAGNOSTICS = 'up' | NOT RUN | - | @@ -308,7 +308,7 @@ | 225 | dc1-leaf1b | Interfaces | VerifyInterfacesStatus | Verifies the status of the provided interfaces. | Interface Ethernet6 - P2P_LINK_TO_DC1-WAN1_Ethernet2 = 'up' | NOT RUN | - | | 226 | dc1-leaf1b | Interfaces | VerifyInterfacesStatus | Verifies the status of the provided interfaces. | Interface Ethernet7 - P2P_LINK_TO_DC1-WAN2_Ethernet2 = 'up' | NOT RUN | - | | 227 | dc1-leaf1b | Interfaces | VerifyInterfacesStatus | Verifies the status of the provided interfaces. | Interface Ethernet8 - DC1-LEAF1C_Ethernet2 = 'up' | NOT RUN | - | -| 228 | dc1-leaf1b | Interfaces | VerifyInterfacesStatus | Verifies the status of the provided interfaces. | Interface Loopback0 - EVPN_Overlay_Peering = 'up' | NOT RUN | - | +| 228 | dc1-leaf1b | Interfaces | VerifyInterfacesStatus | Verifies the status of the provided interfaces. | Interface Loopback0 - ROUTER_ID = 'up' | NOT RUN | - | | 229 | dc1-leaf1b | Interfaces | VerifyInterfacesStatus | Verifies the status of the provided interfaces. | Interface Loopback1 - VTEP_VXLAN_Tunnel_Source = 'up' | NOT RUN | - | | 230 | dc1-leaf1b | Interfaces | VerifyInterfacesStatus | Verifies the status of the provided interfaces. | Interface Loopback10 - VRF10_VTEP_DIAGNOSTICS = 'up' | NOT RUN | - | | 231 | dc1-leaf1b | Interfaces | VerifyInterfacesStatus | Verifies the status of the provided interfaces. | Interface Loopback11 - VRF11_VTEP_DIAGNOSTICS = 'up' | NOT RUN | - | @@ -543,7 +543,7 @@ | 460 | dc1-leaf2a | Interfaces | VerifyInterfacesStatus | Verifies the status of the provided interfaces. | Interface Ethernet5 - dc1-leaf2-server1_PCI1 = 'up' | NOT RUN | - | | 461 | dc1-leaf2a | Interfaces | VerifyInterfacesStatus | Verifies the status of the provided interfaces. | Interface Ethernet6 - P2P_LINK_TO_dc2-leaf2a_Ethernet6 = 'up' | NOT RUN | - | | 462 | dc1-leaf2a | Interfaces | VerifyInterfacesStatus | Verifies the status of the provided interfaces. | Interface Ethernet8 - DC1-LEAF2C_Ethernet1 = 'up' | NOT RUN | - | -| 463 | dc1-leaf2a | Interfaces | VerifyInterfacesStatus | Verifies the status of the provided interfaces. | Interface Loopback0 - EVPN_Overlay_Peering = 'up' | NOT RUN | - | +| 463 | dc1-leaf2a | Interfaces | VerifyInterfacesStatus | Verifies the status of the provided interfaces. | Interface Loopback0 - ROUTER_ID = 'up' | NOT RUN | - | | 464 | dc1-leaf2a | Interfaces | VerifyInterfacesStatus | Verifies the status of the provided interfaces. | Interface Loopback1 - VTEP_VXLAN_Tunnel_Source = 'up' | NOT RUN | - | | 465 | dc1-leaf2a | Interfaces | VerifyInterfacesStatus | Verifies the status of the provided interfaces. | Interface Loopback10 - VRF10_VTEP_DIAGNOSTICS = 'up' | NOT RUN | - | | 466 | dc1-leaf2a | Interfaces | VerifyInterfacesStatus | Verifies the status of the provided interfaces. | Interface Loopback11 - VRF11_VTEP_DIAGNOSTICS = 'up' | NOT RUN | - | @@ -802,7 +802,7 @@ | 719 | dc1-spine1 | Interfaces | VerifyInterfacesStatus | Verifies the status of the provided interfaces. | Interface Ethernet4 - P2P_LINK_TO_DC1-LEAF2B_Ethernet1 = 'adminDown' | NOT RUN | - | | 720 | dc1-spine1 | Interfaces | VerifyInterfacesStatus | Verifies the status of the provided interfaces. | Interface Ethernet5 - P2P_LINK_TO_DC1-SVC-LEAF1A_Ethernet1 = 'up' | NOT RUN | - | | 721 | dc1-spine1 | Interfaces | VerifyInterfacesStatus | Verifies the status of the provided interfaces. | Interface Ethernet6 - P2P_LINK_TO_DC1-SVC-LEAF1B_Ethernet1 = 'up' | NOT RUN | - | -| 722 | dc1-spine1 | Interfaces | VerifyInterfacesStatus | Verifies the status of the provided interfaces. | Interface Loopback0 - EVPN_Overlay_Peering = 'up' | NOT RUN | - | +| 722 | dc1-spine1 | Interfaces | VerifyInterfacesStatus | Verifies the status of the provided interfaces. | Interface Loopback0 - ROUTER_ID = 'up' | NOT RUN | - | | 723 | dc1-spine1 | Interfaces | VerifyInterfaceUtilization | Verifies that the utilization of interfaces is below a certain threshold. | - | NOT RUN | - | | 724 | dc1-spine1 | Interfaces | VerifyIPProxyARP | Verifies if Proxy ARP is enabled. | - | NOT RUN | - | | 725 | dc1-spine1 | Interfaces | VerifyL2MTU | Verifies the global L2 MTU of all L2 interfaces. | - | NOT RUN | - | @@ -918,7 +918,7 @@ | 835 | dc1-spine2 | Interfaces | VerifyInterfacesStatus | Verifies the status of the provided interfaces. | Interface Ethernet4 - P2P_LINK_TO_DC1-LEAF2B_Ethernet2 = 'adminDown' | NOT RUN | - | | 836 | dc1-spine2 | Interfaces | VerifyInterfacesStatus | Verifies the status of the provided interfaces. | Interface Ethernet5 - P2P_LINK_TO_DC1-SVC-LEAF1A_Ethernet2 = 'up' | NOT RUN | - | | 837 | dc1-spine2 | Interfaces | VerifyInterfacesStatus | Verifies the status of the provided interfaces. | Interface Ethernet6 - P2P_LINK_TO_DC1-SVC-LEAF1B_Ethernet2 = 'up' | NOT RUN | - | -| 838 | dc1-spine2 | Interfaces | VerifyInterfacesStatus | Verifies the status of the provided interfaces. | Interface Loopback0 - EVPN_Overlay_Peering = 'up' | NOT RUN | - | +| 838 | dc1-spine2 | Interfaces | VerifyInterfacesStatus | Verifies the status of the provided interfaces. | Interface Loopback0 - ROUTER_ID = 'up' | NOT RUN | - | | 839 | dc1-spine2 | Interfaces | VerifyInterfaceUtilization | Verifies that the utilization of interfaces is below a certain threshold. | - | NOT RUN | - | | 840 | dc1-spine2 | Interfaces | VerifyIPProxyARP | Verifies if Proxy ARP is enabled. | - | NOT RUN | - | | 841 | dc1-spine2 | Interfaces | VerifyL2MTU | Verifies the global L2 MTU of all L2 interfaces. | - | NOT RUN | - | @@ -1031,7 +1031,7 @@ | 948 | dc1-svc-leaf1a | Interfaces | VerifyInterfacesStatus | Verifies the status of the provided interfaces. | Interface Ethernet2 - P2P_LINK_TO_DC1-SPINE2_Ethernet5 = 'up' | NOT RUN | - | | 949 | dc1-svc-leaf1a | Interfaces | VerifyInterfacesStatus | Verifies the status of the provided interfaces. | Interface Ethernet3 - MLAG_PEER_dc1-svc-leaf1b_Ethernet3 = 'up' | NOT RUN | - | | 950 | dc1-svc-leaf1a | Interfaces | VerifyInterfacesStatus | Verifies the status of the provided interfaces. | Interface Ethernet4 - MLAG_PEER_dc1-svc-leaf1b_Ethernet4 = 'up' | NOT RUN | - | -| 951 | dc1-svc-leaf1a | Interfaces | VerifyInterfacesStatus | Verifies the status of the provided interfaces. | Interface Loopback0 - EVPN_Overlay_Peering = 'up' | NOT RUN | - | +| 951 | dc1-svc-leaf1a | Interfaces | VerifyInterfacesStatus | Verifies the status of the provided interfaces. | Interface Loopback0 - ROUTER_ID = 'up' | NOT RUN | - | | 952 | dc1-svc-leaf1a | Interfaces | VerifyInterfacesStatus | Verifies the status of the provided interfaces. | Interface Loopback1 - VTEP_VXLAN_Tunnel_Source = 'up' | NOT RUN | - | | 953 | dc1-svc-leaf1a | Interfaces | VerifyInterfacesStatus | Verifies the status of the provided interfaces. | Interface Port-Channel3 - MLAG_PEER_dc1-svc-leaf1b_Po3 = 'up' | NOT RUN | - | | 954 | dc1-svc-leaf1a | Interfaces | VerifyInterfacesStatus | Verifies the status of the provided interfaces. | Interface Vlan4093 - MLAG_PEER_L3_PEERING = 'up' | NOT RUN | - | @@ -1160,7 +1160,7 @@ | 1077 | dc1-svc-leaf1b | Interfaces | VerifyInterfacesStatus | Verifies the status of the provided interfaces. | Interface Ethernet2 - P2P_LINK_TO_DC1-SPINE2_Ethernet6 = 'up' | NOT RUN | - | | 1078 | dc1-svc-leaf1b | Interfaces | VerifyInterfacesStatus | Verifies the status of the provided interfaces. | Interface Ethernet3 - MLAG_PEER_dc1-svc-leaf1a_Ethernet3 = 'up' | NOT RUN | - | | 1079 | dc1-svc-leaf1b | Interfaces | VerifyInterfacesStatus | Verifies the status of the provided interfaces. | Interface Ethernet4 - MLAG_PEER_dc1-svc-leaf1a_Ethernet4 = 'up' | NOT RUN | - | -| 1080 | dc1-svc-leaf1b | Interfaces | VerifyInterfacesStatus | Verifies the status of the provided interfaces. | Interface Loopback0 - EVPN_Overlay_Peering = 'up' | NOT RUN | - | +| 1080 | dc1-svc-leaf1b | Interfaces | VerifyInterfacesStatus | Verifies the status of the provided interfaces. | Interface Loopback0 - ROUTER_ID = 'up' | NOT RUN | - | | 1081 | dc1-svc-leaf1b | Interfaces | VerifyInterfacesStatus | Verifies the status of the provided interfaces. | Interface Loopback1 - VTEP_VXLAN_Tunnel_Source = 'up' | NOT RUN | - | | 1082 | dc1-svc-leaf1b | Interfaces | VerifyInterfacesStatus | Verifies the status of the provided interfaces. | Interface Port-Channel3 - MLAG_PEER_dc1-svc-leaf1a_Po3 = 'up' | NOT RUN | - | | 1083 | dc1-svc-leaf1b | Interfaces | VerifyInterfacesStatus | Verifies the status of the provided interfaces. | Interface Vlan4093 - MLAG_PEER_L3_PEERING = 'up' | NOT RUN | - | @@ -1279,7 +1279,7 @@ | 1196 | dc1-wan1 | Interfaces | VerifyInterfacesStatus | Verifies the status of the provided interfaces. | Interface Ethernet2 - P2P_LINK_TO_DC1-LEAF1B_Ethernet6 = 'up' | NOT RUN | - | | 1197 | dc1-wan1 | Interfaces | VerifyInterfacesStatus | Verifies the status of the provided interfaces. | Interface Ethernet3 - mpls-sp-1_DC1-MPLS-3 = 'up' | NOT RUN | - | | 1198 | dc1-wan1 | Interfaces | VerifyInterfacesStatus | Verifies the status of the provided interfaces. | Interface Ethernet4 - isp-1_DC1-INET-3 = 'up' | NOT RUN | - | -| 1199 | dc1-wan1 | Interfaces | VerifyInterfacesStatus | Verifies the status of the provided interfaces. | Interface Loopback0 - Router_ID = 'up' | NOT RUN | - | +| 1199 | dc1-wan1 | Interfaces | VerifyInterfacesStatus | Verifies the status of the provided interfaces. | Interface Loopback0 - ROUTER_ID = 'up' | NOT RUN | - | | 1200 | dc1-wan1 | Interfaces | VerifyInterfacesStatus | Verifies the status of the provided interfaces. | Interface Vxlan1 = 'up' | NOT RUN | - | | 1201 | dc1-wan1 | LANZ | VerifyLANZ | Verifies if LANZ is enabled. | - | NOT RUN | - | | 1202 | dc1-wan1 | PTP | VerifyPtpGMStatus | Verifies that the device is locked to a valid PTP Grandmaster. | - | NOT RUN | - | @@ -1375,7 +1375,7 @@ | 1292 | dc1-wan2 | Interfaces | VerifyInterfacesStatus | Verifies the status of the provided interfaces. | Interface Ethernet2 - P2P_LINK_TO_DC1-LEAF1B_Ethernet7 = 'up' | NOT RUN | - | | 1293 | dc1-wan2 | Interfaces | VerifyInterfacesStatus | Verifies the status of the provided interfaces. | Interface Ethernet3 - mpls-sp-1_DC1-MPLS-4 = 'up' | NOT RUN | - | | 1294 | dc1-wan2 | Interfaces | VerifyInterfacesStatus | Verifies the status of the provided interfaces. | Interface Ethernet4 - isp-1_DC1-INET-4 = 'up' | NOT RUN | - | -| 1295 | dc1-wan2 | Interfaces | VerifyInterfacesStatus | Verifies the status of the provided interfaces. | Interface Loopback0 - Router_ID = 'up' | NOT RUN | - | +| 1295 | dc1-wan2 | Interfaces | VerifyInterfacesStatus | Verifies the status of the provided interfaces. | Interface Loopback0 - ROUTER_ID = 'up' | NOT RUN | - | | 1296 | dc1-wan2 | Interfaces | VerifyInterfacesStatus | Verifies the status of the provided interfaces. | Interface Vxlan1 = 'up' | NOT RUN | - | | 1297 | dc1-wan2 | LANZ | VerifyLANZ | Verifies if LANZ is enabled. | - | NOT RUN | - | | 1298 | dc1-wan2 | PTP | VerifyPtpGMStatus | Verifies that the device is locked to a valid PTP Grandmaster. | - | NOT RUN | - | @@ -1484,7 +1484,7 @@ | 1401 | dc2-leaf1a | Interfaces | VerifyInterfacesStatus | Verifies the status of the provided interfaces. | Interface Ethernet4 - MLAG_PEER_dc2-leaf1b_Ethernet4 = 'up' | NOT RUN | - | | 1402 | dc2-leaf1a | Interfaces | VerifyInterfacesStatus | Verifies the status of the provided interfaces. | Interface Ethernet5 - dc2-leaf1-server1_PCI1 = 'up' | NOT RUN | - | | 1403 | dc2-leaf1a | Interfaces | VerifyInterfacesStatus | Verifies the status of the provided interfaces. | Interface Ethernet8 - DC2-LEAF1C_Ethernet1 = 'up' | NOT RUN | - | -| 1404 | dc2-leaf1a | Interfaces | VerifyInterfacesStatus | Verifies the status of the provided interfaces. | Interface Loopback0 - EVPN_Overlay_Peering = 'up' | NOT RUN | - | +| 1404 | dc2-leaf1a | Interfaces | VerifyInterfacesStatus | Verifies the status of the provided interfaces. | Interface Loopback0 - ROUTER_ID = 'up' | NOT RUN | - | | 1405 | dc2-leaf1a | Interfaces | VerifyInterfacesStatus | Verifies the status of the provided interfaces. | Interface Loopback1 - VTEP_VXLAN_Tunnel_Source = 'up' | NOT RUN | - | | 1406 | dc2-leaf1a | Interfaces | VerifyInterfacesStatus | Verifies the status of the provided interfaces. | Interface Loopback10 - VRF10_VTEP_DIAGNOSTICS = 'up' | NOT RUN | - | | 1407 | dc2-leaf1a | Interfaces | VerifyInterfacesStatus | Verifies the status of the provided interfaces. | Interface Loopback11 - VRF11_VTEP_DIAGNOSTICS = 'up' | NOT RUN | - | @@ -1646,7 +1646,7 @@ | 1563 | dc2-leaf1b | Interfaces | VerifyInterfacesStatus | Verifies the status of the provided interfaces. | Interface Ethernet4 - MLAG_PEER_dc2-leaf1a_Ethernet4 = 'up' | NOT RUN | - | | 1564 | dc2-leaf1b | Interfaces | VerifyInterfacesStatus | Verifies the status of the provided interfaces. | Interface Ethernet5 - dc2-leaf1-server1_PCI2 = 'up' | NOT RUN | - | | 1565 | dc2-leaf1b | Interfaces | VerifyInterfacesStatus | Verifies the status of the provided interfaces. | Interface Ethernet8 - DC2-LEAF1C_Ethernet2 = 'up' | NOT RUN | - | -| 1566 | dc2-leaf1b | Interfaces | VerifyInterfacesStatus | Verifies the status of the provided interfaces. | Interface Loopback0 - EVPN_Overlay_Peering = 'up' | NOT RUN | - | +| 1566 | dc2-leaf1b | Interfaces | VerifyInterfacesStatus | Verifies the status of the provided interfaces. | Interface Loopback0 - ROUTER_ID = 'up' | NOT RUN | - | | 1567 | dc2-leaf1b | Interfaces | VerifyInterfacesStatus | Verifies the status of the provided interfaces. | Interface Loopback1 - VTEP_VXLAN_Tunnel_Source = 'up' | NOT RUN | - | | 1568 | dc2-leaf1b | Interfaces | VerifyInterfacesStatus | Verifies the status of the provided interfaces. | Interface Loopback10 - VRF10_VTEP_DIAGNOSTICS = 'up' | NOT RUN | - | | 1569 | dc2-leaf1b | Interfaces | VerifyInterfacesStatus | Verifies the status of the provided interfaces. | Interface Loopback11 - VRF11_VTEP_DIAGNOSTICS = 'up' | NOT RUN | - | @@ -1885,7 +1885,7 @@ | 1802 | dc2-leaf2a | Interfaces | VerifyInterfacesStatus | Verifies the status of the provided interfaces. | Interface Ethernet5 - dc2-leaf2-server1_PCI1 = 'up' | NOT RUN | - | | 1803 | dc2-leaf2a | Interfaces | VerifyInterfacesStatus | Verifies the status of the provided interfaces. | Interface Ethernet6 - P2P_LINK_TO_dc1-leaf2a_Ethernet6 = 'up' | NOT RUN | - | | 1804 | dc2-leaf2a | Interfaces | VerifyInterfacesStatus | Verifies the status of the provided interfaces. | Interface Ethernet8 - DC2-LEAF2C_Ethernet1 = 'up' | NOT RUN | - | -| 1805 | dc2-leaf2a | Interfaces | VerifyInterfacesStatus | Verifies the status of the provided interfaces. | Interface Loopback0 - EVPN_Overlay_Peering = 'up' | NOT RUN | - | +| 1805 | dc2-leaf2a | Interfaces | VerifyInterfacesStatus | Verifies the status of the provided interfaces. | Interface Loopback0 - ROUTER_ID = 'up' | NOT RUN | - | | 1806 | dc2-leaf2a | Interfaces | VerifyInterfacesStatus | Verifies the status of the provided interfaces. | Interface Loopback1 - VTEP_VXLAN_Tunnel_Source = 'up' | NOT RUN | - | | 1807 | dc2-leaf2a | Interfaces | VerifyInterfacesStatus | Verifies the status of the provided interfaces. | Interface Loopback10 - VRF10_VTEP_DIAGNOSTICS = 'up' | NOT RUN | - | | 1808 | dc2-leaf2a | Interfaces | VerifyInterfacesStatus | Verifies the status of the provided interfaces. | Interface Loopback11 - VRF11_VTEP_DIAGNOSTICS = 'up' | NOT RUN | - | @@ -2048,7 +2048,7 @@ | 1965 | dc2-leaf2b | Interfaces | VerifyInterfacesStatus | Verifies the status of the provided interfaces. | Interface Ethernet5 - dc2-leaf2-server1_PCI2 = 'up' | NOT RUN | - | | 1966 | dc2-leaf2b | Interfaces | VerifyInterfacesStatus | Verifies the status of the provided interfaces. | Interface Ethernet6 - P2P_LINK_TO_dc1-leaf2b_Ethernet6 = 'up' | NOT RUN | - | | 1967 | dc2-leaf2b | Interfaces | VerifyInterfacesStatus | Verifies the status of the provided interfaces. | Interface Ethernet8 - DC2-LEAF2C_Ethernet2 = 'up' | NOT RUN | - | -| 1968 | dc2-leaf2b | Interfaces | VerifyInterfacesStatus | Verifies the status of the provided interfaces. | Interface Loopback0 - EVPN_Overlay_Peering = 'up' | NOT RUN | - | +| 1968 | dc2-leaf2b | Interfaces | VerifyInterfacesStatus | Verifies the status of the provided interfaces. | Interface Loopback0 - ROUTER_ID = 'up' | NOT RUN | - | | 1969 | dc2-leaf2b | Interfaces | VerifyInterfacesStatus | Verifies the status of the provided interfaces. | Interface Loopback1 - VTEP_VXLAN_Tunnel_Source = 'up' | NOT RUN | - | | 1970 | dc2-leaf2b | Interfaces | VerifyInterfacesStatus | Verifies the status of the provided interfaces. | Interface Loopback10 - VRF10_VTEP_DIAGNOSTICS = 'up' | NOT RUN | - | | 1971 | dc2-leaf2b | Interfaces | VerifyInterfacesStatus | Verifies the status of the provided interfaces. | Interface Loopback11 - VRF11_VTEP_DIAGNOSTICS = 'up' | NOT RUN | - | @@ -2280,7 +2280,7 @@ | 2197 | dc2-leaf3a.arista.com | Interfaces | VerifyInterfacesStatus | Verifies the status of the provided interfaces. | Interface Ethernet2 - P2P_LINK_TO_DC2-SPINE2_Ethernet5 = 'up' | NOT RUN | - | | 2198 | dc2-leaf3a.arista.com | Interfaces | VerifyInterfacesStatus | Verifies the status of the provided interfaces. | Interface Ethernet3 - MLAG_PEER_dc2-leaf3b.arista.com_Ethernet3 = 'up' | NOT RUN | - | | 2199 | dc2-leaf3a.arista.com | Interfaces | VerifyInterfacesStatus | Verifies the status of the provided interfaces. | Interface Ethernet4 - MLAG_PEER_dc2-leaf3b.arista.com_Ethernet4 = 'up' | NOT RUN | - | -| 2200 | dc2-leaf3a.arista.com | Interfaces | VerifyInterfacesStatus | Verifies the status of the provided interfaces. | Interface Loopback0 - EVPN_Overlay_Peering = 'up' | NOT RUN | - | +| 2200 | dc2-leaf3a.arista.com | Interfaces | VerifyInterfacesStatus | Verifies the status of the provided interfaces. | Interface Loopback0 - ROUTER_ID = 'up' | NOT RUN | - | | 2201 | dc2-leaf3a.arista.com | Interfaces | VerifyInterfacesStatus | Verifies the status of the provided interfaces. | Interface Loopback1 - VTEP_VXLAN_Tunnel_Source = 'up' | NOT RUN | - | | 2202 | dc2-leaf3a.arista.com | Interfaces | VerifyInterfacesStatus | Verifies the status of the provided interfaces. | Interface Loopback10 - VRF10_VTEP_DIAGNOSTICS = 'up' | NOT RUN | - | | 2203 | dc2-leaf3a.arista.com | Interfaces | VerifyInterfacesStatus | Verifies the status of the provided interfaces. | Interface Loopback11 - VRF11_VTEP_DIAGNOSTICS = 'up' | NOT RUN | - | @@ -2439,7 +2439,7 @@ | 2356 | dc2-leaf3b.arista.com | Interfaces | VerifyInterfacesStatus | Verifies the status of the provided interfaces. | Interface Ethernet2 - P2P_LINK_TO_DC2-SPINE2_Ethernet6 = 'up' | NOT RUN | - | | 2357 | dc2-leaf3b.arista.com | Interfaces | VerifyInterfacesStatus | Verifies the status of the provided interfaces. | Interface Ethernet3 - MLAG_PEER_dc2-leaf3a.arista.com_Ethernet3 = 'up' | NOT RUN | - | | 2358 | dc2-leaf3b.arista.com | Interfaces | VerifyInterfacesStatus | Verifies the status of the provided interfaces. | Interface Ethernet4 - MLAG_PEER_dc2-leaf3a.arista.com_Ethernet4 = 'up' | NOT RUN | - | -| 2359 | dc2-leaf3b.arista.com | Interfaces | VerifyInterfacesStatus | Verifies the status of the provided interfaces. | Interface Loopback0 - EVPN_Overlay_Peering = 'up' | NOT RUN | - | +| 2359 | dc2-leaf3b.arista.com | Interfaces | VerifyInterfacesStatus | Verifies the status of the provided interfaces. | Interface Loopback0 - ROUTER_ID = 'up' | NOT RUN | - | | 2360 | dc2-leaf3b.arista.com | Interfaces | VerifyInterfacesStatus | Verifies the status of the provided interfaces. | Interface Loopback1 - VTEP_VXLAN_Tunnel_Source = 'up' | NOT RUN | - | | 2361 | dc2-leaf3b.arista.com | Interfaces | VerifyInterfacesStatus | Verifies the status of the provided interfaces. | Interface Loopback10 - VRF10_VTEP_DIAGNOSTICS = 'up' | NOT RUN | - | | 2362 | dc2-leaf3b.arista.com | Interfaces | VerifyInterfacesStatus | Verifies the status of the provided interfaces. | Interface Loopback11 - VRF11_VTEP_DIAGNOSTICS = 'up' | NOT RUN | - | @@ -2595,7 +2595,7 @@ | 2512 | dc2-spine1 | Interfaces | VerifyInterfacesStatus | Verifies the status of the provided interfaces. | Interface Ethernet4 - P2P_LINK_TO_DC2-LEAF2B_Ethernet1 = 'up' | NOT RUN | - | | 2513 | dc2-spine1 | Interfaces | VerifyInterfacesStatus | Verifies the status of the provided interfaces. | Interface Ethernet5 - P2P_LINK_TO_DC2-LEAF3A.ARISTA.COM_Ethernet1 = 'up' | NOT RUN | - | | 2514 | dc2-spine1 | Interfaces | VerifyInterfacesStatus | Verifies the status of the provided interfaces. | Interface Ethernet6 - P2P_LINK_TO_DC2-LEAF3B.ARISTA.COM_Ethernet1 = 'up' | NOT RUN | - | -| 2515 | dc2-spine1 | Interfaces | VerifyInterfacesStatus | Verifies the status of the provided interfaces. | Interface Loopback0 - EVPN_Overlay_Peering = 'up' | NOT RUN | - | +| 2515 | dc2-spine1 | Interfaces | VerifyInterfacesStatus | Verifies the status of the provided interfaces. | Interface Loopback0 - ROUTER_ID = 'up' | NOT RUN | - | | 2516 | dc2-spine1 | LANZ | VerifyLANZ | Verifies if LANZ is enabled. | - | NOT RUN | - | | 2517 | dc2-spine1 | PTP | VerifyPtpGMStatus | Verifies that the device is locked to a valid PTP Grandmaster. | - | NOT RUN | - | | 2518 | dc2-spine1 | PTP | VerifyPtpLockStatus | Verifies that the device was locked to the upstream PTP GM in the last minute. | - | NOT RUN | - | @@ -2693,7 +2693,7 @@ | 2610 | dc2-spine2 | Interfaces | VerifyInterfacesStatus | Verifies the status of the provided interfaces. | Interface Ethernet4 - P2P_LINK_TO_DC2-LEAF2B_Ethernet2 = 'up' | NOT RUN | - | | 2611 | dc2-spine2 | Interfaces | VerifyInterfacesStatus | Verifies the status of the provided interfaces. | Interface Ethernet5 - P2P_LINK_TO_DC2-LEAF3A.ARISTA.COM_Ethernet2 = 'up' | NOT RUN | - | | 2612 | dc2-spine2 | Interfaces | VerifyInterfacesStatus | Verifies the status of the provided interfaces. | Interface Ethernet6 - P2P_LINK_TO_DC2-LEAF3B.ARISTA.COM_Ethernet2 = 'up' | NOT RUN | - | -| 2613 | dc2-spine2 | Interfaces | VerifyInterfacesStatus | Verifies the status of the provided interfaces. | Interface Loopback0 - EVPN_Overlay_Peering = 'up' | NOT RUN | - | +| 2613 | dc2-spine2 | Interfaces | VerifyInterfacesStatus | Verifies the status of the provided interfaces. | Interface Loopback0 - ROUTER_ID = 'up' | NOT RUN | - | | 2614 | dc2-spine2 | LANZ | VerifyLANZ | Verifies if LANZ is enabled. | - | NOT RUN | - | | 2615 | dc2-spine2 | PTP | VerifyPtpGMStatus | Verifies that the device is locked to a valid PTP Grandmaster. | - | NOT RUN | - | | 2616 | dc2-spine2 | PTP | VerifyPtpLockStatus | Verifies that the device was locked to the upstream PTP GM in the last minute. | - | NOT RUN | - | diff --git a/ansible_collections/arista/avd/molecule/eos_validate_state/reports/test_results/dc1-leaf1a-results.json b/ansible_collections/arista/avd/molecule/eos_validate_state/reports/test_results/dc1-leaf1a-results.json index e7d81f7935f..259bf6547ce 100644 --- a/ansible_collections/arista/avd/molecule/eos_validate_state/reports/test_results/dc1-leaf1a-results.json +++ b/ansible_collections/arista/avd/molecule/eos_validate_state/reports/test_results/dc1-leaf1a-results.json @@ -597,7 +597,7 @@ "interfaces" ], "description": "Verifies the status of the provided interfaces.", - "custom_field": "Interface Loopback0 - EVPN_Overlay_Peering = 'up'" + "custom_field": "Interface Loopback0 - ROUTER_ID = 'up'" }, { "name": "dc1-leaf1a", diff --git a/ansible_collections/arista/avd/molecule/eos_validate_state/reports/test_results/dc1-leaf1b-results.json b/ansible_collections/arista/avd/molecule/eos_validate_state/reports/test_results/dc1-leaf1b-results.json index 24e78b49268..7275ea2b260 100644 --- a/ansible_collections/arista/avd/molecule/eos_validate_state/reports/test_results/dc1-leaf1b-results.json +++ b/ansible_collections/arista/avd/molecule/eos_validate_state/reports/test_results/dc1-leaf1b-results.json @@ -588,7 +588,7 @@ "interfaces" ], "description": "Verifies the status of the provided interfaces.", - "custom_field": "Interface Loopback0 - EVPN_Overlay_Peering = 'up'" + "custom_field": "Interface Loopback0 - ROUTER_ID = 'up'" }, { "name": "dc1-leaf1b", diff --git a/ansible_collections/arista/avd/molecule/eos_validate_state/reports/test_results/dc1-leaf2a-results.json b/ansible_collections/arista/avd/molecule/eos_validate_state/reports/test_results/dc1-leaf2a-results.json index c422d7010c2..f9dc9cc41f3 100644 --- a/ansible_collections/arista/avd/molecule/eos_validate_state/reports/test_results/dc1-leaf2a-results.json +++ b/ansible_collections/arista/avd/molecule/eos_validate_state/reports/test_results/dc1-leaf2a-results.json @@ -534,7 +534,7 @@ "interfaces" ], "description": "Verifies the status of the provided interfaces.", - "custom_field": "Interface Loopback0 - EVPN_Overlay_Peering = 'up'" + "custom_field": "Interface Loopback0 - ROUTER_ID = 'up'" }, { "name": "dc1-leaf2a", diff --git a/ansible_collections/arista/avd/molecule/eos_validate_state/reports/test_results/dc1-spine1-results.json b/ansible_collections/arista/avd/molecule/eos_validate_state/reports/test_results/dc1-spine1-results.json index c2cb2f258ab..f58193d31fc 100644 --- a/ansible_collections/arista/avd/molecule/eos_validate_state/reports/test_results/dc1-spine1-results.json +++ b/ansible_collections/arista/avd/molecule/eos_validate_state/reports/test_results/dc1-spine1-results.json @@ -497,7 +497,7 @@ "interfaces" ], "description": "Verifies the status of the provided interfaces.", - "custom_field": "Interface Loopback0 - EVPN_Overlay_Peering = 'up'" + "custom_field": "Interface Loopback0 - ROUTER_ID = 'up'" }, { "name": "dc1-spine1", diff --git a/ansible_collections/arista/avd/molecule/eos_validate_state/reports/test_results/dc1-spine2-results.json b/ansible_collections/arista/avd/molecule/eos_validate_state/reports/test_results/dc1-spine2-results.json index 0e3adf92562..72a509118ca 100644 --- a/ansible_collections/arista/avd/molecule/eos_validate_state/reports/test_results/dc1-spine2-results.json +++ b/ansible_collections/arista/avd/molecule/eos_validate_state/reports/test_results/dc1-spine2-results.json @@ -497,7 +497,7 @@ "interfaces" ], "description": "Verifies the status of the provided interfaces.", - "custom_field": "Interface Loopback0 - EVPN_Overlay_Peering = 'up'" + "custom_field": "Interface Loopback0 - ROUTER_ID = 'up'" }, { "name": "dc1-spine2", diff --git a/ansible_collections/arista/avd/molecule/eos_validate_state/reports/test_results/dc1-svc-leaf1a-results.json b/ansible_collections/arista/avd/molecule/eos_validate_state/reports/test_results/dc1-svc-leaf1a-results.json index b096ebfb5e1..c305004732a 100644 --- a/ansible_collections/arista/avd/molecule/eos_validate_state/reports/test_results/dc1-svc-leaf1a-results.json +++ b/ansible_collections/arista/avd/molecule/eos_validate_state/reports/test_results/dc1-svc-leaf1a-results.json @@ -489,7 +489,7 @@ "interfaces" ], "description": "Verifies the status of the provided interfaces.", - "custom_field": "Interface Loopback0 - EVPN_Overlay_Peering = 'up'" + "custom_field": "Interface Loopback0 - ROUTER_ID = 'up'" }, { "name": "dc1-svc-leaf1a", diff --git a/ansible_collections/arista/avd/molecule/eos_validate_state/reports/test_results/dc1-svc-leaf1b-results.json b/ansible_collections/arista/avd/molecule/eos_validate_state/reports/test_results/dc1-svc-leaf1b-results.json index 8458f2e9243..31ee593d491 100644 --- a/ansible_collections/arista/avd/molecule/eos_validate_state/reports/test_results/dc1-svc-leaf1b-results.json +++ b/ansible_collections/arista/avd/molecule/eos_validate_state/reports/test_results/dc1-svc-leaf1b-results.json @@ -489,7 +489,7 @@ "interfaces" ], "description": "Verifies the status of the provided interfaces.", - "custom_field": "Interface Loopback0 - EVPN_Overlay_Peering = 'up'" + "custom_field": "Interface Loopback0 - ROUTER_ID = 'up'" }, { "name": "dc1-svc-leaf1b", diff --git a/ansible_collections/arista/avd/molecule/eos_validate_state/reports/test_results/dc1-wan1-results.json b/ansible_collections/arista/avd/molecule/eos_validate_state/reports/test_results/dc1-wan1-results.json index f48128e533f..f2b3987fa79 100644 --- a/ansible_collections/arista/avd/molecule/eos_validate_state/reports/test_results/dc1-wan1-results.json +++ b/ansible_collections/arista/avd/molecule/eos_validate_state/reports/test_results/dc1-wan1-results.json @@ -399,7 +399,7 @@ "interfaces" ], "description": "Verifies the status of the provided interfaces.", - "custom_field": "Interface Loopback0 - Router_ID = 'up'" + "custom_field": "Interface Loopback0 - ROUTER_ID = 'up'" }, { "name": "dc1-wan1", diff --git a/ansible_collections/arista/avd/molecule/eos_validate_state/reports/test_results/dc1-wan2-results.json b/ansible_collections/arista/avd/molecule/eos_validate_state/reports/test_results/dc1-wan2-results.json index 0b1acce367c..ee34df2593a 100644 --- a/ansible_collections/arista/avd/molecule/eos_validate_state/reports/test_results/dc1-wan2-results.json +++ b/ansible_collections/arista/avd/molecule/eos_validate_state/reports/test_results/dc1-wan2-results.json @@ -399,7 +399,7 @@ "interfaces" ], "description": "Verifies the status of the provided interfaces.", - "custom_field": "Interface Loopback0 - Router_ID = 'up'" + "custom_field": "Interface Loopback0 - ROUTER_ID = 'up'" }, { "name": "dc1-wan2", diff --git a/ansible_collections/arista/avd/molecule/eos_validate_state/reports/test_results/dc2-leaf1a-results.json b/ansible_collections/arista/avd/molecule/eos_validate_state/reports/test_results/dc2-leaf1a-results.json index 492683ffa59..b6e3a7b3a8c 100644 --- a/ansible_collections/arista/avd/molecule/eos_validate_state/reports/test_results/dc2-leaf1a-results.json +++ b/ansible_collections/arista/avd/molecule/eos_validate_state/reports/test_results/dc2-leaf1a-results.json @@ -516,7 +516,7 @@ "interfaces" ], "description": "Verifies the status of the provided interfaces.", - "custom_field": "Interface Loopback0 - EVPN_Overlay_Peering = 'up'" + "custom_field": "Interface Loopback0 - ROUTER_ID = 'up'" }, { "name": "dc2-leaf1a", diff --git a/ansible_collections/arista/avd/molecule/eos_validate_state/reports/test_results/dc2-leaf1b-results.json b/ansible_collections/arista/avd/molecule/eos_validate_state/reports/test_results/dc2-leaf1b-results.json index 20c9e7ff31d..20d29b16784 100644 --- a/ansible_collections/arista/avd/molecule/eos_validate_state/reports/test_results/dc2-leaf1b-results.json +++ b/ansible_collections/arista/avd/molecule/eos_validate_state/reports/test_results/dc2-leaf1b-results.json @@ -516,7 +516,7 @@ "interfaces" ], "description": "Verifies the status of the provided interfaces.", - "custom_field": "Interface Loopback0 - EVPN_Overlay_Peering = 'up'" + "custom_field": "Interface Loopback0 - ROUTER_ID = 'up'" }, { "name": "dc2-leaf1b", diff --git a/ansible_collections/arista/avd/molecule/eos_validate_state/reports/test_results/dc2-leaf2a-results.json b/ansible_collections/arista/avd/molecule/eos_validate_state/reports/test_results/dc2-leaf2a-results.json index 0ad5865931e..5e88460376c 100644 --- a/ansible_collections/arista/avd/molecule/eos_validate_state/reports/test_results/dc2-leaf2a-results.json +++ b/ansible_collections/arista/avd/molecule/eos_validate_state/reports/test_results/dc2-leaf2a-results.json @@ -561,7 +561,7 @@ "interfaces" ], "description": "Verifies the status of the provided interfaces.", - "custom_field": "Interface Loopback0 - EVPN_Overlay_Peering = 'up'" + "custom_field": "Interface Loopback0 - ROUTER_ID = 'up'" }, { "name": "dc2-leaf2a", diff --git a/ansible_collections/arista/avd/molecule/eos_validate_state/reports/test_results/dc2-leaf2b-results.json b/ansible_collections/arista/avd/molecule/eos_validate_state/reports/test_results/dc2-leaf2b-results.json index 9d0385409d5..aab60c5af7d 100644 --- a/ansible_collections/arista/avd/molecule/eos_validate_state/reports/test_results/dc2-leaf2b-results.json +++ b/ansible_collections/arista/avd/molecule/eos_validate_state/reports/test_results/dc2-leaf2b-results.json @@ -525,7 +525,7 @@ "interfaces" ], "description": "Verifies the status of the provided interfaces.", - "custom_field": "Interface Loopback0 - EVPN_Overlay_Peering = 'up'" + "custom_field": "Interface Loopback0 - ROUTER_ID = 'up'" }, { "name": "dc2-leaf2b", diff --git a/ansible_collections/arista/avd/molecule/eos_validate_state/reports/test_results/dc2-leaf3a.arista.com-results.json b/ansible_collections/arista/avd/molecule/eos_validate_state/reports/test_results/dc2-leaf3a.arista.com-results.json index a226f0f35d4..4b181bef8ef 100644 --- a/ansible_collections/arista/avd/molecule/eos_validate_state/reports/test_results/dc2-leaf3a.arista.com-results.json +++ b/ansible_collections/arista/avd/molecule/eos_validate_state/reports/test_results/dc2-leaf3a.arista.com-results.json @@ -498,7 +498,7 @@ "interfaces" ], "description": "Verifies the status of the provided interfaces.", - "custom_field": "Interface Loopback0 - EVPN_Overlay_Peering = 'up'" + "custom_field": "Interface Loopback0 - ROUTER_ID = 'up'" }, { "name": "dc2-leaf3a.arista.com", diff --git a/ansible_collections/arista/avd/molecule/eos_validate_state/reports/test_results/dc2-leaf3b.arista.com-results.json b/ansible_collections/arista/avd/molecule/eos_validate_state/reports/test_results/dc2-leaf3b.arista.com-results.json index 5c5994e48c8..9604e53e4d8 100644 --- a/ansible_collections/arista/avd/molecule/eos_validate_state/reports/test_results/dc2-leaf3b.arista.com-results.json +++ b/ansible_collections/arista/avd/molecule/eos_validate_state/reports/test_results/dc2-leaf3b.arista.com-results.json @@ -498,7 +498,7 @@ "interfaces" ], "description": "Verifies the status of the provided interfaces.", - "custom_field": "Interface Loopback0 - EVPN_Overlay_Peering = 'up'" + "custom_field": "Interface Loopback0 - ROUTER_ID = 'up'" }, { "name": "dc2-leaf3b.arista.com", diff --git a/ansible_collections/arista/avd/molecule/eos_validate_state/reports/test_results/dc2-spine1-results.json b/ansible_collections/arista/avd/molecule/eos_validate_state/reports/test_results/dc2-spine1-results.json index 8b00ad708dd..acaa3653b09 100644 --- a/ansible_collections/arista/avd/molecule/eos_validate_state/reports/test_results/dc2-spine1-results.json +++ b/ansible_collections/arista/avd/molecule/eos_validate_state/reports/test_results/dc2-spine1-results.json @@ -471,7 +471,7 @@ "interfaces" ], "description": "Verifies the status of the provided interfaces.", - "custom_field": "Interface Loopback0 - EVPN_Overlay_Peering = 'up'" + "custom_field": "Interface Loopback0 - ROUTER_ID = 'up'" }, { "name": "dc2-spine1", diff --git a/ansible_collections/arista/avd/molecule/eos_validate_state/reports/test_results/dc2-spine2-results.json b/ansible_collections/arista/avd/molecule/eos_validate_state/reports/test_results/dc2-spine2-results.json index ee01d573d2c..a182e7a863b 100644 --- a/ansible_collections/arista/avd/molecule/eos_validate_state/reports/test_results/dc2-spine2-results.json +++ b/ansible_collections/arista/avd/molecule/eos_validate_state/reports/test_results/dc2-spine2-results.json @@ -471,7 +471,7 @@ "interfaces" ], "description": "Verifies the status of the provided interfaces.", - "custom_field": "Interface Loopback0 - EVPN_Overlay_Peering = 'up'" + "custom_field": "Interface Loopback0 - ROUTER_ID = 'up'" }, { "name": "dc2-spine2", diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SPINE1.md b/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SPINE1.md index c5c8420a335..7aced6eb00c 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SPINE1.md +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SPINE1.md @@ -315,20 +315,20 @@ interface Ethernet7 | Interface | Description | VRF | IP Address | | --------- | ----------- | --- | ---------- | -| Loopback0 | EVPN_Overlay_Peering | default | 192.168.255.1/32 | +| Loopback0 | ROUTER_ID | default | 192.168.255.1/32 | ##### IPv6 | Interface | Description | VRF | IPv6 Address | | --------- | ----------- | --- | ------------ | -| Loopback0 | EVPN_Overlay_Peering | default | - | +| Loopback0 | ROUTER_ID | default | - | #### Loopback Interfaces Device Configuration ```eos ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.1/32 ``` diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SPINE2.md b/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SPINE2.md index ce62963fb19..b620a5cb3fc 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SPINE2.md +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SPINE2.md @@ -315,20 +315,20 @@ interface Ethernet7 | Interface | Description | VRF | IP Address | | --------- | ----------- | --- | ---------- | -| Loopback0 | EVPN_Overlay_Peering | default | 192.168.255.2/32 | +| Loopback0 | ROUTER_ID | default | 192.168.255.2/32 | ##### IPv6 | Interface | Description | VRF | IPv6 Address | | --------- | ----------- | --- | ------------ | -| Loopback0 | EVPN_Overlay_Peering | default | - | +| Loopback0 | ROUTER_ID | default | - | #### Loopback Interfaces Device Configuration ```eos ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.2/32 ``` diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SPINE3.md b/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SPINE3.md index 8426de83634..dbe5d03e549 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SPINE3.md +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SPINE3.md @@ -315,20 +315,20 @@ interface Ethernet7 | Interface | Description | VRF | IP Address | | --------- | ----------- | --- | ---------- | -| Loopback0 | EVPN_Overlay_Peering | default | 192.168.255.3/32 | +| Loopback0 | ROUTER_ID | default | 192.168.255.3/32 | ##### IPv6 | Interface | Description | VRF | IPv6 Address | | --------- | ----------- | --- | ------------ | -| Loopback0 | EVPN_Overlay_Peering | default | - | +| Loopback0 | ROUTER_ID | default | - | #### Loopback Interfaces Device Configuration ```eos ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.3/32 ``` diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SPINE4.md b/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SPINE4.md index 591a5e1d8b5..bfa3aba95c5 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SPINE4.md +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/documentation/devices/DC1-SPINE4.md @@ -315,20 +315,20 @@ interface Ethernet7 | Interface | Description | VRF | IP Address | | --------- | ----------- | --- | ---------- | -| Loopback0 | EVPN_Overlay_Peering | default | 192.168.255.4/32 | +| Loopback0 | ROUTER_ID | default | 192.168.255.4/32 | ##### IPv6 | Interface | Description | VRF | IPv6 Address | | --------- | ----------- | --- | ------------ | -| Loopback0 | EVPN_Overlay_Peering | default | - | +| Loopback0 | ROUTER_ID | default | - | #### Loopback Interfaces Device Configuration ```eos ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.4/32 ``` diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/intended/configs/DC1-SPINE1.cfg b/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/intended/configs/DC1-SPINE1.cfg index 720e012e7be..5216f412a49 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/intended/configs/DC1-SPINE1.cfg +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/intended/configs/DC1-SPINE1.cfg @@ -89,7 +89,7 @@ interface Ethernet7 ip address 172.31.255.96/31 ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.1/32 ! diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/intended/configs/DC1-SPINE2.cfg b/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/intended/configs/DC1-SPINE2.cfg index 920f55edcdc..2ee0e9e5f92 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/intended/configs/DC1-SPINE2.cfg +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/intended/configs/DC1-SPINE2.cfg @@ -89,7 +89,7 @@ interface Ethernet7 ip address 172.31.255.98/31 ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.2/32 ! diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/intended/configs/DC1-SPINE3.cfg b/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/intended/configs/DC1-SPINE3.cfg index db7d28ff940..2474170e662 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/intended/configs/DC1-SPINE3.cfg +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/intended/configs/DC1-SPINE3.cfg @@ -89,7 +89,7 @@ interface Ethernet7 ip address 172.31.255.100/31 ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.3/32 ! diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/intended/configs/DC1-SPINE4.cfg b/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/intended/configs/DC1-SPINE4.cfg index 693ec140b21..5036d64ae2f 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/intended/configs/DC1-SPINE4.cfg +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/intended/configs/DC1-SPINE4.cfg @@ -89,7 +89,7 @@ interface Ethernet7 ip address 172.31.255.102/31 ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.4/32 ! diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/intended/structured_configs/DC1-SPINE1.yml b/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/intended/structured_configs/DC1-SPINE1.yml index cf8da65a39a..dfba9bbb4c9 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/intended/structured_configs/DC1-SPINE1.yml +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/intended/structured_configs/DC1-SPINE1.yml @@ -257,7 +257,7 @@ ethernet_interfaces: ip_address: 172.31.255.96/31 loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.1/32 prefix_lists: diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/intended/structured_configs/DC1-SPINE2.yml b/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/intended/structured_configs/DC1-SPINE2.yml index 5e11edc1826..ac91e78d347 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/intended/structured_configs/DC1-SPINE2.yml +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/intended/structured_configs/DC1-SPINE2.yml @@ -257,7 +257,7 @@ ethernet_interfaces: ip_address: 172.31.255.98/31 loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.2/32 prefix_lists: diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/intended/structured_configs/DC1-SPINE3.yml b/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/intended/structured_configs/DC1-SPINE3.yml index b34db3f09ac..82f4e688754 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/intended/structured_configs/DC1-SPINE3.yml +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/intended/structured_configs/DC1-SPINE3.yml @@ -257,7 +257,7 @@ ethernet_interfaces: ip_address: 172.31.255.100/31 loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.3/32 prefix_lists: diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/intended/structured_configs/DC1-SPINE4.yml b/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/intended/structured_configs/DC1-SPINE4.yml index c2fdf1ea07a..cfbadb81c76 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/intended/structured_configs/DC1-SPINE4.yml +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/intended/structured_configs/DC1-SPINE4.yml @@ -257,7 +257,7 @@ ethernet_interfaces: ip_address: 172.31.255.102/31 loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.4/32 prefix_lists: diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/inventory/group_vars/DC1_FABRIC.yml b/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/inventory/group_vars/DC1_FABRIC.yml index 2cbfbaeb370..d5c7d0a4cc8 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/inventory/group_vars/DC1_FABRIC.yml +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/inventory/group_vars/DC1_FABRIC.yml @@ -32,7 +32,7 @@ node_type_keys: mlag_port_channel_interfaces: 'templates/interface-descriptions/mlag/port-channel-interfaces.j2' connected_endpoints_ethernet_interfaces: 'interface-descriptions/connected-endpoints/ethernet-interfaces.j2' connected_endpoints_port_channel_interfaces: 'interface-descriptions/connected-endpoints/port-channel-interfaces.j2' - overlay_loopback_interface: 'interface-descriptions/loopbacks/overlay-loopback.j2' + router_id_loopback_interface: 'interface-descriptions/loopbacks/router-id-loopback.j2' vtep_loopback_interface: 'interface-descriptions/loopbacks/vtep-loopback.j2' - key: l2leaf type: l2leaf diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/templates/interface-descriptions/loopbacks/overlay-loopback.j2 b/ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/templates/interface-descriptions/loopbacks/router-id-loopback.j2 similarity index 100% rename from ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/templates/interface-descriptions/loopbacks/overlay-loopback.j2 rename to ansible_collections/arista/avd/molecule/evpn_underlay_ebgp_overlay_ebgp/templates/interface-descriptions/loopbacks/router-id-loopback.j2 diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/documentation/devices/DC1-BL1A.md b/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/documentation/devices/DC1-BL1A.md index 5d0f40a5c97..9a49fb1a9d2 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/documentation/devices/DC1-BL1A.md +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/documentation/devices/DC1-BL1A.md @@ -413,14 +413,14 @@ interface Port-Channel5 | Interface | Description | VRF | IP Address | | --------- | ----------- | --- | ---------- | -| Loopback0 | EVPN_Overlay_Peering | default | 192.168.255.10/32 | +| Loopback0 | ROUTER_ID | default | 192.168.255.10/32 | | Loopback1 | VTEP_VXLAN_Tunnel_Source | default | 192.168.254.10/32 | ##### IPv6 | Interface | Description | VRF | IPv6 Address | | --------- | ----------- | --- | ------------ | -| Loopback0 | EVPN_Overlay_Peering | default | - | +| Loopback0 | ROUTER_ID | default | - | | Loopback1 | VTEP_VXLAN_Tunnel_Source | default | - | ##### ISIS @@ -435,7 +435,7 @@ interface Port-Channel5 ```eos ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.10/32 isis enable EVPN_UNDERLAY diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/documentation/devices/DC1-BL1B.md b/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/documentation/devices/DC1-BL1B.md index a7d3e74f387..6c3371ce701 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/documentation/devices/DC1-BL1B.md +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/documentation/devices/DC1-BL1B.md @@ -398,14 +398,14 @@ interface Port-Channel5 | Interface | Description | VRF | IP Address | | --------- | ----------- | --- | ---------- | -| Loopback0 | EVPN_Overlay_Peering | default | 192.168.255.11/32 | +| Loopback0 | ROUTER_ID | default | 192.168.255.11/32 | | Loopback1 | VTEP_VXLAN_Tunnel_Source | default | 192.168.254.10/32 | ##### IPv6 | Interface | Description | VRF | IPv6 Address | | --------- | ----------- | --- | ------------ | -| Loopback0 | EVPN_Overlay_Peering | default | - | +| Loopback0 | ROUTER_ID | default | - | | Loopback1 | VTEP_VXLAN_Tunnel_Source | default | - | ##### ISIS @@ -420,7 +420,7 @@ interface Port-Channel5 ```eos ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.11/32 isis enable EVPN_UNDERLAY diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/documentation/devices/DC1-LEAF1A.md b/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/documentation/devices/DC1-LEAF1A.md index 550c5df05d1..e4363ff7bad 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/documentation/devices/DC1-LEAF1A.md +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/documentation/devices/DC1-LEAF1A.md @@ -305,13 +305,13 @@ interface Ethernet4 | Interface | Description | VRF | IP Address | | --------- | ----------- | --- | ---------- | -| Loopback0 | EVPN_Overlay_Peering | default | 192.168.255.5/32 | +| Loopback0 | ROUTER_ID | default | 192.168.255.5/32 | ##### IPv6 | Interface | Description | VRF | IPv6 Address | | --------- | ----------- | --- | ------------ | -| Loopback0 | EVPN_Overlay_Peering | default | - | +| Loopback0 | ROUTER_ID | default | - | ##### ISIS @@ -324,7 +324,7 @@ interface Ethernet4 ```eos ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.5/32 isis enable EVPN_UNDERLAY diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/documentation/devices/DC1-LEAF2A.md b/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/documentation/devices/DC1-LEAF2A.md index 83a4a62d9fc..bba44d87cef 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/documentation/devices/DC1-LEAF2A.md +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/documentation/devices/DC1-LEAF2A.md @@ -413,14 +413,14 @@ interface Port-Channel7 | Interface | Description | VRF | IP Address | | --------- | ----------- | --- | ---------- | -| Loopback0 | EVPN_Overlay_Peering | default | 192.168.255.6/32 | +| Loopback0 | ROUTER_ID | default | 192.168.255.6/32 | | Loopback10 | VTEP_VXLAN_Tunnel_Source | default | 192.168.254.6/32 | ##### IPv6 | Interface | Description | VRF | IPv6 Address | | --------- | ----------- | --- | ------------ | -| Loopback0 | EVPN_Overlay_Peering | default | - | +| Loopback0 | ROUTER_ID | default | - | | Loopback10 | VTEP_VXLAN_Tunnel_Source | default | - | ##### ISIS @@ -435,7 +435,7 @@ interface Port-Channel7 ```eos ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.6/32 isis enable EVPN_UNDERLAY diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/documentation/devices/DC1-LEAF2B.md b/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/documentation/devices/DC1-LEAF2B.md index c18dffc5131..e47e09d9802 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/documentation/devices/DC1-LEAF2B.md +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/documentation/devices/DC1-LEAF2B.md @@ -413,14 +413,14 @@ interface Port-Channel7 | Interface | Description | VRF | IP Address | | --------- | ----------- | --- | ---------- | -| Loopback0 | EVPN_Overlay_Peering | default | 192.168.255.7/32 | +| Loopback0 | ROUTER_ID | default | 192.168.255.7/32 | | Loopback10 | VTEP_VXLAN_Tunnel_Source | default | 192.168.254.6/32 | ##### IPv6 | Interface | Description | VRF | IPv6 Address | | --------- | ----------- | --- | ------------ | -| Loopback0 | EVPN_Overlay_Peering | default | - | +| Loopback0 | ROUTER_ID | default | - | | Loopback10 | VTEP_VXLAN_Tunnel_Source | default | - | ##### ISIS @@ -435,7 +435,7 @@ interface Port-Channel7 ```eos ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.7/32 isis enable EVPN_UNDERLAY diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/documentation/devices/DC1-SPINE1.md b/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/documentation/devices/DC1-SPINE1.md index 2a672459ec1..9b145f060e7 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/documentation/devices/DC1-SPINE1.md +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/documentation/devices/DC1-SPINE1.md @@ -333,13 +333,13 @@ interface Ethernet7 | Interface | Description | VRF | IP Address | | --------- | ----------- | --- | ---------- | -| Loopback0 | EVPN_Overlay_Peering | default | 192.168.255.1/32 | +| Loopback0 | ROUTER_ID | default | 192.168.255.1/32 | ##### IPv6 | Interface | Description | VRF | IPv6 Address | | --------- | ----------- | --- | ------------ | -| Loopback0 | EVPN_Overlay_Peering | default | - | +| Loopback0 | ROUTER_ID | default | - | ##### ISIS @@ -352,7 +352,7 @@ interface Ethernet7 ```eos ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.1/32 isis enable EVPN_UNDERLAY diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/documentation/devices/DC1-SPINE2.md b/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/documentation/devices/DC1-SPINE2.md index 674e958ce4d..d52f6b4eb78 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/documentation/devices/DC1-SPINE2.md +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/documentation/devices/DC1-SPINE2.md @@ -330,13 +330,13 @@ interface Ethernet7 | Interface | Description | VRF | IP Address | | --------- | ----------- | --- | ---------- | -| Loopback0 | EVPN_Overlay_Peering | default | 192.168.255.2/32 | +| Loopback0 | ROUTER_ID | default | 192.168.255.2/32 | ##### IPv6 | Interface | Description | VRF | IPv6 Address | | --------- | ----------- | --- | ------------ | -| Loopback0 | EVPN_Overlay_Peering | default | - | +| Loopback0 | ROUTER_ID | default | - | ##### ISIS @@ -349,7 +349,7 @@ interface Ethernet7 ```eos ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.2/32 isis enable EVPN_UNDERLAY diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/documentation/devices/DC1-SPINE3.md b/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/documentation/devices/DC1-SPINE3.md index 236205a240d..1ddf5ac2a18 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/documentation/devices/DC1-SPINE3.md +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/documentation/devices/DC1-SPINE3.md @@ -330,13 +330,13 @@ interface Ethernet7 | Interface | Description | VRF | IP Address | | --------- | ----------- | --- | ---------- | -| Loopback0 | EVPN_Overlay_Peering | default | 192.168.255.3/32 | +| Loopback0 | ROUTER_ID | default | 192.168.255.3/32 | ##### IPv6 | Interface | Description | VRF | IPv6 Address | | --------- | ----------- | --- | ------------ | -| Loopback0 | EVPN_Overlay_Peering | default | - | +| Loopback0 | ROUTER_ID | default | - | ##### ISIS @@ -349,7 +349,7 @@ interface Ethernet7 ```eos ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.3/32 isis enable EVPN_UNDERLAY diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/documentation/devices/DC1-SPINE4.md b/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/documentation/devices/DC1-SPINE4.md index eb4bb6f1e6b..67b80ff49a9 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/documentation/devices/DC1-SPINE4.md +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/documentation/devices/DC1-SPINE4.md @@ -333,13 +333,13 @@ interface Ethernet7 | Interface | Description | VRF | IP Address | | --------- | ----------- | --- | ---------- | -| Loopback0 | EVPN_Overlay_Peering | default | 192.168.255.4/32 | +| Loopback0 | ROUTER_ID | default | 192.168.255.4/32 | ##### IPv6 | Interface | Description | VRF | IPv6 Address | | --------- | ----------- | --- | ------------ | -| Loopback0 | EVPN_Overlay_Peering | default | - | +| Loopback0 | ROUTER_ID | default | - | ##### ISIS @@ -352,7 +352,7 @@ interface Ethernet7 ```eos ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.4/32 isis enable EVPN_UNDERLAY diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/documentation/devices/DC1-SVC3A.md b/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/documentation/devices/DC1-SVC3A.md index f068f3651ed..9b18bfe7b6c 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/documentation/devices/DC1-SVC3A.md +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/documentation/devices/DC1-SVC3A.md @@ -414,14 +414,14 @@ interface Port-Channel7 | Interface | Description | VRF | IP Address | | --------- | ----------- | --- | ---------- | -| Loopback0 | EVPN_Overlay_Peering | default | 192.168.255.8/32 | +| Loopback0 | ROUTER_ID | default | 192.168.255.8/32 | | Loopback1 | VTEP_VXLAN_Tunnel_Source | default | 192.168.254.8/32 | ##### IPv6 | Interface | Description | VRF | IPv6 Address | | --------- | ----------- | --- | ------------ | -| Loopback0 | EVPN_Overlay_Peering | default | - | +| Loopback0 | ROUTER_ID | default | - | | Loopback1 | VTEP_VXLAN_Tunnel_Source | default | - | ##### ISIS @@ -436,7 +436,7 @@ interface Port-Channel7 ```eos ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.8/32 isis enable EVPN_UNDERLAY diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/documentation/devices/DC1-SVC3B.md b/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/documentation/devices/DC1-SVC3B.md index 43ccd2919f3..c58e049d315 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/documentation/devices/DC1-SVC3B.md +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/documentation/devices/DC1-SVC3B.md @@ -414,14 +414,14 @@ interface Port-Channel7 | Interface | Description | VRF | IP Address | | --------- | ----------- | --- | ---------- | -| Loopback0 | EVPN_Overlay_Peering | default | 192.168.255.9/32 | +| Loopback0 | ROUTER_ID | default | 192.168.255.9/32 | | Loopback1 | VTEP_VXLAN_Tunnel_Source | default | 192.168.254.8/32 | ##### IPv6 | Interface | Description | VRF | IPv6 Address | | --------- | ----------- | --- | ------------ | -| Loopback0 | EVPN_Overlay_Peering | default | - | +| Loopback0 | ROUTER_ID | default | - | | Loopback1 | VTEP_VXLAN_Tunnel_Source | default | - | ##### ISIS @@ -436,7 +436,7 @@ interface Port-Channel7 ```eos ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.9/32 isis enable EVPN_UNDERLAY diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/intended/configs/DC1-BL1A.cfg b/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/intended/configs/DC1-BL1A.cfg index 5a208bf2e00..919e8f6ea63 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/intended/configs/DC1-BL1A.cfg +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/intended/configs/DC1-BL1A.cfg @@ -116,7 +116,7 @@ interface Ethernet8 isis network point-to-point ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.10/32 isis enable EVPN_UNDERLAY diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/intended/configs/DC1-BL1B.cfg b/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/intended/configs/DC1-BL1B.cfg index d26563b5dd5..ba3e78880dd 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/intended/configs/DC1-BL1B.cfg +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/intended/configs/DC1-BL1B.cfg @@ -103,7 +103,7 @@ interface Ethernet6 channel-group 5 mode active ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.11/32 isis enable EVPN_UNDERLAY diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/intended/configs/DC1-LEAF1A.cfg b/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/intended/configs/DC1-LEAF1A.cfg index ce5f771ddc0..bfc88fc65ac 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/intended/configs/DC1-LEAF1A.cfg +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/intended/configs/DC1-LEAF1A.cfg @@ -76,7 +76,7 @@ interface Ethernet4 isis network point-to-point ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.5/32 isis enable EVPN_UNDERLAY diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/intended/configs/DC1-LEAF2A.cfg b/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/intended/configs/DC1-LEAF2A.cfg index cd08ed6cdde..3d6a745caac 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/intended/configs/DC1-LEAF2A.cfg +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/intended/configs/DC1-LEAF2A.cfg @@ -116,7 +116,7 @@ interface Ethernet7 channel-group 7 mode active ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.6/32 isis enable EVPN_UNDERLAY diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/intended/configs/DC1-LEAF2B.cfg b/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/intended/configs/DC1-LEAF2B.cfg index 7538184eb8c..4bdb6ac256c 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/intended/configs/DC1-LEAF2B.cfg +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/intended/configs/DC1-LEAF2B.cfg @@ -116,7 +116,7 @@ interface Ethernet7 channel-group 7 mode active ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.7/32 isis enable EVPN_UNDERLAY diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/intended/configs/DC1-SPINE1.cfg b/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/intended/configs/DC1-SPINE1.cfg index 0cb01e3b3f7..4e37e7d33d8 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/intended/configs/DC1-SPINE1.cfg +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/intended/configs/DC1-SPINE1.cfg @@ -111,7 +111,7 @@ interface Ethernet7 isis network point-to-point ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.1/32 isis enable EVPN_UNDERLAY diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/intended/configs/DC1-SPINE2.cfg b/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/intended/configs/DC1-SPINE2.cfg index 3722bf0df0a..2ac8583c9b9 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/intended/configs/DC1-SPINE2.cfg +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/intended/configs/DC1-SPINE2.cfg @@ -111,7 +111,7 @@ interface Ethernet7 isis network point-to-point ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.2/32 isis enable EVPN_UNDERLAY diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/intended/configs/DC1-SPINE3.cfg b/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/intended/configs/DC1-SPINE3.cfg index c031afd4cc2..b24228e69ab 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/intended/configs/DC1-SPINE3.cfg +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/intended/configs/DC1-SPINE3.cfg @@ -111,7 +111,7 @@ interface Ethernet7 isis network point-to-point ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.3/32 isis enable EVPN_UNDERLAY diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/intended/configs/DC1-SPINE4.cfg b/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/intended/configs/DC1-SPINE4.cfg index 3dd748cf529..7ce874e5d84 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/intended/configs/DC1-SPINE4.cfg +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/intended/configs/DC1-SPINE4.cfg @@ -111,7 +111,7 @@ interface Ethernet7 isis network point-to-point ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.4/32 isis enable EVPN_UNDERLAY diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/intended/configs/DC1-SVC3A.cfg b/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/intended/configs/DC1-SVC3A.cfg index 6f489efafe9..94ecb4d7222 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/intended/configs/DC1-SVC3A.cfg +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/intended/configs/DC1-SVC3A.cfg @@ -117,7 +117,7 @@ interface Ethernet8 channel-group 7 mode active ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.8/32 isis enable EVPN_UNDERLAY diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/intended/configs/DC1-SVC3B.cfg b/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/intended/configs/DC1-SVC3B.cfg index 6ab68595932..c0563974504 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/intended/configs/DC1-SVC3B.cfg +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/intended/configs/DC1-SVC3B.cfg @@ -117,7 +117,7 @@ interface Ethernet8 channel-group 7 mode active ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.9/32 isis enable EVPN_UNDERLAY diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/intended/structured_configs/DC1-BL1A.yml b/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/intended/structured_configs/DC1-BL1A.yml index 31dd12a4d36..276875efb80 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/intended/structured_configs/DC1-BL1A.yml +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/intended/structured_configs/DC1-BL1A.yml @@ -248,7 +248,7 @@ mlag_configuration: reload_delay_non_mlag: '330' loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.10/32 isis_enable: EVPN_UNDERLAY diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/intended/structured_configs/DC1-BL1B.yml b/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/intended/structured_configs/DC1-BL1B.yml index a9ca2f37efa..09af7c0c2ea 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/intended/structured_configs/DC1-BL1B.yml +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/intended/structured_configs/DC1-BL1B.yml @@ -233,7 +233,7 @@ mlag_configuration: reload_delay_non_mlag: '330' loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.11/32 isis_enable: EVPN_UNDERLAY diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/intended/structured_configs/DC1-LEAF1A.yml b/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/intended/structured_configs/DC1-LEAF1A.yml index fdae8623ecf..5cf395a75be 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/intended/structured_configs/DC1-LEAF1A.yml +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/intended/structured_configs/DC1-LEAF1A.yml @@ -169,7 +169,7 @@ ethernet_interfaces: isis_circuit_type: level-2 loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.5/32 isis_enable: EVPN_UNDERLAY diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/intended/structured_configs/DC1-LEAF2A.yml b/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/intended/structured_configs/DC1-LEAF2A.yml index 28cc66fa919..4d3436178d1 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/intended/structured_configs/DC1-LEAF2A.yml +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/intended/structured_configs/DC1-LEAF2A.yml @@ -250,7 +250,7 @@ mlag_configuration: reload_delay_non_mlag: '330' loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.6/32 isis_enable: EVPN_UNDERLAY diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/intended/structured_configs/DC1-LEAF2B.yml b/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/intended/structured_configs/DC1-LEAF2B.yml index b4934761b08..b485be96577 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/intended/structured_configs/DC1-LEAF2B.yml +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/intended/structured_configs/DC1-LEAF2B.yml @@ -250,7 +250,7 @@ mlag_configuration: reload_delay_non_mlag: '330' loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.7/32 isis_enable: EVPN_UNDERLAY diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/intended/structured_configs/DC1-SPINE1.yml b/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/intended/structured_configs/DC1-SPINE1.yml index 3be4b0c5c30..9ffd9f7b76d 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/intended/structured_configs/DC1-SPINE1.yml +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/intended/structured_configs/DC1-SPINE1.yml @@ -228,7 +228,7 @@ ethernet_interfaces: isis_circuit_type: level-2 loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.1/32 isis_enable: EVPN_UNDERLAY diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/intended/structured_configs/DC1-SPINE2.yml b/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/intended/structured_configs/DC1-SPINE2.yml index e976abb5916..a440ddee90e 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/intended/structured_configs/DC1-SPINE2.yml +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/intended/structured_configs/DC1-SPINE2.yml @@ -167,7 +167,7 @@ ethernet_interfaces: isis_circuit_type: level-2 loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.2/32 isis_enable: EVPN_UNDERLAY diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/intended/structured_configs/DC1-SPINE3.yml b/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/intended/structured_configs/DC1-SPINE3.yml index ddd27decde3..e4d04574fd2 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/intended/structured_configs/DC1-SPINE3.yml +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/intended/structured_configs/DC1-SPINE3.yml @@ -167,7 +167,7 @@ ethernet_interfaces: isis_circuit_type: level-2 loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.3/32 isis_enable: EVPN_UNDERLAY diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/intended/structured_configs/DC1-SPINE4.yml b/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/intended/structured_configs/DC1-SPINE4.yml index 64f84334383..0866ed169be 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/intended/structured_configs/DC1-SPINE4.yml +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/intended/structured_configs/DC1-SPINE4.yml @@ -228,7 +228,7 @@ ethernet_interfaces: isis_circuit_type: level-2 loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.4/32 isis_enable: EVPN_UNDERLAY diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/intended/structured_configs/DC1-SVC3A.yml b/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/intended/structured_configs/DC1-SVC3A.yml index d4ded820650..f0a8b5d6c49 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/intended/structured_configs/DC1-SVC3A.yml +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/intended/structured_configs/DC1-SVC3A.yml @@ -250,7 +250,7 @@ mlag_configuration: reload_delay_non_mlag: '330' loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.8/32 isis_enable: EVPN_UNDERLAY diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/intended/structured_configs/DC1-SVC3B.yml b/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/intended/structured_configs/DC1-SVC3B.yml index 325b19d250c..af46785d072 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/intended/structured_configs/DC1-SVC3B.yml +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_isis_overlay_ibgp/intended/structured_configs/DC1-SVC3B.yml @@ -250,7 +250,7 @@ mlag_configuration: reload_delay_non_mlag: '330' loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.9/32 isis_enable: EVPN_UNDERLAY diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/documentation/devices/DC1-BL1A.md b/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/documentation/devices/DC1-BL1A.md index c289aad475e..7138259644c 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/documentation/devices/DC1-BL1A.md +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/documentation/devices/DC1-BL1A.md @@ -382,14 +382,14 @@ interface Port-Channel5 | Interface | Description | VRF | IP Address | | --------- | ----------- | --- | ---------- | -| Loopback0 | EVPN_Overlay_Peering | default | 192.168.255.10/32 | +| Loopback0 | ROUTER_ID | default | 192.168.255.10/32 | | Loopback1 | VTEP_VXLAN_Tunnel_Source | default | 192.168.254.10/32 | ##### IPv6 | Interface | Description | VRF | IPv6 Address | | --------- | ----------- | --- | ------------ | -| Loopback0 | EVPN_Overlay_Peering | default | - | +| Loopback0 | ROUTER_ID | default | - | | Loopback1 | VTEP_VXLAN_Tunnel_Source | default | - | #### Loopback Interfaces Device Configuration @@ -397,7 +397,7 @@ interface Port-Channel5 ```eos ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.10/32 ip ospf area 0.0.0.0 diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/documentation/devices/DC1-BL1B.md b/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/documentation/devices/DC1-BL1B.md index 6ce29464b08..74ca75f82ed 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/documentation/devices/DC1-BL1B.md +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/documentation/devices/DC1-BL1B.md @@ -382,14 +382,14 @@ interface Port-Channel5 | Interface | Description | VRF | IP Address | | --------- | ----------- | --- | ---------- | -| Loopback0 | EVPN_Overlay_Peering | default | 192.168.255.11/32 | +| Loopback0 | ROUTER_ID | default | 192.168.255.11/32 | | Loopback1 | VTEP_VXLAN_Tunnel_Source | default | 192.168.254.10/32 | ##### IPv6 | Interface | Description | VRF | IPv6 Address | | --------- | ----------- | --- | ------------ | -| Loopback0 | EVPN_Overlay_Peering | default | - | +| Loopback0 | ROUTER_ID | default | - | | Loopback1 | VTEP_VXLAN_Tunnel_Source | default | - | #### Loopback Interfaces Device Configuration @@ -397,7 +397,7 @@ interface Port-Channel5 ```eos ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.11/32 ip ospf area 0.0.0.0 diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/documentation/devices/DC1-LEAF1A.md b/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/documentation/devices/DC1-LEAF1A.md index 5590ff1bdb5..6522364c75a 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/documentation/devices/DC1-LEAF1A.md +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/documentation/devices/DC1-LEAF1A.md @@ -289,14 +289,14 @@ interface Ethernet4 | Interface | Description | VRF | IP Address | | --------- | ----------- | --- | ---------- | -| Loopback0 | EVPN_Overlay_Peering | default | 192.168.255.5/32 | +| Loopback0 | ROUTER_ID | default | 192.168.255.5/32 | | Loopback1 | VTEP_VXLAN_Tunnel_Source | default | 192.168.254.5/32 | ##### IPv6 | Interface | Description | VRF | IPv6 Address | | --------- | ----------- | --- | ------------ | -| Loopback0 | EVPN_Overlay_Peering | default | - | +| Loopback0 | ROUTER_ID | default | - | | Loopback1 | VTEP_VXLAN_Tunnel_Source | default | - | #### Loopback Interfaces Device Configuration @@ -304,7 +304,7 @@ interface Ethernet4 ```eos ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.5/32 ip ospf area 0.0.0.0 diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/documentation/devices/DC1-LEAF2A.md b/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/documentation/devices/DC1-LEAF2A.md index 3664cdf0516..0515bf28175 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/documentation/devices/DC1-LEAF2A.md +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/documentation/devices/DC1-LEAF2A.md @@ -408,14 +408,14 @@ interface Port-Channel7 | Interface | Description | VRF | IP Address | | --------- | ----------- | --- | ---------- | -| Loopback0 | EVPN_Overlay_Peering | default | 192.168.255.6/32 | +| Loopback0 | ROUTER_ID | default | 192.168.255.6/32 | | Loopback1 | VTEP_VXLAN_Tunnel_Source | default | 192.168.254.6/32 | ##### IPv6 | Interface | Description | VRF | IPv6 Address | | --------- | ----------- | --- | ------------ | -| Loopback0 | EVPN_Overlay_Peering | default | - | +| Loopback0 | ROUTER_ID | default | - | | Loopback1 | VTEP_VXLAN_Tunnel_Source | default | - | #### Loopback Interfaces Device Configuration @@ -423,7 +423,7 @@ interface Port-Channel7 ```eos ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.6/32 ip ospf area 0.0.0.0 diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/documentation/devices/DC1-LEAF2B.md b/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/documentation/devices/DC1-LEAF2B.md index 423e4a4ea95..76173a40ec1 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/documentation/devices/DC1-LEAF2B.md +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/documentation/devices/DC1-LEAF2B.md @@ -408,14 +408,14 @@ interface Port-Channel7 | Interface | Description | VRF | IP Address | | --------- | ----------- | --- | ---------- | -| Loopback0 | EVPN_Overlay_Peering | default | 192.168.255.7/32 | +| Loopback0 | ROUTER_ID | default | 192.168.255.7/32 | | Loopback1 | VTEP_VXLAN_Tunnel_Source | default | 192.168.254.6/32 | ##### IPv6 | Interface | Description | VRF | IPv6 Address | | --------- | ----------- | --- | ------------ | -| Loopback0 | EVPN_Overlay_Peering | default | - | +| Loopback0 | ROUTER_ID | default | - | | Loopback1 | VTEP_VXLAN_Tunnel_Source | default | - | #### Loopback Interfaces Device Configuration @@ -423,7 +423,7 @@ interface Port-Channel7 ```eos ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.7/32 ip ospf area 0.0.0.0 diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/documentation/devices/DC1-SPINE1.md b/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/documentation/devices/DC1-SPINE1.md index 48a5a8da15d..dd9c5accb4d 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/documentation/devices/DC1-SPINE1.md +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/documentation/devices/DC1-SPINE1.md @@ -314,20 +314,20 @@ interface Ethernet7 | Interface | Description | VRF | IP Address | | --------- | ----------- | --- | ---------- | -| Loopback0 | EVPN_Overlay_Peering | default | 192.168.255.1/32 | +| Loopback0 | ROUTER_ID | default | 192.168.255.1/32 | ##### IPv6 | Interface | Description | VRF | IPv6 Address | | --------- | ----------- | --- | ------------ | -| Loopback0 | EVPN_Overlay_Peering | default | - | +| Loopback0 | ROUTER_ID | default | - | #### Loopback Interfaces Device Configuration ```eos ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.1/32 ip ospf area 0.0.0.0 diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/documentation/devices/DC1-SPINE2.md b/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/documentation/devices/DC1-SPINE2.md index 7a081784b86..29e3bbb154e 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/documentation/devices/DC1-SPINE2.md +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/documentation/devices/DC1-SPINE2.md @@ -314,20 +314,20 @@ interface Ethernet7 | Interface | Description | VRF | IP Address | | --------- | ----------- | --- | ---------- | -| Loopback0 | EVPN_Overlay_Peering | default | 192.168.255.2/32 | +| Loopback0 | ROUTER_ID | default | 192.168.255.2/32 | ##### IPv6 | Interface | Description | VRF | IPv6 Address | | --------- | ----------- | --- | ------------ | -| Loopback0 | EVPN_Overlay_Peering | default | - | +| Loopback0 | ROUTER_ID | default | - | #### Loopback Interfaces Device Configuration ```eos ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.2/32 ip ospf area 0.0.0.0 diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/documentation/devices/DC1-SPINE3.md b/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/documentation/devices/DC1-SPINE3.md index 5eb97ab090d..88d6bfc2589 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/documentation/devices/DC1-SPINE3.md +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/documentation/devices/DC1-SPINE3.md @@ -314,20 +314,20 @@ interface Ethernet7 | Interface | Description | VRF | IP Address | | --------- | ----------- | --- | ---------- | -| Loopback0 | EVPN_Overlay_Peering | default | 192.168.255.3/32 | +| Loopback0 | ROUTER_ID | default | 192.168.255.3/32 | ##### IPv6 | Interface | Description | VRF | IPv6 Address | | --------- | ----------- | --- | ------------ | -| Loopback0 | EVPN_Overlay_Peering | default | - | +| Loopback0 | ROUTER_ID | default | - | #### Loopback Interfaces Device Configuration ```eos ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.3/32 ip ospf area 0.0.0.0 diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/documentation/devices/DC1-SPINE4.md b/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/documentation/devices/DC1-SPINE4.md index 42a18d38016..8a2b34045b9 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/documentation/devices/DC1-SPINE4.md +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/documentation/devices/DC1-SPINE4.md @@ -314,20 +314,20 @@ interface Ethernet7 | Interface | Description | VRF | IP Address | | --------- | ----------- | --- | ---------- | -| Loopback0 | EVPN_Overlay_Peering | default | 192.168.255.4/32 | +| Loopback0 | ROUTER_ID | default | 192.168.255.4/32 | ##### IPv6 | Interface | Description | VRF | IPv6 Address | | --------- | ----------- | --- | ------------ | -| Loopback0 | EVPN_Overlay_Peering | default | - | +| Loopback0 | ROUTER_ID | default | - | #### Loopback Interfaces Device Configuration ```eos ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.4/32 ip ospf area 0.0.0.0 diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/documentation/devices/DC1-SVC3A.md b/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/documentation/devices/DC1-SVC3A.md index 8880563604c..06187ed32ac 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/documentation/devices/DC1-SVC3A.md +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/documentation/devices/DC1-SVC3A.md @@ -409,14 +409,14 @@ interface Port-Channel7 | Interface | Description | VRF | IP Address | | --------- | ----------- | --- | ---------- | -| Loopback0 | EVPN_Overlay_Peering | default | 192.168.255.8/32 | +| Loopback0 | ROUTER_ID | default | 192.168.255.8/32 | | Loopback1 | VTEP_VXLAN_Tunnel_Source | default | 192.168.254.8/32 | ##### IPv6 | Interface | Description | VRF | IPv6 Address | | --------- | ----------- | --- | ------------ | -| Loopback0 | EVPN_Overlay_Peering | default | - | +| Loopback0 | ROUTER_ID | default | - | | Loopback1 | VTEP_VXLAN_Tunnel_Source | default | - | #### Loopback Interfaces Device Configuration @@ -424,7 +424,7 @@ interface Port-Channel7 ```eos ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.8/32 ip ospf area 0.0.0.0 diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/documentation/devices/DC1-SVC3B.md b/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/documentation/devices/DC1-SVC3B.md index 31812b81550..4c23b14af31 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/documentation/devices/DC1-SVC3B.md +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/documentation/devices/DC1-SVC3B.md @@ -409,14 +409,14 @@ interface Port-Channel7 | Interface | Description | VRF | IP Address | | --------- | ----------- | --- | ---------- | -| Loopback0 | EVPN_Overlay_Peering | default | 192.168.255.9/32 | +| Loopback0 | ROUTER_ID | default | 192.168.255.9/32 | | Loopback1 | VTEP_VXLAN_Tunnel_Source | default | 192.168.254.8/32 | ##### IPv6 | Interface | Description | VRF | IPv6 Address | | --------- | ----------- | --- | ------------ | -| Loopback0 | EVPN_Overlay_Peering | default | - | +| Loopback0 | ROUTER_ID | default | - | | Loopback1 | VTEP_VXLAN_Tunnel_Source | default | - | #### Loopback Interfaces Device Configuration @@ -424,7 +424,7 @@ interface Port-Channel7 ```eos ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.9/32 ip ospf area 0.0.0.0 diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/intended/configs/DC1-BL1A.cfg b/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/intended/configs/DC1-BL1A.cfg index d4fd5d40a56..064abb4b90c 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/intended/configs/DC1-BL1A.cfg +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/intended/configs/DC1-BL1A.cfg @@ -99,7 +99,7 @@ interface Ethernet6 channel-group 5 mode active ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.10/32 ip ospf area 0.0.0.0 diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/intended/configs/DC1-BL1B.cfg b/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/intended/configs/DC1-BL1B.cfg index ca9a6cc3a54..490b2704a8d 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/intended/configs/DC1-BL1B.cfg +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/intended/configs/DC1-BL1B.cfg @@ -99,7 +99,7 @@ interface Ethernet6 channel-group 5 mode active ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.11/32 ip ospf area 0.0.0.0 diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/intended/configs/DC1-LEAF1A.cfg b/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/intended/configs/DC1-LEAF1A.cfg index b3bd5281743..a7cc422ed4d 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/intended/configs/DC1-LEAF1A.cfg +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/intended/configs/DC1-LEAF1A.cfg @@ -72,7 +72,7 @@ interface Ethernet4 ip ospf message-digest-key 1 sha256 7 QB0XEg/PJV6Y5HtvjDdiafrPx/g+JRKk ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.5/32 ip ospf area 0.0.0.0 diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/intended/configs/DC1-LEAF2A.cfg b/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/intended/configs/DC1-LEAF2A.cfg index dd7fa71c527..4cd2bde99cd 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/intended/configs/DC1-LEAF2A.cfg +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/intended/configs/DC1-LEAF2A.cfg @@ -121,7 +121,7 @@ interface Ethernet7 channel-group 7 mode active ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.6/32 ip ospf area 0.0.0.0 diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/intended/configs/DC1-LEAF2B.cfg b/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/intended/configs/DC1-LEAF2B.cfg index a31433fce55..5400e0f14b9 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/intended/configs/DC1-LEAF2B.cfg +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/intended/configs/DC1-LEAF2B.cfg @@ -121,7 +121,7 @@ interface Ethernet7 channel-group 7 mode active ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.7/32 ip ospf area 0.0.0.0 diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/intended/configs/DC1-SPINE1.cfg b/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/intended/configs/DC1-SPINE1.cfg index 03acfc6fcb4..fb4c3f03e0e 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/intended/configs/DC1-SPINE1.cfg +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/intended/configs/DC1-SPINE1.cfg @@ -104,7 +104,7 @@ interface Ethernet7 ip ospf message-digest-key 1 sha256 7 kguPGHyy/wCN0mKibi4dLRL4PmsrU4UP ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.1/32 ip ospf area 0.0.0.0 diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/intended/configs/DC1-SPINE2.cfg b/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/intended/configs/DC1-SPINE2.cfg index 13f5c18fecd..4d90025b5a3 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/intended/configs/DC1-SPINE2.cfg +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/intended/configs/DC1-SPINE2.cfg @@ -104,7 +104,7 @@ interface Ethernet7 ip ospf message-digest-key 1 sha256 7 kguPGHyy/wCN0mKibi4dLRL4PmsrU4UP ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.2/32 ip ospf area 0.0.0.0 diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/intended/configs/DC1-SPINE3.cfg b/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/intended/configs/DC1-SPINE3.cfg index 9aa240b51fa..84763706a84 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/intended/configs/DC1-SPINE3.cfg +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/intended/configs/DC1-SPINE3.cfg @@ -104,7 +104,7 @@ interface Ethernet7 ip ospf message-digest-key 1 sha256 7 kguPGHyy/wCN0mKibi4dLRL4PmsrU4UP ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.3/32 ip ospf area 0.0.0.0 diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/intended/configs/DC1-SPINE4.cfg b/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/intended/configs/DC1-SPINE4.cfg index f4cb49412f3..37af8eaef52 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/intended/configs/DC1-SPINE4.cfg +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/intended/configs/DC1-SPINE4.cfg @@ -104,7 +104,7 @@ interface Ethernet7 ip ospf message-digest-key 1 sha256 7 kguPGHyy/wCN0mKibi4dLRL4PmsrU4UP ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.4/32 ip ospf area 0.0.0.0 diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/intended/configs/DC1-SVC3A.cfg b/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/intended/configs/DC1-SVC3A.cfg index cef924b0409..58056fbee13 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/intended/configs/DC1-SVC3A.cfg +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/intended/configs/DC1-SVC3A.cfg @@ -122,7 +122,7 @@ interface Ethernet8 channel-group 7 mode active ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.8/32 ip ospf area 0.0.0.0 diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/intended/configs/DC1-SVC3B.cfg b/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/intended/configs/DC1-SVC3B.cfg index ded7c4d143c..17cdb8b4655 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/intended/configs/DC1-SVC3B.cfg +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/intended/configs/DC1-SVC3B.cfg @@ -122,7 +122,7 @@ interface Ethernet8 channel-group 7 mode active ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.9/32 ip ospf area 0.0.0.0 diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/intended/structured_configs/DC1-BL1A.yml b/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/intended/structured_configs/DC1-BL1A.yml index 0363caaa9b4..a6de6ff0a76 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/intended/structured_configs/DC1-BL1A.yml +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/intended/structured_configs/DC1-BL1A.yml @@ -253,7 +253,7 @@ mlag_configuration: reload_delay_non_mlag: '330' loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.10/32 ospf_area: 0.0.0.0 diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/intended/structured_configs/DC1-BL1B.yml b/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/intended/structured_configs/DC1-BL1B.yml index 3160d108d90..06c3768e927 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/intended/structured_configs/DC1-BL1B.yml +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/intended/structured_configs/DC1-BL1B.yml @@ -253,7 +253,7 @@ mlag_configuration: reload_delay_non_mlag: '330' loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.11/32 ospf_area: 0.0.0.0 diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/intended/structured_configs/DC1-LEAF1A.yml b/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/intended/structured_configs/DC1-LEAF1A.yml index 80b9942a3aa..c377fb6d9ec 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/intended/structured_configs/DC1-LEAF1A.yml +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/intended/structured_configs/DC1-LEAF1A.yml @@ -191,7 +191,7 @@ ethernet_interfaces: key: QB0XEg/PJV6Y5HtvjDdiafrPx/g+JRKk loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.5/32 ospf_area: 0.0.0.0 diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/intended/structured_configs/DC1-LEAF2A.yml b/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/intended/structured_configs/DC1-LEAF2A.yml index 04c01a35485..4678a820e97 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/intended/structured_configs/DC1-LEAF2A.yml +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/intended/structured_configs/DC1-LEAF2A.yml @@ -338,7 +338,7 @@ mlag_configuration: reload_delay_non_mlag: '330' loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.6/32 ospf_area: 0.0.0.0 diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/intended/structured_configs/DC1-LEAF2B.yml b/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/intended/structured_configs/DC1-LEAF2B.yml index 6ca9b8d40e0..5d69bc005ef 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/intended/structured_configs/DC1-LEAF2B.yml +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/intended/structured_configs/DC1-LEAF2B.yml @@ -338,7 +338,7 @@ mlag_configuration: reload_delay_non_mlag: '330' loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.7/32 ospf_area: 0.0.0.0 diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/intended/structured_configs/DC1-SPINE1.yml b/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/intended/structured_configs/DC1-SPINE1.yml index 52a6ed72e96..0dd688c23f3 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/intended/structured_configs/DC1-SPINE1.yml +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/intended/structured_configs/DC1-SPINE1.yml @@ -248,7 +248,7 @@ ethernet_interfaces: key: kguPGHyy/wCN0mKibi4dLRL4PmsrU4UP loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.1/32 ospf_area: 0.0.0.0 diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/intended/structured_configs/DC1-SPINE2.yml b/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/intended/structured_configs/DC1-SPINE2.yml index 01f3012b0e2..3f506337372 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/intended/structured_configs/DC1-SPINE2.yml +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/intended/structured_configs/DC1-SPINE2.yml @@ -248,7 +248,7 @@ ethernet_interfaces: key: kguPGHyy/wCN0mKibi4dLRL4PmsrU4UP loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.2/32 ospf_area: 0.0.0.0 diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/intended/structured_configs/DC1-SPINE3.yml b/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/intended/structured_configs/DC1-SPINE3.yml index a6f9d66c229..bfc07b3477f 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/intended/structured_configs/DC1-SPINE3.yml +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/intended/structured_configs/DC1-SPINE3.yml @@ -248,7 +248,7 @@ ethernet_interfaces: key: kguPGHyy/wCN0mKibi4dLRL4PmsrU4UP loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.3/32 ospf_area: 0.0.0.0 diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/intended/structured_configs/DC1-SPINE4.yml b/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/intended/structured_configs/DC1-SPINE4.yml index 7dcfdaf2c59..00a6a999430 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/intended/structured_configs/DC1-SPINE4.yml +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/intended/structured_configs/DC1-SPINE4.yml @@ -248,7 +248,7 @@ ethernet_interfaces: key: kguPGHyy/wCN0mKibi4dLRL4PmsrU4UP loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.4/32 ospf_area: 0.0.0.0 diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/intended/structured_configs/DC1-SVC3A.yml b/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/intended/structured_configs/DC1-SVC3A.yml index cf0d7b74053..d876d6725cb 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/intended/structured_configs/DC1-SVC3A.yml +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/intended/structured_configs/DC1-SVC3A.yml @@ -338,7 +338,7 @@ mlag_configuration: reload_delay_non_mlag: '330' loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.8/32 ospf_area: 0.0.0.0 diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/intended/structured_configs/DC1-SVC3B.yml b/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/intended/structured_configs/DC1-SVC3B.yml index 1a9a324d8e3..d716da6aafc 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/intended/structured_configs/DC1-SVC3B.yml +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_ospf_overlay_ebgp/intended/structured_configs/DC1-SVC3B.yml @@ -338,7 +338,7 @@ mlag_configuration: reload_delay_non_mlag: '330' loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.9/32 ospf_area: 0.0.0.0 diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/documentation/devices/DC1-BL1A.md b/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/documentation/devices/DC1-BL1A.md index d850d3f4ed5..3ce47f4b383 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/documentation/devices/DC1-BL1A.md +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/documentation/devices/DC1-BL1A.md @@ -358,14 +358,14 @@ interface Ethernet4000 | Interface | Description | VRF | IP Address | | --------- | ----------- | --- | ---------- | -| Loopback0 | EVPN_Overlay_Peering | default | 192.168.255.10/32 | +| Loopback0 | ROUTER_ID | default | 192.168.255.10/32 | | Loopback1 | VTEP_VXLAN_Tunnel_Source | default | 192.168.254.10/32 | ##### IPv6 | Interface | Description | VRF | IPv6 Address | | --------- | ----------- | --- | ------------ | -| Loopback0 | EVPN_Overlay_Peering | default | - | +| Loopback0 | ROUTER_ID | default | - | | Loopback1 | VTEP_VXLAN_Tunnel_Source | default | - | #### Loopback Interfaces Device Configuration @@ -373,7 +373,7 @@ interface Ethernet4000 ```eos ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.10/32 ! diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/documentation/devices/DC1-BL1B.md b/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/documentation/devices/DC1-BL1B.md index 7dc67b3f9bb..473d9443dcb 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/documentation/devices/DC1-BL1B.md +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/documentation/devices/DC1-BL1B.md @@ -359,14 +359,14 @@ interface Ethernet4000 | Interface | Description | VRF | IP Address | | --------- | ----------- | --- | ---------- | -| Loopback0 | EVPN_Overlay_Peering | default | 192.168.255.11/32 | +| Loopback0 | ROUTER_ID | default | 192.168.255.11/32 | | Loopback1 | VTEP_VXLAN_Tunnel_Source | default | 192.168.254.11/32 | ##### IPv6 | Interface | Description | VRF | IPv6 Address | | --------- | ----------- | --- | ------------ | -| Loopback0 | EVPN_Overlay_Peering | default | - | +| Loopback0 | ROUTER_ID | default | - | | Loopback1 | VTEP_VXLAN_Tunnel_Source | default | - | #### Loopback Interfaces Device Configuration @@ -374,7 +374,7 @@ interface Ethernet4000 ```eos ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.11/32 ! diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/documentation/devices/DC1-LEAF1A.md b/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/documentation/devices/DC1-LEAF1A.md index aeda30f8f5b..aefc262a146 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/documentation/devices/DC1-LEAF1A.md +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/documentation/devices/DC1-LEAF1A.md @@ -346,14 +346,14 @@ interface Ethernet7 | Interface | Description | VRF | IP Address | | --------- | ----------- | --- | ---------- | -| Loopback0 | EVPN_Overlay_Peering | default | 192.168.255.5/32 | +| Loopback0 | ROUTER_ID | default | 192.168.255.5/32 | | Loopback1 | VTEP_VXLAN_Tunnel_Source | default | 192.168.254.5/32 | ##### IPv6 | Interface | Description | VRF | IPv6 Address | | --------- | ----------- | --- | ------------ | -| Loopback0 | EVPN_Overlay_Peering | default | - | +| Loopback0 | ROUTER_ID | default | - | | Loopback1 | VTEP_VXLAN_Tunnel_Source | default | - | #### Loopback Interfaces Device Configuration @@ -361,7 +361,7 @@ interface Ethernet7 ```eos ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.5/32 ! diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/documentation/devices/DC1-LEAF2A.md b/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/documentation/devices/DC1-LEAF2A.md index 03846061313..192c172f22a 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/documentation/devices/DC1-LEAF2A.md +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/documentation/devices/DC1-LEAF2A.md @@ -533,7 +533,7 @@ interface Port-Channel12 | Interface | Description | VRF | IP Address | | --------- | ----------- | --- | ---------- | -| Loopback0 | EVPN_Overlay_Peering | default | 192.168.255.6/32 | +| Loopback0 | ROUTER_ID | default | 192.168.255.6/32 | | Loopback1 | VTEP_VXLAN_Tunnel_Source | default | 192.168.254.6/32 | | Loopback100 | Tenant_A_OP_Zone_VTEP_DIAGNOSTICS | Tenant_A_OP_Zone | 10.255.1.6/32 | @@ -541,7 +541,7 @@ interface Port-Channel12 | Interface | Description | VRF | IPv6 Address | | --------- | ----------- | --- | ------------ | -| Loopback0 | EVPN_Overlay_Peering | default | - | +| Loopback0 | ROUTER_ID | default | - | | Loopback1 | VTEP_VXLAN_Tunnel_Source | default | - | | Loopback100 | Tenant_A_OP_Zone_VTEP_DIAGNOSTICS | Tenant_A_OP_Zone | - | @@ -550,7 +550,7 @@ interface Port-Channel12 ```eos ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.6/32 ! diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/documentation/devices/DC1-LEAF2B.md b/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/documentation/devices/DC1-LEAF2B.md index 039842eda8a..5885e15a672 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/documentation/devices/DC1-LEAF2B.md +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/documentation/devices/DC1-LEAF2B.md @@ -533,7 +533,7 @@ interface Port-Channel12 | Interface | Description | VRF | IP Address | | --------- | ----------- | --- | ---------- | -| Loopback0 | EVPN_Overlay_Peering | default | 192.168.255.7/32 | +| Loopback0 | ROUTER_ID | default | 192.168.255.7/32 | | Loopback1 | VTEP_VXLAN_Tunnel_Source | default | 192.168.254.6/32 | | Loopback100 | Tenant_A_OP_Zone_VTEP_DIAGNOSTICS | Tenant_A_OP_Zone | 10.255.1.7/32 | @@ -541,7 +541,7 @@ interface Port-Channel12 | Interface | Description | VRF | IPv6 Address | | --------- | ----------- | --- | ------------ | -| Loopback0 | EVPN_Overlay_Peering | default | - | +| Loopback0 | ROUTER_ID | default | - | | Loopback1 | VTEP_VXLAN_Tunnel_Source | default | - | | Loopback100 | Tenant_A_OP_Zone_VTEP_DIAGNOSTICS | Tenant_A_OP_Zone | - | @@ -550,7 +550,7 @@ interface Port-Channel12 ```eos ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.7/32 ! diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/documentation/devices/DC1-LEAF3A.md b/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/documentation/devices/DC1-LEAF3A.md index ddadbcf8c5a..4d4f28bc7d4 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/documentation/devices/DC1-LEAF3A.md +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/documentation/devices/DC1-LEAF3A.md @@ -459,7 +459,7 @@ interface Port-Channel5 | Interface | Description | VRF | IP Address | | --------- | ----------- | --- | ---------- | -| Loopback0 | EVPN_Overlay_Peering | default | 192.168.255.12/32 | +| Loopback0 | ROUTER_ID | default | 192.168.255.12/32 | | Loopback1 | VTEP_VXLAN_Tunnel_Source | default | 192.168.254.12/32 | | Loopback100 | Tenant_A_OP_Zone_VTEP_DIAGNOSTICS | Tenant_A_OP_Zone | 10.255.1.12/32 | @@ -467,7 +467,7 @@ interface Port-Channel5 | Interface | Description | VRF | IPv6 Address | | --------- | ----------- | --- | ------------ | -| Loopback0 | EVPN_Overlay_Peering | default | 2001:1::c/128 | +| Loopback0 | ROUTER_ID | default | 2001:1::c/128 | | Loopback1 | VTEP_VXLAN_Tunnel_Source | default | - | | Loopback100 | Tenant_A_OP_Zone_VTEP_DIAGNOSTICS | Tenant_A_OP_Zone | - | @@ -476,7 +476,7 @@ interface Port-Channel5 ```eos ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.12/32 ipv6 address 2001:1::c/128 diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/documentation/devices/DC1-LEAF3B.md b/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/documentation/devices/DC1-LEAF3B.md index 4bc675d2f03..5fa149f8c19 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/documentation/devices/DC1-LEAF3B.md +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/documentation/devices/DC1-LEAF3B.md @@ -459,7 +459,7 @@ interface Port-Channel5 | Interface | Description | VRF | IP Address | | --------- | ----------- | --- | ---------- | -| Loopback0 | EVPN_Overlay_Peering | default | 192.168.255.13/32 | +| Loopback0 | ROUTER_ID | default | 192.168.255.13/32 | | Loopback1 | VTEP_VXLAN_Tunnel_Source | default | 192.168.254.12/32 | | Loopback100 | Tenant_A_OP_Zone_VTEP_DIAGNOSTICS | Tenant_A_OP_Zone | 10.255.1.13/32 | @@ -467,7 +467,7 @@ interface Port-Channel5 | Interface | Description | VRF | IPv6 Address | | --------- | ----------- | --- | ------------ | -| Loopback0 | EVPN_Overlay_Peering | default | 2001:1::d/128 | +| Loopback0 | ROUTER_ID | default | 2001:1::d/128 | | Loopback1 | VTEP_VXLAN_Tunnel_Source | default | - | | Loopback100 | Tenant_A_OP_Zone_VTEP_DIAGNOSTICS | Tenant_A_OP_Zone | - | @@ -476,7 +476,7 @@ interface Port-Channel5 ```eos ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.13/32 ipv6 address 2001:1::d/128 diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/documentation/devices/DC1-LEAF4A.md b/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/documentation/devices/DC1-LEAF4A.md index c723afefb14..a3f4c42da3f 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/documentation/devices/DC1-LEAF4A.md +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/documentation/devices/DC1-LEAF4A.md @@ -451,7 +451,7 @@ interface Port-Channel5 | Interface | Description | VRF | IP Address | | --------- | ----------- | --- | ---------- | -| Loopback0 | EVPN_Overlay_Peering | default | 192.168.255.14/32 | +| Loopback0 | ROUTER_ID | default | 192.168.255.14/32 | | Loopback1 | VTEP_VXLAN_Tunnel_Source | default | 192.168.254.14/32 | | Loopback100 | Tenant_A_OP_Zone_VTEP_DIAGNOSTICS | Tenant_A_OP_Zone | 10.255.1.14/32 | @@ -459,7 +459,7 @@ interface Port-Channel5 | Interface | Description | VRF | IPv6 Address | | --------- | ----------- | --- | ------------ | -| Loopback0 | EVPN_Overlay_Peering | default | 2001:1::e/128 | +| Loopback0 | ROUTER_ID | default | 2001:1::e/128 | | Loopback1 | VTEP_VXLAN_Tunnel_Source | default | - | | Loopback100 | Tenant_A_OP_Zone_VTEP_DIAGNOSTICS | Tenant_A_OP_Zone | - | @@ -468,7 +468,7 @@ interface Port-Channel5 ```eos ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.14/32 ipv6 address 2001:1::e/128 diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/documentation/devices/DC1-LEAF4B.md b/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/documentation/devices/DC1-LEAF4B.md index 12eddf45ceb..1388ebd0c0a 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/documentation/devices/DC1-LEAF4B.md +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/documentation/devices/DC1-LEAF4B.md @@ -451,7 +451,7 @@ interface Port-Channel5 | Interface | Description | VRF | IP Address | | --------- | ----------- | --- | ---------- | -| Loopback0 | EVPN_Overlay_Peering | default | 192.168.255.15/32 | +| Loopback0 | ROUTER_ID | default | 192.168.255.15/32 | | Loopback1 | VTEP_VXLAN_Tunnel_Source | default | 192.168.254.14/32 | | Loopback100 | Tenant_A_OP_Zone_VTEP_DIAGNOSTICS | Tenant_A_OP_Zone | 10.255.1.15/32 | @@ -459,7 +459,7 @@ interface Port-Channel5 | Interface | Description | VRF | IPv6 Address | | --------- | ----------- | --- | ------------ | -| Loopback0 | EVPN_Overlay_Peering | default | 2001:1::f/128 | +| Loopback0 | ROUTER_ID | default | 2001:1::f/128 | | Loopback1 | VTEP_VXLAN_Tunnel_Source | default | - | | Loopback100 | Tenant_A_OP_Zone_VTEP_DIAGNOSTICS | Tenant_A_OP_Zone | - | @@ -468,7 +468,7 @@ interface Port-Channel5 ```eos ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.15/32 ipv6 address 2001:1::f/128 diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/documentation/devices/DC1-SPINE1.md b/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/documentation/devices/DC1-SPINE1.md index d33ab81a62d..c2a1e2e852c 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/documentation/devices/DC1-SPINE1.md +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/documentation/devices/DC1-SPINE1.md @@ -288,20 +288,20 @@ interface Ethernet7 | Interface | Description | VRF | IP Address | | --------- | ----------- | --- | ---------- | -| Loopback0 | EVPN_Overlay_Peering | default | 192.168.255.1/32 | +| Loopback0 | ROUTER_ID | default | 192.168.255.1/32 | ##### IPv6 | Interface | Description | VRF | IPv6 Address | | --------- | ----------- | --- | ------------ | -| Loopback0 | EVPN_Overlay_Peering | default | - | +| Loopback0 | ROUTER_ID | default | - | #### Loopback Interfaces Device Configuration ```eos ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.1/32 ``` diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/documentation/devices/DC1-SPINE2.md b/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/documentation/devices/DC1-SPINE2.md index 0e5f3f0fecb..53217999382 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/documentation/devices/DC1-SPINE2.md +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/documentation/devices/DC1-SPINE2.md @@ -288,20 +288,20 @@ interface Ethernet7 | Interface | Description | VRF | IP Address | | --------- | ----------- | --- | ---------- | -| Loopback0 | EVPN_Overlay_Peering | default | 192.168.255.2/32 | +| Loopback0 | ROUTER_ID | default | 192.168.255.2/32 | ##### IPv6 | Interface | Description | VRF | IPv6 Address | | --------- | ----------- | --- | ------------ | -| Loopback0 | EVPN_Overlay_Peering | default | - | +| Loopback0 | ROUTER_ID | default | - | #### Loopback Interfaces Device Configuration ```eos ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.2/32 ``` diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/documentation/devices/DC1-SPINE3.md b/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/documentation/devices/DC1-SPINE3.md index 6e0b5d43e03..6b07cd0980e 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/documentation/devices/DC1-SPINE3.md +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/documentation/devices/DC1-SPINE3.md @@ -288,20 +288,20 @@ interface Ethernet7 | Interface | Description | VRF | IP Address | | --------- | ----------- | --- | ---------- | -| Loopback0 | EVPN_Overlay_Peering | default | 192.168.255.3/32 | +| Loopback0 | ROUTER_ID | default | 192.168.255.3/32 | ##### IPv6 | Interface | Description | VRF | IPv6 Address | | --------- | ----------- | --- | ------------ | -| Loopback0 | EVPN_Overlay_Peering | default | - | +| Loopback0 | ROUTER_ID | default | - | #### Loopback Interfaces Device Configuration ```eos ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.3/32 ``` diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/documentation/devices/DC1-SPINE4.md b/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/documentation/devices/DC1-SPINE4.md index a601a98039a..ba3f12272ab 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/documentation/devices/DC1-SPINE4.md +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/documentation/devices/DC1-SPINE4.md @@ -288,20 +288,20 @@ interface Ethernet7 | Interface | Description | VRF | IP Address | | --------- | ----------- | --- | ---------- | -| Loopback0 | EVPN_Overlay_Peering | default | 192.168.255.4/32 | +| Loopback0 | ROUTER_ID | default | 192.168.255.4/32 | ##### IPv6 | Interface | Description | VRF | IPv6 Address | | --------- | ----------- | --- | ------------ | -| Loopback0 | EVPN_Overlay_Peering | default | - | +| Loopback0 | ROUTER_ID | default | - | #### Loopback Interfaces Device Configuration ```eos ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.4/32 ``` diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/documentation/devices/DC1-SPINE5.md b/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/documentation/devices/DC1-SPINE5.md index 82a50d0cda5..1da4848cfcb 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/documentation/devices/DC1-SPINE5.md +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/documentation/devices/DC1-SPINE5.md @@ -265,20 +265,20 @@ interface Ethernet4 | Interface | Description | VRF | IP Address | | --------- | ----------- | --- | ---------- | -| Loopback0 | EVPN_Overlay_Peering | default | 192.168.255.5/32 | +| Loopback0 | ROUTER_ID | default | 192.168.255.5/32 | ##### IPv6 | Interface | Description | VRF | IPv6 Address | | --------- | ----------- | --- | ------------ | -| Loopback0 | EVPN_Overlay_Peering | default | 2001:1::5/128 | +| Loopback0 | ROUTER_ID | default | 2001:1::5/128 | #### Loopback Interfaces Device Configuration ```eos ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.5/32 ipv6 address 2001:1::5/128 diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/documentation/devices/DC1-SPINE6.md b/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/documentation/devices/DC1-SPINE6.md index 9848ebcfdbe..27df3479ef6 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/documentation/devices/DC1-SPINE6.md +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/documentation/devices/DC1-SPINE6.md @@ -249,20 +249,20 @@ interface Ethernet2 | Interface | Description | VRF | IP Address | | --------- | ----------- | --- | ---------- | -| Loopback0 | EVPN_Overlay_Peering | default | 192.168.255.6/32 | +| Loopback0 | ROUTER_ID | default | 192.168.255.6/32 | ##### IPv6 | Interface | Description | VRF | IPv6 Address | | --------- | ----------- | --- | ------------ | -| Loopback0 | EVPN_Overlay_Peering | default | 2001:1::6/128 | +| Loopback0 | ROUTER_ID | default | 2001:1::6/128 | #### Loopback Interfaces Device Configuration ```eos ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.6/32 ipv6 address 2001:1::6/128 diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/documentation/devices/DC1-SVC3A.md b/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/documentation/devices/DC1-SVC3A.md index 3da27ab1819..81659094bd3 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/documentation/devices/DC1-SVC3A.md +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/documentation/devices/DC1-SVC3A.md @@ -646,7 +646,7 @@ interface Port-Channel15 | Interface | Description | VRF | IP Address | | --------- | ----------- | --- | ---------- | -| Loopback0 | EVPN_Overlay_Peering | default | 192.168.255.8/32 | +| Loopback0 | ROUTER_ID | default | 192.168.255.8/32 | | Loopback1 | VTEP_VXLAN_Tunnel_Source | default | 192.168.254.8/32 | | Loopback100 | Tenant_A_OP_Zone_VTEP_DIAGNOSTICS | Tenant_A_OP_Zone | 10.255.1.8/32 | @@ -654,7 +654,7 @@ interface Port-Channel15 | Interface | Description | VRF | IPv6 Address | | --------- | ----------- | --- | ------------ | -| Loopback0 | EVPN_Overlay_Peering | default | - | +| Loopback0 | ROUTER_ID | default | - | | Loopback1 | VTEP_VXLAN_Tunnel_Source | default | - | | Loopback100 | Tenant_A_OP_Zone_VTEP_DIAGNOSTICS | Tenant_A_OP_Zone | - | @@ -663,7 +663,7 @@ interface Port-Channel15 ```eos ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.8/32 ! diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/documentation/devices/DC1-SVC3B.md b/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/documentation/devices/DC1-SVC3B.md index 55fe99c035a..d28697ce32f 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/documentation/devices/DC1-SVC3B.md +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/documentation/devices/DC1-SVC3B.md @@ -620,7 +620,7 @@ interface Port-Channel15 | Interface | Description | VRF | IP Address | | --------- | ----------- | --- | ---------- | -| Loopback0 | EVPN_Overlay_Peering | default | 192.168.255.9/32 | +| Loopback0 | ROUTER_ID | default | 192.168.255.9/32 | | Loopback1 | VTEP_VXLAN_Tunnel_Source | default | 192.168.254.8/32 | | Loopback100 | Tenant_A_OP_Zone_VTEP_DIAGNOSTICS | Tenant_A_OP_Zone | 10.255.1.9/32 | @@ -628,7 +628,7 @@ interface Port-Channel15 | Interface | Description | VRF | IPv6 Address | | --------- | ----------- | --- | ------------ | -| Loopback0 | EVPN_Overlay_Peering | default | - | +| Loopback0 | ROUTER_ID | default | - | | Loopback1 | VTEP_VXLAN_Tunnel_Source | default | - | | Loopback100 | Tenant_A_OP_Zone_VTEP_DIAGNOSTICS | Tenant_A_OP_Zone | - | @@ -637,7 +637,7 @@ interface Port-Channel15 ```eos ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.9/32 ! diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/configs/DC1-BL1A.cfg b/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/configs/DC1-BL1A.cfg index 068adc12e5a..64a772cbdbc 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/configs/DC1-BL1A.cfg +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/configs/DC1-BL1A.cfg @@ -101,7 +101,7 @@ interface Ethernet4000 ip address 10.1.2.3/12 ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.10/32 ! diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/configs/DC1-BL1B.cfg b/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/configs/DC1-BL1B.cfg index 828675543dd..68a7d7258c4 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/configs/DC1-BL1B.cfg +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/configs/DC1-BL1B.cfg @@ -102,7 +102,7 @@ interface Ethernet4000 ip address 10.1.2.3/12 ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.11/32 ! diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/configs/DC1-LEAF1A.cfg b/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/configs/DC1-LEAF1A.cfg index 94a127c2b2a..fc8f4d995bf 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/configs/DC1-LEAF1A.cfg +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/configs/DC1-LEAF1A.cfg @@ -96,7 +96,7 @@ interface Ethernet7 switchport ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.5/32 ! diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/configs/DC1-LEAF2A.cfg b/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/configs/DC1-LEAF2A.cfg index a8f37ba14f0..e090ad9f24a 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/configs/DC1-LEAF2A.cfg +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/configs/DC1-LEAF2A.cfg @@ -216,7 +216,7 @@ interface Ethernet12 channel-group 12 mode active ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.6/32 ! diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/configs/DC1-LEAF2B.cfg b/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/configs/DC1-LEAF2B.cfg index f7a01698f8e..45751b4f564 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/configs/DC1-LEAF2B.cfg +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/configs/DC1-LEAF2B.cfg @@ -216,7 +216,7 @@ interface Ethernet12 channel-group 12 mode active ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.7/32 ! diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/configs/DC1-LEAF3A.cfg b/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/configs/DC1-LEAF3A.cfg index fa601a443b5..3fe0a8f5929 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/configs/DC1-LEAF3A.cfg +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/configs/DC1-LEAF3A.cfg @@ -151,7 +151,7 @@ interface Ethernet6 channel-group 5 mode active ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.12/32 ipv6 address 2001:1::c/128 diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/configs/DC1-LEAF3B.cfg b/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/configs/DC1-LEAF3B.cfg index e4241359689..8da4334c113 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/configs/DC1-LEAF3B.cfg +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/configs/DC1-LEAF3B.cfg @@ -151,7 +151,7 @@ interface Ethernet6 channel-group 5 mode active ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.13/32 ipv6 address 2001:1::d/128 diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/configs/DC1-LEAF4A.cfg b/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/configs/DC1-LEAF4A.cfg index 9ba5534a609..5ff9401a851 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/configs/DC1-LEAF4A.cfg +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/configs/DC1-LEAF4A.cfg @@ -144,7 +144,7 @@ interface Ethernet6 channel-group 5 mode active ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.14/32 ipv6 address 2001:1::e/128 diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/configs/DC1-LEAF4B.cfg b/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/configs/DC1-LEAF4B.cfg index 35ea37aff90..f438cfd5e0a 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/configs/DC1-LEAF4B.cfg +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/configs/DC1-LEAF4B.cfg @@ -144,7 +144,7 @@ interface Ethernet6 channel-group 5 mode active ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.15/32 ipv6 address 2001:1::f/128 diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/configs/DC1-SPINE1.cfg b/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/configs/DC1-SPINE1.cfg index a4b44716833..22b9a98a6eb 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/configs/DC1-SPINE1.cfg +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/configs/DC1-SPINE1.cfg @@ -76,7 +76,7 @@ interface Ethernet7 ipv6 enable ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.1/32 ! diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/configs/DC1-SPINE2.cfg b/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/configs/DC1-SPINE2.cfg index 2223bf4aee9..e010505e899 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/configs/DC1-SPINE2.cfg +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/configs/DC1-SPINE2.cfg @@ -76,7 +76,7 @@ interface Ethernet7 ipv6 enable ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.2/32 ! diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/configs/DC1-SPINE3.cfg b/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/configs/DC1-SPINE3.cfg index d834eac890b..e67ccd8a81a 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/configs/DC1-SPINE3.cfg +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/configs/DC1-SPINE3.cfg @@ -76,7 +76,7 @@ interface Ethernet7 ipv6 enable ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.3/32 ! diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/configs/DC1-SPINE4.cfg b/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/configs/DC1-SPINE4.cfg index a4731472964..d3ad603ff4a 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/configs/DC1-SPINE4.cfg +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/configs/DC1-SPINE4.cfg @@ -76,7 +76,7 @@ interface Ethernet7 ipv6 enable ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.4/32 ! diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/configs/DC1-SPINE5.cfg b/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/configs/DC1-SPINE5.cfg index a5b7eb16a5c..d2e7e1b57d2 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/configs/DC1-SPINE5.cfg +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/configs/DC1-SPINE5.cfg @@ -55,7 +55,7 @@ interface Ethernet4 ipv6 enable ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.5/32 ipv6 address 2001:1::5/128 diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/configs/DC1-SPINE6.cfg b/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/configs/DC1-SPINE6.cfg index 4041e206631..82e75ab9954 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/configs/DC1-SPINE6.cfg +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/configs/DC1-SPINE6.cfg @@ -41,7 +41,7 @@ interface Ethernet2 ipv6 enable ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.6/32 ipv6 address 2001:1::6/128 diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/configs/DC1-SVC3A.cfg b/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/configs/DC1-SVC3A.cfg index a47fa2f39bb..28a0a2ee73d 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/configs/DC1-SVC3A.cfg +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/configs/DC1-SVC3A.cfg @@ -316,7 +316,7 @@ interface Ethernet16 spanning-tree bpduguard enable ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.8/32 ! diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/configs/DC1-SVC3B.cfg b/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/configs/DC1-SVC3B.cfg index 3fb7d6947d1..9ea91066e4e 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/configs/DC1-SVC3B.cfg +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/configs/DC1-SVC3B.cfg @@ -300,7 +300,7 @@ interface Ethernet16 spanning-tree bpduguard enable ! interface Loopback0 - description EVPN_Overlay_Peering + description ROUTER_ID no shutdown ip address 192.168.255.9/32 ! diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/structured_configs/DC1-BL1A.yml b/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/structured_configs/DC1-BL1A.yml index 62f601d93bb..145a1e17e22 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/structured_configs/DC1-BL1A.yml +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/structured_configs/DC1-BL1A.yml @@ -368,7 +368,7 @@ ethernet_interfaces: peer_type: my_precious loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.10/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/structured_configs/DC1-BL1B.yml b/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/structured_configs/DC1-BL1B.yml index 34b1387b6fd..c0ce12c28f9 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/structured_configs/DC1-BL1B.yml +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/structured_configs/DC1-BL1B.yml @@ -369,7 +369,7 @@ ethernet_interfaces: peer_type: my_precious loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.11/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/structured_configs/DC1-LEAF1A.yml b/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/structured_configs/DC1-LEAF1A.yml index 6cea67e9ab9..efd21185835 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/structured_configs/DC1-LEAF1A.yml +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/structured_configs/DC1-LEAF1A.yml @@ -293,7 +293,7 @@ ethernet_interfaces: vlans: '110' loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.5/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/structured_configs/DC1-LEAF2A.yml b/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/structured_configs/DC1-LEAF2A.yml index 515a11e19fb..12e54802e39 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/structured_configs/DC1-LEAF2A.yml +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/structured_configs/DC1-LEAF2A.yml @@ -839,7 +839,7 @@ route_maps: - ip address prefix-list PL-LOOPBACKS-EVPN-OVERLAY loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.6/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/structured_configs/DC1-LEAF2B.yml b/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/structured_configs/DC1-LEAF2B.yml index 36a43f861fa..2875201264a 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/structured_configs/DC1-LEAF2B.yml +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/structured_configs/DC1-LEAF2B.yml @@ -839,7 +839,7 @@ route_maps: - ip address prefix-list PL-LOOPBACKS-EVPN-OVERLAY loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.7/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/structured_configs/DC1-LEAF3A.yml b/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/structured_configs/DC1-LEAF3A.yml index 93fda7e688e..53e8a979d90 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/structured_configs/DC1-LEAF3A.yml +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/structured_configs/DC1-LEAF3A.yml @@ -700,7 +700,7 @@ route_maps: - ipv6 address prefix-list PL-LOOPBACKS-EVPN-OVERLAY-V6 loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.12/32 ipv6_address: 2001:1::c/128 diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/structured_configs/DC1-LEAF3B.yml b/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/structured_configs/DC1-LEAF3B.yml index de26742a004..cd14a9b9d54 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/structured_configs/DC1-LEAF3B.yml +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/structured_configs/DC1-LEAF3B.yml @@ -700,7 +700,7 @@ route_maps: - ipv6 address prefix-list PL-LOOPBACKS-EVPN-OVERLAY-V6 loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.13/32 ipv6_address: 2001:1::d/128 diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/structured_configs/DC1-LEAF4A.yml b/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/structured_configs/DC1-LEAF4A.yml index 6b52c29e6ee..0c04ad0e9b7 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/structured_configs/DC1-LEAF4A.yml +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/structured_configs/DC1-LEAF4A.yml @@ -686,7 +686,7 @@ route_maps: - ipv6 address prefix-list PL-LOOPBACKS-EVPN-OVERLAY-V6 loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.14/32 ipv6_address: 2001:1::e/128 diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/structured_configs/DC1-LEAF4B.yml b/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/structured_configs/DC1-LEAF4B.yml index e39343e5840..3c1fca0d109 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/structured_configs/DC1-LEAF4B.yml +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/structured_configs/DC1-LEAF4B.yml @@ -686,7 +686,7 @@ route_maps: - ipv6 address prefix-list PL-LOOPBACKS-EVPN-OVERLAY-V6 loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.15/32 ipv6_address: 2001:1::f/128 diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/structured_configs/DC1-SPINE1.yml b/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/structured_configs/DC1-SPINE1.yml index 0678af6856a..578aa1e0e65 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/structured_configs/DC1-SPINE1.yml +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/structured_configs/DC1-SPINE1.yml @@ -250,7 +250,7 @@ ethernet_interfaces: ipv6_enable: true loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.1/32 prefix_lists: diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/structured_configs/DC1-SPINE2.yml b/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/structured_configs/DC1-SPINE2.yml index 97effc8f4a0..2a66a46012c 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/structured_configs/DC1-SPINE2.yml +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/structured_configs/DC1-SPINE2.yml @@ -250,7 +250,7 @@ ethernet_interfaces: ipv6_enable: true loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.2/32 prefix_lists: diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/structured_configs/DC1-SPINE3.yml b/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/structured_configs/DC1-SPINE3.yml index 8b70b0006d7..9dfa2c2d095 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/structured_configs/DC1-SPINE3.yml +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/structured_configs/DC1-SPINE3.yml @@ -250,7 +250,7 @@ ethernet_interfaces: ipv6_enable: true loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.3/32 prefix_lists: diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/structured_configs/DC1-SPINE4.yml b/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/structured_configs/DC1-SPINE4.yml index 6c995010a42..a1b6294c6f0 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/structured_configs/DC1-SPINE4.yml +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/structured_configs/DC1-SPINE4.yml @@ -250,7 +250,7 @@ ethernet_interfaces: ipv6_enable: true loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.4/32 prefix_lists: diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/structured_configs/DC1-SPINE5.yml b/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/structured_configs/DC1-SPINE5.yml index 26165af40de..da857d6d1f8 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/structured_configs/DC1-SPINE5.yml +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/structured_configs/DC1-SPINE5.yml @@ -187,7 +187,7 @@ ethernet_interfaces: ipv6_enable: true loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.5/32 ipv6_address: 2001:1::5/128 diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/structured_configs/DC1-SPINE6.yml b/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/structured_configs/DC1-SPINE6.yml index f6a8e9c3ca6..4092b7dc55e 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/structured_configs/DC1-SPINE6.yml +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/structured_configs/DC1-SPINE6.yml @@ -159,7 +159,7 @@ ethernet_interfaces: ipv6_enable: true loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.6/32 ipv6_address: 2001:1::6/128 diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/structured_configs/DC1-SVC3A.yml b/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/structured_configs/DC1-SVC3A.yml index e8ef212b09d..c46558c13da 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/structured_configs/DC1-SVC3A.yml +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/structured_configs/DC1-SVC3A.yml @@ -1116,7 +1116,7 @@ route_maps: - ip address prefix-list PL-LOOPBACKS-EVPN-OVERLAY loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.8/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/structured_configs/DC1-SVC3B.yml b/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/structured_configs/DC1-SVC3B.yml index b4f0d429e8f..f6ad5c71672 100644 --- a/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/structured_configs/DC1-SVC3B.yml +++ b/ansible_collections/arista/avd/molecule/evpn_underlay_rfc5549_overlay_ebgp/intended/structured_configs/DC1-SVC3B.yml @@ -1095,7 +1095,7 @@ route_maps: - ip address prefix-list PL-LOOPBACKS-EVPN-OVERLAY loopback_interfaces: - name: Loopback0 - description: EVPN_Overlay_Peering + description: ROUTER_ID shutdown: false ip_address: 192.168.255.9/32 - name: Loopback1 diff --git a/ansible_collections/arista/avd/roles/eos_designs/docs/input-variables.md b/ansible_collections/arista/avd/roles/eos_designs/docs/input-variables.md index 870599887a9..e2aca8f04ef 100644 --- a/ansible_collections/arista/avd/roles/eos_designs/docs/input-variables.md +++ b/ansible_collections/arista/avd/roles/eos_designs/docs/input-variables.md @@ -461,12 +461,15 @@ connected_endpoints_port_channel_interfaces: - `{{ adapter_description }}` - All group/hostvars -overlay_loopback_interface: +router_id_loopback_interfaces (replacing overlay_loopback_interface): +- `{{ router_id_loopback_description }}` +- `{{ overlay_loopback_description }}` (deprecated - use `router_id_loopback_description` instead) - All group/hostvars vtep_loopback_interface: +- `{{ vtep_loopback_description }}` - All group/hostvars While all templates can leverage the internal switch facts (switch.*) to customize the interface descriptions, diff --git a/ansible_collections/arista/avd/roles/eos_designs/docs/tables/node-type-keys.md b/ansible_collections/arista/avd/roles/eos_designs/docs/tables/node-type-keys.md index e95c297009a..8013f2e4fcf 100644 --- a/ansible_collections/arista/avd/roles/eos_designs/docs/tables/node-type-keys.md +++ b/ansible_collections/arista/avd/roles/eos_designs/docs/tables/node-type-keys.md @@ -54,8 +54,9 @@ | [      mlag_port_channel_interfaces](## "custom_node_type_keys.[].interface_descriptions.mlag_port_channel_interfaces") | String | | | | Path to Custom J2 template. | | [      connected_endpoints_ethernet_interfaces](## "custom_node_type_keys.[].interface_descriptions.connected_endpoints_ethernet_interfaces") | String | | | | Path to Custom J2 template. | | [      connected_endpoints_port_channel_interfaces](## "custom_node_type_keys.[].interface_descriptions.connected_endpoints_port_channel_interfaces") | String | | | | Path to Custom J2 template. | - | [      overlay_loopback_interface](## "custom_node_type_keys.[].interface_descriptions.overlay_loopback_interface") | String | | | | Path to Custom J2 template. | + | [      router_id_loopback_interface](## "custom_node_type_keys.[].interface_descriptions.router_id_loopback_interface") | String | | | | Path to Custom J2 template. | | [      vtep_loopback_interface](## "custom_node_type_keys.[].interface_descriptions.vtep_loopback_interface") | String | | | | Path to Custom J2 template. | + | [      overlay_loopback_interface](## "custom_node_type_keys.[].interface_descriptions.overlay_loopback_interface") deprecated | String | | | | Path to Custom J2 template.This key is deprecated. Support will be removed in AVD version 6.0.0. Use router_id_loopback_interface instead. | | [node_type_keys](## "node_type_keys") | List, items: Dictionary | | | | Define Node Type Keys, to specify the properties of each node type in the fabric.
This allows for complete customization of the fabric layout and functionality.
`node_type_keys` should be defined in top level group_var for the fabric.

The default values will be overridden if this key is defined.
If you need to change all the existing `node_type_keys`, it is recommended to copy the defaults and modify them.
If you need to add custom `node_type_keys`, create them under `custom_node_type_keys` - if named identically to default `node_type_keys` entries,
custom entries will replace the equivalent default entry. | | [  - key](## "node_type_keys.[].key") | String | Required, Unique | | | | | [    type](## "node_type_keys.[].type") | String | | | | Type value matching this node_type_key. | @@ -103,8 +104,9 @@ | [      mlag_port_channel_interfaces](## "node_type_keys.[].interface_descriptions.mlag_port_channel_interfaces") | String | | | | Path to Custom J2 template. | | [      connected_endpoints_ethernet_interfaces](## "node_type_keys.[].interface_descriptions.connected_endpoints_ethernet_interfaces") | String | | | | Path to Custom J2 template. | | [      connected_endpoints_port_channel_interfaces](## "node_type_keys.[].interface_descriptions.connected_endpoints_port_channel_interfaces") | String | | | | Path to Custom J2 template. | - | [      overlay_loopback_interface](## "node_type_keys.[].interface_descriptions.overlay_loopback_interface") | String | | | | Path to Custom J2 template. | + | [      router_id_loopback_interface](## "node_type_keys.[].interface_descriptions.router_id_loopback_interface") | String | | | | Path to Custom J2 template. | | [      vtep_loopback_interface](## "node_type_keys.[].interface_descriptions.vtep_loopback_interface") | String | | | | Path to Custom J2 template. | + | [      overlay_loopback_interface](## "node_type_keys.[].interface_descriptions.overlay_loopback_interface") deprecated | String | | | | Path to Custom J2 template.This key is deprecated. Support will be removed in AVD version 6.0.0. Use router_id_loopback_interface instead. | === "YAML" @@ -275,11 +277,17 @@ connected_endpoints_port_channel_interfaces: # Path to Custom J2 template. - overlay_loopback_interface: + router_id_loopback_interface: # Path to Custom J2 template. vtep_loopback_interface: + # Path to Custom J2 template. + # This key is deprecated. + # Support will be removed in AVD version 6.0.0. + # Use router_id_loopback_interface instead. + overlay_loopback_interface: + # Define Node Type Keys, to specify the properties of each node type in the fabric. # This allows for complete customization of the fabric layout and functionality. # `node_type_keys` should be defined in top level group_var for the fabric. @@ -449,8 +457,14 @@ connected_endpoints_port_channel_interfaces: # Path to Custom J2 template. - overlay_loopback_interface: + router_id_loopback_interface: # Path to Custom J2 template. vtep_loopback_interface: + + # Path to Custom J2 template. + # This key is deprecated. + # Support will be removed in AVD version 6.0.0. + # Use router_id_loopback_interface instead. + overlay_loopback_interface: ``` diff --git a/ansible_collections/arista/avd/roles/eos_designs/docs/tables/overlay-settings.md b/ansible_collections/arista/avd/roles/eos_designs/docs/tables/overlay-settings.md index f348ef9ffa0..2956c5ef15b 100644 --- a/ansible_collections/arista/avd/roles/eos_designs/docs/tables/overlay-settings.md +++ b/ansible_collections/arista/avd/roles/eos_designs/docs/tables/overlay-settings.md @@ -12,12 +12,12 @@ | [  - <str>](## "overlay_cvx_servers.[]") | String | | | | 'inventory_hostname' of CVX server.
| | [overlay_her_flood_list_per_vni](## "overlay_her_flood_list_per_vni") | Boolean | | `False` | | When using Head-End Replication, configure flood-lists per VNI.
By default HER will be configured with a common flood-list containing all VTEPs.
This behavior can be changed to per-VNI flood-lists by setting `overlay_her_flood_list_per_vni: true`.
This will make `eos_designs` consider configured VLANs per VTEP, and only include the relevant VTEPs to each VNI's flood-list.
| | [overlay_her_flood_list_scope](## "overlay_her_flood_list_scope") | String | | `fabric` | Valid Values:
- fabric
- dc | When using Head-End Replication, set the scope of flood-lists to Fabric or DC.
By default all VTEPs in the Fabric (part of the inventory group referenced by "fabric_name") are added to the flood-lists.
This can be changed to all VTEPs in the DC (sharing the same "dc_name" value).
This is useful if Border Leaf switches are dividing the VXLAN overlay into separate domains.
| - | [overlay_loopback_description](## "overlay_loopback_description") | String | | | | Customize the description on overlay interface Loopback0. | + | [overlay_loopback_description](## "overlay_loopback_description") deprecated | String | | | | Customize the description on overlay interface Loopback0.This key is deprecated. Support will be removed in AVD version 6.0.0. Use router_id_loopback_description instead. | | [overlay_mlag_rfc5549](## "overlay_mlag_rfc5549") | Boolean | | `False` | | IPv6 Unnumbered for MLAG iBGP connections.
Requires "underlay_rfc5549: true".
| | [overlay_rd_type](## "overlay_rd_type") | Dictionary | | | | Configuration options for the Administrator subfield (first part of RD) and the Assigned Number subfield (second part of RD).

By default Route Distinguishers (RD) are set to:
- `:` for VLANs and VLAN-Aware Bundles with L2 vlans.
- `:` for VLAN-Aware Bundles with SVIs.
- `:` for VLAN-Aware Bundles defined under 'evpn_vlan_bundles'.
- `:` for VRFs.

Note:
RD is a 48-bit value which is split into <16-bit>:<32-bit> or <32-bit>:<16-bit>.
When using loopback or 32-bit ASN/number the assigned number can only be a 16-bit number. This may be a problem with large VNIs.
For 16-bit ASN/number the assigned number can be a 32-bit number.
| - | [  admin_subfield](## "overlay_rd_type.admin_subfield") | String | | `overlay_loopback_ip` | | The method for deriving RD Administrator subfield (first part of RD):
- 'overlay_loopback_ip' means the IP address of Loopback0.
- 'vtep_loopback' means the IP address of the VTEP loopback interface.
- 'bgp_as' means the AS number of the device.
- 'switch_id' means the 'id' value of the device.
- Any without mask.
- Integer between <0-65535>.
- Integer between <0-4294967295>.
| + | [  admin_subfield](## "overlay_rd_type.admin_subfield") | String | | `router_id` | | The method for deriving RD Administrator subfield (first part of RD):
- 'router_id' means the IP address of Loopback0.
- 'vtep_loopback' means the IP address of the VTEP loopback interface.
- 'bgp_as' means the AS number of the device.
- 'switch_id' means the 'id' value of the device.
- Any without mask.
- Integer between <0-65535>.
- Integer between <0-4294967295>.
- 'overlay_loopback_ip' means the IP address of Loopback0. (deprecated - use 'router_id' instead)
| | [  admin_subfield_offset](## "overlay_rd_type.admin_subfield_offset") | String | | | | Offset can only be used if admin_subfield is an integer between <0-4294967295> or 'switch_id'.
Total value of admin_subfield + admin_subfield_offset must be <= 4294967295.
| - | [  vrf_admin_subfield](## "overlay_rd_type.vrf_admin_subfield") | String | | | | The method for deriving RD Administrator subfield (first part of RD) for VRF services:
- 'overlay_loopback_ip' means the IP address of Loopback0.
- 'vtep_loopback' means the IP address of the VTEP loopback interface.
- 'bgp_as' means the AS number of the device.
- 'switch_id' means the 'id' value of the device.
- Any without mask.
- Integer between <0-65535>.
- Integer between <0-4294967295>.

'vrf_admin_subfield' takes precedence for VRF RDs if set. Otherwise the 'admin_subfield' value will be used.
| + | [  vrf_admin_subfield](## "overlay_rd_type.vrf_admin_subfield") | String | | | | The method for deriving RD Administrator subfield (first part of RD) for VRF services:
- 'router_id' means the IP address of Loopback0.
- 'vtep_loopback' means the IP address of the VTEP loopback interface.
- 'bgp_as' means the AS number of the device.
- 'switch_id' means the 'id' value of the device.
- Any without mask.
- Integer between <0-65535>.
- Integer between <0-4294967295>.
- 'overlay_loopback_ip' means the IP address of Loopback0. (deprecated - use 'router_id' instead)

'vrf_admin_subfield' takes precedence for VRF RDs if set. Otherwise the 'admin_subfield' value will be used.
| | [  vrf_admin_subfield_offset](## "overlay_rd_type.vrf_admin_subfield_offset") | String | | | | Offset can only be used if 'vrf_admin_subfield' is an integer between <0-4294967295> or 'switch_id'.
Total value of 'vrf_admin_subfield' + 'vrf_admin_subfield_offset' must be <= 4294967295.
| | [  vlan_assigned_number_subfield](## "overlay_rd_type.vlan_assigned_number_subfield") | String | | `mac_vrf_id` | Valid Values:
- mac_vrf_id
- mac_vrf_vni
- vlan_id | The method for deriving RD Assigned Number subfield for VLAN services (second part of RD):
- 'mac_vrf_id' means `(mac_vrf_id_base or mac_vrf_vni_base) + vlan_id`.
- 'mac_vrf_vni' means `(mac_vrf_vni_base or mac_vrf_id_base) + vlan_id`.
- 'vlan_id' will only use the 'vlan_id' and ignores all base values.

These methods can be overridden per VLAN if either 'rd_override', 'rt_override' or 'vni_override' is set (preferred in this order).
| | [overlay_routing_protocol](## "overlay_routing_protocol") | String | | `ebgp` | Value is converted to lower case.
Valid Values:
- ebgp
- ibgp
- cvx
- her
- none | - The following overlay routing protocols are supported:
- eBGP: Configures fabric with eBGP, default for l3ls-evpn design.
- iBGP: Configured fabric with iBGP, only supported with OSPF or ISIS variants in underlay, default for mpls design.
- CVX: Configures fabric to leverage CloudVision eXchange as the overlay controller.
- HER: Configures fabric with Head-End Replication, configures static VXLAN flood-lists instead of using a dynamic overlay protocol.
- none: No overlay configuration will be generated, default for l2ls design.
| @@ -26,6 +26,7 @@ | [  admin_subfield](## "overlay_rt_type.admin_subfield") | String | | `vrf_id` | | The method for deriving RT Administrator subfield (first part of RT):
- 'vrf_id' means `(mac_vrf_id_base or mac_vrf_vni_base) + vlan_id` for VLANs, `(vrf_id or vrf_vni)` for VRFs and `id` for bundles defined under 'evpn_vlan_bundles'.
- 'vrf_vni' means `(mac_vrf_vni_base or mac_vrf_id_base) + vlan_id` for VLANs, `(vrf_vni or vrf_id)` for VRFs and `id` for bundles defined under 'evpn_vlan_bundles'.
- 'id' means `vlan_id` for VLANs, `(vrf_id or vrf_vni)` for VRFs and `id` for bundles defined under 'evpn_vlan_bundles'.
- 'bgp_as' means the AS number of the device.
- Integer between <0-65535>.
- Integer between <0-4294967295>.

The 'vrf_id' and 'vrf_vni' methods can be overridden per VLAN if either 'rt_override' or 'vni_override' is set (preferred in this order).
The 'vrf_id', 'vrf_vni' and 'id' methods can be overridden per bundle defined under `evpn_vlan_bundles` using 'rt_override'.
| | [  vrf_admin_subfield](## "overlay_rt_type.vrf_admin_subfield") | String | | `vrf_id` | | The method for deriving RT Administrator subfield (first part of RT) for VRF services:
- 'id' means `(vrf_id or vrf_vni)`.
- 'vrf_id' means `(vrf_id or vrf_vni)`.
- 'vrf_vni' means `(vrf_vni or vrf_id)`.
- 'bgp_as' means the AS number of the device.
- Integer between <0-65535>.
- Integer between <0-4294967295>.

'vrf_admin_subfield' takes precedence for VRF RDs if set. Otherwise the 'admin_subfield' value will be used.
| | [  vlan_assigned_number_subfield](## "overlay_rt_type.vlan_assigned_number_subfield") | String | | `mac_vrf_id` | Valid Values:
- mac_vrf_id
- mac_vrf_vni
- vlan_id | The method for deriving RT Assigned Number subfield for VLAN services (second part of RT):
- 'mac_vrf_id' means `(mac_vrf_id_base or mac_vrf_vni_base) + vlan_id`.
- 'mac_vrf_vni' means `(mac_vrf_vni_base or mac_vrf_id_base) + vlan_id`.
- 'vlan_id' will only use the 'vlan_id' and ignores all base values.

These methods can be overridden per VLAN if either 'rt_override' or 'vni_override' is set (preferred in this order).
| + | [router_id_loopback_description](## "router_id_loopback_description") | String | | `ROUTER_ID` | | Customize the description on Router ID interface Loopback0. | | [vtep_vvtep_ip](## "vtep_vvtep_ip") | String | | | | IP Address used as Virtual VTEP. Will be configured as secondary IP on Loopback1.
This is only needed for centralized routing designs.
| === "YAML" @@ -56,6 +57,9 @@ overlay_her_flood_list_scope: # Customize the description on overlay interface Loopback0. + # This key is deprecated. + # Support will be removed in AVD version 6.0.0. + # Use router_id_loopback_description instead. overlay_loopback_description: # IPv6 Unnumbered for MLAG iBGP connections. @@ -77,27 +81,29 @@ overlay_rd_type: # The method for deriving RD Administrator subfield (first part of RD): - # - 'overlay_loopback_ip' means the IP address of Loopback0. + # - 'router_id' means the IP address of Loopback0. # - 'vtep_loopback' means the IP address of the VTEP loopback interface. # - 'bgp_as' means the AS number of the device. # - 'switch_id' means the 'id' value of the device. # - Any without mask. # - Integer between <0-65535>. # - Integer between <0-4294967295>. - admin_subfield: + # - 'overlay_loopback_ip' means the IP address of Loopback0. (deprecated - use 'router_id' instead) + admin_subfield: # Offset can only be used if admin_subfield is an integer between <0-4294967295> or 'switch_id'. # Total value of admin_subfield + admin_subfield_offset must be <= 4294967295. admin_subfield_offset: # The method for deriving RD Administrator subfield (first part of RD) for VRF services: - # - 'overlay_loopback_ip' means the IP address of Loopback0. + # - 'router_id' means the IP address of Loopback0. # - 'vtep_loopback' means the IP address of the VTEP loopback interface. # - 'bgp_as' means the AS number of the device. # - 'switch_id' means the 'id' value of the device. # - Any without mask. # - Integer between <0-65535>. # - Integer between <0-4294967295>. + # - 'overlay_loopback_ip' means the IP address of Loopback0. (deprecated - use 'router_id' instead) # # 'vrf_admin_subfield' takes precedence for VRF RDs if set. Otherwise the 'admin_subfield' value will be used. vrf_admin_subfield: @@ -171,6 +177,9 @@ # These methods can be overridden per VLAN if either 'rt_override' or 'vni_override' is set (preferred in this order). vlan_assigned_number_subfield: + # Customize the description on Router ID interface Loopback0. + router_id_loopback_description: + # IP Address used as Virtual VTEP. Will be configured as secondary IP on Loopback1. # This is only needed for centralized routing designs. vtep_vvtep_ip: diff --git a/python-avd/pyavd/_eos_designs/schema/eos_designs.schema.yml b/python-avd/pyavd/_eos_designs/schema/eos_designs.schema.yml index 755278c484d..25ee686e58d 100644 --- a/python-avd/pyavd/_eos_designs/schema/eos_designs.schema.yml +++ b/python-avd/pyavd/_eos_designs/schema/eos_designs.schema.yml @@ -2390,12 +2390,19 @@ keys: connected_endpoints_port_channel_interfaces: type: str description: Path to Custom J2 template. - overlay_loopback_interface: + router_id_loopback_interface: type: str description: Path to Custom J2 template. vtep_loopback_interface: type: str description: Path to Custom J2 template. + overlay_loopback_interface: + type: str + description: Path to Custom J2 template. + deprecation: + warning: true + remove_in_version: 6.0.0 + new_key: router_id_loopback_interface cv_tags_topology_type: documentation_options: table: cloudvision-tags @@ -2537,6 +2544,10 @@ keys: table: overlay-settings description: Customize the description on overlay interface Loopback0. type: str + deprecation: + warning: true + remove_in_version: 6.0.0 + new_key: router_id_loopback_description overlay_mlag_rfc5549: documentation_options: table: overlay-settings @@ -2587,7 +2598,7 @@ keys: description: 'The method for deriving RD Administrator subfield (first part of RD): - - ''overlay_loopback_ip'' means the IP address of Loopback0. + - ''router_id'' means the IP address of Loopback0. - ''vtep_loopback'' means the IP address of the VTEP loopback interface. @@ -2601,8 +2612,11 @@ keys: - Integer between <0-4294967295>. + - ''overlay_loopback_ip'' means the IP address of Loopback0. (deprecated + - use ''router_id'' instead) + ' - default: overlay_loopback_ip + default: router_id admin_subfield_offset: type: str convert_types: @@ -2620,7 +2634,7 @@ keys: description: 'The method for deriving RD Administrator subfield (first part of RD) for VRF services: - - ''overlay_loopback_ip'' means the IP address of Loopback0. + - ''router_id'' means the IP address of Loopback0. - ''vtep_loopback'' means the IP address of the VTEP loopback interface. @@ -2634,6 +2648,9 @@ keys: - Integer between <0-4294967295>. + - ''overlay_loopback_ip'' means the IP address of Loopback0. (deprecated + - use ''router_id'' instead) + ''vrf_admin_subfield'' takes precedence for VRF RDs if set. Otherwise the ''admin_subfield'' value will be used. @@ -3331,6 +3348,12 @@ keys: valid_values: - sso - rpr + router_id_loopback_description: + documentation_options: + table: overlay-settings + description: Customize the description on Router ID interface Loopback0. + type: str + default: ROUTER_ID serial_number: documentation_options: table: system-settings diff --git a/python-avd/pyavd/_eos_designs/schema/schema_fragments/node_type_keys.schema.yml b/python-avd/pyavd/_eos_designs/schema/schema_fragments/node_type_keys.schema.yml index decd99c85ce..f2771b0ad21 100644 --- a/python-avd/pyavd/_eos_designs/schema/schema_fragments/node_type_keys.schema.yml +++ b/python-avd/pyavd/_eos_designs/schema/schema_fragments/node_type_keys.schema.yml @@ -263,12 +263,19 @@ keys: connected_endpoints_port_channel_interfaces: type: str description: Path to Custom J2 template. - overlay_loopback_interface: + router_id_loopback_interface: type: str description: Path to Custom J2 template. vtep_loopback_interface: type: str description: Path to Custom J2 template. + overlay_loopback_interface: + type: str + description: Path to Custom J2 template. + deprecation: + warning: true + remove_in_version: 6.0.0 + new_key: router_id_loopback_interface cv_tags_topology_type: documentation_options: table: cloudvision-tags diff --git a/python-avd/pyavd/_eos_designs/schema/schema_fragments/overlay_loopback_description.schema.yml b/python-avd/pyavd/_eos_designs/schema/schema_fragments/overlay_loopback_description.schema.yml index e86a4743830..58f8eca59d7 100644 --- a/python-avd/pyavd/_eos_designs/schema/schema_fragments/overlay_loopback_description.schema.yml +++ b/python-avd/pyavd/_eos_designs/schema/schema_fragments/overlay_loopback_description.schema.yml @@ -11,3 +11,7 @@ keys: table: overlay-settings description: Customize the description on overlay interface Loopback0. type: str + deprecation: + warning: true + remove_in_version: 6.0.0 + new_key: router_id_loopback_description diff --git a/python-avd/pyavd/_eos_designs/schema/schema_fragments/overlay_rd_type.schema.yml b/python-avd/pyavd/_eos_designs/schema/schema_fragments/overlay_rd_type.schema.yml index aaf0875534f..5df3c89f969 100644 --- a/python-avd/pyavd/_eos_designs/schema/schema_fragments/overlay_rd_type.schema.yml +++ b/python-avd/pyavd/_eos_designs/schema/schema_fragments/overlay_rd_type.schema.yml @@ -30,14 +30,15 @@ keys: - int description: | The method for deriving RD Administrator subfield (first part of RD): - - 'overlay_loopback_ip' means the IP address of Loopback0. + - 'router_id' means the IP address of Loopback0. - 'vtep_loopback' means the IP address of the VTEP loopback interface. - 'bgp_as' means the AS number of the device. - 'switch_id' means the 'id' value of the device. - Any without mask. - Integer between <0-65535>. - Integer between <0-4294967295>. - default: overlay_loopback_ip + - 'overlay_loopback_ip' means the IP address of Loopback0. (deprecated - use 'router_id' instead) + default: router_id admin_subfield_offset: type: str convert_types: @@ -51,13 +52,14 @@ keys: - int description: | The method for deriving RD Administrator subfield (first part of RD) for VRF services: - - 'overlay_loopback_ip' means the IP address of Loopback0. + - 'router_id' means the IP address of Loopback0. - 'vtep_loopback' means the IP address of the VTEP loopback interface. - 'bgp_as' means the AS number of the device. - 'switch_id' means the 'id' value of the device. - Any without mask. - Integer between <0-65535>. - Integer between <0-4294967295>. + - 'overlay_loopback_ip' means the IP address of Loopback0. (deprecated - use 'router_id' instead) 'vrf_admin_subfield' takes precedence for VRF RDs if set. Otherwise the 'admin_subfield' value will be used. vrf_admin_subfield_offset: diff --git a/python-avd/pyavd/_eos_designs/schema/schema_fragments/router_id_loopback_description.schema.yml b/python-avd/pyavd/_eos_designs/schema/schema_fragments/router_id_loopback_description.schema.yml new file mode 100644 index 00000000000..bc2c3e41ab8 --- /dev/null +++ b/python-avd/pyavd/_eos_designs/schema/schema_fragments/router_id_loopback_description.schema.yml @@ -0,0 +1,14 @@ +# Copyright (c) 2023-2024 Arista Networks, Inc. +# Use of this source code is governed by the Apache License 2.0 +# that can be found in the LICENSE file. +# yaml-language-server: $schema=../../../_schema/avd_meta_schema.json +# Line above is used by RedHat's YAML Schema vscode extension +# Use Ctrl + Space to get suggestions for every field. Autocomplete will pop up after typing 2 letters. +type: dict +keys: + router_id_loopback_description: + documentation_options: + table: overlay-settings + description: Customize the description on Router ID interface Loopback0. + type: str + default: ROUTER_ID diff --git a/python-avd/pyavd/_eos_designs/shared_utils/overlay.py b/python-avd/pyavd/_eos_designs/shared_utils/overlay.py index 05bd5f5b8f8..92ec06a22d2 100644 --- a/python-avd/pyavd/_eos_designs/shared_utils/overlay.py +++ b/python-avd/pyavd/_eos_designs/shared_utils/overlay.py @@ -46,7 +46,7 @@ def mpls_overlay_role(self: SharedUtils) -> str | None: @cached_property def overlay_rd_type(self: SharedUtils) -> dict: overlay_rd_type = get(self.hostvars, "overlay_rd_type", default={}) - admin_subfield = get(overlay_rd_type, "admin_subfield", default="overlay_loopback_ip") + admin_subfield = get(overlay_rd_type, "admin_subfield", default="router_id") admin_subfield_offset = int(get(overlay_rd_type, "admin_subfield_offset", default=0)) return { "admin_subfield": admin_subfield, @@ -79,7 +79,7 @@ def overlay_rd_type_vrf_admin_subfield(self: SharedUtils) -> str: return self.get_rd_admin_subfield_value(vrf_admin_subfield, vrf_admin_subfield_offset) def get_rd_admin_subfield_value(self: SharedUtils, admin_subfield: str, admin_subfield_offset: int) -> str: - if admin_subfield == "overlay_loopback_ip": + if admin_subfield in ["router_id", "overlay_loopback_ip"]: return self.router_id if admin_subfield == "vtep_loopback": diff --git a/python-avd/pyavd/_eos_designs/structured_config/underlay/loopback_interfaces.py b/python-avd/pyavd/_eos_designs/structured_config/underlay/loopback_interfaces.py index d1aa60bf5e5..2b4333672b5 100644 --- a/python-avd/pyavd/_eos_designs/structured_config/underlay/loopback_interfaces.py +++ b/python-avd/pyavd/_eos_designs/structured_config/underlay/loopback_interfaces.py @@ -7,7 +7,7 @@ from typing import TYPE_CHECKING from pyavd._errors import AristaAvdMissingVariableError -from pyavd._utils import get +from pyavd._utils import default, get from pyavd.api.interface_descriptions import InterfaceDescriptionData from .utils import UtilsMixin @@ -35,7 +35,11 @@ def loopback_interfaces(self: AvdStructuredConfigUnderlay) -> list | None: "name": "Loopback0", "description": self.shared_utils.interface_descriptions.router_id_loopback_interface( InterfaceDescriptionData( - shared_utils=self.shared_utils, interface="Loopback0", description=get(self._hostvars, "overlay_loopback_description") + shared_utils=self.shared_utils, + interface="Loopback0", + description=default( + get(self._hostvars, "router_id_loopback_description"), get(self._hostvars, "overlay_loopback_description"), "ROUTER_ID" + ), ), ), "shutdown": False, diff --git a/python-avd/pyavd/_utils/__init__.py b/python-avd/pyavd/_utils/__init__.py index 10a9fcec931..285dae80421 100644 --- a/python-avd/pyavd/_utils/__init__.py +++ b/python-avd/pyavd/_utils/__init__.py @@ -5,6 +5,7 @@ from .batch import batch from .compare_dicts import compare_dicts from .default import default +from .format_string import AvdStringFormatter from .get import get, get_v2 from .get_all import get_all, get_all_with_path from .get_indices_of_duplicate_items import get_indices_of_duplicate_items @@ -22,6 +23,7 @@ from .unique import unique __all__ = [ + "AvdStringFormatter", "append_if_not_duplicate", "batch", "compare_dicts", diff --git a/python-avd/pyavd/_utils/format_string.py b/python-avd/pyavd/_utils/format_string.py new file mode 100644 index 00000000000..0a68cb79a14 --- /dev/null +++ b/python-avd/pyavd/_utils/format_string.py @@ -0,0 +1,160 @@ +# Copyright (c) 2024 Arista Networks, Inc. +# Use of this source code is governed by the Apache License 2.0 +# that can be found in the LICENSE file. +from collections.abc import Iterable +from string import Formatter + + +class AvdStringFormatter(Formatter): + """ + Custom string formatter class to provide extra protection from malicious format strings and support for prefixes and suffixes per field. + + The regular Python syntax is "{" [field_name] ["!" conversion] [":" format_spec] "}" + This class supports "{" [field_name] ["?"] ["<" prefix] [">" suffix] ["!" conversion] [":" format_spec] "}" + + where + ? ::= The literal ? signals that the field is optional and will not be printed if the value is missing or None. + prefix ::= string including spaces which will be inserted before the field value. + Most useful in combination with ?. Prefix should not contain "<", ">", "!" or ":". + suffix ::= string including spaces which will be inserted after the field value. + Most useful in combination with ?. Suffix should not contain "<", ">", "!" or ":". + conversion ::= "!u" for "upper()" (The regular Python conversions "!r", "!s", "!a" have been removed). + + Note the order of syntax field matters! + """ + + def _vformat(self, format_string: str, args: list, kwargs: dict, used_args: set, recursion_depth: int, auto_arg_index: int = 0) -> tuple[str, int]: + """ + Perform the actual formatting. + + Mostly a copy from the base class, but adding support for using "optional", "prefix" and "suffix" from the .parse() method. + + This should not be called directly. Instead call AvdStringFormatter().format(format_string, /, *args, **kwargs) + """ + if recursion_depth < 0: + msg = "Max string recursion exceeded" + raise ValueError(msg) + result = [] + for literal_text, org_field_name, org_format_spec, conversion, optional, prefix, suffix in self.parse(format_string): + # Make ruff happy. + field_name = org_field_name + format_spec = org_format_spec + + # output the literal text + if literal_text: + result.append(literal_text) + + # if there's a field, output it + if field_name is not None: + # this is some markup, find the object and do the formatting + + # handle arg indexing when empty field_names are given. + if field_name == "": + if auto_arg_index is False: + msg = "cannot switch from manual field specification to automatic field numbering" + raise ValueError(msg) + field_name = str(auto_arg_index) + auto_arg_index += 1 + elif field_name.isdigit(): + if auto_arg_index: + msg = "cannot switch from manual field specification to automatic field numbering" + raise ValueError(msg) + # disable auto arg incrementing, if it gets + # used later on, then an exception will be raised + auto_arg_index = False + + # given the field_name, find the object it references + # and the argument it came from + if optional: + try: + obj, arg_used = self.get_field(field_name, args, kwargs) + except (IndexError, KeyError): + # Skip this field if it is optional and not existing. + continue + if obj is None: + # Skip this field if it is optional and None. + continue + else: + obj, arg_used = self.get_field(field_name, args, kwargs) + + used_args.add(arg_used) + + # do any conversion on the resulting object + obj = self.convert_field(obj, conversion) + + # expand the format spec, if needed + format_spec, auto_arg_index = self._vformat(format_spec, args, kwargs, used_args, recursion_depth - 1, auto_arg_index=auto_arg_index) + + # Append prefix if set + if prefix: + result.append(prefix) + + # format the object and append to the result + result.append(self.format_field(obj, format_spec)) + + # Append suffix if set + if suffix: + result.append(suffix) + + return "".join(result), auto_arg_index + + def parse(self, format_string: str) -> Iterable[tuple[str, str | None, str | None, str | None, bool | None, str | None, str | None]]: + """ + Parse the format_string and yield elements back. + + Mostly a copy from the base class, but also returning "optional", "prefix" and "suffix" for every field. + """ + for literal_text, field_name, format_spec, conversion in super().parse(format_string): + if not field_name or not ("?" in field_name or ">" in field_name or "<" in field_name): + yield (literal_text, field_name, format_spec, conversion, None, None, None) + continue + + tmp_field_name = field_name + # Doing suffix first so the split will keep a potential prefix in the tmp_field_name + if ">" in tmp_field_name: + tmp_field_name, suffix = tmp_field_name.split(">", maxsplit=1) + else: + suffix = None + + if "<" in tmp_field_name: + tmp_field_name, prefix = tmp_field_name.split("<", maxsplit=1) + else: + prefix = None + + optional = tmp_field_name.endswith("?") + tmp_field_name = tmp_field_name.removesuffix("?") + + yield (literal_text, tmp_field_name, format_spec, conversion, optional, prefix, suffix) + + def convert_field(self, value: object, conversion: str | None) -> object: + """ + Convert the value according to the given conversion instruction. + + Mostly a copy from the base class, but only supporting !u for upper(). + """ + # do any conversion on the resulting object + if conversion is None: + return value + if conversion == "u": + return str(value).upper() + msg = f"Unknown conversion specifier {conversion!s}" + raise ValueError(msg) + + def get_field(self, field_name: str, args: list, kwargs: dict) -> tuple[object, str]: + """ + Get field value including parsing attributes/keys. + + Reusing base class after guarding against accessing attributes leading with underscore. + This protects against access to dunders etc. + """ + if not field_name or "_" not in field_name: + return super().get_field(field_name, args, kwargs) + + if any(attr.startswith("_") for attr in field_name.split(".")): + msg = f"Unsupported field name '{field_name}'. Avoid attributes starting with underscore." + raise ValueError(msg) + if any(key_and_more.startswith("_") for key_and_more in field_name.split("[")): + msg = f"Unsupported field name '{field_name}'. Avoid keys starting with underscore." + raise ValueError(msg) + + return super().get_field(field_name, args, kwargs) diff --git a/python-avd/pyavd/api/interface_descriptions/__init__.py b/python-avd/pyavd/api/interface_descriptions/__init__.py index 83bf1501cbe..7253290fc7f 100644 --- a/python-avd/pyavd/api/interface_descriptions/__init__.py +++ b/python-avd/pyavd/api/interface_descriptions/__init__.py @@ -10,6 +10,7 @@ from typing import TYPE_CHECKING, Any from pyavd._eos_designs.avdfacts import AvdFacts +from pyavd._utils import default if TYPE_CHECKING: from pyavd._eos_designs.shared_utils import SharedUtils @@ -236,27 +237,13 @@ def router_id_loopback_interface(self, data: InterfaceDescriptionData) -> str: - overlay_routing_protocol - type. """ - if template_path := self.shared_utils.interface_descriptions_templates.get("overlay_loopback_interface"): - return self._template(template_path, overlay_loopback_description=data.description) + if template_path := default( + self.shared_utils.interface_descriptions_templates.get("router_id_loopback_interface"), + self.shared_utils.interface_descriptions_templates.get("overlay_loopback_interface"), + ): + return self._template(template_path, overlay_loopback_description=data.description, router_id_loopback_description=data.description) - if data.description is not None: - return data.description - - if data.mpls_overlay_role in ["server", "client"]: - return "MPLS_Overlay_peering" - - if data.mpls_lsr is True: - return "LSR_Router_ID" - - if self.shared_utils.is_wan_router: - return "Router_ID" - - # Covers L2LS - if data.overlay_routing_protocol == "none": - return "Router_ID" - - # Note that the current code will render this for HER and others - return "EVPN_Overlay_Peering" + return data.description def vtep_loopback_interface( self, diff --git a/python-avd/tests/pyavd/utils/test_format_string.py b/python-avd/tests/pyavd/utils/test_format_string.py new file mode 100644 index 00000000000..4cd2cf52678 --- /dev/null +++ b/python-avd/tests/pyavd/utils/test_format_string.py @@ -0,0 +1,109 @@ +# Copyright (c) 2023-2024 Arista Networks, Inc. +# Use of this source code is governed by the Apache License 2.0 +# that can be found in the LICENSE file. + +from __future__ import annotations + +import pytest + +from pyavd._utils import AvdStringFormatter + + +class DummyClass: + _private = "private" + public = "public" + + +FORMAT_STRING_TESTS = [ + # (, , , ) + # no fields + pytest.param("Ethernet1", (), {}, "Ethernet1", id="no_fields"), + pytest.param("Ethernet1", (), {"foo": "bar"}, "Ethernet1", id="no_fields_with_args"), + pytest.param("{{Ethernet1}}", (), {}, "{Ethernet1}", id="escaped_curly_brace"), + # named fields with upper + pytest.param("{interface!u}", (), {"interface": "Ethernet1"}, "ETHERNET1", id="field_with_existing_arg_and_upper"), + pytest.param("{interface?!u}", (), {}, "", id="optional_field_with_missing_arg_and_upper"), + pytest.param("{interface?!u}", (), {"interface": None}, "", id="optional_field_with_none_arg_and_upper"), + pytest.param("{interface?!u}", (), {"interface": "Ethernet1"}, "ETHERNET1", id="optional_field_with_existing_arg_and_upper"), + pytest.param("{interface.public?!u}", (), {"interface": DummyClass()}, "PUBLIC", id="optional_field_with_attribute_and_upper"), + # positional fields with upper + pytest.param("{!u}", ("Ethernet1",), {}, "ETHERNET1", id="positional_field_with_existing_arg_and_upper"), + pytest.param("{?!u}", (), {}, "", id="positional_optional_field_with_missing_arg_and_upper"), + pytest.param("{?!u}", (None,), {}, "", id="positional_optional_field_with_none_arg_and_upper"), + pytest.param("{?!u}", ("Ethernet1",), {}, "ETHERNET1", id="positional_optional_field_with_existing_arg_and_upper"), + pytest.param("{0?!u}{1?!u}{0?!u}", ("foo", "bar"), {}, "FOOBARFOO", id="positional_optional_repeated_fields_with_existing_args_and_upper"), + pytest.param("{0.public?!u}", (DummyClass(),), {}, "PUBLIC", id="positional_optional_field_with_attribute_and_upper"), + # named fields with prefix + pytest.param("{interfacefoo }", (), {"interface": "Ethernet1"}, "Ethernet1foo ", id="field_with_suffix_existing_arg"), + pytest.param("{interface?>foo}", (), {}, "", id="optional_field_with_suffix_missing_arg"), + pytest.param("{interface?> f o o }", (), {"interface": None}, "", id="optional_field_with_suffix_none_arg"), + pytest.param("{interface?> f o o }", (), {"interface": "Ethernet1"}, "Ethernet1 f o o ", id="optional_field_with_suffix_existing_arg"), + pytest.param("{interface.public?>foo}", (), {"interface": DummyClass()}, "publicfoo", id="optional_field_with_prefix_attribute"), + # positional fields with suffix + pytest.param("{>foo }", ("Ethernet1",), {}, "Ethernet1foo ", id="positional_field_with_suffix_existing_arg"), + pytest.param("{?>foo}", (), {}, "", id="positional_optional_field_with_suffix_missing_arg"), + pytest.param("{?> f o o }", (None,), {}, "", id="positional_optional_field_with_suffix_none_arg"), + pytest.param("{?> f o o }", ("Ethernet1",), {}, "Ethernet1 f o o ", id="positional_optional_field_with_suffix_existing_arg"), + pytest.param("{0>one}{1>two}{0>three}", ("foo", "bar"), {}, "fooonebartwofoothree", id="positional_repeated_fields_with_suffix_existing_args"), + # named fields with prefix and suffix + pytest.param("{interfacebar }", (), {"interface": "Ethernet1"}, "foo Ethernet1bar ", id="field_with_prefix_and_suffix_existing_arg"), + pytest.param("{interface?bar}", (), {}, "", id="optional_field_with_prefix_and_suffix_missing_arg"), + pytest.param("{interface?< f o o > b a r }", (), {"interface": None}, "", id="optional_field_with_prefix_and_suffix_none_arg"), + pytest.param( + "{interface?< f o o > b a r }", (), {"interface": "Ethernet1"}, " f o o Ethernet1 b a r ", id="optional_field_with_prefix_and_suffix_existing_arg" + ), + pytest.param("{interface.publicbar}", (), {"interface": DummyClass()}, "foopublicbar", id="field_with_prefix_attribute"), + # positional fields with prefix and suffix + pytest.param("{bar }", ("Ethernet1",), {}, "foo Ethernet1bar ", id="positional_field_with_prefix_and_suffix_existing_arg"), + pytest.param("{?bar}", (), {}, "", id="positional_optional_field_with_prefix_and_suffix_missing_arg"), + pytest.param("{?< f o o > b a r }", (None,), {}, "", id="positional_optional_field_with_prefix_and_suffix_none_arg"), + pytest.param("{?< f o o > b a r }", ("Ethernet1",), {}, " f o o Ethernet1 b a r ", id="positional_optional_field_with_prefix_and_suffix_existing_arg"), + pytest.param( + "{0one}_{1two}_{0three}", + ("foo", "bar"), + {}, + "aaafooone_bbbbartwo_cccfoothree", + id="positional_repeated_fields_with_prefix_and_suffix_existing_args", + ), + # positional fields with prefix and suffix and upper + pytest.param("{bar !u}", ("Ethernet1",), {}, "foo ETHERNET1bar ", id="positional_field_with_prefix_and_suffix_existing_arg_and_upper"), + pytest.param("{?bar!u}", (), {}, "", id="positional_optional_field_with_prefix_and_suffix_missing_arg_and_upper"), + pytest.param("{?< f o o > b a r !u}", (None,), {}, "", id="positional_optional_field_with_prefix_and_suffix_none_arg_and_upper"), + pytest.param( + "{?< f o o > b a r !u}", ("Ethernet1",), {}, " f o o ETHERNET1 b a r ", id="positional_optional_field_with_prefix_and_suffix_existing_arg_and_upper" + ), +] + + +SAFETY_TESTS = [ + # (, , ) + pytest.param("{foo.__class__.__name__}", (), {"foo": "bar"}, id="kwarg_dunder"), + pytest.param("{_foo}", (), {"_foo": "bar"}, id="kwarg_private"), + pytest.param("{foo._private}", (), {"foo": DummyClass()}, id="kwarg_private_attribute"), + pytest.param("{0.__class__.__name__}", ("foo",), {}, id="arg_dunder"), + pytest.param("{0._private}", (DummyClass(),), {}, id="arg_private_attribute"), +] + + +class TestAvdStringFormatter: + @pytest.mark.parametrize(("format_string", "args", "kwargs", "expected_output"), FORMAT_STRING_TESTS) + def test_avd_formatter(self, format_string: str, args: tuple, kwargs: dict, expected_output: list) -> None: + resp = AvdStringFormatter().format(format_string, *args, **kwargs) + assert resp == expected_output + + @pytest.mark.parametrize(("format_string", "args", "kwargs"), SAFETY_TESTS) + def test_avd_formatter_safety(self, format_string: str, args: tuple, kwargs: dict) -> None: + with pytest.raises(ValueError, match=r"Unsupported field name '.+'. Avoid (attributes|keys) starting with underscore."): + AvdStringFormatter().format(format_string, *args, **kwargs)