diff options
author | David Lamparter <equinox@opensourcerouting.org> | 2024-04-25 12:20:27 +0200 |
---|---|---|
committer | David Lamparter <equinox@opensourcerouting.org> | 2024-04-25 12:20:27 +0200 |
commit | 52734fc8e5dad3569c3c37251f6dcc7a83c07299 (patch) | |
tree | 3275a69b45f2d3e75c2be46501fa4ced56505fe1 /ospf6d | |
parent | ospf6d: force recalculate on interface_up (diff) | |
download | frr-52734fc8e5dad3569c3c37251f6dcc7a83c07299.tar.xz frr-52734fc8e5dad3569c3c37251f6dcc7a83c07299.zip |
ospf6d: accept CLI `no` for point-to-multipoint
`point-to-multipoint` was missing on the removal variant of this CLI
command.
Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
Diffstat (limited to 'ospf6d')
-rw-r--r-- | ospf6d/ospf6_interface.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/ospf6d/ospf6_interface.c b/ospf6d/ospf6_interface.c index 8549af06e..7f813ce3c 100644 --- a/ospf6d/ospf6_interface.c +++ b/ospf6d/ospf6_interface.c @@ -2644,13 +2644,14 @@ DEFUN (ipv6_ospf6_network, DEFUN (no_ipv6_ospf6_network, no_ipv6_ospf6_network_cmd, - "no ipv6 ospf6 network [<broadcast|point-to-point>]", + "no ipv6 ospf6 network [<broadcast|point-to-point|point-to-multipoint>]", NO_STR IP6_STR OSPF6_STR "Set default network type\n" "Specify OSPF6 broadcast network\n" - "Specify OSPF6 point-to-point network\n") + "Specify OSPF6 point-to-point network\n" + "Specify OSPF6 point-to-multipoint network\n") { VTY_DECLVAR_CONTEXT(interface, ifp); struct ospf6_interface *oi; |