summaryrefslogtreecommitdiff
path: root/data/templates
diff options
context:
space:
mode:
authorChristian Breunig <christian@breunig.cc>2023-04-29 08:21:07 +0200
committerGitHub <noreply@github.com>2023-04-29 08:21:07 +0200
commit0ac716ba64a49dc2df2ae5356bf1b6d07a7e7866 (patch)
tree69da7665b6d75e604ae8a6f7db7cae95f0051e7c /data/templates
parent78a9eaaf8be3daa980b91abf254d484075d103e8 (diff)
parent98a072a8d8d95a8a15353b0b771d1724a5520353 (diff)
downloadvyos-1x-0ac716ba64a49dc2df2ae5356bf1b6d07a7e7866.tar.gz
vyos-1x-0ac716ba64a49dc2df2ae5356bf1b6d07a7e7866.zip
Merge pull request #1967 from fett0/T5161
BFD : T5161: add feature bfd static monitoring
Diffstat (limited to 'data/templates')
-rw-r--r--data/templates/frr/static_routes_macro.j27
1 files changed, 6 insertions, 1 deletions
diff --git a/data/templates/frr/static_routes_macro.j2 b/data/templates/frr/static_routes_macro.j2
index 1c64ac58b..8afd4a68a 100644
--- a/data/templates/frr/static_routes_macro.j2
+++ b/data/templates/frr/static_routes_macro.j2
@@ -18,7 +18,12 @@
{% endif %}
{% if prefix_config.next_hop is vyos_defined and prefix_config.next_hop is not none %}
{% for next_hop, next_hop_config in prefix_config.next_hop.items() if next_hop_config.disable is not defined %}
-{{ ip_ipv6 }} route {{ prefix }} {{ next_hop }} {{ next_hop_config.interface if next_hop_config.interface is vyos_defined }} {{ next_hop_config.distance if next_hop_config.distance is vyos_defined }} {{ 'nexthop-vrf ' ~ next_hop_config.vrf if next_hop_config.vrf is vyos_defined }} {{ 'table ' ~ table if table is vyos_defined }}
+{{ ip_ipv6 }} route {{ prefix }} {{ next_hop }} {{ next_hop_config.interface if next_hop_config.interface is vyos_defined }} {{ next_hop_config.distance if next_hop_config.distance is vyos_defined }} {{ 'nexthop-vrf ' ~ next_hop_config.vrf if next_hop_config.vrf is vyos_defined }} {{ 'bfd profile ' ~ next_hop_config.bfd.profile if next_hop_config.bfd.profile is vyos_defined }} {{ 'table ' ~ table if table is vyos_defined }}
+{% if next_hop_config.bfd.multi_hop.source is vyos_defined %}
+{% for source, source_config in next_hop_config.bfd.multi_hop.source.items() %}
+{{ ip_ipv6 }} route {{ prefix }} {{ next_hop }} bfd multi-hop source {{ source }} profile {{ source_config.profile }}
+{% endfor %}
+{% endif %}
{% endfor %}
{% endif %}
{% endmacro %}