pimd: add 'debug pim vxlan' when 'debug pim' is used

Reversely, negating 'debug pim' will disable vxlan debugging.

Signed-off-by: Philippe Guibert <philippe.guibert@6wind.com>
This commit is contained in:
Philippe Guibert 2022-03-17 14:35:00 +01:00
parent 79bfe9a1ba
commit dedcdb892b

View File

@ -8380,6 +8380,7 @@ DEFUN (debug_pim,
PIM_DO_DEBUG_MSDP_EVENTS;
PIM_DO_DEBUG_MSDP_PACKETS;
PIM_DO_DEBUG_BSM;
PIM_DO_DEBUG_VXLAN;
return CMD_SUCCESS;
}
@ -8399,6 +8400,7 @@ DEFUN (no_debug_pim,
PIM_DONT_DEBUG_PIM_PACKETDUMP_SEND;
PIM_DONT_DEBUG_PIM_PACKETDUMP_RECV;
PIM_DONT_DEBUG_BSM;
PIM_DONT_DEBUG_VXLAN;
return CMD_SUCCESS;
}