Dieser Artikel erklärt, wie man 2FA (Zwei-Faktor-Authentifizierung) für OpenVPN mit dem Google Authenticator PAM-Plugin konfiguriert. Das Konfigurationsbeispiel unten wird auf einem Debian Bullseye Server durchgeführt. Wenn Sie dies über eine Remote-Verbindung tun, sollten Sie einen Backup-Zugang zum Server haben, falls während der Konfiguration etwas schief geht.
Nachdem Sie openvpn im Allgemeinen installiert und konfiguriert haben, installieren Sie das Paket libpam-google-authenticator
:
sudo apt install libpam-google-authenticator
Erstellen Sie eine OpenVPN-spezifische PAM-Konfiguration:
cat /etc/pam.d/openvpn < EOF
@include common-account
auth required pam_google_authenticator.so
EOF
Mit dieser Konfiguration wird das PAM-Modul google authenticator für den OpenVPN-Daemon aktiviert.
In der OpenVPN-Konfiguration muss die folgende Zeile hinzugefügt werden:
plugin /usr/lib/x86_64-linux-gnu/openvpn/plugins/openvpn-plugin-auth-pam.so openvpn
Um den Google Authenticator für den VPN-Benutzer zu aktivieren, muss der Benutzer google-authenticator
auf dem Server ausführen. Die folgenden Fragen während der Konfiguration sollten entsprechend Ihren Bedürfnissen beantwortet werden.
google-authenticator
Do you want authentication tokens to be time-based (y/n) y
<QRCODE>
Your new secret key is: <secret>
Your verification code is: <number>
Your emergency scratch codes are:
<number>
....
Do you want me to update your "/home/user/.google_authenticator" file? (y/n) y
Do you want to disallow multiple uses of the same authentication
token? This restricts you to one login about every 30s, but it increases
your chances to notice or even prevent man-in-the-middle attacks (y/n) y
y default, a new token is generated every 30 seconds by the mobile app.
In order to compensate for possible time-skew between the client and the server,
we allow an extra token before and after the current time. This allows for a
time skew of up to 30 seconds between authentication server and client. If you
experience problems with poor time synchronization, you can increase the window
from its default size of 3 permitted codes (one previous code, the current
code, the next code) to 17 permitted codes (the 8 previous codes, the current
code, and the 8 next codes). This will permit for a time skew of up to 4 minutes
between client and server.
Do you want to do so? (y/n) y
If the computer that you are logging into isn't hardened against brute-force
login attempts, you can enable rate-limiting for the authentication module.
By default, this limits attackers to no more than 3 login attempts every 30s.
Do you want to enable rate-limiting? (y/n) y
Der QR-Code kann nun mit einer mobilen App wie Google Authenticator oder ähnlichen Anwendungen auf Ihrem Smartphone gescannt werden. Wenn ein YubiKey vorhanden ist, kann auch der Yubico Authenticator verwendet werden.
Die Notfallcodes sollten an einem sicheren Ort gespeichert werden, z. B. in einem Passwortmanager wie pass. Sie können verwendet werden, um auf das VPN zuzugreifen, wenn der Zugang zum 2FA-Gerät verloren geht.
In der openvpn-Client-Konfiguration muss die folgende Zeile hinzugefügt werden:
auth-user-pass
Mit dieser Zeile fragt der openvpn-Client nach einem zusätzlichen Passwort, bevor die Verbindung hergestellt wird. Nun können Sie den 6-stelligen Code aus Ihrer Smartphone-App eingeben.
Letzte Änderung: 2022-12-15