- Non-blocking connect()s.
[tinc] / doc / tinc.conf.5
1 .Dd 2002-02-06
2 .Dt TINC.CONF 5
3 .\" Manual page created by:
4 .\" Ivo Timmermans <itimmermans@bigfoot.com>
5 .\" Guus Sliepen <guus@sliepen.warande.net>
6 .Sh NAME
7 .Nm tinc.conf
8 .Nd tinc daemon configuration
9 .Sh DESCRIPTION
10 The files in the
11 .Pa /etc/tinc/
12 directory contain runtime and security information for the tinc daemon.
13 .Sh NETWORKS
14 It is perfectly ok for you to run more than one tinc daemon.
15 However, in its default form,
16 you will soon notice that you can't use two different configuration files without the
17 .Fl c
18 option.
19 .Pp
20 We have thought of another way of dealing with this: network names.
21 This means that you call
22 .Nm
23 with the
24 .Fl n
25 option, which will assign a name to this daemon.
26 .Pp
27 The effect of this is that the daemon will set its configuration root to
28 .Pa /etc/tinc/ Ns Ar NETNAME Ns Pa / ,
29 where 
30 .Ar NETNAME
31 is your argument to the
32 .Fl n
33 option.
34 You'll notice that messages appear in syslog as coming from
35 .Nm tincd. Ns Ar NETNAME .
36 .Pp
37 However, it is not strictly necessary that you call tinc with the
38 .Fl n
39 option.
40 In this case, the network name would just be empty,
41 and it will be used as such.
42 .Nm tinc
43 now looks for files in
44 .Pa /etc/tinc/ ,
45 instead of 
46 .Pa /etc/tinc/ Ns Ar NETNAME Ns Pa / ;
47 the configuration file should be
48 .Pa /etc/tinc/tinc.conf ,
49 and the host configuration files are now expected to be in
50 .Pa /etc/tinc/hosts/ .
51 .Pp
52 But it is highly recommended that you use this feature of
53 .Nm tinc ,
54 because it will be so much clearer whom your daemon talks to.
55 Hence, we will assume that you use it.
56 .Sh NAMES
57 Each tinc daemon should have a name that is unique in the network which it will be part of.
58 The name will be used by other tinc daemons for identification.
59 The name has to be declared in the
60 .Pa /etc/tinc/ Ns Ar NETNAME Ns Pa /tinc.conf
61 file.
62 .Pp
63 To make things easy,
64 choose something that will give unique and easy to remember names to your tinc daemon(s).
65 You could try things like hostnames, owner surnames or location names.
66 .Sh PUBLIC/PRIVATE KEYS
67 You should use 
68 .Ic tincd -K
69 to generate public/private keypairs.
70 It will generate two keys.
71 The private key should be stored in a separate file
72 .Pa /etc/tinc/ Ns Ar NETNAME Ns Pa /rsa_key.priv
73 \-\- where 
74 .Ar NETNAME
75 stands for the network (see 
76 .Sx NETWORKS )
77 above.
78 The public key should be stored in the host configuration file
79 .Pa /etc/tinc/ Ns Ar NETNAME Ns Pa /hosts/ Ns Va NAME
80 \-\- where
81 .Va NAME
82 stands for the name of the local tinc daemon (see
83 .Sx NAMES ) .
84 .Sh SERVER CONFIGURATION
85 The server configuration of the daemon is done in the file
86 .Pa /etc/tinc/ Ns Ar NETNAME Ns Pa /tinc.conf .
87 This file consists of comments (lines started with a
88 .Li # )
89 or assignments in the form of:
90 .Pp
91 .Va Variable Li = Ar Value .
92 .Pp
93 The variable names are case insensitive, and any spaces, tabs,
94 newlines and carriage returns are ignored.
95 Note: it is not required that you put in the 
96 .Li =
97 sign, but doing so improves readability.
98 If you leave it out, remember to replace it with at least one space character.
99 .Pp
100 Here are all valid variables, listed in alphabetical order.
101 The default value is given between parentheses.
102 .Bl -tag -width indent
103 .It Va AddressFamily Li = ipv4 | ipv6 | any Pq ipv4
104 This option affects the address family of listening and outgoing sockets.
105 If
106 .Qq any
107 is selected, then the listening sockets will be IPv6 sockets,
108 but on most platforms those will also accept IPv4 connections.
109 .It Va BindToInterface Li = Ar interface Bq experimental
110 If your computer has more than one network interface,
111 .Nm tinc
112 will by default listen on all of them for incoming connections.
113 It is possible to bind only to a single interface with this variable.
114 .Pp
115 This option may not work on all platforms.
116 .It Va BindToIP Li = Ar address Bq experimental
117 If your computer has more than one IP address on a single interface
118 (for example if you are running virtual hosts),
119 .Nm tinc
120 will by default listen on all of them for incoming connections.
121 It is possible to bind only to a single IP address with this variable.
122 It is still possible to listen on several interfaces at the same time though,
123 if they share the same IP address.
124 .Pp
125 This option may not work on all platforms.
126 .It Va ConnectTo Li = Ar name
127 Specifies which other tinc daemon to connect to on startup.
128 Multiple
129 .Va ConnectTo
130 variables may be specified;
131 if connecting to the first one fails then tinc will try the next one, and so on.
132 The names should be known to this tinc daemon
133 (i.e., there should be a host configuration file for the name on the
134 .Va ConnectTo
135 line).
136 .Pp
137 If you don't specify a host with
138 .Va ConnectTo ,
139 .Nm tinc
140 won't try to connect to other daemons at all,
141 and will instead just listen for incoming connections.
142 .It Va Device Li = Ar device Po /dev/tap0 or /dev/misc/net/tun Pc
143 The virtual network device to use.
144 .Nm tinc
145 will automatically detect what kind of device it is.
146 Note that you can only use one device per daemon.
147 The info pages of the tinc package contain more information
148 about configuring the virtual network device.
149 .It Va Hostnames Li = yes | no Pq no
150 This option selects whether IP addresses (both real and on the VPN) should
151 be resolved. Since DNS lookups are blocking, it might affect tinc's
152 efficiency, even stopping the daemon for a few seconds every time it does
153 a lookup if your DNS server is not responding.
154 .Pp
155 This does not affect resolving hostnames to IP addresses from the
156 host configuration files.
157 .It Va Interface Li = Ar interface
158 Defines the name of the interface corresponding to the virtual network device.
159 Depending on the operating system and the type of device this may or may not actually set the name.
160 Currently this option only affects the Linux tun/tap device.
161 .It Va KeyExpire Li = Ar period Pq 3600
162 This option controls the period the encryption keys used to encrypt the data are valid.
163 It is common practice to change keys at regular intervals to make it even harder for crackers,
164 even though it is thought to be nearly impossible to crack a single key.
165 .It Va MaxTimeout Li = Ar period Pq 900
166 This is the maximum delay before trying to reconnect to other tinc daemons.
167 .It Va Mode Li = router | switch | hub Pq router
168 This option selects the way packets are routed to other daemons.
169 .Bl -tag -width indent
170 .It router
171 In this mode
172 .Va Subnet
173 variables in the host configuration files will be used to form a routing table.
174 Only unicast packets of routable protocols (IPv4 and IPv6) are supported in this mode.
175 .It switch
176 In this mode the MAC addresses of the packets on the VPN will be used to
177 dynamically create a routing table just like a network switch does.
178 Unicast, multicast and broadcast packets of every Ethernet protocol are supported in this mode
179 at the cost of frequent broadcast ARP requests and routing table updates.
180 .It hub
181 In this mode every packet will be broadcast to the other daemons.
182 .El
183 .It Va Name Li = Ar name Bq required
184 This is the name which identifies this tinc daemon.
185 It must be unique for the virtual private network this daemon will connect to.
186 .It Va PingTimeout Li = Ar period Pq 60
187 The number of seconds of inactivity that
188 .Nm tinc
189 will wait before sending a probe to the other end.
190 If that other end doesn't answer within that same amount of time,
191 the connection is terminated,
192 and the others will be notified of this.
193 .It Va PrivateKey Li = Ar key Bq obsolete
194 The private RSA key of this tinc daemon.
195 It will allow this tinc daemon to authenticate itself to other daemons.
196 .It Va PrivateKeyFile Li = Ar filename Bq recommended
197 The file in which the private RSA key of this tinc daemon resides.
198 Note that there must be exactly one of
199 .Va PrivateKey
200 or
201 .Va PrivateKeyFile
202 specified in the configuration file.
203 .El
204 .Sh HOST CONFIGURATION FILES
205 The host configuration files contain all information needed
206 to establish a connection to those hosts.
207 A host configuration file is also required for the local tinc daemon,
208 it will use it to read in it's listen port, public key and subnets.
209 .Pp
210 The idea is that these files are portable.
211 You can safely mail your own host configuration file to someone else.
212 That other person can then copy it to his own hosts directory,
213 and now his tinc daemon will be able to connect to your tinc daemon.
214 Since host configuration files only contain public keys,
215 no secrets are revealed by sending out this information.
216 .Bl -tag -width indent
217 .It Va Address Li = Ar address Bq recommended
218 The IP address or hostname of this tinc daemon on the real network.
219 .It Va Cipher Li = Ar cipher Pq blowfish
220 The symmetric cipher algorithm used to encrypt UDP packets.
221 Any cipher supported by OpenSSL is recognised.
222 Furthermore, specifying
223 .Qq none
224 will turn off packet encryption.
225 .It Va Compression Li = Ar level Pq 0
226 This option sets the level of compression used for UDP packets.
227 Possible values are 0 (off), 1 (fast) and any integer up to 9 (best).
228 .It Va Digest Li = Ar digest Pq sha1
229 The digest algorithm used to authenticate UDP packets.
230 Any digest supported by OpenSSL is recognised.
231 Furthermore, specifying
232 .Qq none
233 will turn off packet authentication.
234 .It Va IndirectData Li = yes | no Po no Pc Bq experimental
235 This option specifies whether other tinc daemons besides the one you specified with
236 .Va ConnectTo
237 can make a direct connection to you.
238 This is especially useful if you are behind a firewall
239 and it is impossible to make a connection from the outside to your tinc daemon.
240 Otherwise, it is best to leave this option out or set it to no.
241 .It Va MACLength Li = Ar length Pq 4
242 The length of the message authentication code used to authenticate UDP packets.
243 Can be anything from
244 .Qq 0
245 up to the length of the digest produced by the digest algorithm.
246 .It Va Port Li = Ar port Pq 655
247 The port number on which this tinc daemon is listening for incoming connections.
248 .It Va PublicKey Li = Ar key Bq obsolete
249 The public RSA key of this tinc daemon.
250 It will be used to cryptographically verify it's identity and to set up a secure connection.
251 .It Va PublicKeyFile Li = Ar filename Bq obsolete
252 The file in which the public RSA key of this tinc daemon resides.
253 .Pp
254 From version 1.0pre4 on
255 .Nm tinc
256 will store the public key directly into the host configuration file in PEM format,
257 the above two options then are not necessary.
258 Either the PEM format is used, or exactly one of the above two options must be specified
259 in each host configuration file,
260 if you want to be able to establish a connection with that host.
261 .It Va Subnet Li = Ar address Ns Op Li / Ns Ar masklength
262 The subnet which this tinc daemon will serve.
263 .Nm tinc
264 tries to look up which other daemon it should send a packet to by searching the appropriate subnet.
265 If the packet matches a subnet,
266 it will be sent to the daemon who has this subnet in his host configuration file.
267 Multiple subnet lines can be specified.
268 .Pp
269 Subnets can either be single MAC, IPv4 or IPv6 addresses,
270 in which case a subnet consisting of only that single address is assumed,
271 or they can be a IPv4 or IPv6 network address with a masklength.
272 For example, IPv4 subnets must be in a form like 192.168.1.0/24,
273 where 192.168.1.0 is the network address and 24 is the number of bits set in the netmask.
274 Note that subnets like 192.168.1.1/24 are invalid!
275 Read a networking HOWTO/FAQ/guide if you don't understand this.
276 .It Va TCPOnly Li = yes | no Po no Pc Bq experimental
277 If this variable is set to yes,
278 then the packets are tunnelled over the TCP connection instead of a UDP connection.
279 This is especially useful for those who want to run a tinc daemon
280 from behind a masquerading firewall,
281 or if UDP packet routing is disabled somehow.
282 This is experimental code, try this at your own risk.
283 It may not work at all.
284 Setting this options also implicitly sets IndirectData.
285 .El
286 .Sh FILES
287 .Bl -tag -width indent
288 .It Pa /etc/tinc/
289 The top directory for configuration files.
290 .It Pa /etc/tinc/ Ns Ar NETNAME Ns Pa /tinc.conf
291 The default name of the server configuration file for net
292 .Ar NETNAME .
293 .It Pa /etc/tinc/ Ns Ar NETNAME Ns Pa /hosts/
294 Host configuration files are kept in this directory.
295 .It Pa /etc/tinc/ Ns Ar NETNAME Ns Pa /tinc-up
296 If an executable file with this name exists,
297 it will be executed right after the tinc daemon has connected to the virtual network device.
298 It can be used to set up the corresponding network interface.
299 .Pp
300 The environment variable
301 .Ev NETNAME
302 will be passed to the executable.
303 If specified with the
304 .Va Interface
305 configuration variable,
306 or if the virtual network device is a Linux tun/tap device,
307 the environment variable
308 .Ev INTERFACE
309 will be set to the name of the network interface.
310 .It Pa /etc/tinc/ Ns Ar NETNAME Ns Pa /tinc-down
311 If an executable file with this name exists,
312 it will be executed right before the tinc daemon is going to close
313 its connection to the virtual network device.
314 The same environment variables will be passed as mentioned above.
315 .El
316 .Sh SEE ALSO
317 .Xr tincd 8 ,
318 .Pa http://tinc.nl.linux.org/ ,
319 .Pa http://www.linuxdoc.org/LDP/nag2/ .
320 .Pp
321 The full documentation for
322 .Nm tinc
323 is maintained as a Texinfo manual.
324 If the info and tinc programs are properly installed at your site, the command
325 .Ic info tinc
326 should give you access to the complete manual.
327 .Pp
328 .Nm tinc
329 comes with ABSOLUTELY NO WARRANTY.
330 This is free software, and you are welcome to redistribute it under certain conditions;
331 see the file COPYING for details.