summaryrefslogtreecommitdiff
path: root/data/templates
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2021-08-26 18:26:22 +0200
committerGitHub <noreply@github.com>2021-08-26 18:26:22 +0200
commitc2dfb24a0672ea93a4262feeddd6929275eb08cf (patch)
treef973d7518971a5be4196d77fcba62a89c99e1ef5 /data/templates
parent9471a9bac452c2c5600ef5d91dd842c8e084e8d6 (diff)
parent8681a62fbb413ad3a613ebedb430919a940beef7 (diff)
downloadvyos-1x-c2dfb24a0672ea93a4262feeddd6929275eb08cf.tar.gz
vyos-1x-c2dfb24a0672ea93a4262feeddd6929275eb08cf.zip
Merge pull request #965 from c-po/t3739-evpn-route-map
bgp: evpn: T3739: add route-map match support
Diffstat (limited to 'data/templates')
-rw-r--r--data/templates/frr/policy.frr.tmpl12
1 files changed, 12 insertions, 0 deletions
diff --git a/data/templates/frr/policy.frr.tmpl b/data/templates/frr/policy.frr.tmpl
index 57ab0f363..51adc1902 100644
--- a/data/templates/frr/policy.frr.tmpl
+++ b/data/templates/frr/policy.frr.tmpl
@@ -165,6 +165,18 @@ route-map {{ route_map }} {{ rule_config.action }} {{ rule }}
{% if rule_config.match.extcommunity is defined and rule_config.match.extcommunity is not none %}
match extcommunity {{ rule_config.match.extcommunity }}
{% endif %}
+{% if rule_config.match.evpn is defined and rule_config.match.evpn.default_route is defined %}
+ match evpn default-route
+{% endif %}
+{% if rule_config.match.evpn is defined and rule_config.match.evpn.rd is defined and rule_config.match.evpn.rd is not none %}
+ match evpn rd {{ rule_config.match.evpn.rd }}
+{% endif %}
+{% if rule_config.match.evpn is defined and rule_config.match.evpn.route_type is defined and rule_config.match.evpn.route_type is not none %}
+ match evpn route-type {{ rule_config.match.evpn.route_type }}
+{% endif %}
+{% if rule_config.match.evpn is defined and rule_config.match.evpn.vni is defined and rule_config.match.evpn.vni is not none %}
+ match evpn vni {{ rule_config.match.evpn.vni }}
+{% endif %}
{% if rule_config.match.interface is defined and rule_config.match.interface is not none %}
match interface {{ rule_config.match.interface }}
{% endif %}