{% extends 'node/network/device_form.html' %} {% block toolbar_ipv4 %}class="active"{%endblock%} {% block tab_content %}

Please note, changing network settings affects all running processes and requires full system restart.

{% if form.non_field_errors %}
ERROR: {% for error in form.non_field_errors %} {{ error|escape }} {% endfor %} {% if form.errors.traceback %}
{{ form.errors.traceback }}
{% endif %}
{% endif %}
{% csrf_token %}
{{form.ip4_config}} {% if form.ip4_config.errors %} {{form.ip4_config.errors|striptags}} {% else %} Select DHCP to automatically obtain IP address or Static to manually specify it. It is recommended to use static addresses. {%endif%}
{{form.ip4_address}} {% if form.ip4_address.errors %} {{form.ip4_address.errors|striptags}} {% else %} Specify static IP address. For example, 192.168.1.10. This setting is ignored when address is assigned using DHCP. {%endif%}
{{form.ip4_netmask}} {% if form.ip4_netmask.errors %} {{form.ip4_netmask.errors|striptags}} {% else %} Specify netmask. For example, 255.255.255.0. This setting is ignored when address is assigned using DHCP. {%endif%}
{{form.ip4_gateway}} {% if form.ip4_gateway.errors %} {{form.ip4_gateway.errors|striptags}} {% else %} Specify IP address of the default gateway. For example, 192.168.1.1. This setting is ignored when address is assigned using DHCP. {%endif%}
{{form.ip4_dns_srv1}} {% if form.ip4_dns_srv1.errors %} {{form.ip4_dns_srv1.errors|striptags}} {% else %} Specify IP address of the first DNS server. For example, 192.168.1.3. This setting is ignored when DNS info is assigned using DHCP. {%endif%}
{{form.ip4_dns_srv2}} {% if form.ip4_dns_srv2.errors %} {{form.ip4_dns_srv2.errors|striptags}} {% else %} Specify IP address of the second DNS server (optional). For example, 192.168.1.4. This setting is ignored when DNS info is assigned using DHCP. {%endif%}
{{form.ip4_dns_search}} {% if form.ip4_dns_search.errors %} {{form.ip4_dns_search.errors|striptags}} {% else %} Specify suffix to be appended to records without domain part. If you are using Active Directory specify here the lowercase name of your domain, for example, example.lan. {%endif%}
Cancel
{% endblock %}