summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2021-01-24 15:35:38 +0100
committerChristian Poessinger <christian@poessinger.com>2021-01-24 15:35:38 +0100
commit5ab6882f88036722f533f37331d9e5b63631f4b2 (patch)
tree3ef49f5ed003fb2dd129767dfaad2f321ffbde3b
parent42f91ee461589f1a407a2ceec8c63dd889f4a609 (diff)
downloadvyos-1x-5ab6882f88036722f533f37331d9e5b63631f4b2.tar.gz
vyos-1x-5ab6882f88036722f533f37331d9e5b63631f4b2.zip
bgp: T2347: bugfix import/export route-map
There can be both an import and an export route-map - the Jinja2 template syntax only allowed one direction and not the other.
-rw-r--r--data/templates/frr/bgp.frr.tmpl3
1 files changed, 2 insertions, 1 deletions
diff --git a/data/templates/frr/bgp.frr.tmpl b/data/templates/frr/bgp.frr.tmpl
index 2deee245d..cba62cce1 100644
--- a/data/templates/frr/bgp.frr.tmpl
+++ b/data/templates/frr/bgp.frr.tmpl
@@ -124,7 +124,8 @@
{% if config.address_family[af].route_map is defined and config.address_family[af].route_map is not none %}
{% if config.address_family[af].route_map.export is defined and config.address_family[af].route_map.export is not none %}
neighbor {{ neighbor }} route-map {{ config.address_family[af].route_map.export }} out
-{% elif config.address_family[af].route_map.import is defined and config.address_family[af].route_map.import is not none %}
+{% endif %}
+{% if config.address_family[af].route_map.import is defined and config.address_family[af].route_map.import is not none %}
neighbor {{ neighbor }} route-map {{ config.address_family[af].route_map.import }} in
{% endif %}
{% endif %}