mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-08-15 13:27:53 +00:00
Merge pull request #10466 from idryzhov/8.2-ospf-aggr-timer
[8.2] ospfd: fix missing "aggregation timer" in running configuration
This commit is contained in:
commit
80fe9b221d
@ -12168,6 +12168,10 @@ static int config_write_ospf_external_aggregator(struct vty *vty,
|
|||||||
{
|
{
|
||||||
struct route_node *rn;
|
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' */
|
/* print 'summary-address A.B.C.D/M' */
|
||||||
for (rn = route_top(ospf->rt_aggr_tbl); rn; rn = route_next(rn))
|
for (rn = route_top(ospf->rt_aggr_tbl); rn; rn = route_next(rn))
|
||||||
if (rn->info) {
|
if (rn->info) {
|
||||||
|
Loading…
Reference in New Issue
Block a user