Subversion Repositories configs

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
165 - 1
#########################################
2
# Sample client-side OpenVPN config file
3
# for connecting to multi-client server.
4
#
5
# Adapted from http://openvpn.sourceforge.net/20notes.html
6
#
7
# The server can be pinged at 10.8.0.1.
8
#
9
# This configuration can be used by multiple
10
# clients, however each client should have
11
# its own cert and key files.
12
#
13
# tun-style tunnel
14
 
15
port 1194
16
dev tun
17
remote www.ujsoftware.com
18
 
19
# TLS parms
20
 
21
tls-client
22
ca keys/ca.crt
23
cert keys/client1.crt
24
key keys/client1.key
25
 
26
# This parm is required for connecting
27
# to a multi-client server.  It tells
28
# the client to accept options which
29
# the server pushes to us.
30
pull
31
 
32
# Scripts can be used to do various
33
# things (change nameservers, for
34
# example.
35
#up scripts/ifup-post
36
#down scripts/ifdown-post
37
 
38
verb 4