diff options
author | Christian Poessinger <christian@poessinger.com> | 2021-06-08 08:26:02 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2021-06-08 08:26:02 +0200 |
commit | bdba331cb0501cc2db6aeaa486d7763e184133ce (patch) | |
tree | b1dd5f46e6dfecd6c0334c6fdb25f0956d132cae /data/templates | |
parent | e69879df07e10ce421683f436a4b41410d8c6dcb (diff) | |
download | vyos-1x-bdba331cb0501cc2db6aeaa486d7763e184133ce.tar.gz vyos-1x-bdba331cb0501cc2db6aeaa486d7763e184133ce.zip |
policy: T3605: add support to prefer IPv6 global next-hop address in route-map
Diffstat (limited to 'data/templates')
-rw-r--r-- | data/templates/frr/policy.frr.tmpl | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/data/templates/frr/policy.frr.tmpl b/data/templates/frr/policy.frr.tmpl index 881afa21f..507ee2a14 100644 --- a/data/templates/frr/policy.frr.tmpl +++ b/data/templates/frr/policy.frr.tmpl @@ -262,6 +262,9 @@ route-map {{ route_map }} {{ rule_config.action }} {{ rule }} {% if rule_config.set.ipv6_next_hop is defined and rule_config.set.ipv6_next_hop.local is defined and rule_config.set.ipv6_next_hop.local is not none %} set ipv6 next-hop local {{ rule_config.set.ipv6_next_hop.local }} {% endif %} +{% if rule_config.set.ipv6_next_hop is defined and rule_config.set.ipv6_next_hop.prefer_global is defined %} + set ipv6 next-hop prefer-global +{% endif %} {% if rule_config.set.large_community is defined and rule_config.set.large_community is not none %} set large-community {{ rule_config.set.large_community }} {% endif %} |