summaryrefslogtreecommitdiff
path: root/data/templates/ipsec/charon/dhcp.conf.j2
diff options
context:
space:
mode:
Diffstat (limited to 'data/templates/ipsec/charon/dhcp.conf.j2')
-rw-r--r--data/templates/ipsec/charon/dhcp.conf.j220
1 files changed, 20 insertions, 0 deletions
diff --git a/data/templates/ipsec/charon/dhcp.conf.j2 b/data/templates/ipsec/charon/dhcp.conf.j2
new file mode 100644
index 0000000..aaa5613
--- /dev/null
+++ b/data/templates/ipsec/charon/dhcp.conf.j2
@@ -0,0 +1,20 @@
+dhcp {
+ load = yes
+{% if remote_access.dhcp.interface is vyos_defined %}
+ interface = {{ remote_access.dhcp.interface }}
+{% endif %}
+{% if remote_access.dhcp.server is vyos_defined %}
+ server = {{ remote_access.dhcp.server }}
+{% endif %}
+
+ # Always use the configured server address.
+ # force_server_address = no
+
+ # Derive user-defined MAC address from hash of IKE identity and send client
+ # identity DHCP option.
+ # identity_lease = no
+
+ # Use the DHCP server port (67) as source port when a unicast server address
+ # is configured.
+ # use_server_port = no
+}