diff options
| author | Anuradha Karuppiah <anuradhak@nvidia.com> | 2021-02-17 18:36:56 -0800 | 
|---|---|---|
| committer | Anuradha Karuppiah <anuradhak@nvidia.com> | 2021-02-19 08:11:15 -0800 | 
| commit | e4c3ece6e0bca4ee457a19211e5f51316dea7525 (patch) | |
| tree | 2ce162f66d733e03025e4e3c8bb8552b97b8e0c5 /zebra/zebra_evpn.c | |
| parent | bd2ac9a794cd124594fc92d247ba8851a23de1b4 (diff) | |
zebra: fix problem with SVI MAC not being sent to BGP
For MH the SVI MAC is advertised to prevent flooding of ARP replies.
But because of a bug the SVI MAC was being added to the zebra database
but not sent to bgpd for advertising.
Ticket: CM-33329
Signed-off-by: Anuradha Karuppiah <anuradhak@nvidia.com>
Diffstat (limited to 'zebra/zebra_evpn.c')
| -rw-r--r-- | zebra/zebra_evpn.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/zebra/zebra_evpn.c b/zebra/zebra_evpn.c index 2047c711de..d7076ccce6 100644 --- a/zebra/zebra_evpn.c +++ b/zebra/zebra_evpn.c @@ -434,7 +434,7 @@ int zebra_evpn_gw_macip_add(struct interface *ifp, zebra_evpn_t *zevpn,  	vxl = &zif->l2info.vxl;  	if (zebra_evpn_mac_gw_macip_add(ifp, zevpn, ip, &mac, macaddr, -					vxl->access_vlan) +					vxl->access_vlan, true)  	    != 0)  		return -1;  | 
