Skip to content

Instantly share code, notes, and snippets.

@fukata
Last active August 29, 2015 14:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fukata/ead7bc75a04e219199bc to your computer and use it in GitHub Desktop.
Save fukata/ead7bc75a04e219199bc to your computer and use it in GitHub Desktop.
OpenVPN client config for iOS 8.1.2
tls-client
key-direction 1
remote YOURSERVER
comp-lzo
cipher BF-CBC
port 1194
proto udp
redirect-gateway def1
<ca>
-----BEGIN CERTIFICATE-----
ca.crt内の中身を丸ごとここにコピペする。
-----END CERTIFICATE-----
</ca>
<cert>
-----BEGIN CERTIFICATE-----
client-hoge.crt内の中身を丸ごとここにコピペする。
-----END CERTIFICATE-----
</cert>
<key>
-----BEGIN PRIVATE KEY-----
client-hoge.crt内の中身を丸ごとここにコピペする。
-----END PRIVATE KEY-----
</key>
<tls-auth>
-----BEGIN OpenVPN Static key V1-----
ta.key内の中身を丸ごとここにコピペする。
-----END OpenVPN Static key V1-----
</tls-auth>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment