mirror of
https://github.com/FRRouting/frr.git
synced 2025-04-30 13:37:17 +02:00
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>
This commit is contained in:
parent
d7f54c4d56
commit
52734fc8e5
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue