openvpn connect 1.0.1 ios7 autologin profile

Official client software for OpenVPN Access Server and OpenVPN Cloud.
Post Reply
rsolsn
OpenVpn Newbie
Posts: 1
Joined: Wed Nov 13, 2013 7:52 am

openvpn connect 1.0.1 ios7 autologin profile

Post by rsolsn » Wed Nov 13, 2013 8:18 am

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

vzm
OpenVpn Newbie
Posts: 3
Joined: Wed Oct 16, 2013 1:06 pm

Re: openvpn connect 1.0.1 ios7 autologin profile

Post by vzm » Fri Nov 15, 2013 6:25 pm

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>

Post Reply