Allow overriding MTU for L3 interfaces
This commit is contained in:
parent
c395fe22c7
commit
4420846817
|
@ -1,6 +1,6 @@
|
||||||
{% for iface in interfaces | selectattr('name', 'match', '^lan') %}
|
{% for iface in interfaces | selectattr('name', 'match', '^lan') %}
|
||||||
auto {{ iface.name }}
|
auto {{ iface.name }}
|
||||||
iface {{ iface.name }}
|
iface {{ iface.name }}
|
||||||
mtu 9216
|
mtu {{ iface.mtu | default('9216', true) }}
|
||||||
|
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
|
Loading…
Reference in a new issue