client connection stuck at MANAGEMENT: >STATE:1690392555,WAIT,,,,,,

Need help configuring your VPN? Just post here and you'll get that help.

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
ms_3fa024c5971977
OpenVpn Newbie
Posts: 1
Joined: Wed Jul 26, 2023 5:28 pm

client connection stuck at MANAGEMENT: >STATE:1690392555,WAIT,,,,,,

Post by ms_3fa024c5971977 » Wed Jul 26, 2023 5:48 pm

Hi,
unfortunately I couldn't find any solution to my problem with the help of already existing threads yet. I configured a Ubuntu 22.04 VM as a OpenVPN TAP VPN server similar to this guide: viewtopic.php?t=30633
The first connection from a Windows 10 client with the OpenVPN GUI software usually works without a problem but when trying to reconnect from the same client or connect from another one, it gets stuck at:

Code: Select all

MANAGEMENT: >STATE:1690392555,WAIT,,,,,, 
UDP WRITE [42] to [AF_INET]IP:1194: P_CONTROL_HARD_RESET_CLIENT_V2 kid=0 pid=[ #1 ] [ ] pid=0 DATA len=0
UDP WRITE [42] to [AF_INET]IP:1194: P_CONTROL_HARD_RESET_CLIENT_V2 kid=0 pid=[ #2 ] [ ] pid=0 DATA len=0
The problem persists until I restart the server with

Code: Select all

service openvpn restart
While the client fails to reconnect, the server log doesn't show anything but this:

Code: Select all

2023-07-26 19:38:29 us=861794 MULTI: REAP range 0 -> 16
2023-07-26 19:38:34 us=908044 MULTI: REAP range 16 -> 32
2023-07-26 19:38:44 us=918440 MULTI: REAP range 32 -> 48
2023-07-26 19:38:50 us=12392 MULTI: REAP range 48 -> 64
2023-07-26 19:38:58 us=133111 MULTI: REAP range 64 -> 80
2023-07-26 19:39:05 us=251993 MULTI: REAP range 80 -> 96
2023-07-26 19:39:15 us=262473 MULTI: REAP range 96 -> 112
2023-07-26 19:39:20 us=430153 MULTI: REAP range 112 -> 128
2023-07-26 19:39:30 us=441031 MULTI: REAP range 128 -> 144
2023-07-26 19:39:35 us=473850 MULTI: REAP range 144 -> 160
I already tried changing the protocol from udp to tcp, but it didn't help...

Server config

port 1194
proto udp
dev tap
ca ca.crt
cert server.crt
key server.key
dh dh2048.pem
topology subnet
ifconfig-pool-persist ipp.txt
server-bridge 192.168.1.200 255.255.255.0 192.168.1.201 192.168.1.210
client-to-client
tls-auth ta.key 0
cipher AES-256-CBC
persist-key
persist-tun
status openvpn-status.log
log openvpn-log.log
verb 7
explicit-exit-notify 1


Client config

remote IP 1194
client
proto udp
dev tap
ca ca.crt
cert client.crt
key client.key
tls-auth ta.key 1
cipher AES-256-CBC
persist-key
persist-tun
status openvpn-status.log
verb 7
explicit-exit-notify 1


Hopefully someone can help me :)

Post Reply