From 0d8ef0477ca02ead3ce9b6dd63f6943fd2b02dec Mon Sep 17 00:00:00 2001 From: Acee Date: Thu, 18 May 2023 10:43:52 -0400 Subject: ospfd: OSPF P2MP Delayed Reflooding configuration Currently, delayed reflooding on P2MP interfaces for LSAs received from neighbors on the interface is unconditionally (see commit c706f0e32ba8aa8780a0618b6fbba364c383ae05). In some cases, this change wasn't desirable and this feature makes delayed reflooding configurable for P2MP interfaces via the CLI command: "ip ospf network point-to-multipoint delay-reflood" in interface submode. Signed-off-by: Acee --- ospfd/ospf_interface.c | 1 + 1 file changed, 1 insertion(+) (limited to 'ospfd/ospf_interface.c') diff --git a/ospfd/ospf_interface.c b/ospfd/ospf_interface.c index 8da982aed8..2c66cb3cfc 100644 --- a/ospfd/ospf_interface.c +++ b/ospfd/ospf_interface.c @@ -545,6 +545,7 @@ static struct ospf_if_params *ospf_new_if_params(void) oip->is_v_wait_set = false; oip->ptp_dmvpn = 0; + oip->p2mp_delay_reflood = OSPF_P2MP_DELAY_REFLOOD_DEFAULT; return oip; } -- cgit v1.2.3