{% extends 'squid/auth/active_directory.html' %} {% block auth_ad_groups %}class="active"{%endblock%} {% block tab_content %}

When proxy authentication is configured, web filter will try to lookup security groups of the browsing user in Active Directory and will choose correct policy for this user based on his group membership. The following form allows to configure cache period of positive/negative lookups and LDAP connection timeouts.

 

{% if form.non_field_errors %}
{% for error in form.non_field_errors %}{{ error|escape }}{% endfor %}
{% endif %}
{% csrf_token %}
{{form.cachetime}}
{% if form.cachetime.errors %} {{form.cachetime.errors|striptags}} {% else %} Number of seconds to cache results of LDAP search. If LDAP server is not available for any reason then result is negative and user considered not found. {%endif%}
{{form.timeout}}
{% if form.timeout.errors %} {{form.timeout.errors|striptags}} {% else %} Number of seconds to wait for successful connection to LDAP server and for search results. If LDAP server is not available for any reason web filter will wait up to specified number of seconds for every HTTP(S) request and browsing will be very slow. {%endif%}
{% endblock %}