Page 1 of 1

openvpn connect 1.0.1 ios7 autologin profile

Posted: Wed Nov 13, 2013 8:18 am
by rsolsn
Hi all,

we've installed openvpn connect 1.0.1 from apple store on ipad 3 with ios7.

We've an openvpn server with certificates and user/password auth that works with win/mac/linux clients.

We've imported all certificates: client.crt, client.key, ca.crt and config.ovpn with itunes but the openvpn connect recognizes this files as an autologin profile, so we can't setup username and password.


Any help much appreciated
Regards
Alessandro

Re: openvpn connect 1.0.1 ios7 autologin profile

Posted: Fri Nov 15, 2013 6:25 pm
by vzm
I would recommend not using separate files at all and in lining everything in to the ovpn file like this:

Code: Select all

<ca>
-----BEGIN CERTIFICATE-----
...
-----END CERTIFICATE-----
</ca>

<cert>
-----BEGIN CERTIFICATE-----
...
-----END CERTIFICATE-----
</cert>

<key>
-----BEGIN PRIVATE KEY-----
...
-----END PRIVATE KEY-----
</key>

<dh>
-----BEGIN DH PARAMETERS-----
...
-----END DH PARAMETERS-----
</dh>


<tls-auth>
#
# 2048 bit OpenVPN static key
#
-----BEGIN OpenVPN Static key V1-----
...
-----END OpenVPN Static key V1-----
</tls-auth>