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
openvpn connect 1.0.1 ios7 autologin profile
-
- OpenVpn Newbie
- Posts: 1
- Joined: Wed Nov 13, 2013 7:52 am
-
- OpenVpn Newbie
- Posts: 3
- Joined: Wed Oct 16, 2013 1:06 pm
Re: openvpn connect 1.0.1 ios7 autologin profile
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>