I recently successfully set up my OpenVPN Server and connected to it with a Windows 7 client.
Everything was working flawlessly and I still had connectivity to the normal Internet since I don't push a gateway.
But my friend loses his Internet connectivity when he connects from his XP client.
The configuration is exactly the same.
Server:
Code: Select all
port 1194
proto udp
mode server
tls-server
dev tun
ifconfig 10.10.10.1 255.255.255.255
server 10.10.10.0 255.255.255.0
ca ca.pem
cert cert.pem
key key.pem
dh dh.pem
ifconfig-pool-persist ipp.txt
push "route 10.0.0.0 255.0.0.0"
push "dhcp-option DNS 192.168.1.xyz"
#push "redirect-gateway"
push "route 0.0.0.0 0.0.0.0"
auth SHA1
cipher aes-256-cbc
comp-lzo
user nobody
group nogroup
persist-key
persist-tun
verb 7
Code: Select all
tls-client
pull
dev tun
proto udp
remote #.#.#.# 1194
resolv-retry infinite
nobind
persist-key
persist-tun
ca ca.pem
cert cert.pem
key key.pem
cipher AES-256-CBC
comp-lzo
auth SHA1
verb 3
mute 20
Thanks in advance!