Prefix dhcpd related variables with dhcpd

This commit is contained in:
Markus 2017-04-03 22:35:02 +02:00
parent 7f3d33f31c
commit cee870fb40
2 changed files with 5 additions and 5 deletions

View File

@ -1,6 +1,6 @@
---
dhcp_mtu: 1280
dhcp_first: "{{ batman_ipv4 | ipaddr('512') | ipaddr('address') }}"
dhcp_last: "{{ batman_ipv4 | ipaddr('2558') | ipaddr('address') }}"
dhcpd_mtu: 1280
dhcpd_first: "{{ batman_ipv4 | ipaddr('512') | ipaddr('address') }}"
dhcpd_last: "{{ batman_ipv4 | ipaddr('2558') | ipaddr('address') }}"
name_server: "{{ batman_ipv4 | ipaddr('address') }}"

View File

@ -24,8 +24,8 @@ log-facility local7;
# Freifunk Regensburg
subnet {{ batman_ipv4 | ipaddr('network') }} netmask {{ batman_ipv4 | ipaddr('netmask') }} {
option routers {{ batman_ipv4 | ipaddr('address') }};
option interface-mtu {{ dhcp_mtu }};
option interface-mtu {{ dhcpd_mtu }};
pool {
range {{ dhcp_first }} {{ dhcp_last }} ;
range {{ dhcpd_first }} {{ dhcpd_last }} ;
}
}