OpenVPN, WLan, Replay Window Backtrack , Connection Reset
Posted: Thu Nov 25, 2010 6:51 pm
Hello,
I set up my OpenVPN Server to access my Home Network from outside. I used mainly the official HowTo from the OpenVPN Site. The connection through DynDNS works great. But after 2 or 3 minutes , the message "Replay Window Backtrack occured" (with lower numbers [1], [2] - [8]) comes and the OpenVPN Connecton stops and reconnects. I tried to access it through my laptop over WLAN.
Hoping for help.
Die Sever.conf:
meine Client.conf:
With best regards
Aramis
I set up my OpenVPN Server to access my Home Network from outside. I used mainly the official HowTo from the OpenVPN Site. The connection through DynDNS works great. But after 2 or 3 minutes , the message "Replay Window Backtrack occured" (with lower numbers [1], [2] - [8]) comes and the OpenVPN Connecton stops and reconnects. I tried to access it through my laptop over WLAN.
Hoping for help.
Die Sever.conf:
Code: Select all
port 1194
proto udp
dev tun
ca /etc/openvpn/ca.crt
cert /etc/openvpn/server.crt
key /etc/openvpn/server.key # This file should be kept secret# Diffie hellman parameters.
dh /etc/openvpn/examples/easy-rsa/2.0/keys/dh1024.pem
server 10.8.0.0 255.255.255.0
ifconfig-pool-persist ipp.txt
keepalive 10 120
comp-lzo
persist-key
persist-tun
status openvpn-status.log
verb 3
replay-window 64
meine Client.conf:
Code: Select all
Code:
client
dev tun
proto udp
remote xxxx.dyndns.info 1194
resolv-retry infinite
nobind
persist-key
ca ca.crt
cert client1.crt
key client1.key
ns-cert-type server
comp-lzo
verb 3
mute-replay-warnings
route-method exe
route-delay 2
Aramis