summaryrefslogtreecommitdiff
path: root/data/templates
diff options
context:
space:
mode:
authorViacheslav Hletenko <v.gletenko@vyos.io>2022-02-07 11:40:22 +0000
committerViacheslav Hletenko <v.gletenko@vyos.io>2022-02-07 11:40:22 +0000
commit20090e7df2cc74763e5917c3b97b2262fbd909fc (patch)
treefebbc1a7ee94cc1c8c2e249510d7f8b97e499008 /data/templates
parentb4185f8356d69476292906ebe32daf1c4867601a (diff)
downloadvyos-1x-20090e7df2cc74763e5917c3b97b2262fbd909fc.tar.gz
vyos-1x-20090e7df2cc74763e5917c3b97b2262fbd909fc.zip
dhcp: T3600: Fix DHCP static table dhcp-interface route
Static table dhcp-interface route required table in template Without table this route will be placed to table 'main' by default
Diffstat (limited to 'data/templates')
-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 3b432b49b..86c7470ca 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 }} {{ prefix_config.dhcp_interface }}
+{{ ip_ipv6 }} route {{ prefix }} {{ next_hop }} {{ prefix_config.dhcp_interface }} {{ 'table ' + table if table is defined and table is not none }}
{% endif %}
{% endif %}
{% if prefix_config.interface is defined and prefix_config.interface is not none %}