mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-08-03 05:21:31 +00:00
Merge pull request #12222 from LabNConsulting/working/lb/fix-p2X-acks
ospfd: fix bug where acks were not be generated to incoming P2P/P2MP peers
This commit is contained in:
commit
d353152de7
@ -818,6 +818,11 @@ int ospf_flood_through(struct ospf *ospf, struct ospf_neighbor *inbr,
|
||||
break;
|
||||
}
|
||||
|
||||
/* always need to send ack when incoming intf is PTP or P2MP */
|
||||
if (inbr != NULL && (inbr->oi->type == OSPF_IFTYPE_POINTOMULTIPOINT ||
|
||||
inbr->oi->type == OSPF_IFTYPE_POINTOPOINT))
|
||||
lsa_ack_flag = 1;
|
||||
|
||||
return (lsa_ack_flag);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user