Skip to content
Snippets Groups Projects
Commit 5c5100da authored by Rafael László's avatar Rafael László :speech_balloon:
Browse files

Add mtu to dhcp

parent 5d011c95
No related branches found
No related tags found
No related merge requests found
...@@ -12,7 +12,10 @@ subnet {{ dhcp.subnet }} netmask {{ dhcp.netmask }} { ...@@ -12,7 +12,10 @@ subnet {{ dhcp.subnet }} netmask {{ dhcp.netmask }} {
range {{ dhcp.range.start }} {{ dhcp.range.end }}; range {{ dhcp.range.start }} {{ dhcp.range.end }};
option routers {{ dhcp.router }}; option routers {{ dhcp.router }};
option domain-name-servers {{ dhcp.name_servers }}; option domain-name-servers {{ dhcp.name_servers }};
{% if dhcp.search %} {% if dhcp.mtu is defined %}
option interface-mtu {{ dhcp.mtu }};
{% endif %}
{% if dhcp.search is defined %}
option domain-name "{{ dhcp.search }}"; option domain-name "{{ dhcp.search }}";
{% endif %} {% endif %}
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment