diff options
| -rw-r--r-- | bgpd/bgp_mplsvpn.c | 5 | ||||
| -rw-r--r-- | tests/topotests/bgp_vrf_route_leak_basic/test_bgp-vrf-route-leak-basic.py | 2 | ||||
| -rw-r--r-- | tests/topotests/ospf_multi_vrf_bgp_route_leak/r2/zebra-vrf-ray.txt | 4 | 
3 files changed, 6 insertions, 5 deletions
diff --git a/bgpd/bgp_mplsvpn.c b/bgpd/bgp_mplsvpn.c index af8990afd0..58e3097e18 100644 --- a/bgpd/bgp_mplsvpn.c +++ b/bgpd/bgp_mplsvpn.c @@ -2230,8 +2230,9 @@ static void vpn_leak_to_vrf_update_onevrf(struct bgp *to_bgp,   /* to */  	 * Let the kernel to decide with double lookup the real next-hop  	 * interface when installing the route.  	 */ -	if (src_bgp || bpi_ultimate->sub_type == BGP_ROUTE_STATIC || -	    bpi_ultimate->sub_type == BGP_ROUTE_REDISTRIBUTE) { +	if (src_vrf->vrf_id != VRF_DEFAULT && +	    (src_bgp || bpi_ultimate->sub_type == BGP_ROUTE_STATIC || +	     bpi_ultimate->sub_type == BGP_ROUTE_REDISTRIBUTE)) {  		ifp = if_get_vrf_loopback(src_vrf->vrf_id);  		if (ifp)  			static_attr.nh_ifindex = ifp->ifindex; diff --git a/tests/topotests/bgp_vrf_route_leak_basic/test_bgp-vrf-route-leak-basic.py b/tests/topotests/bgp_vrf_route_leak_basic/test_bgp-vrf-route-leak-basic.py index ef813e9541..a92b8a473a 100644 --- a/tests/topotests/bgp_vrf_route_leak_basic/test_bgp-vrf-route-leak-basic.py +++ b/tests/topotests/bgp_vrf_route_leak_basic/test_bgp-vrf-route-leak-basic.py @@ -116,7 +116,7 @@ def test_vrf_route_leak_donna():                  "nexthops": [                      {                          "fib": True, -                        "interfaceName": "lo", +                        "interfaceName": "dummy0",                          "vrf": "default",                          "active": True,                      }, diff --git a/tests/topotests/ospf_multi_vrf_bgp_route_leak/r2/zebra-vrf-ray.txt b/tests/topotests/ospf_multi_vrf_bgp_route_leak/r2/zebra-vrf-ray.txt index 6ab1bb8f92..1495c88936 100644 --- a/tests/topotests/ospf_multi_vrf_bgp_route_leak/r2/zebra-vrf-ray.txt +++ b/tests/topotests/ospf_multi_vrf_bgp_route_leak/r2/zebra-vrf-ray.txt @@ -1,9 +1,9 @@  VRF ray:  B   10.0.1.0/24 [20/20] via 10.0.20.1, r2-eth1 (vrf default) inactive, weight 1, XX:XX:XX -B   10.0.2.0/24 [20/0] is directly connected, lo (vrf default) inactive, weight 1, XX:XX:XX +B   10.0.2.0/24 [20/0] is directly connected, r2-eth0 (vrf default) inactive, weight 1, XX:XX:XX  B>* 10.0.3.0/24 [20/20] via 10.0.20.1, r2-eth1 (vrf default), weight 1, XX:XX:XX  O>* 10.0.4.0/24 [110/20] via 10.0.40.4, r2-eth2, weight 1, XX:XX:XX -B   10.0.20.0/24 [20/0] is directly connected, lo (vrf default) inactive, weight 1, XX:XX:XX +B   10.0.20.0/24 [20/0] is directly connected, r2-eth1 (vrf default) inactive, weight 1, XX:XX:XX  B>* 10.0.30.0/24 [20/20] via 10.0.20.1, r2-eth1 (vrf default), weight 1, XX:XX:XX  O   10.0.40.0/24 [110/10] is directly connected, r2-eth2, weight 1, XX:XX:XX  C>* 10.0.40.0/24 is directly connected, r2-eth2, XX:XX:XX  | 
