]> 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)
committerIgor Ryzhov <iryzhov@nfware.com>
Tue, 1 Feb 2022 16:07:30 +0000 (19:07 +0300)
Signed-off-by: anlan_cs <vic.lan@pica8.com>
ospfd/ospf_vty.c

index 59f03f5fc603c56997fba4f1e4b25f7ccfa24f4e..da80b0ab59f87383a2a625eed73336ed7ae46de6 100644 (file)
@@ -12168,6 +12168,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) {