mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-08-13 17:40:04 +00:00
pimd: When we get nexthops back we may not have configured pim on all intfs
Be aware that we may not have pim configured on all interfaces when we have a failure situation. Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
This commit is contained in:
parent
3af2452c04
commit
01460fbca3
@ -778,8 +778,10 @@ int pim_parse_nexthop_update(int command, struct zclient *zclient,
|
|||||||
"%s: NHT pim nbr not found on interface %s nbr count:%d ",
|
"%s: NHT pim nbr not found on interface %s nbr count:%d ",
|
||||||
__PRETTY_FUNCTION__,
|
__PRETTY_FUNCTION__,
|
||||||
ifp1->name,
|
ifp1->name,
|
||||||
pim_ifp->pim_neighbor_list
|
pim_ifp
|
||||||
->count);
|
? pim_ifp->pim_neighbor_list
|
||||||
|
->count
|
||||||
|
: 0);
|
||||||
}
|
}
|
||||||
// Mark nexthop address to 0 until PIM
|
// Mark nexthop address to 0 until PIM
|
||||||
// Nbr is resolved.
|
// Nbr is resolved.
|
||||||
|
Loading…
Reference in New Issue
Block a user