summaryrefslogtreecommitdiff
path: root/data/templates/dhcp-relay/dhcrelay.conf.j2
diff options
context:
space:
mode:
Diffstat (limited to 'data/templates/dhcp-relay/dhcrelay.conf.j2')
-rw-r--r--data/templates/dhcp-relay/dhcrelay.conf.j29
1 files changed, 9 insertions, 0 deletions
diff --git a/data/templates/dhcp-relay/dhcrelay.conf.j2 b/data/templates/dhcp-relay/dhcrelay.conf.j2
new file mode 100644
index 0000000..71a3954
--- /dev/null
+++ b/data/templates/dhcp-relay/dhcrelay.conf.j2
@@ -0,0 +1,9 @@
+### Autogenerated by service_dhcp-relay.py ###
+
+{% set max_size = '-A ' ~ relay_options.max_size if relay_options.max_size is vyos_defined %}
+{# hop_count and relay_agents_packets is a default option, thus it is always present #}
+{% if interface is vyos_defined %}
+OPTIONS="-c {{ relay_options.hop_count }} -a -m {{ relay_options.relay_agents_packets }} {{ max_size }} -i {{ interface | join(' -i ') }} {{ server | join(' ') }}"
+{% else %}
+OPTIONS="-c {{ relay_options.hop_count }} -a -m {{ relay_options.relay_agents_packets }} {{ max_size }} -id {{ listen_interface | join(' -id ') }} -iu {{ upstream_interface | join(' -iu ') }} {{ server | join(' ') }}"
+{% endif %}