mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-08-15 01:37:53 +00:00
commit
5f3d15f2c3
@ -1896,7 +1896,7 @@ DEFUN (vtysh_show_debugging,
|
|||||||
DEBUG_STR)
|
DEBUG_STR)
|
||||||
{
|
{
|
||||||
return show_per_daemon("do show debugging\n",
|
return show_per_daemon("do show debugging\n",
|
||||||
"Debugging Information for %s:\n");
|
"");
|
||||||
}
|
}
|
||||||
|
|
||||||
DEFUN (vtysh_show_debugging_hashtable,
|
DEFUN (vtysh_show_debugging_hashtable,
|
||||||
|
@ -31,6 +31,16 @@
|
|||||||
pid_t integrated_write_pid;
|
pid_t integrated_write_pid;
|
||||||
static int integrated_result_fd;
|
static int integrated_result_fd;
|
||||||
|
|
||||||
|
DEFUN_NOSH(show_watchfrr_debugging,
|
||||||
|
show_watchfrr_debugging_cmd,
|
||||||
|
"show debugging [watchfrr]",
|
||||||
|
SHOW_STR
|
||||||
|
DEBUG_STR
|
||||||
|
"WatchFRR\n")
|
||||||
|
{
|
||||||
|
return CMD_SUCCESS;
|
||||||
|
}
|
||||||
|
|
||||||
DEFUN(config_write_integrated,
|
DEFUN(config_write_integrated,
|
||||||
config_write_integrated_cmd,
|
config_write_integrated_cmd,
|
||||||
"write integrated",
|
"write integrated",
|
||||||
@ -134,4 +144,5 @@ void watchfrr_vty_init(void)
|
|||||||
{
|
{
|
||||||
integrated_write_pid = -1;
|
integrated_write_pid = -1;
|
||||||
install_element(ENABLE_NODE, &config_write_integrated_cmd);
|
install_element(ENABLE_NODE, &config_write_integrated_cmd);
|
||||||
|
install_element(ENABLE_NODE, &show_watchfrr_debugging_cmd);
|
||||||
}
|
}
|
||||||
|
@ -83,6 +83,8 @@ DEFUN_NOSH (show_debugging_zebra,
|
|||||||
vty_out(vty, " Zebra next-hop tracking debugging is on\n");
|
vty_out(vty, " Zebra next-hop tracking debugging is on\n");
|
||||||
if (IS_ZEBRA_DEBUG_MPLS)
|
if (IS_ZEBRA_DEBUG_MPLS)
|
||||||
vty_out(vty, " Zebra MPLS debugging is on\n");
|
vty_out(vty, " Zebra MPLS debugging is on\n");
|
||||||
|
if (IS_ZEBRA_DEBUG_VXLAN)
|
||||||
|
vty_out(vty, " Zebra VXLAN debugging is on\n");
|
||||||
if (IS_ZEBRA_DEBUG_PW)
|
if (IS_ZEBRA_DEBUG_PW)
|
||||||
vty_out(vty, " Zebra pseudowire debugging is on\n");
|
vty_out(vty, " Zebra pseudowire debugging is on\n");
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user