chiark / gitweb /
server/tun-unet: Fix stupidity in t_create.
[tripe] / init / tripe.conf
CommitLineData
0fa31a96 1# tripe configuration file
2#
ef4a1ab7 3# this is sourced as a Bourne shell script by /etc/init.d/tripe
0fa31a96 4
5# The directory you want tripe to work in. This is where it will search for
6# keyrings, and where its admin socket and logfile are kept.
ef4a1ab7 7# TRIPEDIR=/etc/tripe
0fa31a96 8
52c03a2a 9# The name of the private key to use. This is usually `tripe-dh' for
10# integer Diffie-Hellman keys (the default) or `tripe-ec' for elliptic
11# curve keys.
12# keytag=tripe-dh
13
0fa31a96 14# The address you want tripe to bind to. By default, tripe will accept
15# packets to any address acceptable to the host, and send packets from the
16# most appropriate address for the destination; setting this means it will
17# (a) only accept packets destined for the named address, and (b) send
18# packets from the named address. The latter is probably more useful.
19# addr=MYHOST
20
21# The UDP port you want tripe to use. I've chosen 22003 which isn't reserved
22# in any way. I chose it because it's the first two bytes of the RIPEMD-160
23# hash of the string `TrIPE'. If you don't set a port, tripe gets the kernel
24# to choose a port it's not using right now, and you have to dig it out by
25# saying `tripectl port'.
26# port=22003
27
42da2a58 28# The tunnel device you want tripe to use. The default is to use a system-
29# specific device, if there's one compiled in, or SLIP if not.
30# tunnel=slip
31
0fa31a96 32# The user to run as once tripe has initialized. The user (or group -- see
33# `group' below) must be able to open new tunnel interfaces.
34# user=tripe
35
36# The group to run as once tripe has initialized. See caveats for `user'
37# above.
38# group=tripe
39
40# Trace options to pass to tripe. The default is no tracing. The setting
41# `A-cp' gives maxmimum possible verbosity without leaking important
42# secrets.
43# trace=A-cp
44
45# Any other options to pass on to tripectl.
46# miscopts=
47
48# Logfile to write to. The default is `tripe.log' in the working directory.
ef4a1ab7 49# logfile=/var/log/tripe
50
51# Where to put tripectl's pidfile when it starts up. The default is
52# tripectl.pid in the working directory.
53# pidfile=/var/run/tripectl.pid