diff options
| author | Anuradha Karuppiah <anuradhak@cumulusnetworks.com> | 2019-03-26 13:47:54 -0700 | 
|---|---|---|
| committer | Anuradha Karuppiah <anuradhak@cumulusnetworks.com> | 2019-04-20 08:33:23 -0700 | 
| commit | 7c85225cf503ef14c96f50d925491d44862efa4f (patch) | |
| tree | e7c1f4780251237da5bd6f53ef688384b85a79b8 /pimd/pim_vty.c | |
| parent | f1e2901a0fe4122778406bf0d678668a4db8f518 (diff) | |
pimd: hidden command to set MLAG parameters
The MLAG component on the switch is expected to provide some
properties (such as peerlink-rif) to bootstrap the anycast-VTEP
functionality. The final interface for this is being defined as
a part of the pim-mlag functionality.
This commit provides a hidden command to test the anycast-VTEP
functionality independent of the MLAG component.
Signed-off-by: Anuradha Karuppiah <anuradhak@cumulusnetworks.com>
Diffstat (limited to 'pimd/pim_vty.c')
| -rw-r--r-- | pimd/pim_vty.c | 3 | 
1 files changed, 3 insertions, 0 deletions
diff --git a/pimd/pim_vty.c b/pimd/pim_vty.c index 9e677958d5..2654ebc588 100644 --- a/pimd/pim_vty.c +++ b/pimd/pim_vty.c @@ -39,6 +39,7 @@  #include "pim_msdp.h"  #include "pim_ssm.h"  #include "pim_bfd.h" +#include "pim_vxlan.h"  int pim_debug_config_write(struct vty *vty)  { @@ -239,6 +240,8 @@ int pim_global_config_write_worker(struct pim_instance *pim, struct vty *vty)  		}  	} +	pim_vxlan_config_write(vty, spaces, &writes); +  	return writes;  }  | 
