chiark / gitweb /
Make `tripe' be the default key type.
[tripe] / init / tripe.conf
... / ...
CommitLineData
1# tripe configuration file
2#
3# this is sourced as a Bourne shell script by /etc/init.d/tripe
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.
7# TRIPEDIR=/etc/tripe
8
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
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. The default is 4070, which is
22# officially allocated by the IANA. If you explicitly specify port 0
23# then tripe gets the kernel to choose a port it's not using right now,
24# and you have to dig it out by saying `tripectl port'.
25# port=4070
26
27# The tunnel device you want tripe to use. The default is to use a system-
28# specific device, if there's one compiled in, or SLIP if not.
29# tunnel=slip
30
31# The user to run as once tripe has initialized. The user (or group -- see
32# `group' below) must be able to open new tunnel interfaces.
33# user=tripe
34
35# The group to run as once tripe has initialized. See caveats for `user'
36# above.
37# group=tripe
38
39# Trace options to pass to tripe. The default is no tracing. The setting
40# `A-cp' gives maxmimum possible verbosity without leaking important
41# secrets.
42# trace=A-cp
43
44# Any other options to pass on to tripectl.
45# miscopts=
46
47# Logfile to write to. The default is `tripe.log' in the working directory.
48# logfile=/var/log/tripe
49
50# Where to put tripectl's pidfile when it starts up. The default is
51# tripectl.pid in the working directory.
52# pidfile=/var/run/tripectl.pid