summaryrefslogtreecommitdiffstats
path: root/vtysh
diff options
context:
space:
mode:
authorharios_niral <hari@niralnetworks.com>2020-08-18 09:26:51 +0200
committerharios_niral <hari@niralnetworks.com>2020-09-01 09:48:05 +0200
commit65251ce80f02a61cfa06d752aa914bffd8493918 (patch)
treee5f8135247f8eebea385afb060050253378a6371 /vtysh
parentMerge pull request #7015 from donaldsharp/zebra_nht_no_heros_tonight (diff)
downloadfrr-65251ce80f02a61cfa06d752aa914bffd8493918.tar.xz
frr-65251ce80f02a61cfa06d752aa914bffd8493918.zip
doc, yang, isisd : Support for different VRF in isisd
1. Added isis with different vrf and it's dependecies. 2. Added new vrf leaf in yang. 3. A minor change for IF_DOWN_FROM_Z passing argrument is replaced with ifp pointer in api "isis_if_delete_hook()". 4. Minor fix in the isisd spf unit test. Co-authored-by: Kaushik <kaushik@niralnetworks.com>" Signed-off-by: harios_niral <hari@niralnetworks.com>
Diffstat (limited to 'vtysh')
-rw-r--r--vtysh/vtysh.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/vtysh/vtysh.c b/vtysh/vtysh.c
index d3fc8bc33..4edbb7a88 100644
--- a/vtysh/vtysh.c
+++ b/vtysh/vtysh.c
@@ -1892,10 +1892,11 @@ DEFUNSH(VTYSH_LDPD, ldp_member_pseudowire_ifname,
}
#endif
-DEFUNSH(VTYSH_ISISD, router_isis, router_isis_cmd, "router isis WORD",
+DEFUNSH(VTYSH_ISISD, router_isis, router_isis_cmd,
+ "router isis WORD [vrf NAME]",
ROUTER_STR
"ISO IS-IS\n"
- "ISO Routing area tag\n")
+ "ISO Routing area tag\n" VRF_CMD_HELP_STR)
{
vty->node = ISIS_NODE;
return CMD_SUCCESS;