Created
August 26, 2013 02:41
-
-
Save pjan/6337706 to your computer and use it in GitHub Desktop.
Openvpn .ovpn template for iOS devices.
This file contains hidden or 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
client | |
dev tun | |
proto udp | |
remote [server name/address] 1194 | |
resolv-retry infinite | |
nobind | |
reneg-sec 3600 | |
persist-key | |
persist-tun | |
verb 3 | |
keepalive 10 1200 | |
inactive 3600 | |
comp-lzo | |
<ca> | |
-----BEGIN CERTIFICATE----- | |
***CONTENT OF YOUR ca.crt*** | |
-----END CERTIFICATE----- | |
</ca> | |
<cert> | |
-----BEGIN CERTIFICATE----- | |
***CONTENT OF YOUR CLIENT.crt*** | |
-----END CERTIFICATE----- | |
</cert> | |
<key> | |
-----BEGIN PRIVATE KEY----- | |
***CONTENT OF YOUR CLIENT.key*** | |
-----END PRIVATE KEY----- | |
</key> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment