summaryrefslogtreecommitdiff
path: root/pimd/pim6_cmd.c
diff options
context:
space:
mode:
authorDonatas Abraitis <donatas@opensourcerouting.org>2022-07-06 12:32:48 +0300
committerGitHub <noreply@github.com>2022-07-06 12:32:48 +0300
commit7650a8d638a85f95e3ff722b06118dbe5722f3e5 (patch)
treec08c6c9e3dcc1f75586e65a90c519f9c9a45a5dd /pimd/pim6_cmd.c
parent5adddad38f7716d7d118204b3ac39f5b18040305 (diff)
parentfc19632faa63c8a93f99dd12dbde8f51823aca98 (diff)
Merge pull request #9307 from SaiGomathiN/sai-nht
pimd: json support for nexthop
Diffstat (limited to 'pimd/pim6_cmd.c')
-rw-r--r--pimd/pim6_cmd.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/pimd/pim6_cmd.c b/pimd/pim6_cmd.c
index 1a2829f962..e46b4d6a10 100644
--- a/pimd/pim6_cmd.c
+++ b/pimd/pim6_cmd.c
@@ -1072,14 +1072,15 @@ DEFPY (show_ipv6_pim_neighbor_vrf_all,
DEFPY (show_ipv6_pim_nexthop,
show_ipv6_pim_nexthop_cmd,
- "show ipv6 pim [vrf NAME] nexthop",
+ "show ipv6 pim [vrf NAME] nexthop [json$json]",
SHOW_STR
IPV6_STR
PIM_STR
VRF_CMD_HELP_STR
- "PIM cached nexthop rpf information\n")
+ "PIM cached nexthop rpf information\n"
+ JSON_STR)
{
- return pim_show_nexthop_cmd_helper(vrf, vty);
+ return pim_show_nexthop_cmd_helper(vrf, vty, !!json);
}
DEFPY (show_ipv6_pim_nexthop_lookup,