mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-08-13 22:57:45 +00:00
zebra: Lookup dad and replication settings from EVPN VRF
Signed-off-by: Tuetuopay <tuetuopay@me.com> Sponsored-by: Scaleway
This commit is contained in:
parent
5e53dce31e
commit
cff8f33b61
@ -704,11 +704,10 @@ static void zvni_print_neigh(zebra_neigh_t *n, void *ctxt, json_object *json)
|
||||
struct zebra_vrf *zvrf = NULL;
|
||||
struct timeval detect_start_time = {0, 0};
|
||||
|
||||
zvrf = zebra_vrf_lookup_by_id(VRF_DEFAULT);
|
||||
zvrf = zebra_vrf_get_evpn();
|
||||
if (!zvrf)
|
||||
return;
|
||||
|
||||
zvrf = zebra_vrf_lookup_by_id(VRF_DEFAULT);
|
||||
ipaddr2str(&n->ip, buf2, sizeof(buf2));
|
||||
prefix_mac2str(&n->emac, buf1, sizeof(buf1));
|
||||
type_str = CHECK_FLAG(n->flags, ZEBRA_NEIGH_LOCAL) ?
|
||||
@ -1152,7 +1151,9 @@ static void zvni_print_mac(zebra_mac_t *mac, void *ctxt, json_object *json)
|
||||
struct zebra_vrf *zvrf;
|
||||
struct timeval detect_start_time = {0, 0};
|
||||
|
||||
zvrf = zebra_vrf_lookup_by_id(VRF_DEFAULT);
|
||||
zvrf = zebra_vrf_get_evpn();
|
||||
if (!zvrf)
|
||||
return;
|
||||
|
||||
vty = (struct vty *)ctxt;
|
||||
prefix_mac2str(&mac->macaddr, buf1, sizeof(buf1));
|
||||
|
@ -47,7 +47,7 @@ static inline int is_evpn_enabled(void)
|
||||
static inline int
|
||||
is_vxlan_flooding_head_end(void)
|
||||
{
|
||||
struct zebra_vrf *zvrf = zebra_vrf_lookup_by_id(VRF_DEFAULT);
|
||||
struct zebra_vrf *zvrf = zebra_vrf_get_evpn();
|
||||
|
||||
if (!zvrf)
|
||||
return 0;
|
||||
|
Loading…
Reference in New Issue
Block a user