mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-04-29 14:33:09 +00:00
pim6d: Add 'show debugging [pimv6]' CLI
Adding show debugging CLI for pimv6 debugs. Signed-off-by: Sai Gomathi N <nsaigomathi@vmware.com>
This commit is contained in:
parent
ad9b47e65e
commit
1f2ecfe5ab
@ -1503,6 +1503,20 @@ DEFPY (debug_pimv6_zebra,
|
||||
return CMD_SUCCESS;
|
||||
}
|
||||
|
||||
DEFUN_NOSH (show_debugging_pimv6,
|
||||
show_debugging_pimv6_cmd,
|
||||
"show debugging [pimv6]",
|
||||
SHOW_STR
|
||||
DEBUG_STR
|
||||
"PIMv6 Information\n")
|
||||
{
|
||||
vty_out(vty, "PIMv6 debugging status\n");
|
||||
|
||||
pim_debug_config_write(vty);
|
||||
|
||||
return CMD_SUCCESS;
|
||||
}
|
||||
|
||||
void pim_cmd_init(void)
|
||||
{
|
||||
if_cmd_init(pim_interface_config_write);
|
||||
@ -1620,6 +1634,8 @@ void pim_cmd_init(void)
|
||||
install_element(ENABLE_NODE, &clear_ipv6_pim_bsr_db_cmd);
|
||||
install_element(ENABLE_NODE, &clear_ipv6_pim_interfaces_cmd);
|
||||
|
||||
install_element(ENABLE_NODE, &show_debugging_pimv6_cmd);
|
||||
|
||||
install_element(ENABLE_NODE, &debug_pimv6_cmd);
|
||||
install_element(ENABLE_NODE, &debug_pimv6_nht_cmd);
|
||||
install_element(ENABLE_NODE, &debug_pimv6_nht_det_cmd);
|
||||
|
Loading…
Reference in New Issue
Block a user