summaryrefslogtreecommitdiff
path: root/data/templates/frr/zebra.route-map.frr.j2
diff options
context:
space:
mode:
authorChristian Breunig <christian@breunig.cc>2023-04-10 10:57:34 +0200
committerChristian Breunig <christian@breunig.cc>2023-04-13 09:01:31 +0200
commitb454ddc8c2cc0edbdc832bd60ef03a1819a6d8d6 (patch)
tree530343f475c58af633766d13928d289d6edf0a2a /data/templates/frr/zebra.route-map.frr.j2
parentf9aa4c6312a773c216e65400db7e66849d5a02c7 (diff)
downloadvyos-1x-b454ddc8c2cc0edbdc832bd60ef03a1819a6d8d6.tar.gz
vyos-1x-b454ddc8c2cc0edbdc832bd60ef03a1819a6d8d6.zip
T5150: initial VRF support for Kernel/Zebra route-map filtering
Diffstat (limited to 'data/templates/frr/zebra.route-map.frr.j2')
-rw-r--r--data/templates/frr/zebra.route-map.frr.j226
1 files changed, 7 insertions, 19 deletions
diff --git a/data/templates/frr/zebra.route-map.frr.j2 b/data/templates/frr/zebra.route-map.frr.j2
index bd461d904..8e18abbde 100644
--- a/data/templates/frr/zebra.route-map.frr.j2
+++ b/data/templates/frr/zebra.route-map.frr.j2
@@ -1,21 +1,9 @@
!
-{% if vrf is vyos_defined %}
-vrf {{ vrf }}
-{% if protocol is vyos_defined %}
-{% for prot, prot_config in protocol.items() %}
- {{ afi }} protocol {{ protocol }} route-map {{ prot_config.route_map }}
-{% endfor %}
-{% endif %}
- exit-vrf
-!
-{% else %}
-{% if protocol is vyos_defined %}
-{% for prot, prot_config in protocol.items() %}
-{% if prot is vyos_defined('ospfv3') %}
-{% set prot = 'ospf6' %}
-{% endif %}
-{{ afi }} protocol {{ prot }} route-map {{ prot_config.route_map }}
-{% endfor %}
-{% endif %}
+{% if protocol is vyos_defined %}
+{% for protocol_name, protocol_config in protocol.items() %}
+{% if protocol_name is vyos_defined('ospfv3') %}
+{% set protocol_name = 'ospf6' %}
+{% endif %}
+{{ afi }} protocol {{ protocol_name }} route-map {{ protocol_config.route_map }}
+{% endfor %}
{% endif %}
-!