chiark / gitweb /
peerdb/tripe-newpeers.in: Introduce the idea of multiple address families.
[tripe] / peerdb / peers.in.5.in
CommitLineData
6005ef9b
MW
1.\" -*-nroff-*-
2.\".
3.\" Manual for the peer configuration file
4.\"
5.\" (c) 2008 Straylight/Edgeware
6.\"
7.
8.\"----- Licensing notice ---------------------------------------------------
9.\"
10.\" This file is part of Trivial IP Encryption (TrIPE).
11.\"
11ad66c2
MW
12.\" TrIPE is free software: you can redistribute it and/or modify it under
13.\" the terms of the GNU General Public License as published by the Free
14.\" Software Foundation; either version 3 of the License, or (at your
15.\" option) any later version.
6005ef9b 16.\"
11ad66c2
MW
17.\" TrIPE is distributed in the hope that it will be useful, but WITHOUT
18.\" ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
19.\" FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
20.\" for more details.
6005ef9b
MW
21.\"
22.\" You should have received a copy of the GNU General Public License
11ad66c2 23.\" along with TrIPE. If not, see <https://www.gnu.org/licenses/>.
6005ef9b
MW
24.
25.\"--------------------------------------------------------------------------
cd450424 26.so ../common/defs.man \"@@@PRE@@@
6005ef9b
MW
27.
28.\"--------------------------------------------------------------------------
0647ba7c 29.TH peers.in 5tripe "27 March 2008" "Straylight/Edgeware" "TrIPE: Trivial IP Encryption"
6005ef9b
MW
30.
31.\"--------------------------------------------------------------------------
32.SH "NAME"
33.
34peers.in \- source form for TrIPE peer database
35.
36.\"--------------------------------------------------------------------------
37.SH "DESCRIPTION"
38.
39The
40.B peers.in
41file is a plain text configuration file. It is read by
42.BR tripe-newpeers (8)
43in order to produce the
44.BR tripe.cdb (8)
45database used by services and other tools.
d64ce4ae 46.
6005ef9b
MW
47.SS "General structure"
48The configuration file is line-oriented. Blank lines are ignored; lines
49beginning with a hash
50.RB ` # '
51or semicolon
52.RB ` ; '
53are ignored. The file is divided into sections by section headers,
54which are lines of the form
55.IP
56.BI [ name ]
57.PP
58Within each section are a number of assignments, of the form
59.IP
60.IB key " = " value
61.PP
62or (entirely equivalent)
63.IP
64.IB key ": " value
65.PP
66The
67.I key
68must start in the left hand column. The
69.I value
70may span multiple lines if subsequent lines begin with whitespace, in
71the manner of RFC822 headers.
72.PP
73There is a special case to be aware of: if a section doesn't specify a
74value for the key
75.B name
76then the section's own name is used as a default.
77.PP
78The following substitutions are made in the body of a value.
79.hP \*o
80An occurrence of
81.BI $( key )
82is replaced by the value assigned to the given
83.IR key .
84.hP \*o
85An occurrence of
ef7d7afb 86.BI $ flags [ host ]
6005ef9b
MW
87is replaced by the IP address of the named
88.IR host .
89Note that
90.I host
91may itself contain
92.BI $( key )
ef7d7afb
MW
93substitutions. The
94.I flags
95consist of zero or more of the following characters:
cc72e4b3
MW
96.RB ` 4 '
97looks up the
98.IR host 's
99IPv4 address(es);
ef7d7afb
MW
100.RB ` * '
101returns all of the found addresses, separated by spaces, rather than
102just the first one.
6005ef9b
MW
103.PP
104There is a simple concept of
105.I inheritance
106for sections. If a section contains an assignment
107.IP
833bdc38 108.BI "@inherit = " parent
bd3db76c
MW
109.RB [[,]
110.I parent
111\&...]
6005ef9b
MW
112.PP
113then any lookups which can't be satisfied in that section will be
bd3db76c 114satisfied instead from its
6005ef9b 115.I parent
bd3db76c
MW
116sections (and, if necessary, their parents in turn, and so on).
117.PP
118.hP \*o
119If a value can be found for a key via multiple parents then all of them
120must report the
121.I same
122value. This restriction may be relaxed somewhat, if it turns out that a
123more flexible notion of multiple inheritance is useful.
124.hP \*o
125It's not allowed for a section to inherit, possibly indirectly, from
126itself. Currently errors of this kind are only diagnosed when a cycle
127is encountered while looking up a key and none of the sections on the
128path from the original section up to and round the cycle define a value
129for it. Future versions of this program might be more picky.
130.PP
131Note that
6005ef9b
MW
132.BI $( key )
133substitutions in the resulting value will be satisfied from the original
bd3db76c 134section (though falling back to scanning parent sections). For
6005ef9b
MW
135example, given the sections
136.VS
137[parent]
f08fe72e 138detail = in $(name)
6005ef9b 139blurb = expand $(detail)
f08fe72e
MW
140
141[child]
142@inherit = parent
2273401c 143.VE
f08fe72e
MW
144the key
145.B blurb
146takes the value
147.RB ` "expand in parent" '
148in section
149.BR parent ,
150and
151.RB ` "expand in child" '
152in section
153.BR child .
154.PP
6005ef9b 155Apart from its effect on lookups, as just described, the
833bdc38 156.B @inherit
6005ef9b
MW
157key is entirely ignored. In particular, it is never written to the
158database.
d64ce4ae 159.
6005ef9b
MW
160.SS "Standard keys and their meanings"
161The following keys have meanings to programs in the TrIPE suite. Other
162keys may be used by separately distributed extensions or for local use.
163The descriptions given are summaries only; see the references for
164details.
165.TP
166.B auto
167If true, include the peer in the
168.B %AUTO
169record. Used by
a62f8e8a
MW
170.BR connect (8)
171and
6005ef9b
MW
172.BR tripe-newpeers (8);
173described below.
174.TP
a62f8e8a
MW
175.B connect
176Shell command for initiating connection to this peer. Used by
d64ce4ae 177.BR connect (8).
a62f8e8a
MW
178.TP
179.B cork
6411163d 180Don't initiate immediate key exchange. Used by
a62f8e8a
MW
181.BR connect (8).
182.TP
d3731285
MW
183.B disconnect
184Shell command for closing down connection to this peer. Used by
d64ce4ae 185.BR connect (8).
d3731285 186.TP
a62f8e8a
MW
187.B every
188Interval for checking that the peer is still alive and well. Used by
d64ce4ae 189.BR connect (8).
a62f8e8a
MW
190.TP
191.B ifdown
192Script to bring down tunnel interface connected to the peer. Used by
d64ce4ae 193.BR connect (8).
a62f8e8a
MW
194.TP
195.B ifname
196Interface name to set for the tunnel interface to the peer. Used by
197.BR tripe-ifup (8).
198.TP
199.B ifup
200Script to bring up tunnel interface connected to the peer. Used by
d64ce4ae 201.BR connect (8).
a62f8e8a
MW
202.TP
203.B ifupextra
204Script containing additional interface setup. Used by
205.BR tripe-ifup (8).
206.TP
207.B laddr
208Local address for the tunnel interface to the peer. Used by
209.BR tripe-ifup (8).
210.TP
211.B keepalive
212Interval for sending keepalive pings. Used by
213.BR connect (8).
214.TP
48b84569
MW
215.B key
216Key tag to use to authenticate the peer. Used by
217.BR connect (8).
218.TP
6411163d
MW
219.B mobile
220Peer's IP address is highly volatile. Used by
221.BR connect (8).
222.TP
a62f8e8a
MW
223.B mtu
224Maximum transmission unit for the tunnel interface. Used by
225.BR tripe-ifup (8).
226.TP
227.B nets
228Networks to be routed over the tunnel interface. Used by
229.BR tripe-ifup (8).
230.TP
231.B peer
232Network address for this peer, or
233.BR PASSIVE .
234Used by
235.BR connect (8).
236.TP
fe2a5dcf
MW
237.B priv
238Tag of the private key to use when communicating with the peer.
d64ce4ae
MW
239Used by
240.BR connect (8).
fe2a5dcf 241.TP
a62f8e8a
MW
242.B raddr
243Remote address for the tunnel interface to the peer. Used by
244.BR tripe-ifup (8).
245.TP
246.B retries
247Number of failed ping attempts before attempting reconnection. Used by
d64ce4ae 248.BR connect (8).
a62f8e8a
MW
249.TP
250.B timeout
251Timeout for ping probes. Used by
d64ce4ae 252.BR connect (8).
a62f8e8a
MW
253.TP
254.B tunnel
255Tunnel driver to use when adding the peer. Used by
256.BR connect (8)).
257.TP
6005ef9b
MW
258.B user
259Peer will make active connection as
260.IR user .
261Used by
a62f8e8a
MW
262.BR connect (8)
263and
6005ef9b
MW
264.BR tripe-newpeers (8);
265described below.
d64ce4ae 266.
6005ef9b
MW
267.SS "Conversion"
268This section describes how the textual
269.B peers.in
270file is converted into the
271.BR peers.cdb (5)
272database.
273.PP
274The handling of each section depends on its name.
275.hP \*o
276Sections whose names have the form
277.BI @ whatever
278are ignored (though their contents may be relevant if the section is
279named in another section's
833bdc38 280.B @inherit
6005ef9b
MW
281key).
282.hP \*o
283Sections whose names have the form
284.BI $ whatever
285are written to local-type database records with the same name. The keys
286and values defined in the section (and its parent section, if it
287contains an
833bdc38 288.B @inherit
6005ef9b
MW
289key) are stored in the record using
290.B form-urlencoding
291as defined in RFC1822, except that the key-value pairs are separated by
292semicolons
293.RB ` ; '
294rather than ampersands
295.RB ` & '.
6c2ee518
MW
296Keys whose names begin with
297.RB ` @ '
298are not written to the database.
6005ef9b
MW
299.hP \*o
300Other sections are written to peer-type database records, named
301.BI P name \fR,
302in exactly the same way as for local-type records. However, two special
303actions are also taken.
304.IP
305Firstly, if there is a key
306.B auto
307in the section (or in its parent, etc.), and the value is
308.BR y ,
309.BR yes .
310.BR t ,
311.BR true ,
312.BR 1 ,
313or
314.BR on ,
315then the section's name is added in the special
316.B %AUTO
317record.
318.IP
319Secondly, if there is a key
320.B user
321in the section (or in its parent, etc.), then a user record
322.BI U user
323is created whose contents is the section name.
324.
325.\"--------------------------------------------------------------------------
326.SH "SEE ALSO"
327.
328.BR cdb (5),
329.BR tripe (8).
330.PP
331.BR tripe-newpeers (8),
332.BR peers.cdb (5),
a62f8e8a 333.BR connect (8),
6005ef9b
MW
334.BR tripe-ifup (8).
335.
336.\"--------------------------------------------------------------------------
337.SH "AUTHOR"
338.
339Mark Wooding, <mdw@distorted.org.uk>
340.
341.\"----- That's all, folks --------------------------------------------------