]> git.puffer.fish Git - matthieu/frr.git/commitdiff
ospfd: fix missing "aggregation timer" in running configuration
authoranlan_cs <vic.lan@pica8.com>
Wed, 19 Jan 2022 13:42:02 +0000 (08:42 -0500)
committeranlan_cs <vic.lan@pica8.com>
Sat, 29 Jan 2022 01:04:31 +0000 (20:04 -0500)
Signed-off-by: anlan_cs <vic.lan@pica8.com>
ospfd/ospf_vty.c

index 73153082752bfe193eb9dd2f8655a08c9a010d7d..fe6c9b6e558725e11e82caff87e482782c3ad270 100644 (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) {