diff options
| author | Philippe Guibert <philippe.guibert@6wind.com> | 2020-02-18 18:21:16 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-02-18 18:21:16 +0100 |
| commit | 3c5f39e76dbb1e6efd193d41381ba295cea7c5d3 (patch) | |
| tree | 9003e5d91a33284ff84f8027c74a7f7ae272ee56 /zebra/debug.c | |
| parent | 0d60f61f18549c72e7c4182c536ee2856ab77fe0 (diff) | |
| parent | 94bd5b9347d527da468c3109fdb9beb283b189ad (diff) | |
Merge pull request #5651 from AnuradhaKaruppiah/evpn-pim-fixes
EVPN-PIM: complete anycast (MLAG) VTEP support
Diffstat (limited to 'zebra/debug.c')
| -rw-r--r-- | zebra/debug.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/zebra/debug.c b/zebra/debug.c index 16b1d0057b..68f6b69305 100644 --- a/zebra/debug.c +++ b/zebra/debug.c @@ -544,6 +544,10 @@ static int config_write_debug(struct vty *vty) vty_out(vty, "debug zebra vxlan\n"); write++; } + if (IS_ZEBRA_DEBUG_MLAG) { + vty_out(vty, "debug zebra mlag\n"); + write++; + } if (IS_ZEBRA_DEBUG_PW) { vty_out(vty, "debug zebra pseudowires\n"); write++; @@ -633,4 +637,5 @@ void zebra_debug_init(void) install_element(CONFIG_NODE, &no_debug_zebra_rib_cmd); install_element(CONFIG_NODE, &no_debug_zebra_fpm_cmd); install_element(CONFIG_NODE, &no_debug_zebra_dplane_cmd); + install_element(CONFIG_NODE, &debug_zebra_mlag_cmd); } |
