From 616c6ee8bddfeaa3f62c4dfd29e50a2cec66538d Mon Sep 17 00:00:00 2001 From: Philippe Guibert Date: Wed, 10 Oct 2018 10:13:24 +0200 Subject: [PATCH] bgpd: add neighbor l2vpn evpn software discovery inbound command this command permits configuring adj-rib-in for l2vpn evpn entries. Signed-off-by: Philippe Guibert --- bgpd/bgp_vty.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bgpd/bgp_vty.c b/bgpd/bgp_vty.c index bac46f251b..d852d8f4d4 100644 --- a/bgpd/bgp_vty.c +++ b/bgpd/bgp_vty.c @@ -12998,6 +12998,8 @@ void bgp_vty_init(void) &neighbor_soft_reconfiguration_cmd); install_element(BGP_FLOWSPECV6_NODE, &no_neighbor_soft_reconfiguration_cmd); + install_element(BGP_EVPN_NODE, &neighbor_soft_reconfiguration_cmd); + install_element(BGP_EVPN_NODE, &no_neighbor_soft_reconfiguration_cmd); /* "neighbor attribute-unchanged" commands. */ install_element(BGP_NODE, &neighbor_attr_unchanged_hidden_cmd);