As this had been working under PPTP, and works when the same laptop is connected locally, the only change has been the switch to OpenVPN so I suspect my config files may be in err. Any ideas / suggestions?
Server Config:
Code: Select all
port 443
proto tcp
dev tun
mode server
server 192.168.16.0 255.255.255.0
duplicate-cn
keepalive 10 120
push "route 192.168.15.0 255.255.255.0"
push "dhcp-option DNS 192.168.15.1"
persist-key
persist-tun
verb 3
cipher DES-EDE3-CBC
client-cert-not-required
username-as-common-name
auth-user-pass-verify "/mnt/auth.sh" via-env
script-security 2
comp-lzo
<ca>
-----BEGIN CERTIFICATE-----
(content omitted)
-----END CERTIFICATE-----
</ca>
<cert>
-----BEGIN CERTIFICATE-----
(content omitted)
-----END CERTIFICATE-----
</cert>
<key>
-----BEGIN RSA PRIVATE KEY-----
(content omitted)
-----END RSA PRIVATE KEY-----
</key>
<dh>
-----BEGIN DH PARAMETERS-----
(content omitted)
-----END DH PARAMETERS-----
Client Config:
Code: Select all
client
proto tcp
remote (IP Omitted)
port 443
dev tun
dev-type tun
ns-cert-type server
reneg-sec 86400
auth-user-pass
auth-retry interact
verb 3
cipher DES-EDE3-CBC
comp-lzo
<ca>
-----BEGIN CERTIFICATE-----
(content omitted)
-----END CERTIFICATE-----
</ca>
<cert>
-----BEGIN CERTIFICATE-----
(content omitted)
-----END CERTIFICATE-----
</cert>
<key>
-----BEGIN RSA PRIVATE KEY-----
(content omitted)
-----END RSA PRIVATE KEY-----
</key>
<dh>
-----BEGIN DH PARAMETERS-----
(content omitted)
-----END DH PARAMETERS-----
</dh>