diff options
| author | Russ White <russ@riw.us> | 2023-06-20 09:08:28 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-06-20 09:08:28 -0400 |
| commit | 56a10caa0376f587828f143d56c7c49c68b73b7d (patch) | |
| tree | b181df2cb414718578c137fd716205fc0463dc78 /bgpd/bgp_zebra.c | |
| parent | 53a9aee61897028c80a2eb1e235e66d7c0e9ad3f (diff) | |
| parent | 08a3439d5192af036a6f637106089d9e6521a982 (diff) | |
Merge pull request #12971 from taspelund/trey/mac_vrf_soo_upstream
bgpd: Add MAC-VRF Site-of-Origin support
Diffstat (limited to 'bgpd/bgp_zebra.c')
| -rw-r--r-- | bgpd/bgp_zebra.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bgpd/bgp_zebra.c b/bgpd/bgp_zebra.c index 1965cd2704..d1a68f3bcd 100644 --- a/bgpd/bgp_zebra.c +++ b/bgpd/bgp_zebra.c @@ -2984,9 +2984,9 @@ static int bgp_zebra_process_local_l3vni(ZAPI_CALLBACK_ARGS) if (BGP_DEBUG(zebra, ZEBRA)) zlog_debug( - "Rx L3-VNI ADD VRF %s VNI %u RMAC svi-mac %pEA vrr-mac %pEA filter %s svi-if %u", - vrf_id_to_name(vrf_id), l3vni, &svi_rmac, - &vrr_rmac, + "Rx L3-VNI ADD VRF %s VNI %u Originator-IP %pI4 RMAC svi-mac %pEA vrr-mac %pEA filter %s svi-if %u", + vrf_id_to_name(vrf_id), l3vni, &originator_ip, + &svi_rmac, &vrr_rmac, filter ? "prefix-routes-only" : "none", svi_ifindex); |
