{% extends "app.html" %} {% comment %} # SPDX-License-Identifier: AGPL-3.0-or-later {% endcomment %} {% load i18n %} {% block configuration %}

{% trans "NAT type" %}

{% if nat_unchecked %} {% blocktrans trimmed %} NAT type was not detected yet. If you do not provide an "IP Check URL", we will not detect a NAT type. {% endblocktrans %} {% else %} {% if no_nat %} {% trans "Direct connection to the Internet." %} {% else %} {% blocktrans trimmed %} Behind NAT. This means that Dynamic DNS service will poll the "URL to look up public IP" for changes (the "URL to look up public IP" entry is needed for this, otherwise IP changes will not be detected). In case the WAN IP changes, it may take up to {{ timer }} minutes until your DNS entry is updated. {% endblocktrans %} {% endif %} {% endif %}

{% trans "Last update" %}

{{ last_update }}

{% endblock %}