diff options
| author | Quentin Young <qlyoung@cumulusnetworks.com> | 2019-10-14 17:15:09 +0000 |
|---|---|---|
| committer | Quentin Young <qlyoung@cumulusnetworks.com> | 2019-10-14 17:15:09 +0000 |
| commit | 6a597223d3bb63602bcdb9aa840702f1850cadcc (patch) | |
| tree | 9f9aa64d9787973e9f67a0fcc84b90f2a3820af6 /pimd/pim_cmd.c | |
| parent | e34e314eb6ae60e06f2bcd61ce36b84c9abe2586 (diff) | |
Revert "Merge pull request #4885 from satheeshkarra/pim_mlag"
This reverts commit d563896dada99f3474d428f928786cbfde936fee, reversing
changes made to 09ea1a40386f02a13cdb0462cc55af0d03f0c277.
Diffstat (limited to 'pimd/pim_cmd.c')
| -rw-r--r-- | pimd/pim_cmd.c | 21 |
1 files changed, 2 insertions, 19 deletions
diff --git a/pimd/pim_cmd.c b/pimd/pim_cmd.c index 2c2b1c9586..28b4af9457 100644 --- a/pimd/pim_cmd.c +++ b/pimd/pim_cmd.c @@ -61,7 +61,6 @@ #include "pim_nht.h" #include "pim_bfd.h" #include "pim_vxlan.h" -#include "pim_mlag.h" #include "bfd.h" #include "pim_bsm.h" @@ -7463,9 +7462,9 @@ DEFPY_HIDDEN (interface_ip_pim_activeactive, pim_ifp = ifp->info; if (no) - pim_if_unconfigure_mlag_dualactive(pim_ifp); + pim_ifp->activeactive = false; else - pim_if_configure_mlag_dualactive(pim_ifp); + pim_ifp->activeactive = true; return CMD_SUCCESS; } @@ -8383,20 +8382,6 @@ DEFUN (no_debug_pim_zebra, return CMD_SUCCESS; } -DEFUN(debug_pim_mlag, debug_pim_mlag_cmd, "debug pim mlag", - DEBUG_STR DEBUG_PIM_STR DEBUG_PIM_MLAG_STR) -{ - PIM_DO_DEBUG_MLAG; - return CMD_SUCCESS; -} - -DEFUN(no_debug_pim_mlag, no_debug_pim_mlag_cmd, "no debug pim mlag", - NO_STR DEBUG_STR DEBUG_PIM_STR DEBUG_PIM_MLAG_STR) -{ - PIM_DONT_DEBUG_MLAG; - return CMD_SUCCESS; -} - DEFUN (debug_pim_vxlan, debug_pim_vxlan_cmd, "debug pim vxlan", @@ -10423,8 +10408,6 @@ void pim_cmd_init(void) install_element(ENABLE_NODE, &no_debug_ssmpingd_cmd); install_element(ENABLE_NODE, &debug_pim_zebra_cmd); install_element(ENABLE_NODE, &no_debug_pim_zebra_cmd); - install_element(ENABLE_NODE, &debug_pim_mlag_cmd); - install_element(ENABLE_NODE, &no_debug_pim_mlag_cmd); install_element(ENABLE_NODE, &debug_pim_vxlan_cmd); install_element(ENABLE_NODE, &no_debug_pim_vxlan_cmd); install_element(ENABLE_NODE, &debug_msdp_cmd); |
