From 778d75a6f24976885bc044d7bf5b5a535c6d5644 Mon Sep 17 00:00:00 2001 From: Carmine Scarpitta Date: Fri, 28 Apr 2023 17:11:32 +0200 Subject: [PATCH] tests: Fix `bgp_srv6l3vpn_to_bgp_vrf3` topotest The `bgp_srv6l3vpn_to_bgp_vrf3` topotest tests the SRv6 L3VPN functionality. It applies the appropriate configuration in `bgpd` and `zebra`, and then checks that the RIB is updated correctly. The topotest expects to find the AS-Path in the RIB, which is only present if the `bgp send-extra-data zebra` option is enabled in the `bgpd` configuration. The `bgp send-extra-data zebra` option has been accidentally commented out in commit https://github.com/FRRouting/frr/commit/2007e2dbd0d5c42d9fe6cbe92b34be10654834ef. This commit fixes the `bgp_srv6l3vpn_to_bgp_vrf3` topotest by re-adding the missing `bgp send-extra-data zebra` option. Signed-off-by: Carmine Scarpitta --- tests/topotests/bgp_srv6l3vpn_to_bgp_vrf3/r2/bgpd.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/topotests/bgp_srv6l3vpn_to_bgp_vrf3/r2/bgpd.conf b/tests/topotests/bgp_srv6l3vpn_to_bgp_vrf3/r2/bgpd.conf index 4ab5b98c12..8700f12d63 100644 --- a/tests/topotests/bgp_srv6l3vpn_to_bgp_vrf3/r2/bgpd.conf +++ b/tests/topotests/bgp_srv6l3vpn_to_bgp_vrf3/r2/bgpd.conf @@ -1,6 +1,6 @@ frr defaults traditional ! -!bgp send-extra-data zebra +bgp send-extra-data zebra ! hostname r2 password zebra -- 2.39.5