I found some posts regarding this problem, but no solutions helped me so far. So here's the thing:
I have a server running at home providing an openvpn-server and want to establish a remote-desktop connection via vpn. The OpenVPN-server is running just fine, I can connect from my girlfriend's laptop and remotely log on to the server. SO the connection works, BUT I want also to be able to connect from work to my server. My company uses a proxy which only allows ports 80 and 443 - at least these ports I used and I know they work.

I'd really appreciate it if you would take a look at the following configs.
IPs:
Gateway: 192.168.178.1
Main IP: 192.168.178.101
VPN Server IP: 10.16.0.1
Dyndns: something.dyndns.org
Client IP: whatever
Client VPN IP: 10.16.0.2
#1 - Server @ Home:
Code: Select all
server 10.16.0.0 255.255.255.0
port 443
proto tcp
dev tap
ca "C:\\Program Files\\OpenVPN\\easy-rsa\\keys\\gameServerCa.crt"
cert "C:\\Program Files\\OpenVPN\\easy-rsa\\keys\\gameServerUSH.crt"
key "C:\\Program Files\\OpenVPN\\easy-rsa\\keys\\gameServerUSH.key"
dh "C:\\Program Files\\OpenVPN\\easy-rsa\\keys\\dh1024.pem"
ping-timer-rem
keepalive 10 180
verb 6
route-method exe
route-delay 2
Code: Select all
client
remote something.dyndns.org 443
proto tcp
dev tap
ca c:\\programme\\openvpn\\easy-rsa\\keys\\caFlo.crt
cert c:\\programme\\openvpn\\easy-rsa\\keys\\clientFlo.crt
key c:\\programme\\openvpn\\easy-rsa\\keys\\clientFlo.key
ns-cert-type server
verb 6
route-method exe
route-delay 2
Finally I can connect from work's PC to my server and I can ping each way: server --> client, client --> server, BUT no other application like remote desktop, web server, etc. works.
Any ideas? Routing tables?
cheers