Created
January 16, 2015 02:24
-
-
Save mogigoma/dfb37a2511d7183aa8c7 to your computer and use it in GitHub Desktop.
OpenVPN configuration files
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
client | |
dev tun | |
proto udp | |
nobind | |
remote hostname-of-vpn-server 1194 | |
resolv-retry infinite | |
user nobody | |
group nogroup | |
persist-key | |
persist-tun | |
ca ca.crt | |
cert client.crt | |
key client.key | |
ns-cert-type server | |
status openvpn-status.log | |
log-append openvpn.log | |
verb 3 | |
mute 20 |
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
ifconfig-push 10.42.41.3 10.42.41.4 |
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
port 1194 | |
proto udp | |
dev tun | |
ca ca.crt | |
cert server.crt | |
key server.key | |
dh dh1024.pem | |
server 10.42.0.0 255.255.0.0 | |
push "route 10.42.0.0 255.255.0.0" | |
client-config-dir ccd | |
client-to-client | |
keepalive 10 120 | |
user nobody | |
group nobody | |
persist-key | |
persist-tun | |
status openvpn-status.log | |
log-append openvpn.log | |
verb 3 | |
mute 20 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment