c6af6d7c258108c5e3ffeebb4a1b1fd4b39fbf7e
[tinc] / doc / tinc.conf.5.in
1 .Dd 2017-09-02
2 .Dt TINC.CONF 5
3 .\" Manual page created by:
4 .\" Ivo Timmermans
5 .\" Guus Sliepen <guus@tinc-vpn.org>
6 .Sh NAME
7 .Nm tinc.conf
8 .Nd tinc daemon configuration
9 .Sh DESCRIPTION
10 The files in the
11 .Pa @sysconfdir@/tinc/
12 directory contain runtime and security information for the tinc daemon.
13 .Sh NETWORKS
14 To distinguish multiple instances of tinc running on one computer,
15 you can use the
16 .Fl n
17 option to assign a network name to each tinc daemon.
18 .Pp
19 The effect of this option is that the daemon will set its configuration root to
20 .Pa @sysconfdir@/tinc/ Ns Ar NETNAME Ns Pa / ,
21 where
22 .Ar NETNAME
23 is your argument to the
24 .Fl n
25 option.
26 You'll notice that messages appear in syslog as coming from
27 .Nm tincd. Ns Ar NETNAME ,
28 and on Linux, unless specified otherwise, the name of the virtual network interface will be the same as the network name.
29 .Pp
30 It is recommended that you use network names even if you run only one instance of tinc.
31 However, you can choose not to use the
32 .Fl n
33 option.
34 In this case, the network name would just be empty, and
35 .Nm tinc
36 now looks for files in
37 .Pa @sysconfdir@/tinc/ ,
38 instead of
39 .Pa @sysconfdir@/tinc/ Ns Ar NETNAME Ns Pa / ;
40 the configuration file should be
41 .Pa @sysconfdir@/tinc/tinc.conf ,
42 and the host configuration files are now expected to be in
43 .Pa @sysconfdir@/tinc/hosts/ .
44 .Sh NAMES
45 Each tinc daemon must have a name that is unique in the network which it will be part of.
46 The name will be used by other tinc daemons for identification.
47 The name has to be declared in the
48 .Pa @sysconfdir@/tinc/ Ns Ar NETNAME Ns Pa /tinc.conf
49 file.
50 .Pp
51 To make things easy,
52 choose something that will give unique and easy to remember names to your tinc daemon(s).
53 You could try things like hostnames, owner surnames or location names.
54 However, you are only allowed to use alphanumerical characters (a-z, A-Z, and 0-9) and underscores (_) in the name.
55 .Sh INITIAL CONFIGURATION
56 If you have not configured tinc yet, you can easily create a basic configuration using the following command:
57 .Bd -literal -offset indent
58 .Nm tinc Fl n Ar NETNAME Li init Ar NAME
59 .Ed
60 .Pp
61 You can further change the configuration as needed either by manually editing the configuration files,
62 or by using
63 .Xr tinc 8 .
64 .Sh PUBLIC/PRIVATE KEYS
65 The
66 .Nm tinc Li init
67 command will have generated both RSA and Ed25519 public/private key pairs.
68 The private keys should be stored in files named
69 .Pa rsa_key.priv
70 and
71 .Pa ed25519_key.priv
72 in the directory
73 .Pa @sysconfdir@/tinc/ Ns Ar NETNAME Ns Pa /
74 The public keys should be stored in the host configuration file
75 .Pa @sysconfdir@/tinc/ Ns Ar NETNAME Ns Pa /hosts/ Ns Va NAME .
76 The RSA keys are used for backwards compatibility with tinc version 1.0.
77 If you are upgrading from version 1.0 to 1.1, you can keep the old configuration files,
78 but you will need to create Ed25519 keys using the following command:
79 .Bd -literal -offset indent
80 .Nm tinc Fl n Ar NETNAME Li generate-ed25519-keys
81 .Ed
82 .Sh SERVER CONFIGURATION
83 The server configuration of the daemon is done in the file
84 .Pa @sysconfdir@/tinc/ Ns Ar NETNAME Ns Pa /tinc.conf .
85 This file consists of comments (lines started with a
86 .Li # )
87 or assignments in the form of:
88 .Pp
89 .Va Variable Li = Ar Value .
90 .Pp
91 The variable names are case insensitive, and any spaces, tabs,
92 newlines and carriage returns are ignored.
93 Note: it is not required that you put in the
94 .Li =
95 sign, but doing so improves readability.
96 If you leave it out, remember to replace it with at least one space character.
97 .Pp
98 The server configuration is complemented with host specific configuration (see the next section).
99 Although all configuration options for the local host listed in this document can also be put in
100 .Pa @sysconfdir@/tinc/ Ns Ar NETNAME Ns Pa /tinc.conf ,
101 it is recommended to put host specific configuration options in the host configuration file,
102 as this makes it easy to exchange with other nodes.
103 .Pp
104 You can edit the config file manually, but it is recommended that you use
105 .Xr tinc 8
106 to change configuration variables for you.
107 .Pp
108 Here are all valid variables, listed in alphabetical order.
109 The default value is given between parentheses.
110 .Bl -tag -width indent
111 .It Va AddressFamily Li = ipv4 | ipv6 | any Pq any
112 This option affects the address family of listening and outgoing sockets.
113 If
114 .Qq any
115 is selected, then depending on the operating system both IPv4 and IPv6 or just
116 IPv6 listening sockets will be created.
117 .It Va AutoConnect Li = yes | no Pq yes
118 If set to yes,
119 .Nm tinc
120 will automatically set up meta connections to other nodes,
121 without requiring
122 .Va ConnectTo
123 variables.
124 .Pp
125 Note: it is not possible to connect to nodes using zero (system-assigned) ports in this way.
126 .It Va BindToAddress Li = Ar address Op Ar port
127 This is the same as
128 .Va ListenAddress ,
129 however the address given with the
130 .Va BindToAddress
131 option will also be used for outgoing connections. This is useful if your
132 computer has more than one IPv4 or IPv6 address, and you want
133 .Nm tinc
134 to only use a specific one for outgoing packets.
135 .It Va BindToInterface Li = Ar interface Bq experimental
136 If your computer has more than one network interface,
137 .Nm tinc
138 will by default listen on all of them for incoming connections.
139 It is possible to bind only to a single interface with this variable.
140 .Pp
141 This option may not work on all platforms.
142 Also, on some platforms it will not actually bind to an interface,
143 but rather to the address that the interface has at the moment a socket is created.
144 .It Va Broadcast Li = no | mst | direct Po mst Pc Bq experimental
145 This option selects the way broadcast packets are sent to other daemons.
146 NOTE: all nodes in a VPN must use the same
147 .Va Broadcast
148 mode, otherwise routing loops can form.
149 .Bl -tag -width indent
150 .It no
151 Broadcast packets are never sent to other nodes.
152 .It mst
153 Broadcast packets are sent and forwarded via the VPN's Minimum Spanning Tree.
154 This ensures broadcast packets reach all nodes.
155 .It direct
156 Broadcast packets are sent directly to all nodes that can be reached directly.
157 Broadcast packets received from other nodes are never forwarded.
158 If the IndirectData option is also set, broadcast packets will only be sent to nodes which we have a meta connection to.
159 .El
160 .It Va BroadcastSubnet Li = Ar address Ns Op Li / Ns Ar prefixlength
161 Declares a broadcast subnet. Any packet with a destination address falling into such a subnet will be routed as a broadcast (provided all nodes have it declared).
162 This is most useful to declare subnet broadcast addresses (e.g. 10.42.255.255), otherwise
163 .Nm tinc
164 won't know what to do with them.
165 .Pp
166 Note that global broadcast addresses (MAC ff:ff:ff:ff:ff:ff, IPv4 255.255.255.255), as well as multicast space (IPv4 224.0.0.0/4, IPv6 ff00::/8) are always considered broadcast addresses and don't need to be declared.
167 .It Va ConnectTo Li = Ar name
168 Specifies which other tinc daemon to connect to on startup.
169 Multiple
170 .Va ConnectTo
171 variables may be specified,
172 in which case outgoing connections to each specified tinc daemon are made.
173 The names should be known to this tinc daemon
174 (i.e., there should be a host configuration file for the name on the
175 .Va ConnectTo
176 line).
177 .Pp
178 If you don't specify a host with
179 .Va ConnectTo
180 and have disabled
181 .Va AutoConnect ,
182 .Nm tinc
183 won't try to connect to other daemons at all,
184 and will instead just listen for incoming connections.
185 .It Va DecrementTTL Li = yes | no Po no Pc Bq experimental
186 When enabled,
187 .Nm tinc
188 will decrement the Time To Live field in IPv4 packets, or the Hop Limit field in IPv6 packets,
189 before forwarding a received packet to the virtual network device or to another node,
190 and will drop packets that have a TTL value of zero,
191 in which case it will send an ICMP Time Exceeded packet back.
192 .Pp
193 Do not use this option if you use switch mode and want to use IPv6.
194 .It Va Device Li = Ar device Po Pa /dev/tap0 , Pa /dev/net/tun No or other depending on platform Pc
195 The virtual network device to use.
196 .Nm tinc
197 will automatically detect what kind of device it is.
198 Note that you can only use one device per daemon.
199 Under Windows, use
200 .Va Interface
201 instead of
202 .Va Device .
203 The info pages of the tinc package contain more information
204 about configuring the virtual network device.
205 .It Va DeviceStandby Li = yes | no Po no Pc
206 When disabled,
207 .Nm tinc
208 calls tinc-up on startup, and tinc-down on shutdown. When enabled,
209 .Nm tinc
210 will only call tinc-up when at least one node is reachable, and will call tinc-down as soon as no nodes are reachable.
211 On Windows, this also determines when the virtual network interface "cable" is "plugged".
212 .It Va DeviceType Li = Ar type Pq platform dependent
213 The type of the virtual network device.
214 Tinc will normally automatically select the right type of tun/tap interface, and this option should not be used.
215 However, this option can be used to select one of the special interface types, if support for them is compiled in.
216 .Bl -tag -width indent
217 .It dummy
218 Use a dummy interface.
219 No packets are ever read or written to a virtual network device.
220 Useful for testing, or when setting up a node that only forwards packets for other nodes.
221 .It raw_socket
222 Open a raw socket, and bind it to a pre-existing
223 .Va Interface
224 (eth0 by default).
225 All packets are read from this interface.
226 Packets received for the local node are written to the raw socket.
227 However, at least on Linux, the operating system does not process IP packets destined for the local host.
228 .It multicast
229 Open a multicast UDP socket and bind it to the address and port (separated by spaces) and optionally a TTL value specified using
230 .Va Device .
231 Packets are read from and written to this multicast socket.
232 This can be used to connect to UML, QEMU or KVM instances listening on the same multicast address.
233 Do NOT connect multiple
234 .Nm tinc
235 daemons to the same multicast address, this will very likely cause routing loops.
236 Also note that this can cause decrypted VPN packets to be sent out on a real network if misconfigured.
237 .It fd
238 Use a file descriptor, given directly as an integer or passed through a unix domain socket.
239 On Linux, an abstract socket address can be specified by using "@" as a prefix.
240 All packets are read from this interface.
241 Packets received for the local node are written to it.
242 .It uml Pq not compiled in by default
243 Create a UNIX socket with the filename specified by
244 .Va Device ,
245 or
246 .Pa @runstatedir@/ Ns Ar NETNAME Ns Pa .umlsocket
247 if not specified.
248 .Nm tinc
249 will wait for a User Mode Linux instance to connect to this socket.
250 .It vde Pq not compiled in by default
251 Uses the libvdeplug library to connect to a Virtual Distributed Ethernet switch,
252 using the UNIX socket specified by
253 .Va Device ,
254 or
255 .Pa @runstatedir@/vde.ctl
256 if not specified.
257 .El
258 Also, in case tinc does not seem to correctly interpret packets received from the virtual network device,
259 it can be used to change the way packets are interpreted:
260 .Bl -tag -width indent
261 .It tun Pq BSD and Linux
262 Set type to tun.
263 Depending on the platform, this can either be with or without an address family header (see below).
264 .It tunnohead Pq BSD
265 Set type to tun without an address family header.
266 Tinc will expect packets read from the virtual network device to start with an IP header.
267 On some platforms IPv6 packets cannot be read from or written to the device in this mode.
268 .It tunifhead Pq BSD
269 Set type to tun with an address family header.
270 Tinc will expect packets read from the virtual network device
271 to start with a four byte header containing the address family,
272 followed by an IP header.
273 This mode should support both IPv4 and IPv6 packets.
274 .It utun Pq OS X
275 Set type to utun.
276 This is only supported on OS X version 10.6.8 and higher, but doesn't require the tuntaposx module.
277 This mode should support both IPv4 and IPv6 packets.
278 .It tap Pq BSD and Linux
279 Set type to tap.
280 Tinc will expect packets read from the virtual network device
281 to start with an Ethernet header.
282 .El
283 .It Va DirectOnly Li = yes | no Po no Pc Bq experimental
284 When this option is enabled, packets that cannot be sent directly to the destination node,
285 but which would have to be forwarded by an intermediate node, are dropped instead.
286 When combined with the IndirectData option,
287 packets for nodes for which we do not have a meta connection with are also dropped.
288 .It Va Ed25519PrivateKeyFile Li = Ar filename Po Pa @sysconfdir@/tinc/ Ns Ar NETNAME Ns Pa /ed25519_key.priv Pc
289 The file in which the private Ed25519 key of this tinc daemon resides.
290 .It Va Forwarding Li = off | internal | kernel Po internal Pc Bq experimental
291 This option selects the way indirect packets are forwarded.
292 .Bl -tag -width indent
293 .It off
294 Incoming packets that are not meant for the local node,
295 but which should be forwarded to another node, are dropped.
296 .It internal
297 Incoming packets that are meant for another node are forwarded by tinc internally.
298 .Pp
299 This is the default mode, and unless you really know you need another forwarding mode, don't change it.
300 .It kernel
301 Incoming packets using the legacy protocol are always sent to the TUN/TAP device,
302 even if the packets are not for the local node.
303 This is less efficient, but allows the kernel to apply its routing and firewall rules on them,
304 and can also help debugging.
305 Incoming packets using the SPTPS protocol are dropped, since they are end-to-end encrypted.
306 .El
307 .It Va FWMark Li = Ar value Po 0 Pc Bq experimental
308 When set to a non-zero value, all TCP and UDP sockets created by tinc will use the given value as the firewall mark.
309 This can be used for mark-based routing or for packet filtering.
310 This option is currently only supported on Linux.
311 .It Va Hostnames Li = yes | no Pq no
312 This option selects whether IP addresses (both real and on the VPN) should
313 be resolved. Since DNS lookups are blocking, it might affect tinc's
314 efficiency, even stopping the daemon for a few seconds every time it does
315 a lookup if your DNS server is not responding.
316 .Pp
317 This does not affect resolving hostnames to IP addresses from the
318 host configuration files, but whether hostnames should be resolved while logging.
319 .It Va IffOneQueue Li = yes | no Po no Pc Bq experimental
320 (Linux only) Set IFF_ONE_QUEUE flag on TUN/TAP devices.
321 .It Va Interface Li = Ar interface
322 Defines the name of the interface corresponding to the virtual network device.
323 Depending on the operating system and the type of device this may or may not actually set the name of the interface.
324 Under Windows, this variable is used to select which network interface will be used.
325 If you specified a
326 .Va Device ,
327 this variable is almost always already correctly set.
328 .It Va InvitationExpire Li = Ar seconds Pq 604800
329 This option controls the period invitations are valid.
330 .It Va KeyExpire Li = Ar seconds Pq 3600
331 This option controls the period the encryption keys used to encrypt the data are valid.
332 It is common practice to change keys at regular intervals to make it even harder for crackers,
333 even though it is thought to be nearly impossible to crack a single key.
334 .It Va ListenAddress Li = Ar address Op Ar port
335 If your computer has more than one IPv4 or IPv6 address,
336 .Nm tinc
337 will by default listen on all of them for incoming connections.
338 This option can be used to restrict which addresses tinc listens on.
339 Multiple
340 .Va ListenAddress
341 variables may be specified,
342 in which case listening sockets for each specified address are made.
343 .Pp
344 If no
345 .Ar port
346 is specified, the socket will listen on the port specified by the
347 .Va Port
348 option, or to port 655 if neither is given.
349 To only listen on a specific port but not on a specific address, use
350 .Li *
351 for the
352 .Ar address .
353 .Pp
354 If
355 .Ar port
356 is set to zero, it will be randomly assigned by the system. This is useful to randomize source ports of UDP packets, which can improve UDP hole punching reliability. In this case it is recommended to set
357 .Va AddressFamily
358 as well, otherwise
359 .Nm tinc
360 will assign different ports to different address families but other nodes can only know of one.
361 .It Va LocalDiscovery Li = yes | no Pq yes
362 When enabled,
363 .Nm tinc
364 will try to detect peers that are on the same local network.
365 This will allow direct communication using LAN addresses, even if both peers are behind a NAT
366 and they only ConnectTo a third node outside the NAT,
367 which normally would prevent the peers from learning each other's LAN address.
368 .Pp
369 Currently, local discovery is implemented by sending some packets to the local address of the node during UDP discovery. This will not work with old nodes that don't transmit their local address.
370 .It Va LogLevel Li = level Pq 0
371 This option controls the verbosity of the logging. The higher the debug level, the more messages it will log.
372 .It Va MACExpire Li = Ar seconds Pq 600
373 This option controls the amount of time MAC addresses are kept before they are removed.
374 This only has effect when
375 .Va Mode
376 is set to
377 .Qq switch .
378 .It Va MaxConnectionBurst Li = Ar count Pq 100
379 This option controls how many connections tinc accepts in quick succession.
380 If there are more connections than the given number in a short time interval,
381 tinc will reduce the number of accepted connections to only one per second,
382 until the burst has passed.
383 .It Va MaxTimeout Li = Ar seconds Pq 900
384 This is the maximum delay before trying to reconnect to other tinc daemons.
385 .It Va Mode Li = router | switch | hub Pq router
386 This option selects the way packets are routed to other daemons.
387 .Bl -tag -width indent
388 .It router
389 In this mode
390 .Va Subnet
391 variables in the host configuration files will be used to form a routing table.
392 Only packets of routable protocols (IPv4 and IPv6) are supported in this mode.
393 .Pp
394 This is the default mode, and unless you really know you need another mode, don't change it.
395 .It switch
396 In this mode the MAC addresses of the packets on the VPN will be used to
397 dynamically create a routing table just like an Ethernet switch does.
398 Unicast, multicast and broadcast packets of every protocol that runs over Ethernet are supported in this mode
399 at the cost of frequent broadcast ARP requests and routing table updates.
400 .Pp
401 This mode is primarily useful if you want to bridge Ethernet segments.
402 .It hub
403 This mode is almost the same as the switch mode, but instead
404 every packet will be broadcast to the other daemons
405 while no routing table is managed.
406 .El
407 .It Va Name Li = Ar name Bq required
408 This is the name which identifies this tinc daemon.
409 It must be unique for the virtual private network this daemon will connect to.
410 .Va Name
411 may only consist of alphanumeric and underscore characters (a-z, A-Z, 0-9 and _), and is case sensitive.
412 If
413 .Va Name
414 starts with a
415 .Li $ ,
416 then the contents of the environment variable that follows will be used.
417 In that case, invalid characters will be converted to underscores.
418 If
419 .Va Name
420 is
421 .Li $HOST ,
422 but no such environment variable exist, the hostname will be read using the gethostname() system call.
423 .It Va PingInterval Li = Ar seconds Pq 60
424 The number of seconds of inactivity that
425 .Nm tinc
426 will wait before sending a probe to the other end.
427 .It Va PingTimeout Li = Ar seconds Pq 5
428 The number of seconds to wait for a response to pings or to allow meta
429 connections to block. If the other end doesn't respond within this time,
430 the connection is terminated,
431 and the others will be notified of this.
432 .It Va PriorityInheritance Li = yes | no Po no Pc Bq experimental
433 When this option is enabled the value of the TOS field of tunneled IPv4 packets
434 will be inherited by the UDP packets that are sent out.
435 .It Va PrivateKey Li = Ar key Bq obsolete
436 The private RSA key of this tinc daemon.
437 It will allow this tinc daemon to authenticate itself to other daemons.
438 .It Va PrivateKeyFile Li = Ar filename Po Pa @sysconfdir@/tinc/ Ns Ar NETNAME Ns Pa /rsa_key.priv Pc
439 The file in which the private RSA key of this tinc daemon resides.
440 .It Va ProcessPriority Li = low | normal | high
441 When this option is used the priority of the
442 .Nm tincd
443 process will be adjusted.
444 Increasing the priority may help to reduce latency and packet loss on the VPN.
445 .It Va Proxy Li = socks4 | socks5 | http | exec Ar ... Bq experimental
446 Use a proxy when making outgoing connections.
447 The following proxy types are currently supported:
448 .Bl -tag -width indent
449 .It socks4 Ar address Ar port Op Ar username
450 Connects to the proxy using the SOCKS version 4 protocol.
451 Optionally, a
452 .Ar username
453 can be supplied which will be passed on to the proxy server.
454 Only IPv4 connections can be proxied using SOCKS 4.
455 .It socks5 Ar address Ar port Op Ar username Ar password
456 Connect to the proxy using the SOCKS version 5 protocol.
457 If a
458 .Ar username
459 and
460 .Ar password
461 are given, basic username/password authentication will be used,
462 otherwise no authentication will be used.
463 .It http Ar address Ar port
464 Connects to the proxy and sends a HTTP CONNECT request.
465 .It exec Ar command
466 Executes the given
467 .Ar command
468 which should set up the outgoing connection.
469 The environment variables
470 .Ev NAME ,
471 .Ev NODE ,
472 .Ev REMOTEADDRES
473 and
474 .Ev REMOTEPORT
475 are available.
476 .El
477 .It Va ReplayWindow Li = Ar bytes Pq 32
478 This is the size of the replay tracking window for each remote node, in bytes.
479 The window is a bitfield which tracks 1 packet per bit, so for example
480 the default setting of 32 will track up to 256 packets in the window. In high
481 bandwidth scenarios, setting this to a higher value can reduce packet loss from
482 the interaction of replay tracking with underlying real packet loss and/or
483 reordering. Setting this to zero will disable replay tracking completely and
484 pass all traffic, but leaves tinc vulnerable to replay-based attacks on your
485 traffic.
486 .It Va Sandbox Li = off | normal | high Po normal Pc
487 Use process sandbox on some operating systems where it is supported (currently that's OpenBSD).
488 Using this directive on other operating systems with levels higher than
489 .Ar off
490 will cause
491 .Nm tincd
492 to exit with an error.
493 The goal is to limit the impact of possible remote attacks against the
494 .Nm tincd
495 daemon by running it with lowest privileges necessary for the required features to work.
496 The following levels are provided:
497 .Bl -tag -width indent
498 .It off
499 Disable sandbox.
500 No restrictions are put on
501 .Nm tincd ,
502 all functionality works as if this feature did not exist.
503 .It normal
504 The default level which aims to be safe for most users.
505 Adds some level of protection with only minor reductions in functionality.
506 For example, executables located in non-standard paths may not be available as
507 .Nm tincd
508 scripts or
509 .Ar exec
510 proxies, and configuration reloading may not work for some variables, forcing you to restart
511 .Nm tincd
512 to apply new settings.
513 .It high
514 Fully disables
515 .Ar exec
516 proxies and
517 .Nm tincd
518 scripts, with the exception of initial
519 .Nm tinc-up
520 and
521 .Nm subnet-up .
522 This allows
523 .Nm tincd
524 to block large parts of operating system interface that may be useful to attackers.
525 Strongly consider using this level if you need neither of these features.
526 .El
527 .It Va StrictSubnets Li = yes | no Po no Pc Bq experimental
528 When this option is enabled tinc will only use Subnet statements which are
529 present in the host config files in the local
530 .Pa @sysconfdir@/tinc/ Ns Ar NETNAME Ns Pa /hosts/
531 directory. Subnets learned via connections to other nodes and which are not
532 present in the local host config files are ignored.
533 .It Va TunnelServer Li = yes | no Po no Pc Bq experimental
534 When this option is enabled tinc will no longer forward information between other tinc daemons,
535 and will only allow connections with nodes for which host config files are present in the local
536 .Pa @sysconfdir@/tinc/ Ns Ar NETNAME Ns Pa /hosts/
537 directory.
538 Setting this options also implicitly sets StrictSubnets.
539 .It Va UDPDiscovery Li = yes | no Po yes Pc
540 When this option is enabled tinc will try to establish UDP connectivity to nodes,
541 using TCP while it determines if a node is reachable over UDP. If it is disabled,
542 tinc always assumes a node is reachable over UDP.
543 Note that tinc will never use UDP with nodes that have
544 .Va TCPOnly
545 enabled.
546 .It Va UDPDiscoveryKeepaliveInterval Li = Ar seconds Pq 9
547 The minimum amount of time between sending UDP ping datagrams to check UDP connectivity once it has been established.
548 Note that these pings are large, since they are used to verify link MTU as well.
549 .It Va UDPDiscoveryInterval Li = Ar seconds Pq 2
550 The minimum amount of time between sending UDP ping datagrams to try to establish UDP connectivity.
551 .It Va UDPDiscoveryTimeout Li = Ar seconds Pq 30
552 If tinc doesn't receive any UDP ping replies over the specified interval,
553 it will assume UDP communication is broken and will fall back to TCP.
554 .It Va UDPInfoInterval Li = Ar seconds Pq 5
555 The minimum amount of time between sending periodic updates about UDP addresses, which are mostly useful for UDP hole punching.
556 .It Va UDPRcvBuf Li = Ar bytes Pq 1048576
557 Sets the socket receive buffer size for the UDP socket, in bytes.
558 If set to zero, the default buffer size will be used by the operating system.
559 Note: this setting can have a significant impact on performance, especially raw throughput.
560 .It Va UDPSndBuf Li = Ar bytes Pq 1048576
561 Sets the socket send buffer size for the UDP socket, in bytes.
562 If set to zero, the default buffer size will be used by the operating system.
563 Note: this setting can have a significant impact on performance, especially raw throughput.
564 .It Va UPnP Li = yes | udponly | no Po no Pc
565 If this option is enabled then tinc will search for UPnP-IGD devices on the local network.
566 It will then create and maintain port mappings for tinc's listening TCP and UDP ports.
567 If set to "udponly", tinc will only create a mapping for its UDP (data) port, not for its TCP (metaconnection) port.
568 Note that tinc must have been built with miniupnpc support for this feature to be available.
569 Furthermore, be advised that enabling this can have security implications, because the miniupnpc library that
570 tinc uses might not be well-hardened with regard to malicious UPnP replies.
571 .It Va UPnPDiscoverWait Li = Ar seconds Pq 5
572 The amount of time to wait for replies when probing the local network for UPnP devices.
573 .It Va UPnPRefreshPeriod Li = Ar seconds Pq 60
574 How often tinc will re-add the port mapping, in case it gets reset on the UPnP device. This also controls the duration of the port mapping itself, which will be set to twice that duration.
575 .El
576 .Sh HOST CONFIGURATION FILES
577 The host configuration files contain all information needed
578 to establish a connection to those hosts.
579 A host configuration file is also required for the local tinc daemon,
580 it will use it to read in it's listen port, public key and subnets.
581 .Pp
582 The idea is that these files are portable.
583 You can safely mail your own host configuration file to someone else.
584 That other person can then copy it to his own hosts directory,
585 and now his tinc daemon will be able to connect to your tinc daemon.
586 Since host configuration files only contain public keys,
587 no secrets are revealed by sending out this information.
588 .Bl -tag -width indent
589 .It Va Address Li = Ar address Oo Ar port Oc Bq recommended
590 The IP address or hostname of this tinc daemon on the real network.
591 This will only be used when trying to make an outgoing connection to this tinc daemon.
592 Optionally, a port can be specified to use for this address.
593 Multiple
594 .Va Address
595 variables can be specified, in which case each address will be tried until a working
596 connection has been established.
597 .It Va Cipher Li = Ar cipher Pq aes-256-cbc
598 The symmetric cipher algorithm used to encrypt UDP packets.
599 Any cipher supported by LibreSSL or OpenSSL is recognised.
600 Furthermore, specifying
601 .Qq none
602 will turn off packet encryption.
603 It is best to use only those ciphers which support CBC mode.
604 This option only affects communication using the legacy protocol.
605 .It Va ClampMSS Li = yes | no Pq yes
606 This option specifies whether tinc should clamp the maximum segment size (MSS)
607 of TCP packets to the path MTU. This helps in situations where ICMP
608 Fragmentation Needed or Packet too Big messages are dropped by firewalls.
609 .It Va Compression Li = Ar level Pq 0
610 This option sets the level of compression used for UDP packets.
611 Possible values are 0 (off), 1 (fast zlib) and any integer up to 9 (best zlib),
612 10 (fast lzo), 11 (best lzo), and 12 (lz4).
613 .It Va Digest Li = Ar digest Pq sha1
614 The digest algorithm used to authenticate UDP packets.
615 Any digest supported by LibreSSL or OpenSSL is recognised.
616 Furthermore, specifying
617 .Qq none
618 will turn off packet authentication.
619 This option only affects communication using the legacy protocol.
620 .It Va IndirectData Li = yes | no Pq no
621 When set to yes, only nodes which already have a meta connection to you
622 will try to establish direct communication with you.
623 It is best to leave this option out or set it to no.
624 .It Va MACLength Li = Ar length Pq 4
625 The length of the message authentication code used to authenticate UDP packets.
626 Can be anything from
627 .Qq 0
628 up to the length of the digest produced by the digest algorithm.
629 This option only affects communication using the legacy protocol.
630 .It Va PMTU Li = Ar mtu Po 1514 Pc
631 This option controls the initial path MTU to this node.
632 .It Va PMTUDiscovery Li = yes | no Po yes Pc
633 When this option is enabled, tinc will try to discover the path MTU to this node.
634 After the path MTU has been discovered, it will be enforced on the VPN.
635 .It Va MTUInfoInterval Li = Ar seconds Pq 5
636 The minimum amount of time between sending periodic updates about relay path MTU. Useful for quickly determining MTU to indirect nodes.
637 .It Va Port Li = Ar port Pq 655
638 The port number on which this tinc daemon is listening for incoming connections,
639 which is used if no port number is specified in an
640 .Va Address
641 statement.
642 .Pp
643 If this is set to zero, the port will be randomly assigned by the system. This is useful to randomize source ports of UDP packets, which can improve UDP hole punching reliability. When setting
644 .Va Port
645 to zero it is recommended to set
646 .Va AddressFamily
647 as well, otherwise
648 .Nm tinc
649 will assign different ports to different address families but other nodes can only know of one.
650 .It Va PublicKey Li = Ar key Bq obsolete
651 The public RSA key of this tinc daemon.
652 It will be used to cryptographically verify it's identity and to set up a secure connection.
653 .It Va PublicKeyFile Li = Ar filename Bq obsolete
654 The file in which the public RSA key of this tinc daemon resides.
655 .Pp
656 From version 1.0pre4 on
657 .Nm tinc
658 will store the public key directly into the host configuration file in PEM format,
659 the above two options then are not necessary.
660 Either the PEM format is used, or exactly one of the above two options must be specified
661 in each host configuration file,
662 if you want to be able to establish a connection with that host.
663 .It Va Subnet Li = Ar address Ns Op Li / Ns Ar prefixlength Ns Op Li # Ns Ar weight
664 The subnet which this tinc daemon will serve.
665 .Nm tinc
666 tries to look up which other daemon it should send a packet to by searching the appropriate subnet.
667 If the packet matches a subnet,
668 it will be sent to the daemon who has this subnet in his host configuration file.
669 Multiple
670 .Va Subnet
671 variables can be specified.
672 .Pp
673 Subnets can either be single MAC, IPv4 or IPv6 addresses,
674 in which case a subnet consisting of only that single address is assumed,
675 or they can be a IPv4 or IPv6 network address with a prefixlength.
676 For example, IPv4 subnets must be in a form like 192.168.1.0/24,
677 where 192.168.1.0 is the network address and 24 is the number of bits set in the netmask.
678 Note that subnets like 192.168.1.1/24 are invalid!
679 Read a networking HOWTO/FAQ/guide if you don't understand this.
680 IPv6 subnets are notated like fec0:0:0:1::/64.
681 MAC addresses are notated like 0:1a:2b:3c:4d:5e.
682 .Pp
683 A Subnet can be given a weight to indicate its priority over identical Subnets
684 owned by different nodes. The default weight is 10. Lower values indicate
685 higher priority. Packets will be sent to the node with the highest priority,
686 unless that node is not reachable, in which case the node with the next highest
687 priority will be tried, and so on.
688 .It Va TCPOnly Li = yes | no Pq no Bq obsolete
689 If this variable is set to yes,
690 then the packets are tunnelled over the TCP connection instead of a UDP connection.
691 This is especially useful for those who want to run a tinc daemon
692 from behind a masquerading firewall,
693 or if UDP packet routing is disabled somehow.
694 Setting this options also implicitly sets IndirectData.
695 .Pp
696 Since version 1.0.10, tinc will automatically detect whether communication via
697 UDP is possible or not.
698 .It Va Weight Li = Ar weight
699 If this variable is set, it overrides the weight given to connections made with
700 another host. A higher
701 .Ar weight
702 means a lower priority is given to this connection when broadcasting or
703 forwarding packets.
704 .El
705 .Sh SCRIPTS
706 Apart from reading the server and host configuration files,
707 tinc can also run scripts at certain moments.
708 Below is a list of filenames of scripts and a description of when they are run.
709 A script is only run if it exists and if it is executable.
710 .Pp
711 Scripts are run synchronously;
712 this means that tinc will temporarily stop processing packets until the called script finishes executing.
713 This guarantees that scripts will execute in the exact same order as the events that trigger them.
714 If you need to run commands asynchronously, you have to ensure yourself that they are being run in the background.
715 .Pp
716 Under Windows, the scripts must have the extension
717 .Pa .bat
718 or
719 .Pa .cmd .
720 .Bl -tag -width indent
721 .It Pa @sysconfdir@/tinc/ Ns Ar NETNAME Ns Pa /tinc-up
722 This is the most important script.
723 If it is present it will be executed right after the tinc daemon has been started and has connected to the virtual network device (or when the first node becomes reachable if
724 .Va DeviceStandby
725 is used).
726 It should be used to set up the corresponding network interface,
727 but can also be used to start other things.
728 .Pp
729 Under Windows you can use the Network Connections control panel instead of creating this script.
730 .It Pa @sysconfdir@/tinc/ Ns Ar NETNAME Ns Pa /tinc-down
731 This script is started right before the tinc daemon quits (or when the last node becomes unreachable if
732 .Va DeviceStandby
733 is used).
734 .It Pa @sysconfdir@/tinc/ Ns Ar NETNAME Ns Pa /hosts/ Ns Ar HOST Ns Pa -up
735 This script is started when the tinc daemon with name
736 .Ar HOST
737 becomes reachable.
738 .It Pa @sysconfdir@/tinc/ Ns Ar NETNAME Ns Pa /hosts/ Ns Ar HOST Ns Pa -down
739 This script is started when the tinc daemon with name
740 .Ar HOST
741 becomes unreachable.
742 .It Pa @sysconfdir@/tinc/ Ns Ar NETNAME Ns Pa /host-up
743 This script is started when any host becomes reachable.
744 .It Pa @sysconfdir@/tinc/ Ns Ar NETNAME Ns Pa /host-down
745 This script is started when any host becomes unreachable.
746 .It Pa @sysconfdir@/tinc/ Ns Ar NETNAME Ns Pa /subnet-up
747 This script is started when a Subnet becomes reachable.
748 The Subnet and the node it belongs to are passed in environment variables.
749 .It Pa @sysconfdir@/tinc/ Ns Ar NETNAME Ns Pa /subnet-down
750 This script is started when a Subnet becomes unreachable.
751 .It Pa @sysconfdir@/tinc/ Ns Ar NETNAME Ns Pa /invitation-created
752 This script is started when a new invitation has been created.
753 .It Pa @sysconfdir@/tinc/ Ns Ar NETNAME Ns Pa /invitation-accepted
754 This script is started when an invitation has been used.
755 .El
756 .Pp
757 The scripts are started without command line arguments, but can make use of certain environment variables.
758 Under UNIX like operating systems the names of environment variables must be preceded by a
759 .Li $
760 in scripts.
761 Under Windows, in
762 .Pa .bat
763 or
764 .Pa .cmd
765 files, they have to be put between
766 .Li %
767 signs.
768 .Bl -tag -width indent
769 .It Ev NETNAME
770 If a netname was specified, this environment variable contains it.
771 .It Ev NAME
772 Contains the name of this tinc daemon.
773 .It Ev DEVICE
774 Contains the name of the virtual network device that tinc uses.
775 .It Ev INTERFACE
776 Contains the name of the virtual network interface that tinc uses.
777 This should be used for commands like
778 .Pa ifconfig .
779 .It Ev NODE
780 When a host becomes (un)reachable, this is set to its name.
781 If a subnet becomes (un)reachable, this is set to the owner of that subnet.
782 .It Ev REMOTEADDRESS
783 When a host becomes (un)reachable, this is set to its real address.
784 .It Ev REMOTEPORT
785 When a host becomes (un)reachable, this is set to the port number it uses for communication with other tinc daemons.
786 .It Ev SUBNET
787 When a subnet becomes (un)reachable, this is set to the subnet.
788 .It Ev WEIGHT
789 When a subnet becomes (un)reachable, this is set to the subnet weight.
790 .It Ev INVITATION_FILE
791 When the
792 .Pa invitation-created
793 script is called, this is set to the file where the invitation details will be stored.
794 .It Ev INVITATION_URL
795 When the
796 .Pa invitation-created
797 script is called, this is set to the invitation URL that has been created.
798 .El
799 .Pp
800 Do not forget that under UNIX operating systems, you have to make the scripts executable, using the command
801 .Nm chmod Li a+x Pa script .
802 .Pp
803 Here's the list of script configuration variables in alphabetical order.
804 .Bl -tag -width indent
805 .It Va ScriptsExtension Li = Ar .extension Pq empty
806 File extension to use for 
807 .Nm tincd
808 scripts. For example,
809 .Ar .py ,
810 .Ar .pl ,
811 or
812 .Ar .rb .
813 Please note than it is simply concatenated with the script name and the dot is not added automatically.
814 .It Va ScriptsInterpreter Li = Pa /path/to/interpreter Pq empty
815 Used as an interpreter for scripts started by 
816 .Nm tincd
817 by prepending it to the start of the command line.
818 If the variable is empty (which is the default), scripts are executed directly.
819 .Sh FILES
820 The most important files are:
821 .Bl -tag -width indent
822 .It Pa @sysconfdir@/tinc/
823 The top directory for configuration files.
824 .It Pa @sysconfdir@/tinc/ Ns Ar NETNAME Ns Pa /tinc.conf
825 The default name of the server configuration file for net
826 .Ar NETNAME .
827 .It Pa @sysconfdir@/tinc/ Ns Ar NETNAME Ns Pa /conf.d/
828 Optional directory from which any .conf file will be loaded
829 .It Pa @sysconfdir@/tinc/ Ns Ar NETNAME Ns Pa /hosts/
830 Host configuration files are kept in this directory.
831 .It Pa @sysconfdir@/tinc/ Ns Ar NETNAME Ns Pa /tinc-up
832 If an executable file with this name exists,
833 it will be executed right after the tinc daemon has connected to the virtual network device.
834 It can be used to set up the corresponding network interface.
835 .It Pa @sysconfdir@/tinc/ Ns Ar NETNAME Ns Pa /tinc-down
836 If an executable file with this name exists,
837 it will be executed right before the tinc daemon is going to close
838 its connection to the virtual network device.
839 .It Pa @sysconfdir@/tinc/ Ns Ar NETNAME Ns Pa /invitations/
840 This directory contains outstanding invitations.
841 .It Pa @sysconfdir@/tinc/ Ns Ar NETNAME Ns Pa /invitation-data
842 After a successful join, this file contains a copy of the invitation data received.
843 .El
844 .Sh SEE ALSO
845 .Xr tincd 8 ,
846 .Xr tinc 8 ,
847 .Pa https://www.tinc-vpn.org/ ,
848 .Pa http://www.tldp.org/LDP/nag2/ .
849 .Pp
850 The full documentation for
851 .Nm tinc
852 is maintained as a Texinfo manual.
853 If the info and tinc programs are properly installed at your site, the command
854 .Ic info tinc
855 should give you access to the complete manual.
856 .Pp
857 .Nm tinc
858 comes with ABSOLUTELY NO WARRANTY.
859 This is free software, and you are welcome to redistribute it under certain conditions;
860 see the file COPYING for details.