svn cleanup
[anytun.git] / openvpn / sample-config-files / static-office.conf
blob68030cc944d5018afd05dada42db11e9be714e3f
2 # Sample OpenVPN configuration file for
3 # office using a pre-shared static key.
5 # '#' or ';' may be used to delimit comments.
7 # Use a dynamic tun device.
8 # For Linux 2.2 or non-Linux OSes,
9 # you may want to use an explicit
10 # unit number such as "tun1".
11 # OpenVPN also supports virtual
12 # ethernet "tap" devices.
13 dev tun
15 # 10.1.0.1 is our local VPN endpoint (office).
16 # 10.1.0.2 is our remote VPN endpoint (home).
17 ifconfig 10.1.0.1 10.1.0.2
19 # Our up script will establish routes
20 # once the VPN is alive.
21 up ./office.up
23 # Our pre-shared static key
24 secret static.key
26 # OpenVPN 2.0 uses UDP port 1194 by default
27 # (official port assignment by iana.org 11/04).
28 # OpenVPN 1.x uses UDP port 5000 by default.
29 # Each OpenVPN tunnel must use
30 # a different port number.
31 # lport or rport can be used
32 # to denote different ports
33 # for local and remote.
34 ; port 1194
36 # Downgrade UID and GID to
37 # "nobody" after initialization
38 # for extra security.
39 ; user nobody
40 ; group nobody
42 # If you built OpenVPN with
43 # LZO compression, uncomment
44 # out the following line.
45 ; comp-lzo
47 # Send a UDP ping to remote once
48 # every 15 seconds to keep
49 # stateful firewall connection
50 # alive.  Uncomment this
51 # out if you are using a stateful
52 # firewall.
53 ; ping 15
55 # Uncomment this section for a more reliable detection when a system
56 # loses its connection.  For example, dial-ups or laptops that
57 # travel to other locations.
58 ; ping 15
59 ; ping-restart 45
60 ; ping-timer-rem
61 ; persist-tun
62 ; persist-key
64 # Verbosity level.
65 # 0 -- quiet except for fatal errors.
66 # 1 -- mostly quiet, but display non-fatal network errors.
67 # 3 -- medium output, good for normal operation.
68 # 9 -- verbose, good for troubleshooting
69 verb 3