diff options
| author | Donald Sharp <sharpd@nvidia.com> | 2022-01-22 08:31:50 -0500 |
|---|---|---|
| committer | Donald Sharp <sharpd@nvidia.com> | 2022-02-04 10:29:38 -0500 |
| commit | 281686819da2ca61b9c347f3bf75f908cc6b8e52 (patch) | |
| tree | c77f1190651a44d7684267d37d1167445ef6ab4f /zebra/zebra_vty.c | |
| parent | 1777ba2ac470ef7ac5316bc365979e3745f22bbc (diff) | |
zebra: Add evpn status to `show zebra`
Signed-off-by: Donald Sharp <sharpd@nvidia.com>
Diffstat (limited to 'zebra/zebra_vty.c')
| -rw-r--r-- | zebra/zebra_vty.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/zebra/zebra_vty.c b/zebra/zebra_vty.c index d866e5ede4..ba0cb5c964 100644 --- a/zebra/zebra_vty.c +++ b/zebra/zebra_vty.c @@ -3978,6 +3978,8 @@ DEFUN (show_zebra, vty_out(vty, "MPLS is %senabled\n", mpls_enabled ? "" : "not "); + vty_out(vty, "EVPN is %senabled\n", is_evpn_enabled() ? "" : "not "); + #ifdef GNU_LINUX if (!vrf_is_backend_netns()) vty_out(vty, "VRF devices are available for usage\n"); |
