diff options
author | Donald Sharp <sharpd@nvidia.com> | 2022-01-22 14:31:50 +0100 |
---|---|---|
committer | Donald Sharp <sharpd@nvidia.com> | 2022-02-04 16:29:38 +0100 |
commit | 281686819da2ca61b9c347f3bf75f908cc6b8e52 (patch) | |
tree | c77f1190651a44d7684267d37d1167445ef6ab4f /zebra/zebra_vty.c | |
parent | zebra: Add os and version to `show zebra` (diff) | |
download | frr-281686819da2ca61b9c347f3bf75f908cc6b8e52.tar.xz frr-281686819da2ca61b9c347f3bf75f908cc6b8e52.zip |
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 d866e5ede..ba0cb5c96 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"); |