mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-02-11 08:23:49 +00:00
38 lines
1.0 KiB
HTML
38 lines
1.0 KiB
HTML
{% extends "app.html" %}
|
|
{% comment %}
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
{% endcomment %}
|
|
|
|
{% load i18n %}
|
|
|
|
{% block configuration %}
|
|
<h3>{% trans "NAT type" %}</h3>
|
|
|
|
<p>
|
|
{% 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 %}
|
|
</p>
|
|
|
|
<h3>{% trans "Last update" %}</h3>
|
|
|
|
<p>{{ last_update }}</p>
|
|
|
|
{% endblock %}
|