Last active
August 29, 2015 14:14
-
-
Save fukata/ead7bc75a04e219199bc to your computer and use it in GitHub Desktop.
OpenVPN client config for iOS 8.1.2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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