summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Lamparter <equinox@diac24.net>2018-10-23 18:34:15 +0200
committerGitHub <noreply@github.com>2018-10-23 18:34:15 +0200
commit0abf76d5192121b63405b1b535a70441e5cf857e (patch)
tree78e6a6ae6329c62c0fdb51ed53388a3656995067
parentMerge pull request #3175 from donaldsharp/show_run_static (diff)
parentbgpd: Select default routing table when importing VRF routes into global (diff)
downloadfrr-0abf76d5192121b63405b1b535a70441e5cf857e.tar.xz
frr-0abf76d5192121b63405b1b535a70441e5cf857e.zip
Merge pull request #3204 from ton31337/fix/make_vrf_import_default_selectable
bgpd: Select default routing table when importing VRF routes into global
-rw-r--r--bgpd/bgp_vty.c13
1 files changed, 6 insertions, 7 deletions
diff --git a/bgpd/bgp_vty.c b/bgpd/bgp_vty.c
index 01d33a869..a1c50a720 100644
--- a/bgpd/bgp_vty.c
+++ b/bgpd/bgp_vty.c
@@ -6750,13 +6750,12 @@ ALIAS(af_import_vrf_route_map, af_no_import_vrf_route_map_cmd,
"Vrf routes being filtered\n"
"Specify route map\n")
-DEFPY (bgp_imexport_vrf,
- bgp_imexport_vrf_cmd,
- "[no] import vrf NAME$import_name",
- NO_STR
- "Import routes from another VRF\n"
- "VRF to import from\n"
- "The name of the VRF\n")
+DEFPY(bgp_imexport_vrf, bgp_imexport_vrf_cmd,
+ "[no] import vrf VIEWVRFNAME$import_name",
+ NO_STR
+ "Import routes from another VRF\n"
+ "VRF to import from\n"
+ "The name of the VRF\n")
{
VTY_DECLVAR_CONTEXT(bgp, bgp);
struct listnode *node;