diff --git a/ansible_collections/arista/avd/molecule/eos_cli_config_gen/documentation/devices/router-bgp-evpn-mpls.md b/ansible_collections/arista/avd/molecule/eos_cli_config_gen/documentation/devices/router-bgp-evpn-mpls.md index 162925a39a5..54f7fdc6837 100644 --- a/ansible_collections/arista/avd/molecule/eos_cli_config_gen/documentation/devices/router-bgp-evpn-mpls.md +++ b/ansible_collections/arista/avd/molecule/eos_cli_config_gen/documentation/devices/router-bgp-evpn-mpls.md @@ -87,7 +87,7 @@ ASN Notation: asplain #### Router BGP EVPN Address Family -- Next-hop MPLS resolution Primary-RIB : tunnel-rib-colored system-colored-tunnel-rib +- Next-hop MPLS resolution Primary-RIB : tunnel-rib colored system-colored-tunnel-rib - Next-hop MPLS resolution Secondary-RIB : tunnel-rib test-rib - Next-hop MPLS resolution Tertiary-RIB : system-connected - Layer-2 In-place FEC update tracking timeout: 100 seconds @@ -133,7 +133,7 @@ router bgp 65101 address-family evpn bgp additional-paths send limit 10 neighbor default encapsulation mpls next-hop-self source-interface Loopback0 - next-hop mpls resolution ribs tunnel-rib-colored system-colored-tunnel-rib tunnel-rib test-rib system-connected + next-hop mpls resolution ribs tunnel-rib colored system-colored-tunnel-rib tunnel-rib test-rib system-connected neighbor EVPN-OVERLAY-PEERS activate neighbor 192.168.255.3 activate neighbor 192.168.255.4 rcf in Address_Family_EVPN_In() diff --git a/ansible_collections/arista/avd/molecule/eos_cli_config_gen/intended/configs/router-bgp-evpn-mpls.cfg b/ansible_collections/arista/avd/molecule/eos_cli_config_gen/intended/configs/router-bgp-evpn-mpls.cfg index 7154c869d62..8dc866980e4 100644 --- a/ansible_collections/arista/avd/molecule/eos_cli_config_gen/intended/configs/router-bgp-evpn-mpls.cfg +++ b/ansible_collections/arista/avd/molecule/eos_cli_config_gen/intended/configs/router-bgp-evpn-mpls.cfg @@ -29,7 +29,7 @@ router bgp 65101 address-family evpn bgp additional-paths send limit 10 neighbor default encapsulation mpls next-hop-self source-interface Loopback0 - next-hop mpls resolution ribs tunnel-rib-colored system-colored-tunnel-rib tunnel-rib test-rib system-connected + next-hop mpls resolution ribs tunnel-rib colored system-colored-tunnel-rib tunnel-rib test-rib system-connected neighbor EVPN-OVERLAY-PEERS activate neighbor 192.168.255.3 activate neighbor 192.168.255.4 rcf in Address_Family_EVPN_In() diff --git a/python-avd/pyavd/_eos_cli_config_gen/j2templates/documentation/router-bgp.j2 b/python-avd/pyavd/_eos_cli_config_gen/j2templates/documentation/router-bgp.j2 index 6a36641a316..6e8223bc899 100644 --- a/python-avd/pyavd/_eos_cli_config_gen/j2templates/documentation/router-bgp.j2 +++ b/python-avd/pyavd/_eos_cli_config_gen/j2templates/documentation/router-bgp.j2 @@ -531,7 +531,7 @@ ASN Notation: {{ router_bgp.as_notation | arista.avd.default('asplain') }} {% set rib_position = ["Primary", "Secondary", "Tertiary" ] %} {% for rib in router_bgp.address_family_evpn.next_hop_mpls_resolution_ribs %} {% if rib.rib_type is arista.avd.defined("tunnel-rib-colored") %} -{% set evpn_mpls_resolution_rib = "tunnel-rib-colored system-colored-tunnel-rib" %} +{% set evpn_mpls_resolution_rib = "tunnel-rib colored system-colored-tunnel-rib" %} {% elif rib.rib_type is arista.avd.defined("tunnel-rib") and rib.rib_name is arista.avd.defined %} {% set evpn_mpls_resolution_rib = "tunnel-rib " ~ rib.rib_name %} {% elif rib.rib_type is arista.avd.defined %} diff --git a/python-avd/pyavd/_eos_cli_config_gen/j2templates/eos/router-bgp.j2 b/python-avd/pyavd/_eos_cli_config_gen/j2templates/eos/router-bgp.j2 index 0f953bbcb81..8e64c10007c 100644 --- a/python-avd/pyavd/_eos_cli_config_gen/j2templates/eos/router-bgp.j2 +++ b/python-avd/pyavd/_eos_cli_config_gen/j2templates/eos/router-bgp.j2 @@ -648,7 +648,7 @@ router bgp {{ router_bgp.as }} {% set evpn_mpls_resolution_ribs = [] %} {% for rib in router_bgp.address_family_evpn.next_hop_mpls_resolution_ribs %} {% if rib.rib_type is arista.avd.defined("tunnel-rib-colored") %} -{% do evpn_mpls_resolution_ribs.append("tunnel-rib-colored system-colored-tunnel-rib") %} +{% do evpn_mpls_resolution_ribs.append("tunnel-rib colored system-colored-tunnel-rib") %} {% elif rib.rib_type is arista.avd.defined("tunnel-rib") and rib.rib_name is arista.avd.defined() %} {% do evpn_mpls_resolution_ribs.append("tunnel-rib " ~ rib.rib_name) %} {% elif rib.rib_type is arista.avd.defined %}