diff options
author | Igor Ryzhov <iryzhov@nfware.com> | 2022-01-23 22:07:20 +0100 |
---|---|---|
committer | Igor Ryzhov <iryzhov@nfware.com> | 2022-01-24 12:44:05 +0100 |
commit | 788a036fdb57d733371b180d1d295ce6ca72bf5d (patch) | |
tree | da6694b6b0d78fd1b679ba02a7808f0fe01f964f /lib/if.c | |
parent | Merge pull request #10398 from patrasar/pim_debug_fix (diff) | |
download | frr-788a036fdb57d733371b180d1d295ce6ca72bf5d.tar.xz frr-788a036fdb57d733371b180d1d295ce6ca72bf5d.zip |
*: do not print vrf name for interface config when using vrf-lite
VRF name should not be printed in the config since 574445ec. The update
was done for NB config output but I missed it for regular vty output.
Signed-off-by: Igor Ryzhov <iryzhov@nfware.com>
Diffstat (limited to 'lib/if.c')
-rw-r--r-- | lib/if.c | 16 |
1 files changed, 16 insertions, 0 deletions
@@ -1285,6 +1285,22 @@ static void cli_show_interface_end(struct vty *vty, vty_out(vty, "exit\n"); } +void if_vty_config_start(struct vty *vty, struct interface *ifp) +{ + vty_frame(vty, "!\n"); + vty_frame(vty, "interface %s", ifp->name); + + if (vrf_is_backend_netns() && strcmp(ifp->vrf->name, VRF_DEFAULT_NAME)) + vty_frame(vty, " vrf %s", ifp->vrf->name); + + vty_frame(vty, "\n"); +} + +void if_vty_config_end(struct vty *vty) +{ + vty_endframe(vty, "exit\n!\n"); +} + /* * XPath: /frr-interface:lib/interface/description */ |