{% extends "base.html" %} {% block title %}VPN-Profile - {{ gateway.name }} - mGuard VPN{% endblock %} {% block content %}

VPN-Profile {{ profiles|length }}

Zurück Neues Profil
{% if profiles %}
{% for profile in profiles %} {% endfor %}
Priorität Name VPN-Server Common Name Status Gültigkeit Aktionen
{{ profile.priority }} {{ profile.name }} {% if profile.priority == 1 %} Primär {% endif %} {% if profile.vpn_server %} {{ profile.vpn_server.name }}
{{ profile.vpn_server.hostname }}:{{ profile.vpn_server.port }}/{{ profile.vpn_server.protocol.value }} {% else %} - {% endif %}
{{ profile.cert_cn }} {% if profile.status.value == 'active' %} Aktiv {% elif profile.status.value == 'provisioned' %} Provisioniert {% elif profile.status.value == 'pending' %} Ausstehend {% elif profile.status.value == 'expired' %} Abgelaufen {% elif profile.status.value == 'revoked' %} Widerrufen {% else %} {{ profile.status.value }} {% endif %} {% if profile.valid_until %} bis {{ profile.valid_until.strftime('%d.%m.%Y') }} {% if profile.days_until_expiry is defined %} {% if profile.days_until_expiry <= 30 %}
{{ profile.days_until_expiry }} Tage {% endif %} {% endif %}
{% else %} - {% endif %}
Hinweis zur Priorität

Profile mit niedrigerer Prioritätsnummer werden bevorzugt verwendet. Bei Verbindungsproblemen mit dem primären Server (Priorität 1) versucht der Client automatisch, sich mit dem nächsten Profil zu verbinden (Failover).

{% else %}

Keine VPN-Profile vorhanden

Erstellen Sie ein VPN-Profil, um dieses Gateway mit einem VPN-Server zu verbinden.

Erstes Profil erstellen
{% endif %} {% endblock %}