mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-08-14 16:04:49 +00:00
commit
5f3d15f2c3
@ -1896,7 +1896,7 @@ DEFUN (vtysh_show_debugging,
|
||||
DEBUG_STR)
|
||||
{
|
||||
return show_per_daemon("do show debugging\n",
|
||||
"Debugging Information for %s:\n");
|
||||
"");
|
||||
}
|
||||
|
||||
DEFUN (vtysh_show_debugging_hashtable,
|
||||
|
@ -31,6 +31,16 @@
|
||||
pid_t integrated_write_pid;
|
||||
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,
|
||||
config_write_integrated_cmd,
|
||||
"write integrated",
|
||||
@ -134,4 +144,5 @@ void watchfrr_vty_init(void)
|
||||
{
|
||||
integrated_write_pid = -1;
|
||||
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");
|
||||
if (IS_ZEBRA_DEBUG_MPLS)
|
||||
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)
|
||||
vty_out(vty, " Zebra pseudowire debugging is on\n");
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user