ospfd: fix missing "aggregation timer" in running configuration

Signed-off-by: anlan_cs <vic.lan@pica8.com>
This commit is contained in:
anlan_cs 2022-01-19 08:42:02 -05:00
parent 78cf887718
commit d1b1eae14b

View File

@ -12135,6 +12135,10 @@ static int config_write_ospf_external_aggregator(struct vty *vty,
{
struct route_node *rn;
if (ospf->aggr_delay_interval != OSPF_EXTL_AGGR_DEFAULT_DELAY)
vty_out(vty, " aggregation timer %u\n",
ospf->aggr_delay_interval);
/* print 'summary-address A.B.C.D/M' */
for (rn = route_top(ospf->rt_aggr_tbl); rn; rn = route_next(rn))
if (rn->info) {