You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
820 B
39 lines
820 B
7 years ago
|
#########################################
|
||
|
# Sample client-side OpenVPN config file
|
||
|
# for connecting to multi-client server.
|
||
|
#
|
||
|
# Adapted from http://openvpn.sourceforge.net/20notes.html
|
||
|
#
|
||
|
# The server can be pinged at 10.8.0.1.
|
||
|
#
|
||
|
# This configuration can be used by multiple
|
||
|
# clients, however each client should have
|
||
|
# its own cert and key files.
|
||
|
#
|
||
|
# tun-style tunnel
|
||
|
|
||
|
port 1194
|
||
|
dev tun
|
||
|
remote [my server hostname or IP address]
|
||
|
|
||
|
# TLS parms
|
||
|
|
||
|
tls-client
|
||
|
ca sample-keys/tmp-ca.crt
|
||
|
cert sample-keys/client.crt
|
||
|
key sample-keys/client.key
|
||
|
|
||
|
# This parm is required for connecting
|
||
|
# to a multi-client server. It tells
|
||
|
# the client to accept options which
|
||
|
# the server pushes to us.
|
||
|
pull
|
||
|
|
||
|
# Scripts can be used to do various
|
||
|
# things (change nameservers, for
|
||
|
# example.
|
||
|
#up scripts/ifup-post
|
||
|
#down scripts/ifdown-post
|
||
|
|
||
|
verb 4
|