summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2021-08-20 16:19:50 +0200
committerChristian Poessinger <christian@poessinger.com>2021-08-21 15:26:35 +0200
commit5141a8ca3a69108d20c8c82d1fa737f0e17ac974 (patch)
treefe4c1deb8b2631d759c77e98526c59e0a003e937
parente1debb1b57a445fa2357f7dbb5b3f04383f8b1e3 (diff)
downloadvyos-1x-5141a8ca3a69108d20c8c82d1fa737f0e17ac974.tar.gz
vyos-1x-5141a8ca3a69108d20c8c82d1fa737f0e17ac974.zip
route: static: T2450: add next-hop interface on dhcp routes
-rw-r--r--data/templates/frr/static_routes_macro.j22
1 files changed, 1 insertions, 1 deletions
diff --git a/data/templates/frr/static_routes_macro.j2 b/data/templates/frr/static_routes_macro.j2
index f10b58047..3b432b49b 100644
--- a/data/templates/frr/static_routes_macro.j2
+++ b/data/templates/frr/static_routes_macro.j2
@@ -5,7 +5,7 @@
{% if prefix_config.dhcp_interface is defined and prefix_config.dhcp_interface is not none %}
{% set next_hop = prefix_config.dhcp_interface | get_dhcp_router %}
{% if next_hop is defined and next_hop is not none %}
-{{ ip_ipv6 }} route {{ prefix }} {{ next_hop }}
+{{ ip_ipv6 }} route {{ prefix }} {{ next_hop }} {{ prefix_config.dhcp_interface }}
{% endif %}
{% endif %}
{% if prefix_config.interface is defined and prefix_config.interface is not none %}