Add MTU option to dhcp
This commit is contained in:
parent
c05c0cafcd
commit
088e0f7de1
@ -1,5 +1,6 @@
|
|||||||
---
|
---
|
||||||
|
|
||||||
|
dhcp_mtu: 1280
|
||||||
dhcp_first: "{{ batman_ipv4 | ipaddr('512') | ipaddr('address') }}"
|
dhcp_first: "{{ batman_ipv4 | ipaddr('512') | ipaddr('address') }}"
|
||||||
dhcp_last: "{{ batman_ipv4 | ipaddr('2558') | ipaddr('address') }}"
|
dhcp_last: "{{ batman_ipv4 | ipaddr('2558') | ipaddr('address') }}"
|
||||||
name_server: "{{ batman_ipv4 | ipaddr('address') }}"
|
name_server: "{{ batman_ipv4 | ipaddr('address') }}"
|
||||||
|
@ -24,6 +24,7 @@ log-facility local7;
|
|||||||
# Freifunk Regensburg
|
# Freifunk Regensburg
|
||||||
subnet {{ batman_ipv4 | ipaddr('network') }} netmask {{ batman_ipv4 | ipaddr('netmask') }} {
|
subnet {{ batman_ipv4 | ipaddr('network') }} netmask {{ batman_ipv4 | ipaddr('netmask') }} {
|
||||||
option routers {{ batman_ipv4 | ipaddr('address') }};
|
option routers {{ batman_ipv4 | ipaddr('address') }};
|
||||||
|
option interface-mtu {{ dhcp_mtu }};
|
||||||
pool {
|
pool {
|
||||||
range {{ dhcp_first }} {{ dhcp_last }} ;
|
range {{ dhcp_first }} {{ dhcp_last }} ;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user