Openvpn LDAP and OTP from google authenticator

This forum is for admins who are looking to build or expand their OpenVPN setup.

Moderators: TinCanTech, TinCanTech, TinCanTech, TinCanTech, TinCanTech, TinCanTech

Forum rules
Please use the [oconf] BB tag for openvpn Configurations. See viewtopic.php?f=30&t=21589 for an example.
Post Reply
Altheus
OpenVpn Newbie
Posts: 6
Joined: Thu Jul 15, 2021 12:22 pm

Openvpn LDAP and OTP from google authenticator

Post by Altheus » Wed Jul 21, 2021 1:06 pm

Hi, having resolved my LDAP issue, I'm now facing the issue that, when I add the otp.so plugin to my server config and a line asking for a google authenticator challenge to my client the ldap authentication fails while the otp shows successful authentication in the logs.

When I revert to the server and client config that work, ldap authentication starts working again.

Something isn't right here, I think it is the client configuration, I'm half convinced that the client is passing the password and otp information to the server as the password.

Here is the relevant part of the client file, can anyone see what is wrong?

Code: Select all

client
dev tun
proto udp
remote xxx.xxx.xxx.xxx 1194
tls-version-min 1.2
tls-cipher TLS-ECDHE-RSA-WITH-AES-128-GCM-SHA256:TLS-ECDHE-ECDSA-WITH-AES-128-GCM-SHA256:TLS-ECDHE-RSA-WITH-AES-256-GCM-SHA384:TLS-DHE-RSA-WITH-AES-256-CBC-SHA256
resolv-retry infinite
nobind
persist-key
persist-tun
remote-cert-tls server
auth SHA512
cipher AES-256-CBC
ignore-unknown-option block-outside-dns
block-outside-dns
verb 3
auth-user-pass
auth-nocache
reneg-sec 0
static-challenge "Enter Google Authenticator Token" 1

Altheus
OpenVpn Newbie
Posts: 6
Joined: Thu Jul 15, 2021 12:22 pm

Openvpn LDAP and Google authenticator

Post by Altheus » Wed Jul 21, 2021 2:49 pm

I'm having a strange problem. I have an openvpn server on ubuntu that is set up for authentication with LDAP and will authenticate me correctly, however, when I add the OTP plugin to the server configuration the ldap authentication stops working.

I think the client is passing the password and otp code as the password for LDAP and that's why it isn't working. What am I missing? Is this what is happening?

Server Config:

Code: Select all

local 10.180.8.4
port 1194
proto udp
dev tun
ca ca.crt
cert server.crt
key server.key
dh dh.pem
auth SHA512
tls-crypt tc.key
topology subnet
server 10.8.0.0 255.255.255.0
push "redirect-gateway def1 bypass-dhcp"
ifconfig-pool-persist ipp.txt
push "dhcp-option DNS 8.8.8.8"
keepalive 10 120
cipher AES-256-CBC
#user nobody
#group nogroup
persist-key
persist-tun
verb 3
crl-verify crl.pem
explicit-exit-notify
log-append /var/log/openvpn/openvpn.log
plugin /usr/lib/openvpn/openvpn-auth-ldap.so /etc/openvpn/auth/ldap.conf
verify-client-cert none
plugin /usr/lib/openvpn/openvpn-otp.so "debug=1 password_is_cr=1 otp_secrets=/etc/openvpn/auth/otp-secrets"
Client config

Code: Select all

auth-user-pass
auth-nocache
client
dev tun
proto udp
remote 51.143.185.109 1194
resolv-retry infinite
nobind
persist-key
persist-tun
remote-cert-tls server
auth SHA512
cipher AES-256-CBC
verb 3
static-challenge "Enter Google Authenticator Token" 1

barberousse1987
OpenVpn Newbie
Posts: 1
Joined: Tue Feb 15, 2022 4:12 pm

Re: Openvpn LDAP and OTP from google authenticator

Post by barberousse1987 » Tue Feb 15, 2022 4:14 pm

Hi @Altheus,

Did you manage to configure openldap + google authenticator ?

Regards.

Post Reply