diff options
| author | Sai Gomathi N <nsaigomathi@vmware.com> | 2022-09-25 23:33:59 -0700 | 
|---|---|---|
| committer | Sai Gomathi N <nsaigomathi@vmware.com> | 2022-09-25 23:33:59 -0700 | 
| commit | e0a7a5ebe3d355304abb79ddcc843c7aecb4a619 (patch) | |
| tree | bbea6937d2a9630e59ee0f59f98906aa8dfffd73 /pimd/pim6_cmd.c | |
| parent | beecba6e17ae66641c8849296db47639e3f3bb03 (diff) | |
pim6d: Add 'debug mld trace'
Implementing mld trace for MLD protocol activity.
Signed-off-by: Sai Gomathi N <nsaigomathi@vmware.com>
Diffstat (limited to 'pimd/pim6_cmd.c')
| -rw-r--r-- | pimd/pim6_cmd.c | 18 | 
1 files changed, 18 insertions, 0 deletions
diff --git a/pimd/pim6_cmd.c b/pimd/pim6_cmd.c index 1df170df07..856963ebd1 100644 --- a/pimd/pim6_cmd.c +++ b/pimd/pim6_cmd.c @@ -1613,6 +1613,22 @@ DEFPY (debug_mld_packets,  	return CMD_SUCCESS;  } +DEFPY (debug_mld_trace, +       debug_mld_trace_cmd, +       "[no] debug mld trace", +       NO_STR +       DEBUG_STR +       DEBUG_MLD_STR +       DEBUG_MLD_TRACE_STR) +{ +	if (!no) +		PIM_DO_DEBUG_GM_TRACE; +	else +		PIM_DONT_DEBUG_GM_TRACE; + +	return CMD_SUCCESS; +} +  void pim_cmd_init(void)  {  	if_cmd_init(pim_interface_config_write); @@ -1748,6 +1764,7 @@ void pim_cmd_init(void)  	install_element(ENABLE_NODE, &debug_mld_cmd);  	install_element(ENABLE_NODE, &debug_mld_events_cmd);  	install_element(ENABLE_NODE, &debug_mld_packets_cmd); +	install_element(ENABLE_NODE, &debug_mld_trace_cmd);  	install_element(CONFIG_NODE, &debug_pimv6_cmd);  	install_element(CONFIG_NODE, &debug_pimv6_nht_cmd); @@ -1764,4 +1781,5 @@ void pim_cmd_init(void)  	install_element(CONFIG_NODE, &debug_mld_cmd);  	install_element(CONFIG_NODE, &debug_mld_events_cmd);  	install_element(CONFIG_NODE, &debug_mld_packets_cmd); +	install_element(CONFIG_NODE, &debug_mld_trace_cmd);  }  | 
