From ca0ce994371460bb038776a4c7b4fc9491a7afad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bastian=20M=C3=A4user?= Date: Sat, 21 Jul 2018 17:18:18 +0200 Subject: [PATCH] Changed MTU --- roles/dhcpd/templates/dhcpd.conf.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/dhcpd/templates/dhcpd.conf.j2 b/roles/dhcpd/templates/dhcpd.conf.j2 index 2b10c6a..298569c 100644 --- a/roles/dhcpd/templates/dhcpd.conf.j2 +++ b/roles/dhcpd/templates/dhcpd.conf.j2 @@ -24,7 +24,7 @@ log-facility local7; # Freifunk Regensburg subnet {{ batman_ipv4 | ipaddr('network') }} netmask {{ batman_ipv4 | ipaddr('netmask') }} { option routers {{ batman_ipv4 | ipaddr('address') }}; - option interface-mtu {{ mtu }}; + option interface-mtu {{ (mtu | int) - 32 }}; pool { range {{ dhcpd_first }} {{ dhcpd_last }} ; }