summaryrefslogtreecommitdiffstats
path: root/ospfd
diff options
context:
space:
mode:
authorIgor Ryzhov <iryzhov@nfware.com>2022-02-01 17:04:33 +0100
committerGitHub <noreply@github.com>2022-02-01 17:04:33 +0100
commit0624c3cfcc3fcc28bbd565dcc885aeed8a0fb1ef (patch)
treef9d7c14d52b23177905a6feeb49e319fe37e0ff3 /ospfd
parentMerge pull request #10391 from gromit1811/bug_9720_ecmp_inter_area_topotest_3... (diff)
parentospfd: adjust type of "aggr_delay_interval" (diff)
downloadfrr-0624c3cfcc3fcc28bbd565dcc885aeed8a0fb1ef.tar.xz
frr-0624c3cfcc3fcc28bbd565dcc885aeed8a0fb1ef.zip
Merge pull request #10373 from anlancs/ospf-add-asbr
ospfd: fix missing "aggregation timer" in running configuration
Diffstat (limited to 'ospfd')
-rw-r--r--ospfd/ospf_asbr.c4
-rw-r--r--ospfd/ospf_asbr.h2
-rw-r--r--ospfd/ospf_vty.c20
-rw-r--r--ospfd/ospfd.h2
4 files changed, 16 insertions, 12 deletions
diff --git a/ospfd/ospf_asbr.c b/ospfd/ospf_asbr.c
index 000c62e30..8cb85b462 100644
--- a/ospfd/ospf_asbr.c
+++ b/ospfd/ospf_asbr.c
@@ -1108,7 +1108,7 @@ static void ospf_external_aggr_timer(struct ospf *ospf,
}
if (IS_DEBUG_OSPF(lsa, EXTNL_LSA_AGGR))
- zlog_debug("%s: Start Aggregator delay timer %d(in seconds).",
+ zlog_debug("%s: Start Aggregator delay timer %u(in seconds).",
__func__, ospf->aggr_delay_interval);
ospf->aggr_action = operation;
@@ -1232,7 +1232,7 @@ int ospf_asbr_external_rt_advertise(struct ospf *ospf, struct prefix_ipv4 *p)
return OSPF_SUCCESS;
}
-int ospf_external_aggregator_timer_set(struct ospf *ospf, unsigned int interval)
+int ospf_external_aggregator_timer_set(struct ospf *ospf, uint16_t interval)
{
ospf->aggr_delay_interval = interval;
return OSPF_SUCCESS;
diff --git a/ospfd/ospf_asbr.h b/ospfd/ospf_asbr.h
index 160883144..f7dbca758 100644
--- a/ospfd/ospf_asbr.h
+++ b/ospfd/ospf_asbr.h
@@ -148,7 +148,7 @@ ospf_originate_summary_lsa(struct ospf *ospf,
struct ospf_external_aggr_rt *aggr,
struct external_info *ei);
extern int ospf_external_aggregator_timer_set(struct ospf *ospf,
- unsigned int interval);
+ uint16_t interval);
extern void ospf_external_aggrigator_free(struct ospf_external_aggr_rt *aggr);
extern struct ospf_external_aggr_rt *
diff --git a/ospfd/ospf_vty.c b/ospfd/ospf_vty.c
index ce91b32af..c82c8cb42 100644
--- a/ospfd/ospf_vty.c
+++ b/ospfd/ospf_vty.c
@@ -9993,7 +9993,7 @@ DEFUN (ospf_external_route_aggregation,
ospf_external_route_aggregation_cmd,
"summary-address A.B.C.D/M [tag (1-4294967295)]",
"External summary address\n"
- "Summary address prefix (a.b.c.d/m) \n"
+ "Summary address prefix\n"
"Router tag \n"
"Router tag value\n")
{
@@ -10034,7 +10034,7 @@ DEFUN (no_ospf_external_route_aggregation,
"no summary-address A.B.C.D/M [tag (1-4294967295)]",
NO_STR
"External summary address\n"
- "Summary address prefix (a.b.c.d/m)\n"
+ "Summary address prefix\n"
"Router tag\n"
"Router tag value\n")
{
@@ -10324,7 +10324,7 @@ DEFUN (ospf_external_route_aggregation_no_adrvertise,
ospf_external_route_aggregation_no_adrvertise_cmd,
"summary-address A.B.C.D/M no-advertise",
"External summary address\n"
- "Summary address prefix (a.b.c.d/m) \n"
+ "Summary address prefix\n"
"Don't advertise summary route \n")
{
VTY_DECLVAR_INSTANCE_CONTEXT(ospf, ospf);
@@ -10360,7 +10360,7 @@ DEFUN (no_ospf_external_route_aggregation_no_adrvertise,
"no summary-address A.B.C.D/M no-advertise",
NO_STR
"External summary address\n"
- "Summary address prefix (a.b.c.d/m)\n"
+ "Summary address prefix\n"
"Advertise summary route to the AS \n")
{
VTY_DECLVAR_INSTANCE_CONTEXT(ospf, ospf);
@@ -10399,7 +10399,7 @@ DEFUN (ospf_route_aggregation_timer,
"Timer interval(in seconds)\n")
{
VTY_DECLVAR_INSTANCE_CONTEXT(ospf, ospf);
- unsigned int interval = 0;
+ uint16_t interval = 0;
interval = strtoul(argv[2]->arg, NULL, 10);
@@ -11429,7 +11429,7 @@ static int ospf_show_summary_address(struct vty *vty, struct ospf *ospf,
ospf_show_vrf_name(ospf, vty, json_vrf, use_vrf);
if (!uj)
- vty_out(vty, "aggregation delay interval :%d(in seconds)\n\n",
+ vty_out(vty, "aggregation delay interval :%u(in seconds)\n\n",
ospf->aggr_delay_interval);
else
json_object_int_add(json_vrf, "aggregation delay interval",
@@ -12191,15 +12191,19 @@ 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) {
struct ospf_external_aggr_rt *aggr = rn->info;
- vty_out(vty, " summary-address %pI4/%d ",
+ vty_out(vty, " summary-address %pI4/%d",
&aggr->p.prefix, aggr->p.prefixlen);
if (aggr->tag)
- vty_out(vty, " tag %u ", aggr->tag);
+ vty_out(vty, " tag %u", aggr->tag);
if (CHECK_FLAG(aggr->flags,
OSPF_EXTERNAL_AGGRT_NO_ADVERTISE))
diff --git a/ospfd/ospfd.h b/ospfd/ospfd.h
index 3369429eb..4f1b1493a 100644
--- a/ospfd/ospfd.h
+++ b/ospfd/ospfd.h
@@ -377,7 +377,7 @@ struct ospf {
struct thread *t_external_aggr;
/* delay interval in seconds */
- unsigned int aggr_delay_interval;
+ uint16_t aggr_delay_interval;
/* Table of configured Aggregate addresses */
struct route_table *rt_aggr_tbl;