From 2b05ac9e341369ee051f3797bf5b8ecce0c22af7 Mon Sep 17 00:00:00 2001 From: Nicolas Fort Date: Mon, 7 Aug 2023 16:59:35 +0000 Subject: T5446: BGP: change from node to leafNode, in order to avoid empty value and problems when removing such parameters --- data/templates/frr/bgpd.frr.j2 | 2 +- .../include/bgp/protocol-common-config.xml.i | 33 +++++++++++----------- 2 files changed, 18 insertions(+), 17 deletions(-) diff --git a/data/templates/frr/bgpd.frr.j2 b/data/templates/frr/bgpd.frr.j2 index ddfba2306..4535758da 100644 --- a/data/templates/frr/bgpd.frr.j2 +++ b/data/templates/frr/bgpd.frr.j2 @@ -481,7 +481,7 @@ router bgp {{ system_as }} {{ 'vrf ' ~ vrf if vrf is vyos_defined }} bgp bestpath compare-routerid {% endif %} {% if parameters.bestpath.med is vyos_defined %} - bgp bestpath med {{ 'confed' if parameters.bestpath.med.confed is vyos_defined }} {{ 'missing-as-worst' if parameters.bestpath.med.missing_as_worst is vyos_defined }} + bgp bestpath med {{ parameters.bestpath.med | join(' ') | replace('_', '-') }} {% endif %} {% if parameters.bestpath.peer_type is vyos_defined %} bgp bestpath peer-type {{ 'multipath-relax' if parameters.bestpath.peer_type.multipath_relax is vyos_defined }} diff --git a/interface-definitions/include/bgp/protocol-common-config.xml.i b/interface-definitions/include/bgp/protocol-common-config.xml.i index 12024ed8b..504385b53 100644 --- a/interface-definitions/include/bgp/protocol-common-config.xml.i +++ b/interface-definitions/include/bgp/protocol-common-config.xml.i @@ -1123,25 +1123,26 @@ - + MED attribute comparison parameters + + confed missing-as-worst + + + confed + Compare MEDs among confederation paths + + + missing-as-worst + Treat missing route as a MED as the least preferred one + + + (confed|missing-as-worst) + + - - - - Compare MEDs among confederation paths - - - - - - Treat missing route as a MED as the least preferred one - - - - - + Peer type -- cgit v1.2.3