{% extends 'node/network/device_form.html' %} {% block toolbar_ipv6 %}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.ip6_config}} {% if form.ip6_config.errors %} {{form.ip6_config.errors|striptags}} {% else %} Select DHCP to automatically obtain IP address or Static to manually specify it. It is recommended to set configuration type to None unless you have configured IPv6 in your network yourself. {%endif%}
{{form.ip6_address}} {% if form.ip6_address.errors %} {{form.ip6_address.errors|striptags}} {% else %} Specify static IPv6 address. This setting is ignored when address is assigned using DHCP or set to None. {%endif%}
{{form.ip6_subnet}} {% if form.ip6_subnet.errors %} {{form.ip6_subnet.errors|striptags}} {% else %} Specify subnet prefix length. For example, 64. This setting is ignored when address is assigned using DHCP or set to None. {%endif%}
{{form.ip6_gateway}} {% if form.ip6_gateway.errors %} {{form.ip6_gateway.errors|striptags}} {% else %} Specify IP address of the default gateway. This setting is ignored when address is assigned using DHCP or set to None. {%endif%}
{{form.ip6_dns_srv1}} {% if form.ip6_dns_srv1.errors %} {{form.ip6_dns_srv1.errors|striptags}} {% else %} Specify IP address of the first DNS server. This setting is ignored when DNS info is assigned using DHCP. {%endif%}
{{form.ip6_dns_srv2}} {% if form.ip6_dns_srv2.errors %} {{form.ip6_dns_srv2.errors|striptags}} {% else %} Specify IP address of the second DNS server (optional). This setting is ignored when DNS info is assigned using DHCP. {%endif%}
{{form.ip6_dns_search}} {% if form.ip6_dns_search.errors %} {{form.ip6_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 %}