diff options
author | harios_niral <hari@niralnetworks.com> | 2021-05-05 22:19:01 +0200 |
---|---|---|
committer | Igor Ryzhov <iryzhov@nfware.com> | 2021-05-06 09:54:31 +0200 |
commit | d48ef099db433a5d0be9d1584af346e015e84991 (patch) | |
tree | 327ed47e64e01eab8db0bd17b86ed6da7fbefcb7 /vtysh | |
parent | ospf6d: add internal support for multiple vrfs (diff) | |
download | frr-d48ef099db433a5d0be9d1584af346e015e84991.tar.xz frr-d48ef099db433a5d0be9d1584af346e015e84991.zip |
ospf6d: add vty support for multiple vrfs
Co-authored-by: Kaushik Nath <kaushiknath.null@gmail.com>
Signed-off-by: harios_niral <hari@niralnetworks.com>
Diffstat (limited to 'vtysh')
-rw-r--r-- | vtysh/vtysh.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vtysh/vtysh.c b/vtysh/vtysh.c index a1417430e..336bd44a4 100644 --- a/vtysh/vtysh.c +++ b/vtysh/vtysh.c @@ -1976,8 +1976,8 @@ DEFUNSH(VTYSH_BABELD, router_babel, router_babel_cmd, "router babel", #endif /* HAVE_BABELD */ #ifdef HAVE_OSPF6D -DEFUNSH(VTYSH_OSPF6D, router_ospf6, router_ospf6_cmd, "router ospf6", - ROUTER_STR OSPF6_STR) +DEFUNSH(VTYSH_OSPF6D, router_ospf6, router_ospf6_cmd, "router ospf6 [vrf NAME]", + ROUTER_STR OSPF6_STR VRF_CMD_HELP_STR) { vty->node = OSPF6_NODE; return CMD_SUCCESS; |