diff options
author | Mitesh Kanjariya <mitesh@marvel-07.cumulusnetworks.com> | 2018-02-07 22:18:49 +0100 |
---|---|---|
committer | mitesh <mitesh@cumulusnetworks.com> | 2018-02-09 08:06:17 +0100 |
commit | 4ac71d4bea5f9a7b01d717ed6955f88035c92d9c (patch) | |
tree | e1fd66d0b88e70c9f75a2122c79afb315c95cf7b /zebra/zebra_vxlan.c | |
parent | zebra: do not check if advertise-default-gw is on in no-advertise-default-gw ... (diff) | |
download | frr-4ac71d4bea5f9a7b01d717ed6955f88035c92d9c.tar.xz frr-4ac71d4bea5f9a7b01d717ed6955f88035c92d9c.zip |
zebra: fix 'show evpn vni' output
removed an additional field 'local-tunnel-ip' from l2vnis o/p
Ticket: CM-19670
Review: CCR-7167
Testing: Verified that the output is proper
Signed-off-by: Mitesh Kanjariya <mitesh@cumulusnetworks.com>
Diffstat (limited to 'zebra/zebra_vxlan.c')
-rw-r--r-- | zebra/zebra_vxlan.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/zebra/zebra_vxlan.c b/zebra/zebra_vxlan.c index 1e15529b0..850ee5096 100644 --- a/zebra/zebra_vxlan.c +++ b/zebra/zebra_vxlan.c @@ -1129,7 +1129,8 @@ static void zvni_print_hash(struct hash_backet *backet, void *ctxt[]) "%-10u %-4s %-21s %-8u %-8u %-15u %-37s\n", zvni->vni, "L2", zvni->vxlan_if ? zvni->vxlan_if->name : "unknown", - num_macs, num_neigh, num_vteps, + num_macs, num_neigh, + num_vteps, vrf_id_to_name(zvni->vrf_id)); else { char vni_str[VNI_STR_LEN]; |