summaryrefslogtreecommitdiffstats
path: root/ospf6d/ospf6_area.c
diff options
context:
space:
mode:
authorQuentin Young <qlyoung@cumulusnetworks.com>2016-11-30 00:07:11 +0100
committerQuentin Young <qlyoung@cumulusnetworks.com>2016-11-30 00:07:11 +0100
commit3a2d747c2e229f47f5dc32c774ba4e2a07275022 (patch)
tree9c44b94025384d94b4b2d314c9ceb40cc6f850b4 /ospf6d/ospf6_area.c
parentlib: allow all characters in WORD tokens (diff)
downloadfrr-3a2d747c2e229f47f5dc32c774ba4e2a07275022.tar.xz
frr-3a2d747c2e229f47f5dc32c774ba4e2a07275022.zip
all: Fix all underfull doc strings
Additionally: * Add [ip] to a couple bgp show commands * Quick refactor of a couple ISIS commands * Quick refactor of a couple OSPF6 commands Signed-off-by: Quentin Young <qlyoung@cumulusnetworks.com>
Diffstat (limited to 'ospf6d/ospf6_area.c')
-rw-r--r--ospf6d/ospf6_area.c11
1 files changed, 8 insertions, 3 deletions
diff --git a/ospf6d/ospf6_area.c b/ospf6d/ospf6_area.c
index 9ba728765..06ff40a98 100644
--- a/ospf6d/ospf6_area.c
+++ b/ospf6d/ospf6_area.c
@@ -512,12 +512,17 @@ DEFUN (area_range,
DEFUN (no_area_range,
no_area_range_cmd,
- "no area A.B.C.D range X:X::X:X/M [<advertise|not-advertise>] [cost (0-16777215)]",
+ "no area <A.B.C.D|(0-4294967295)> range X:X::X:X/M [<advertise|not-advertise|cost (0-16777215)>]",
NO_STR
"OSPF6 area parameters\n"
- OSPF6_AREA_ID_STR
+ "OSPF6 area ID in IP address format\n"
+ "OSPF6 area ID as a decimal value\n"
"Configured address range\n"
- "Specify IPv6 prefix\n")
+ "Specify IPv6 prefix\n"
+ "Advertise\n"
+ "Do not advertise\n"
+ "User specified metric for this range\n"
+ "Advertised metric for this range\n")
{
int idx_ipv4 = 2;
int ret;