chiark / gitweb /
Use standard GNU uppercase for metavariables in usage strings. Some manpage
[tripe] / 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
28# The user to run as once tripe has initialized. The user (or group -- see
29# `group' below) must be able to open new tunnel interfaces.
30# user=tripe
31
32# The group to run as once tripe has initialized. See caveats for `user'
33# above.
34# group=tripe
35
36# Trace options to pass to tripe. The default is no tracing. The setting
37# `A-cp' gives maxmimum possible verbosity without leaking important
38# secrets.
39# trace=A-cp
40
41# Any other options to pass on to tripectl.
42# miscopts=
43
44# Logfile to write to. The default is `tripe.log' in the working directory.
ef4a1ab7 45# logfile=/var/log/tripe
46
47# Where to put tripectl's pidfile when it starts up. The default is
48# tripectl.pid in the working directory.
49# pidfile=/var/run/tripectl.pid