diff options
| author | David Lamparter <equinox@diac24.net> | 2017-08-22 17:55:01 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-08-22 17:55:01 +0200 |
| commit | 1d84515ca9d0a5e543be7e8e7ca9afc8b744e662 (patch) | |
| tree | 5611f03f50b1098073a86bb7056e1c9a4582f37c /ospf6d/ospf6_interface.c | |
| parent | 569ab7a544815296b4b6771cd860f8270ebdbf4d (diff) | |
| parent | 325730733775c94ba54d769f49ca213df552ce6b (diff) | |
Merge pull request #1025 from qlyoung/no-ospf
ospfd, ospf6d: cleanup some `no` commands
Diffstat (limited to 'ospf6d/ospf6_interface.c')
| -rw-r--r-- | ospf6d/ospf6_interface.c | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/ospf6d/ospf6_interface.c b/ospf6d/ospf6_interface.c index 1d17a1c233..c970e990c8 100644 --- a/ospf6d/ospf6_interface.c +++ b/ospf6d/ospf6_interface.c @@ -1171,8 +1171,7 @@ DEFUN (ipv6_ospf6_cost, IP6_STR OSPF6_STR "Interface cost\n" - "Outgoing metric of this interface\n" - ) + "Outgoing metric of this interface\n") { VTY_DECLVAR_CONTEXT(interface, ifp); int idx_number = 3; @@ -1206,12 +1205,12 @@ DEFUN (ipv6_ospf6_cost, DEFUN (no_ipv6_ospf6_cost, no_ipv6_ospf6_cost_cmd, - "no ipv6 ospf6 cost", + "no ipv6 ospf6 cost [(1-65535)]", NO_STR IP6_STR OSPF6_STR "Calculate interface cost from bandwidth\n" - ) + "Outgoing metric of this interface\n") { VTY_DECLVAR_CONTEXT(interface, ifp); struct ospf6_interface *oi; @@ -1654,11 +1653,13 @@ DEFUN (ipv6_ospf6_network, DEFUN (no_ipv6_ospf6_network, no_ipv6_ospf6_network_cmd, - "no ipv6 ospf6 network", + "no ipv6 ospf6 network [<broadcast|point-to-point>]", NO_STR IP6_STR OSPF6_STR - "Set default network type\n") + "Set default network type\n" + "Specify OSPF6 broadcast network\n" + "Specify OSPF6 point-to-point network\n") { VTY_DECLVAR_CONTEXT(interface, ifp); struct ospf6_interface *oi; |
