summaryrefslogtreecommitdiff
path: root/data/templates/dhcp-relay
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2020-11-29 20:13:08 +0100
committerChristian Poessinger <christian@poessinger.com>2020-11-29 20:13:08 +0100
commitea3c4544634a9d916deff4bd6cdce1522d395a0d (patch)
tree1dc6ba72b8544090a56ab9b9335a7e4a5155fe2e /data/templates/dhcp-relay
parent4d3acd6e6fb0b5600cc65bb962c99305f10f92c1 (diff)
downloadvyos-1x-ea3c4544634a9d916deff4bd6cdce1522d395a0d.tar.gz
vyos-1x-ea3c4544634a9d916deff4bd6cdce1522d395a0d.zip
dhcpv6-relay: T3095: migrate service to get_config_dict()
Diffstat (limited to 'data/templates/dhcp-relay')
-rw-r--r--data/templates/dhcp-relay/dhcrelay6.conf.tmpl17
1 files changed, 17 insertions, 0 deletions
diff --git a/data/templates/dhcp-relay/dhcrelay6.conf.tmpl b/data/templates/dhcp-relay/dhcrelay6.conf.tmpl
new file mode 100644
index 000000000..165216592
--- /dev/null
+++ b/data/templates/dhcp-relay/dhcrelay6.conf.tmpl
@@ -0,0 +1,17 @@
+### Autogenerated by dhcpv6_relay.py ###
+
+{# upstream_interface is mandatory so it's always present #}
+{% set upstream = namespace(value='') %}
+{% for interface, config in upstream_interface.items() %}
+{% for address in config.address %}
+{% set upstream.value = upstream.value + '-u ' + address + '%' + interface + ' ' %}
+{% endfor %}
+{% endfor %}
+{# listen_interface is mandatory so it's always present #}
+{% set listen = namespace(value='') %}
+{% for interface, config in listen_interface.items() %}
+{% set listen.value = listen.value + '-l ' + config.address + '%' + interface + ' ' %}
+{% endfor %}
+
+OPTIONS="{{ listen.value }} {{ upstream.value }} -c {{ max_hop_count }} {{ '-I' if use_interface_id_option is defined }}"
+