Page 1 of 1

Server 2008R2, Win 7/8

Posted: Sat Aug 17, 2013 10:02 pm
by brynmoorhouse
Hi guys,
For the past 24 hours or so (minus a sleep) I've been trying in vain to set up an OpenVPN connection to route all traffic, including internet via from work. So far, I've got as far as getting both clients connected, both get different IPs, both can ping (and get a response) the server. However that's where the good stops.

I can't
...Ping Server -> Client
...Ping Client to Client (I've set the directive in the config file)
...Seem to even work out where to begin to route clients' traffic via the internet. I read about push "redirect-gateway local def1" - but that doesn't seem to change anything.

I'd really appreciate some help on this one.

Thanks in advance,
Bryn

Re: Server 2008R2, Win 7/8

Posted: Sun Aug 18, 2013 2:14 pm
by maikcat
please post more info about your setup,

like,

configs used,
OS uses,
firewall rules used.

Michael.

Re: Server 2008R2, Win 7/8

Posted: Sun Aug 18, 2013 7:27 pm
by brynmoorhouse
Hi Michael,
OS's are Windows 2008r2 on the server side, and a mix of windows 7 and windows 8 clients.
Firewalls are disabled on both ends (for the time being - I'm going to set them up once I have it working without)
Server Config

Code: Select all

port 8081
proto tcp
dev tun
ca "C:\\Program Files\\OpenVPN\\config\\ca.crt"
cert "C:\\Program Files\\OpenVPN\\config\\DCS.crt"
key "C:\\Program Files\\OpenVPN\\config\\DCS.key"
dh "C:\\Program Files\\OpenVPN\\config\\dh1024.pem"
server 10.8.0.0 255.255.255.0
ifconfig-pool-persist ipp.txt
client-to-client
keepalive 10 120
comp-lzo
persist-key
persist-tun
status openvpn-status.log
verb 3
Client Config

Code: Select all

client
dev tun
proto tcp
remote mydomain.co.uk 8081
resolv-retry infinite
nobind
persist-key
persist-tun
ca ca.crt
cert DesktopDCS.crt
key DesktopDCS.key
ns-cert-type server
comp-lzo
verb 3