diff options
| author | Chirag Shah <chirag@cumulusnetworks.com> | 2018-11-04 10:17:29 -0800 | 
|---|---|---|
| committer | Chirag Shah <chirag@cumulusnetworks.com> | 2018-11-17 19:22:17 -0800 | 
| commit | 1374d4dbc29dd5a5e872a62e43bb07ba4c348c8a (patch) | |
| tree | e382788ab1729cceff67e24f410647d0212a6a0b /zebra/zebra_vxlan.h | |
| parent | 87454e6bd148c321176233984fb79bab5ccc59e2 (diff) | |
zebra: dup addr detect operation commands
Display duplicate detected list of MACs and VNIs.
- Per VNI
- Across all VNIs
Signed-off-by: Chirag Shah <chirag@cumulusnetworks.com>
Diffstat (limited to 'zebra/zebra_vxlan.h')
| -rw-r--r-- | zebra/zebra_vxlan.h | 8 | 
1 files changed, 8 insertions, 0 deletions
diff --git a/zebra/zebra_vxlan.h b/zebra/zebra_vxlan.h index 806af9100f..b33219d5e9 100644 --- a/zebra/zebra_vxlan.h +++ b/zebra/zebra_vxlan.h @@ -88,6 +88,7 @@ extern void zebra_vxlan_print_macs_vni(struct vty *vty, struct zebra_vrf *zvrf,  				       vni_t vni, bool use_json);  extern void zebra_vxlan_print_macs_all_vni(struct vty *vty,  					   struct zebra_vrf *zvrf, +					   bool print_dup,  					   bool use_json);  extern void zebra_vxlan_print_macs_all_vni_vtep(struct vty *vty,  						struct zebra_vrf *zvrf, @@ -101,10 +102,14 @@ extern void zebra_vxlan_print_macs_vni_vtep(struct vty *vty,  					    struct zebra_vrf *zvrf, vni_t vni,  					    struct in_addr vtep_ip,  					    bool use_json); +extern void zebra_vxlan_print_macs_vni_dad(struct vty *vty, +					   struct zebra_vrf *zvrf, vni_t vni, +					   bool use_json);  extern void zebra_vxlan_print_neigh_vni(struct vty *vty, struct zebra_vrf *zvrf,  					vni_t vni, bool use_json);  extern void zebra_vxlan_print_neigh_all_vni(struct vty *vty,  					    struct zebra_vrf *zvrf, +					    bool print_dup,  					    bool use_json);  extern void zebra_vxlan_print_specific_neigh_vni(struct vty *vty,  						 struct zebra_vrf *zvrf, @@ -114,6 +119,9 @@ extern void zebra_vxlan_print_neigh_vni_vtep(struct vty *vty,  					     struct zebra_vrf *zvrf, vni_t vni,  					     struct in_addr vtep_ip,  					     bool use_json); +extern void zebra_vxlan_print_neigh_vni_dad(struct vty *vty, +					struct zebra_vrf *zvrf, vni_t vni, +					bool use_json);  extern void zebra_vxlan_print_vni(struct vty *vty, struct zebra_vrf *zvrf,  				  vni_t vni, bool use_json);  extern void zebra_vxlan_print_vnis(struct vty *vty, struct zebra_vrf *zvrf,  | 
