{% extends 'squid/settings/index.html' %} {% block toolbar_dns %}class="active"{%endblock%} {% block page_comment %}

Global DNS settings.

{% endblock %} {% block page_content %}
{% block member_heading%}{%endblock%} {% if form.non_field_errors %}
{% for error in form.non_field_errors %} {{ error|escape }} {% endfor %}
{% endif %}
{% csrf_token %}
{{form.dns_timeout}}
{% if form.dns_timeout.errors %} {{form.dns_timeout.errors|striptags}} {% else %} Specify here the DNS query timeout in seconds. If no response is received to a DNS query within this time all DNS servers for the queried domain are assumed to be unavailable. Default value is 30 seconds. {%endif%}
{{form.dns_nameservers}} {% if form.dns_nameservers.errors %} {{form.dns_nameservers.errors|striptags}} {% else %} Use this if you want to explicitly specify a list of DNS name servers (IP addresses) that Squid should connect to instead of those given in your /etc/resolv.conf file. Default value is empty. {%endif%}
{{form.append_domain}} {% if form.append_domain.errors %} {{form.append_domain.errors|striptags}} {% else %} Appends fully qualified domain name to a hostname without any dots in it. Must begin with a period. Default value is empty. {%endif%}
{% endblock %}