I am trying to use OpenVPN Connect on iOS. I have working setup from Windows boxes,
Linux boxes and Android phones, but have much trouble with iPhone. I created following config:
Code: Select all
remote vpn.acsystemy.pl 1194
remote vpn2.acsystemy.pl 1194
client
fragment 1000
dev tun
proto udp
resolv-retry infinite
nobind
user nobody
group nogroup
persist-key
persist-tun
ns-cert-type server
tls-auth ta.key 1
cipher AES-256-CBC
verb 3
<ca>
-----BEGIN CERTIFICATE-----
xxx
-----END CERTIFICATE-----
</ca>
<cert>
-----BEGIN CERTIFICATE-----
xxx
-----END CERTIFICATE-----
</cert>
<key>
-----BEGIN RSA PRIVATE KEY-----
xxx
-----END RSA PRIVATE KEY-----
</key>
Thanks!