{% extends "base.html" %} {% block title %}{{ profile.name }} - {{ gateway.name }} - mGuard VPN{% endblock %} {% block content %}
| Name | {{ profile.name }} |
|---|---|
| Beschreibung | {{ profile.description or '-' }} |
| Status | {% 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 %} |
| Priorität | {{ profile.priority }} |
| Aktiv | {% if profile.is_active %} Ja {% else %} Nein {% endif %} |
| Erstellt | {{ profile.created_at.strftime('%d.%m.%Y %H:%M') }} |
| Zuletzt provisioniert | {{ profile.provisioned_at.strftime('%d.%m.%Y %H:%M') }} |
| Server | {{ profile.vpn_server.name }} |
|---|---|
| Hostname | {{ profile.vpn_server.hostname }} |
| Port / Protokoll | {{ profile.vpn_server.port }} / {{ profile.vpn_server.protocol.value|upper }} |
| VPN-Netzwerk | {{ profile.vpn_server.vpn_network }}/{{ profile.vpn_server.vpn_netmask }} |
Kein VPN-Server zugewiesen
{% endif %}| Common Name | {{ profile.cert_cn }} |
|---|---|
| Gültig von | {{ profile.valid_from.strftime('%d.%m.%Y') if profile.valid_from else '-' }} |
| Gültig bis | {% if profile.valid_until %} {{ profile.valid_until.strftime('%d.%m.%Y') }} {% if profile.is_expired %} Abgelaufen {% elif profile.days_until_expiry <= 30 %} {{ profile.days_until_expiry }} Tage {% endif %} {% else %} - {% endif %} |
| CA | {% if profile.certificate_authority %} {{ profile.certificate_authority.name }} {% else %} - {% endif %} |
{{ profile.client_cert }}
Laden Sie die OpenVPN-Konfigurationsdatei herunter und importieren Sie sie auf dem mGuard-Router.
{{ profile.name }}.ovpn herunterladen {% if profile.provisioned_at %}Durch das Widerrufen des Zertifikats wird der Zugang zum VPN-Server gesperrt. Diese Aktion kann nicht rückgängig gemacht werden.