ca399d5b2640be227d008d2dadadfeff045a5cae
[tinc] / doc / tinc.texi
1 \input texinfo   @c -*-texinfo-*-
2 @c $Id: tinc.texi,v 1.8.4.19 2002/02/10 21:57:51 guus Exp $
3 @c %**start of header
4 @setfilename tinc.info
5 @settitle tinc Manual
6 @setchapternewpage odd
7 @c %**end of header
8
9 @ifinfo
10 @dircategory Networking tools
11 @direntry
12 * tinc: (tinc).              The tinc Manual.
13 @end direntry
14
15 This is the info manual for tinc, a Virtual Private Network daemon.
16
17 Copyright @copyright{} 1998-2002 Ivo Timmermans
18 <itimmermans@@bigfoot.com>, Guus Sliepen <guus@@sliepen.warande.net> and
19 Wessel Dankers <wsl@@nl.linux.org>.
20
21 $Id: tinc.texi,v 1.8.4.19 2002/02/10 21:57:51 guus Exp $
22
23 Permission is granted to make and distribute verbatim copies of this
24 manual provided the copyright notice and this permission notice are
25 preserved on all copies.
26
27 Permission is granted to copy and distribute modified versions of this
28 manual under the conditions for verbatim copying, provided that the
29 entire resulting derived work is distributed under the terms of a
30 permission notice identical to this one.
31
32 @end ifinfo
33
34 @titlepage
35 @title tinc Manual
36 @subtitle Setting up a Virtual Private Network with tinc
37 @author Ivo Timmermans and Guus Sliepen
38
39 @page
40 @vskip 0pt plus 1filll
41 @cindex copyright
42 Copyright @copyright{} 1998-2002 Ivo Timmermans
43 <itimmermans@@bigfoot.com>, Guus Sliepen <guus@@sliepen.warande.net> and
44 Wessel Dankers <wsl@@nl.linux.org>.
45
46 $Id: tinc.texi,v 1.8.4.19 2002/02/10 21:57:51 guus Exp $
47
48 Permission is granted to make and distribute verbatim copies of this
49 manual provided the copyright notice and this permission notice are
50 preserved on all copies.
51
52 Permission is granted to copy and distribute modified versions of this
53 manual under the conditions for verbatim copying, provided that the
54 entire resulting derived work is distributed under the terms of a
55 permission notice identical to this one.
56
57 @end titlepage
58
59 @c ==================================================================
60 @node Top, Introduction, (dir), (dir)
61
62 @menu
63 * Introduction::                Introduction
64 * Preparations::
65 * Installation::
66 * Configuration::
67 * Running tinc::
68 * Technical information::
69 * About us::
70 * Concept Index::               All used terms explained
71 @end menu
72
73
74 @contents
75
76 @c ==================================================================
77 @node    Introduction, Preparations, Top, Top
78 @chapter Introduction
79
80 @cindex tinc
81 tinc is a Virtual Private Network (VPN) daemon that uses tunneling and
82 encryption to create a secure private network between hosts on the
83 Internet.
84
85 Because the tunnel appears to the IP level network code as a normal
86 network device, there is no need to adapt any existing software.
87 The encrypted tunnels allows VPN sites to share information with each other
88 over the Internet without exposing any information to others.
89
90 This document is the manual for tinc.  Included are chapters on how to
91 configure your computer to use tinc, as well as the configuration
92 process of tinc itself.
93
94 @menu
95 * VPNs::                        Virtual Private Networks in general
96 * tinc::                        about tinc
97 * Supported platforms::
98 @end menu
99
100 @c ==================================================================
101 @node    VPNs, tinc, Introduction, Introduction
102 @section Virtual Private Networks
103
104 @cindex VPN
105 A Virtual Private Network or VPN is a network that can only be accessed
106 by a few elected computers that participate.  This goal is achievable in
107 more than just one way.
108
109 @cindex private
110 Private networks can consist of a single stand-alone Ethernet LAN.  Or
111 even two computers hooked up using a null-modem cable.  In these cases,
112 it is
113 obvious that the network is @emph{private}, no one can access it from the
114 outside.  But if your computers are linked to the Internet, the network
115 is not private anymore, unless one uses firewalls to block all private
116 traffic.  But then, there is no way to send private data to trusted
117 computers on the other end of the Internet.
118
119 @cindex virtual
120 This problem can be solved by using @emph{virtual} networks.  Virtual
121 networks can live on top of other networks, but they use encapsulation to
122 keep using their private address space so they do not interfere with
123 the Internet.  Mostly, virtual networks appear like a singe LAN, even though
124 they can span the entire world.  But virtual networks can't be secured
125 by using firewalls, because the traffic that flows through it has to go
126 through the Internet, where other people can look at it.
127
128 As is the case with either type of VPN, anybody could eavesdrop.  Or
129 worse, alter data.  Hence it's probably advisable to encrypt the data
130 that flows over the network.
131
132 When one introduces encryption, we can form a true VPN.  Other people may
133 see encrypted traffic, but if they don't know how to decipher it (they
134 need to know the key for that), they cannot read the information that flows
135 through the VPN.  This is what tinc was made for.
136
137
138 @c ==================================================================
139 @node    tinc, Supported platforms, VPNs, Introduction
140 @section tinc
141
142 @cindex vpnd
143 I really don't quite remember what got us started, but it must have been
144 Guus' idea.  He wrote a simple implementation (about 50 lines of C) that
145 used the ethertap device that Linux knows of since somewhere
146 about kernel 2.1.60.  It didn't work immediately and he improved it a
147 bit.  At this stage, the project was still simply called @samp{vpnd}.
148
149 Since then, a lot has changed---to say the least.
150
151 @cindex tincd
152 tinc now supports encryption, it consists of a single daemon (tincd) for
153 both the receiving and sending end, it has become largely
154 runtime-configurable---in short, it has become a full-fledged
155 professional package.
156
157 @cindex Traditional VPNs
158 @cindex scalability
159 tinc also allows more than two sites to connect to eachother and form a single VPN.
160 Traditionally VPNs are created by making tunnels, which only have two endpoints.
161 Larger VPNs with more sites are created by adding more tunnels.
162 tinc takes another approach: only endpoints are specified,
163 the software itself will take care of creating the tunnels.
164 This allows for easier configuration and improved scalability.
165
166 A lot can---and will be---changed. We have a number of things that we would like to
167 see in the future releases of tinc.  Not everything will be available in
168 the near future.  Our first objective is to make tinc work perfectly as
169 it stands, and then add more advanced features.
170
171 Meanwhile, we're always open-minded towards new ideas.  And we're
172 available too.
173
174
175 @c ==================================================================
176 @node    Supported platforms,  , tinc, Introduction
177 @section Supported platforms
178
179 @cindex platforms
180 tinc has been verified to work under Linux, FreeBSD, OpenBSD and Solaris, with
181 various hardware architectures.  These are some of the platforms
182 that are supported by the universal tun/tap device driver or other virtual network device drivers.
183 Without such a driver, tinc will most
184 likely compile and run, but it will not be able to send or receive data
185 packets.
186
187 @cindex release
188 For an up to date list of supported platforms, please check the list on
189 our website:
190 @uref{http://tinc.nl.linux.org/platforms.html}.
191
192
193 @c ==================================================================
194 @subsection Linux
195
196 @cindex Linux
197 tinc was first written for Linux running on an intel x86 processor, so
198 this is the best supported platform.  The protocol however, and actually
199 anything about tinc, has been rewritten to support random byte ordering
200 and arbitrary word length.  So in theory it should run on other
201 processors that Linux runs on.  It has already been verified to run on
202 alpha and sparc processors as well.
203
204 tinc uses the ethertap device or the universal tun/tap driver. The former is provided in the standard kernel
205 from version 2.1.60 up to 2.3.x, but has been replaced in favour of the tun/tap driver in kernel versions 2.4.0 and later.
206
207
208 @c ==================================================================
209 @subsection FreeBSD
210
211 @cindex FreeBSD
212 tinc on FreeBSD relies on the universal tun/tap driver for its data
213 acquisition from the kernel.  Therefore, tinc will work on the same platforms
214 as this driver.  These are: FreeBSD 3.x, 4.x, 5.x.
215
216
217 @c ==================================================================
218 @subsection OpenBSD
219
220 @cindex OpenBSD
221 tinc on OpenBSD relies on the tun driver for its data
222 acquisition from the kernel. It has been verified to work under at least OpenBSD 2.9.
223
224
225 @c ==================================================================
226 @subsection Solaris
227
228 @cindex Solaris
229 tinc on Solaris relies on the universal tun/tap driver for its data
230 acquisition from the kernel.  Therefore, tinc will work on the same platforms
231 as this driver.  These are: Solaris, 2.1.x.
232
233
234 @c
235 @c
236 @c
237 @c
238 @c
239 @c
240 @c       Preparing your system
241 @c
242 @c
243 @c
244 @c
245 @c
246
247 @c ==================================================================
248 @node    Preparations, Installation, Introduction, Top
249 @chapter Preparations
250
251 This chapter contains information on how to prepare your system to
252 support tinc.
253
254 @menu
255 * Configuring the kernel::
256 * Libraries::
257 @end menu
258
259
260 @c ==================================================================
261 @node    Configuring the kernel, Libraries, Preparations, Preparations
262 @section Configuring the kernel
263
264 @cindex RedHat
265 @cindex Debian
266 @cindex netlink_dev
267 @cindex tun
268 @cindex ethertap
269 If you are running Linux, chances are good that your kernel already supports
270 all the devices that tinc needs for proper operation.  For example, the
271 standard kernel from Redhat Linux already has support for ethertap and netlink
272 compiled in.  Debian users can use the modconf utility to select the modules.
273 If your Linux distribution supports this method of selecting devices, look out
274 for something called `ethertap', and `netlink_dev' if it is using a kernel
275 version prior to 2.4.0. In that case you will need both these devices.  If you
276 are using kernel 2.4.0 or later, you need to select `tun'.
277
278 @cindex Kernel-HOWTO
279 If you can install these devices in a similar manner, you may skip this section.
280 Otherwise, you will have to recompile the kernel in order to turn on the required features.
281 If you are unfamiliar with the process of configuring and compiling a new kernel,
282 you should read the @uref{http://howto.linuxberg.com/LDP/HOWTO/Kernel-HOWTO.html, Kernel HOWTO} first.
283
284 @menu
285 * Configuration of Linux kernels 2.1.60 up to 2.4.0::
286 * Configuration of Linux kernels 2.4.0 and higher::
287 * Configuration of FreeBSD kernels::
288 * Configuration of OpenBSD kernels::
289 * Configuration of Solaris kernels::
290 @end menu
291
292
293 @c ==================================================================
294 @node       Configuration of Linux kernels 2.1.60 up to 2.4.0, Configuration of Linux kernels 2.4.0 and higher, Configuring the kernel, Configuring the kernel
295 @subsection Configuration of Linux kernels 2.1.60 up to 2.4.0
296
297 Here are the options you have to turn on when configuring a new kernel:
298
299 @example
300 Code maturity level options
301 [*] Prompt for development and/or incomplete code/drivers
302 Networking options
303 [*] Kernel/User netlink socket
304 <M> Netlink device emulation
305 Network device support
306 <M> Ethertap network tap
307 @end example
308
309 If you want to run more than one instance of tinc or other programs that use
310 the ethertap, you have to compile the ethertap driver as a module, otherwise
311 you can also choose to compile it directly into the kernel.
312
313 If you decide to build any of these as dynamic kernel modules, it's a good idea
314 to add these lines to @file{/etc/modules.conf}:
315
316 @example
317 alias char-major-36 netlink_dev
318 alias tap0 ethertap
319 options tap0 -o tap0 unit=0
320 alias tap1 ethertap
321 options tap1 -o tap1 unit=1
322 ...
323 alias tap@emph{N} ethertap
324 options tap@emph{N} -o tap@emph{N} unit=@emph{N}
325 @end example
326
327 Add as much alias/options lines as necessary.
328
329
330 @c ==================================================================
331 @node       Configuration of Linux kernels 2.4.0 and higher, Configuration of FreeBSD kernels, Configuration of Linux kernels 2.1.60 up to 2.4.0, Configuring the kernel
332 @subsection Configuration of Linux kernels 2.4.0 and higher
333
334 Here are the options you have to turn on when configuring a new kernel:
335
336 @example
337 Code maturity level options
338 [*] Prompt for development and/or incomplete code/drivers
339 Network device support
340 <M> Universal tun/tap device driver support
341 @end example
342
343 It's not necessary to compile this driver as a module, even if you are going to
344 run more than one instance of tinc.
345
346 If you have an early 2.4 kernel, you can choose both the tun/tap driver and the
347 `Ethertap network tap' device.  This latter is marked obsolete, and chances are
348 that it won't even function correctly anymore.  Make sure you select the
349 universal tun/tap driver.
350
351 If you decide to build the tun/tap driver as a kernel module, add these lines
352 to @file{/etc/modules.conf}:
353
354 @example
355 alias char-major-10-200 tun
356 @end example
357
358
359 @c ==================================================================
360 @node       Configuration of FreeBSD kernels, Configuration of OpenBSD kernels, Configuration of Linux kernels 2.4.0 and higher, Configuring the kernel
361 @subsection Configuration of FreeBSD kernels
362
363 This section will contain information on how to configure your FreeBSD
364 kernel to support the universal tun/tap device.  For 4.1 and higher
365 versions, this is included in the default kernel configuration, for earlier
366 systems (4.0 and earlier), you need to install the universal tun/tap driver
367 yourself.
368
369 Unfortunately somebody still has to write the text.
370
371
372 @c ==================================================================
373 @node       Configuration of OpenBSD kernels, Configuration of Solaris kernels, Configuration of FreeBSD kernels, Configuring the kernel
374 @subsection Configuration of OpenBSD kernels
375
376 This section will contain information on how to configure your OpenBSD
377 kernel to support the tun device.  For 2.9 and 3.0 systems,
378 this is included in the default kernel configuration.
379
380 Unfortunately somebody still has to write the text.
381
382
383 @c ==================================================================
384 @node       Configuration of Solaris kernels,  , Configuration of OpenBSD kernels, Configuring the kernel
385 @subsection Configuration of Solaris kernels
386
387 This section will contain information on how to configure your Solaris
388 kernel to support the universal tun/tap device.  You need to install
389 this driver yourself.
390
391 Unfortunately somebody still has to write the text.
392
393
394 @c ==================================================================
395 @node    Libraries,  , Configuring the kernel, Preparations
396 @section Libraries
397
398 @cindex requirements
399 @cindex libraries
400 Before you can configure or build tinc, you need to have the OpenSSL
401 library installed on your system.  If you try to configure tinc without
402 having installed it, configure will give you an error message, and stop.
403
404 @menu
405 * OpenSSL::
406 @end menu
407
408
409 @c ==================================================================
410 @node       OpenSSL,  , Libraries, Libraries
411 @subsection OpenSSL
412
413 @cindex OpenSSL
414 For all cryptography-related functions, tinc uses the functions provided
415 by the OpenSSL library.
416
417 If this library is not installed, you wil get an error when configuring
418 tinc for build.  Support for running tinc without having OpenSSL
419 installed @emph{may} be added in the future.
420
421 You can use your operating system's package manager to install this if
422 available.  Make sure you install the development AND runtime versions
423 of this package.
424
425 If you have to install OpenSSL manually, you can get the source code
426 from @url{http://www.openssl.org/}.  Instructions on how to configure,
427 build and install this package are included within the package.  Please
428 make sure you build development and runtime libraries (which is the
429 default).
430
431 If you installed the OpenSSL libraries from source, it may be necessary
432 to let configure know where they are, by passing configure one of the
433 --with-openssl-* parameters.
434
435 @example
436 --with-openssl=DIR      OpenSSL library and headers prefix
437 --with-openssl-include=DIR OpenSSL headers directory
438                         (Default is OPENSSL_DIR/include)
439 --with-openssl-lib=DIR  OpenSSL library directory
440                         (Default is OPENSSL_DIR/lib)
441 @end example
442
443
444 @subsubheading License
445
446 @cindex license
447 Since the license under which OpenSSL is distributed is not directly
448 compatible with the terms of the GNU GPL
449 @uref{http://www.openssl.org/support/faq.html#LEGAL2}, therefore we
450 include an addition to the GPL (see also the file COPYING.README):
451
452 @quotation
453 This program is released under the GPL with the additional exemption
454 that compiling, linking, and/or using OpenSSL is allowed.  You may
455 provide binary packages linked to the OpenSSL libraries, provided that
456 all other requirements of the GPL are met.
457 @end quotation
458
459
460 @c
461 @c
462 @c
463 @c      Installing tinc
464 @c
465 @c
466 @c
467 @c
468
469 @c ==================================================================
470 @node    Installation, Configuration, Preparations, Top
471 @chapter Installation
472
473 If you use Debian, you may want to install one of the
474 precompiled packages for your system.  These packages are equipped with
475 system startup scripts and sample configurations.
476
477 If you cannot use one of the precompiled packages, or you want to compile tinc
478 for yourself, you can use the source.  The source is distributed under
479 the GNU General Public License (GPL).  Download the source from the
480 @uref{http://tinc.nl.linux.org/download.html, download page}, which has
481 the checksums of these files listed; you may wish to check these with
482 md5sum before continuing.
483
484 tinc comes in a convenient autoconf/automake package, which you can just
485 treat the same as any other package.  Which is just untar it, type
486 `configure' and then `make'.
487 More detailed instructions are in the file @file{INSTALL}, which is
488 included in the source distribution.
489
490 @menu
491 * Building and installing tinc::
492 * System files::
493 @end menu
494
495
496 @c ==================================================================
497 @node    Building and installing tinc, System files, Installation, Installation
498 @section Building and installing tinc
499
500 Detailed instructions on configuring the source, building tinc and installing tinc
501 can be found in the file called @file{INSTALL}.
502
503 @cindex binary package
504 If you happen to have a binary package for tinc for your distribution,
505 you can use the package management tools of that distribution to install tinc.
506 The documentation that comes along with your distribution will tell you how to do that.
507
508
509 @c ==================================================================
510 @node    System files,  , Building and installing tinc, Installation
511 @section System files
512
513 Before you can run tinc, you must make sure you have all the needed
514 files on your system.
515
516 @menu
517 * Device files::
518 * Other files::
519 @end menu
520
521
522 @c ==================================================================
523 @node       Device files, Other files, System files, System files
524 @subsection Device files
525
526 @cindex device files
527 First, you'll need the special device file(s) that form the interface
528 between the kernel and the daemon.
529
530 The permissions for these files have to be such that only the super user
531 may read/write to this file.  You'd want this, because otherwise
532 eavesdropping would become a bit too easy.  This does, however, imply
533 that you'd have to run tincd as root.
534
535 If you use Linux and have a kernel version prior to 2.4.0, you have to make the
536 ethertap devices:
537
538 @example
539 mknod -m 600 /dev/tap0 c 36 16
540 chown 0.0 /dev/tap0
541 mknod -m 600 /dev/tap1 c 36 17
542 chown 0.0 /dev/tap0
543 ...
544 mknod -m 600 /dev/tap@emph{N} c 36 @emph{N+16}
545 chown 0.0 /dev/tap@emph{N}
546 @end example
547
548 There is a maximum of 16 ethertap devices.
549
550 If you use the universal tun/tap driver, you have to create the
551 following device file (unless it already exist):
552
553 @example
554 mknod -m 600 /dev/tun c 10 200
555 chown 0.0 /dev/tun
556 @end example
557
558 If you use Linux, and you run the new 2.4 kernel using the devfs filesystem,
559 then the tun/tap device will probably be automatically generated as
560 @file{/dev/misc/net/tun}.
561
562 Unlike the ethertap device, you do not need multiple device files if
563 you are planning to run multiple tinc daemons.
564
565
566 @c ==================================================================
567 @node       Other files,  , Device files, System files
568 @subsection Other files
569
570 @subsubheading @file{/etc/networks}
571
572 You may add a line to @file{/etc/networks} so that your VPN will get a
573 symbolic name.  For example:
574
575 @example
576 myvpn 10.0.0.0
577 @end example
578
579 @subsubheading @file{/etc/services}
580
581 @cindex port numbers
582 You may add this line to @file{/etc/services}.  The effect is that you
583 may supply a @samp{tinc} as a valid port number to some programs.  The
584 number 655 is registered with the IANA.
585
586 @example
587 tinc            655/tcp    TINC
588 tinc            655/udp    TINC
589 #                          Ivo Timmermans <itimmermans@@bigfoot.com>
590 @end example
591
592
593 @c
594 @c
595 @c
596 @c
597 @c         Configuring tinc
598 @c
599 @c
600 @c
601 @c
602
603
604 @c ==================================================================
605 @node    Configuration, Running tinc, Installation, Top
606 @chapter Configuration
607
608 @menu
609 * Configuration introduction::
610 * Multiple networks::
611 * How connections work::
612 * Configuration files::
613 * Generating keypairs::
614 * Network interfaces::
615 * Example configuration::
616 @end menu
617
618 @c ==================================================================
619 @node    Configuration introduction, Multiple networks, Configuration, Configuration
620 @section Configuration introduction
621
622 @cindex Network Administrators Guide
623 Before actually starting to configure tinc and editing files,
624 make sure you have read this entire section so you know what to expect.
625 Then, make it clear to yourself how you want to organize your VPN:
626 What are the nodes (computers running tinc)?
627 What IP addresses/subnets do they have?
628 What is the network mask of the entire VPN?
629 Do you need special firewall rules?
630 Do you have to set up masquerading or forwarding rules?
631 These questions can only be answered by yourself,
632 you will not find the answers in this documentation.
633 Make sure you have an adequate understanding of networks in general.
634 A good resource on networking is the
635 @uref{http://www.linuxdoc.org/LDP/nag2/, Linux Network Administrators Guide}.
636
637 If you have everything clearly pictured in your mind,
638 proceed in the following order:
639 First, generate the configuration files (@file{tinc.conf}, your host configuration file, @file{tinc-up} and perhaps @file{tinc-down}).
640 Then generate the keypairs.
641 Finally, distribute the host configuration files.
642 These steps are described in the subsections below.
643
644
645 @c ==================================================================
646 @node    Multiple networks, How connections work, Configuration introduction, Configuration
647 @section Multiple networks
648
649 @cindex multiple networks
650 @cindex netname
651 In order to allow you to run more than one tinc daemon on one computer,
652 for instance if your computer is part of more than one VPN,
653 you can assign a ``netname'' to your VPN.
654 It is not required if you only run one tinc daemon,
655 it doesn't even have to be the same on all the sites of your VPN,
656 but it is recommended that you choose one anyway.
657
658 We will asume you use a netname throughout this document.
659 This means that you call tincd with the -n argument,
660 which will assign a netname to this daemon.
661
662 The effect of this is that the daemon will set its configuration
663 ``root'' to /etc/tinc/netname/, where netname is your argument to the -n
664 option.  You'll notice that it appears in syslog as ``tinc.netname''.
665
666 However, it is not strictly necessary that you call tinc with the -n
667 option.  In this case, the network name would just be empty, and it will
668 be used as such.  tinc now looks for files in /etc/tinc/, instead of
669 /etc/tinc/netname/; the configuration file should be /etc/tinc/tinc.conf,
670 and the host configuration files are now expected to be in /etc/tinc/hosts/.
671
672 But it is highly recommended that you use this feature of tinc, because
673 it will be so much clearer whom your daemon talks to.  Hence, we will
674 assume that you use it.
675
676
677 @c ==================================================================
678 @node    How connections work, Configuration files, Multiple networks, Configuration
679 @section How connections work
680
681 When tinc starts up, it parses the command-line options and then
682 reads in the configuration file.
683 If it sees a `ConnectTo' value pointing to another tinc daemon in the file,
684 it will try to connect to that other one.
685 Whether this succeeds or not and whether `ConnectTo' is specified or not,
686 tinc will listen for incoming connection from other deamons.
687 If you did specify a `ConnectTo' value and the other side is not responding,
688 tinc will keep retrying.
689 This means that once started, tinc will stay running until you tell it to stop,
690 and failures to connect to other tinc daemons will not stop your tinc daemon
691 for trying again later.
692 This means you don't have to intervene if there are any network problems.
693
694 @cindex client
695 @cindex server
696 There is no real distinction between a server and a client in tinc.
697 If you wish, you can view a tinc daemon without a `ConnectTo' value as a server,
698 and one which does specify such a value as a client.
699 It does not matter if two tinc daemons have a `ConnectTo' value pointing to eachother however.
700
701
702 @c ==================================================================
703 @node    Configuration files, Generating keypairs, How connections work, Configuration
704 @section Configuration files
705
706 The actual configuration of the daemon is done in the file
707 @file{/etc/tinc/netname/tinc.conf} and at least one other file in the directory
708 @file{/etc/tinc/netname/hosts/}.
709
710 These file consists of comments (lines started with a #) or assignments
711 in the form of
712
713 @example
714 Variable = Value.
715 @end example
716
717 The variable names are case insensitive, and any spaces, tabs, newlines
718 and carriage returns are ignored.  Note: it is not required that you put
719 in the `=' sign, but doing so improves readability.  If you leave it
720 out, remember to replace it with at least one space character.
721
722 In this section all valid variables are listed in alphabetical order.
723 The default value is given between parentheses,
724 other comments are between square brackets and
725 required directives are given in @strong{bold}.
726
727 @menu
728 * Main configuration variables::
729 * Host configuration variables::
730 * How to configure::
731 @end menu
732
733
734 @c ==================================================================
735 @node    Main configuration variables, Host configuration variables, Configuration files, Configuration files
736 @subsection Main configuration variables
737
738 @table @asis
739 @cindex BindToInterface
740 @item BindToInterface = <interface>
741 If you have more than one network interface in your computer, tinc will
742 by default listen on all of them for incoming connections.  It is
743 possible to bind tinc to a single interface like eth0 or ppp0 with this
744 variable.
745
746 This option may not work on all platforms.
747
748 @cindex BindToIP
749 @item BindToIP = <address>
750 If your computer has more than one IP address on a single interface (for
751 example if you are running virtual hosts), tinc will by default listen
752 on all of them for incoming connections.  It is possible to bind tinc to
753 a single IP address with this variable.  It is still possible to listen
754 on several interfaces at the same time though, if they share the same IP
755 address.
756
757 This option may not work on all platforms.
758
759 @cindex ConnectTo
760 @item @strong{ConnectTo = <name>}
761 Specifies which host to connect to on startup.  Multiple ConnectTo
762 variables may be specified, if connecting to the first one fails then
763 tinc will try the next one, and so on.  It is possible to specify
764 hostnames for dynamic IP addresses (like those given on dyndns.org),
765 tinc will not cache the resolved IP address.
766
767 If you don't specify a host with ConnectTo, regardless of whether a
768 value for ConnectPort is given, tinc won't connect at all, and will
769 instead just listen for incoming connections.
770
771 @cindex Device
772 @item @strong{Device = <device>} (/dev/tap0 or /dev/misc/net/tun)
773 The virtual network device to use.  Note that you can only use one device per
774 daemon.  See also @ref{Device files}.
775
776 @cindex Hostnames
777 @item Hostnames = <yes|no> (no)
778 This option selects whether IP addresses (both real and on the VPN)
779 should be resolved.  Since DNS lookups are blocking, it might affect
780 tinc's efficiency, even stopping the daemon for a few seconds everytime
781 it does a lookup if your DNS server is not responding.
782
783 This does not affect resolving hostnames to IP addresses from the
784 configuration file.
785
786 @cindex Interface
787 @item Interface = <interface>
788 Defines the name of the interface corresponding to the virtual network device.
789 Depending on the operating system and the type of device this may or may not actually set the name.
790 Currently this option only affects the Linux tun/tap device.
791
792 @cindex Mode
793 @item Mode = <router|switch|hub> (router)
794 This option selects the way packets are routed to other daemons.
795
796 @table @asis
797 @cindex router
798 @item router
799 In this mode Subnet
800 variables in the host configuration files will be used to form a routing table.
801 Only unicast packets of routable protocols (IPv4 and IPv6) are supported in this mode.
802
803 @cindex switch
804 @item switch
805 In this mode the MAC addresses of the packets on the VPN will be used to
806 dynamically create a routing table just like a network switch does.
807 Unicast, multicast and broadcast packets of every ethernet protocol are supported in this mode
808 at the cost of frequent broadcast ARP requests and routing table updates.
809
810 @cindex hub
811 @item hub
812 In this mode every packet will be broadcast to the other daemons.
813 @end table
814
815 @cindex KeyExpire
816 @item KeyExpire = <seconds> (3600)
817 This option controls the time the encryption keys used to encrypt the data
818 are valid.  It is common practice to change keys at regular intervals to
819 make it even harder for crackers, even though it is thought to be nearly
820 impossible to crack a single key.
821
822 @cindex Name
823 @item @strong{Name = <name>}
824 This is a symbolic name for this connection.  It can be anything
825
826 @cindex PingTimeout
827 @item PingTimeout = <seconds> (60)
828 The number of seconds of inactivity that tinc will wait before sending a
829 probe to the other end.  If that other end doesn't answer within that
830 same amount of seconds, the connection is terminated, and the others
831 will be notified of this.
832
833 @cindex PrivateKey
834 @item PrivateKey = <key> [obsolete]
835 This is the RSA private key for tinc. However, for safety reasons it is
836 advised to store private keys of any kind in separate files. This prevents
837 accidental eavesdropping if you are editting the configuration file.
838
839 @cindex PrivateKeyFile
840 @item @strong{PrivateKeyFile = <path>} [recommended]
841 This is the full path name of the RSA private key file that was
842 generated by ``tincd --generate-keys''.  It must be a full path, not a
843 relative directory.
844
845 Note that there must be exactly one of PrivateKey
846 or PrivateKeyFile
847 specified in the configuration file.
848
849 @end table
850
851
852 @c ==================================================================
853 @node    Host configuration variables, How to configure, Main configuration variables, Configuration files
854 @subsection Host configuration variables
855
856 @table @asis
857 @cindex Address
858 @item @strong{Address = <IP address|hostname>} [recommended]
859 This variable is only required if you want to connect to this host.  It
860 must resolve to the external IP address where the host can be reached,
861 not the one that is internal to the VPN.
862
863 @cindex Cipher
864 @item Cipher = <cipher> (blowfish)
865 The symmetric cipher algorithm used to encrypt UDP packets.
866 Any cipher supported by OpenSSL is recognized.
867
868 @cindex Digest
869 @item Digest = <digest> (sha1)
870 The digest algorithm used to authenticate UDP packets.
871 Any digest supported by OpenSSL is recognized.
872 Furthermore, specifying "none" will turn off packet authentication.
873
874 @cindex IndirectData
875 @item IndirectData = <yes|no> (no) [experimental]
876 This option specifies whether other tinc daemons besides the one you
877 specified with ConnectTo can make a direct connection to you.  This is
878 especially useful if you are behind a firewall and it is impossible to
879 make a connection from the outside to your tinc daemon.  Otherwise, it
880 is best to leave this option out or set it to no.
881
882 @cindex MACLength
883 @item MACLength = <length> (4)
884 The length of the message authentication code used to authenticate UDP packets.
885 Can be anything from 0
886 up to the length of the digest produced by the digest algorithm.
887
888 @cindex Port
889 @item Port = <port> (655)
890 Connect to the upstream host (given with the ConnectTo directive) on
891 port port.  port may be given in decimal (default), octal (when preceded
892 by a single zero) o hexadecimal (prefixed with 0x).  port is the port
893 number for both the UDP and the TCP (meta) connections.
894
895 @cindex PublicKey
896 @item PublicKey = <key> [obsolete]
897 This is the RSA public key for this host.
898
899 @cindex PublicKeyFile
900 @item PublicKeyFile = <path> [obsolete]
901 This is the full path name of the RSA public key file that was generated
902 by ``tincd --generate-keys''.  It must be a full path, not a relative
903 directory.
904
905 @cindex PEM format
906 From version 1.0pre4 on tinc will store the public key directly into the
907 host configuration file in PEM format, the above two options then are not
908 necessary. Either the PEM format is used, or exactly
909 @strong{one of the above two options} must be specified
910 in each host configuration file, if you want to be able to establish a
911 connection with that host.
912
913 @cindex Subnet
914 @item Subnet = <address[/masklength]>
915 The subnet which this tinc daemon will serve.
916 tinc tries to look up which other daemon it should send a packet to by searching the appropiate subnet.
917 If the packet matches a subnet,
918 it will be sent to the daemon who has this subnet in his host configuration file.
919 Multiple subnet lines can be specified for each daemon.
920
921 Subnets can either be single MAC, IPv4 or IPv6 addresses,
922 in which case a subnet consisting of only that single address is assumed,
923 or they can be a IPv4 or IPv6 network address with a masklength.
924 For example, IPv4 subnets must be in a form like 192.168.1.0/24,
925 where 192.168.1.0 is the network address and 24 is the number of bits set in the netmask.
926 Note that subnets like 192.168.1.1/24 are invalid!
927
928 @cindex CIDR notation
929 masklength is the number of bits set to 1 in the netmask part; for
930 example: netmask 255.255.255.0 would become /24, 255.255.252.0 becomes
931 /22. This conforms to standard CIDR notation as described in
932 @uref{ftp://ftp.isi.edu/in-notes/rfc1519.txt, RFC1519}
933
934 @cindex TCPonly
935 @item TCPonly = <yes|no> (no) [experimental]
936 If this variable is set to yes, then the packets are tunnelled over a
937 TCP connection instead of a UDP connection.  This is especially useful
938 for those who want to run a tinc daemon from behind a masquerading
939 firewall, or if UDP packet routing is disabled somehow. This is
940 experimental code, try this at your own risk. It may not work at all.
941 Setting this options also implicitly sets IndirectData.
942 @end table
943
944
945 @c ==================================================================
946 @node    How to configure,  , Host configuration variables, Configuration files
947 @subsection How to configure
948
949 @subsubheading Step 1.  Creating the main configuration file
950
951 The main configuration file will be called @file{/etc/tinc/netname/tinc.conf}.
952 Adapt the following example to create a basic configuration file:
953
954 @example
955 Name = @emph{yourname}
956 Device = @emph{/dev/tap0}
957 PrivateKeyFile = /etc/tinc/@emph{netname}/rsa_key.priv
958 @end example
959
960 Then, if you know to which other tinc daemon(s) yours is going to connect,
961 add `ConnectTo' values.
962
963 @subsubheading Step 2.  Creating your host configuration file
964
965 If you added a line containing `Name = yourname' in the main configuarion file,
966 you will need to create a host configuration file @file{/etc/tinc/netname/hosts/yourname}.
967 Adapt the following example to create a host configuration file:
968
969 @example
970 Address = @emph{your.real.hostname.org}
971 Subnet = @emph{192.168.1.0/24}
972 @end example
973
974 You can also use an IP address instead of a hostname.
975 The `Subnet' specifies the address range that is local for @emph{your part of the VPN only}.
976 If you have multiple address ranges you can specify more than one `Subnet'.
977 You might also need to add a `Port' if you want your tinc daemon to run on a different port number than the default (655).
978
979
980 @c ==================================================================
981 @node    Generating keypairs, Network interfaces, Configuration files, Configuration
982 @section Generating keypairs
983
984 @cindex key generation
985 Now that you have already created the main configuration file and your host configuration file,
986 you can easily create a public/private keypair by entering the following command:
987
988 @example
989 tincd -n @emph{netname} -K
990 @end example
991
992 tinc will generate a public and a private key and ask you where to put them.
993 Just press enter to accept the defaults.
994
995
996 @c ==================================================================
997 @node    Network interfaces, Example configuration, Generating keypairs, Configuration
998 @section Network interfaces
999
1000 Before tinc can start transmitting data over the tunnel, it must
1001 set up the virtual network interface.
1002
1003 First, decide which IP addresses you want to have associated with these
1004 devices, and what network mask they must have.
1005
1006 tinc will open a virtual network device (@file{/dev/tun}, @file{/dev/tap0} or similar),
1007 which will also create a network interface called something like `tun0', `tap0', or,
1008 if you are using the Linux tun/tap driver, the network interface will by default have the same name as the netname.
1009
1010 @cindex tinc-up
1011 You can configure the network interface by putting ordinary ifconfig, route, and other commands
1012 to a script named @file{/etc/tinc/netname/tinc-up}. When tinc starts, this script
1013 will be executed. When tinc exits, it will execute the script named
1014 @file{/etc/tinc/netname/tinc-down}, but normally you don't need to create that script.
1015
1016 An example @file{tinc-up} script:
1017
1018 @example
1019 #!/bin/sh
1020 ifconfig $INTERFACE hw ether fe:fd:0:0:0:0
1021 ifconfig $INTERFACE 192.168.1.1 netmask 255.255.0.0
1022 ifconfig $INTERFACE -arp
1023 @end example
1024
1025 @cindex MAC address
1026 @cindex hardware address
1027 The first line sets up the MAC address of the network interface.
1028 Due to the nature of how Ethernet and tinc work, it has to be set to fe:fd:0:0:0:0
1029 for tinc to work in it's normal mode.
1030 If you configured tinc to work in `switch' or `hub' mode, the hardware address should instead
1031 be set to a unique address instead of fe:fd:0:0:0:0.
1032
1033 You can use the environment variable $INTERFACE to get the name of the interface.
1034 If you are using the ethertap driver however, you need to replace it with tap@emph{N},
1035 corresponding to the device file name.
1036
1037 @cindex ifconfig
1038 The next line gives the interface an IP address and a netmask.
1039 The kernel will also automatically add a route to this interface, so normally you don't need
1040 to add route commands to the @file{tinc-up} script.
1041 The kernel will also bring the interface up after this command.
1042 @cindex netmask
1043 The netmask is the mask of the @emph{entire} VPN network, not just your
1044 own subnet.
1045
1046 @cindex arp
1047 The last line tells the kernel not to use ARP on that interface.
1048 Again this has to do with how Ethernet and tinc work.
1049 Use this option only if you are running tinc under Linux and are using tinc's normal routing mode.
1050
1051
1052 @c ==================================================================
1053 @node    Example configuration,  , Network interfaces, Configuration
1054 @section Example configuration
1055
1056
1057 @cindex example
1058 Imagine the following situation.  Branch A of our example `company' wants to connect
1059 three branch offices in B, C and D using the Internet.  All four offices
1060 have a 24/7 connection to the Internet.
1061
1062 A is going to serve as the center of the network.  B and C will connect
1063 to A, and D will connect to C.  Each office will be assigned their own IP
1064 network, 10.x.0.0.
1065
1066 @example
1067 A: net 10.1.0.0 mask 255.255.0.0 gateway 10.1.54.1 internet IP 1.2.3.4
1068 B: net 10.2.0.0 mask 255.255.0.0 gateway 10.2.1.12 internet IP 2.3.4.5
1069 C: net 10.3.0.0 mask 255.255.0.0 gateway 10.3.69.254 internet IP 3.4.5.6
1070 D: net 10.4.0.0 mask 255.255.0.0 gateway 10.4.3.32 internet IP 4.5.6.7
1071 @end example
1072
1073 ``gateway'' is the VPN IP address of the machine that is running the
1074 tincd.  ``internet IP'' is the IP address of the firewall, which does not
1075 need to run tincd, but it must do a port forwarding of TCP&UDP on port
1076 655 (unless otherwise configured).
1077
1078 In this example, it is assumed that eth0 is the interface that points to
1079 the inner (physical) LAN of the office, although this could also be the
1080 same as the interface that leads to the Internet.  The configuration of
1081 the real interface is also shown as a comment, to give you an idea of
1082 how these example host is set up. All branches use the netname `company'
1083 for this particular VPN.
1084
1085 @subsubheading For Branch A
1086
1087 @emph{BranchA} would be configured like this:
1088
1089 In @file{/etc/tinc/company/tinc-up}:
1090
1091 @example
1092 # Real interface of internal network:
1093 # ifconfig eth0 10.1.54.1 netmask 255.255.0.0 broadcast 10.1.255.255
1094
1095 ifconfig tap0 hw ether fe:fd:0:0:0:0
1096 ifconfig tap0 10.1.54.1 netmask 255.0.0.0
1097 ifconfig tap0 -arp
1098 @end example
1099
1100 and in @file{/etc/tinc/company/tinc.conf}:
1101
1102 @example
1103 Name = BranchA
1104 PrivateKey = /etc/tinc/company/rsa_key.priv
1105 Device = /dev/tap0
1106 @end example
1107
1108 On all hosts, /etc/tinc/company/hosts/BranchA contains:
1109
1110 @example
1111 Subnet = 10.1.0.0/16
1112 Address = 1.2.3.4
1113
1114 Note that the IP addresses of eth0 and tap0 are the same.
1115 This is quite possible, if you make sure that the netmasks of the interfaces are different.
1116 It is in fact recommended to give give both real internal network interfaces and tap interfaces the same IP address,
1117 since that will make things a lot easier to remember and set up.
1118
1119 -----BEGIN RSA PUBLIC KEY-----
1120 ...
1121 -----END RSA PUBLIC KEY-----
1122 @end example
1123
1124
1125 @subsubheading For Branch B
1126
1127 In @file{/etc/tinc/company/tinc-up}:
1128
1129 @example
1130 # Real interface of internal network:
1131 # ifconfig eth0 10.2.43.8 netmask 255.255.0.0 broadcast 10.2.255.255
1132
1133 ifconfig tap0 hw ether fe:fd:0:0:0:0
1134 ifconfig tap0 10.2.1.12 netmask 255.0.0.0
1135 ifconfig tap0 -arp
1136 @end example
1137
1138 and in @file{/etc/tinc/company/tinc.conf}:
1139
1140 @example
1141 Name = BranchB
1142 ConnectTo = BranchA
1143 PrivateKey = /etc/tinc/company/rsa_key.priv
1144 @end example
1145
1146 Note here that the internal address (on eth0) doesn't have to be the
1147 same as on the tap0 device.  Also, ConnectTo is given so that no-one can
1148 connect to this node.
1149
1150 On all hosts, in @file{/etc/tinc/company/hosts/BranchB}:
1151
1152 @example
1153 Subnet = 10.2.0.0/16
1154 Address = 2.3.4.5
1155
1156 -----BEGIN RSA PUBLIC KEY-----
1157 ...
1158 -----END RSA PUBLIC KEY-----
1159 @end example
1160
1161
1162 @subsubheading For Branch C
1163
1164 In @file{/etc/tinc/company/tinc-up}:
1165
1166 @example
1167 # Real interface of internal network:
1168 # ifconfig eth0 10.3.69.254 netmask 255.255.0.0 broadcast 10.3.255.255
1169
1170 ifconfig tap1 hw ether fe:fd:0:0:0:0
1171 ifconfig tap1 10.3.69.254 netmask 255.0.0.0
1172 ifconfig tap1 -arp
1173 @end example
1174
1175 and in @file{/etc/tinc/company/tinc.conf}:
1176
1177 @example
1178 Name = BranchC
1179 ConnectTo = BranchA
1180 Device = /dev/tap1
1181 @end example
1182
1183 C already has another daemon that runs on port 655, so they have to
1184 reserve another port for tinc. It knows the portnumber it has to listen on
1185 from it's own host configuration file.
1186
1187 On all hosts, in @file{/etc/tinc/company/hosts/BranchC}:
1188
1189 @example
1190 Address = 3.4.5.6
1191 Subnet = 10.3.0.0/16
1192 Port = 2000
1193
1194 -----BEGIN RSA PUBLIC KEY-----
1195 ...
1196 -----END RSA PUBLIC KEY-----
1197 @end example
1198
1199
1200 @subsubheading For Branch D
1201
1202 In @file{/etc/tinc/company/tinc-up}:
1203
1204 @example
1205 # Real interface of internal network:
1206 # ifconfig eth0 10.4.3.32 netmask 255.255.0.0 broadcast 10.4.255.255
1207
1208 ifconfig company hw ether fe:fd:0a:04:03:20
1209 ifconfig company 10.4.3.32 netmask 255.0.0.0
1210 ifconfig company -arp
1211 @end example
1212
1213 and in @file{/etc/tinc/company/tinc.conf}:
1214
1215 @example
1216 Name = BranchD
1217 ConnectTo = BranchC
1218 Device = /dev/misc/net/tun
1219 PrivateKeyFile = /etc/tinc/company/rsa_key.priv
1220 @end example
1221
1222 D will be connecting to C, which has a tincd running for this network on
1223 port 2000. It knows the port number from the host configuration file.
1224 Also note that since D uses the tun/tap driver, the network interface
1225 will not be called `tun' or `tap0' or something like that, but will
1226 have the same name as netname.
1227
1228 On all hosts, in @file{/etc/tinc/company/hosts/BranchD}:
1229
1230 @example
1231 Subnet = 10.4.0.0/16
1232 Address = 4.5.6.7
1233
1234 -----BEGIN RSA PUBLIC KEY-----
1235 ...
1236 -----END RSA PUBLIC KEY-----
1237 @end example
1238
1239 @subsubheading Key files
1240
1241 A, B, C and D all have generated a public/private keypair with the following command:
1242
1243 @example
1244 tincd -n company -K
1245 @end example
1246
1247 The private key is stored in @file{/etc/tinc/company/rsa_key.priv},
1248 the public key is put into the host configuration file in the @file{/etc/tinc/company/hosts/} directory.
1249 During key generation, tinc automatically guesses the right filenames based on the -n option and
1250 the Name directive in the @file{tinc.conf} file (if it is available).
1251
1252 @subsubheading Starting
1253
1254 After each branch has finished configuration and they have distributed
1255 the host configuration files amongst them, they can start their tinc daemons.
1256 They don't necessarily have to wait for the other branches to have started
1257 their daemons, tinc will try connecting until they are available.
1258
1259
1260 @c ==================================================================
1261 @node    Running tinc, Technical information, Configuration, Top
1262 @chapter Running tinc
1263
1264 If everything else is done, you can start tinc by typing the following command:
1265
1266 @example
1267 tincd -n @emph{netname}
1268 @end example
1269
1270 @cindex daemon
1271 tinc will detach from the terminal and continue to run in the background like a good daemon.
1272 If there are any problems however you can try to increase the debug level
1273 and look in the syslog to find out what the problems are.
1274
1275 @menu
1276 * Runtime options::
1277 * Error messages::
1278 @end menu
1279
1280
1281 @c ==================================================================
1282 @node    Runtime options, Error messages,  , Running tinc
1283 @section Runtime options
1284
1285 Besides the settings in the configuration file, tinc also accepts some
1286 command line options.
1287
1288 This list is a longer version of that in the manpage.  The latter is
1289 generated automatically, so may be more up-to-date.
1290
1291 @cindex command line
1292 @cindex runtime options
1293 @cindex options
1294 @c from the manpage
1295 @table @samp
1296 @item --bypass-security
1297 Disables encryption and authentication.
1298 Only useful for debugging.
1299
1300 @item -c, --config=PATH
1301 Read configuration options from the directory PATH.  The default is
1302 @file{/etc/tinc/netname/}.
1303
1304 @cindex debug level
1305 @item -d, --debug=LEVEL
1306 Set debug level to LEVEL.  The higher the debug level, the more gets
1307 logged.  Everything goes via syslog.
1308
1309 @item -K, --generate-keys[=BITS]
1310 Generate public/private keypair of BITS length. If BITS is not specified,
1311 1024 is the default. tinc will ask where you want to store the files,
1312 but will default to the configuration directory (you can use the -c or -n option
1313 in combination with -K). After that, tinc will quit.
1314
1315 @item --help
1316 Display a short reminder of these runtime options and terminate.
1317
1318 @item -k, --kill
1319 Attempt to kill a running tincd and exit.  A TERM signal (15) gets sent
1320 to the daemon that his its PID in @file{/var/run/tinc.NETNAME.pid}.
1321 Use it in conjunction with the -n option to make sure you kill the right tinc daemon.
1322
1323 @item -n, --net=NETNAME
1324 Connect to net NETNAME.  @xref{Multiple networks}.
1325
1326 @item -D, --no-detach
1327 Don't fork and detach.
1328 This will also disable the automatic restart mechanism for fatal errors.
1329
1330 @item --version
1331 Output version information and exit.
1332
1333 @end table
1334
1335
1336 @c ==================================================================
1337 @node    Error messages,  , Runtime options, Running tinc
1338 @section Error messages
1339
1340 What follows is a list of the most common error messages you can see
1341 when configuring tinc.  Most of these messages are visible in the syslog
1342 only, so keep an eye on it!
1343
1344 @table @strong
1345 @item Could not open /dev/tap0: No such device
1346
1347 @itemize
1348 @item You forgot to `modprobe netlink_dev' or `modprobe ethertap'.
1349 @item You forgot to compile `Netlink device emulation' in the kernel.
1350 @end itemize
1351
1352 @item Can't write to /dev/misc/net/tun: No such device
1353
1354 @itemize
1355 @item You forgot to `modprobe tun'.
1356 @item You forgot to compile `Universal TUN/TAP driver' in the kernel.
1357 @end itemize
1358
1359 @item Packet with destination 1.2.3.4 is looping back to us!
1360
1361 @itemize
1362 @item Something is not configured right. Packets are being sent out to the
1363 virtual network device, but according to the Subnet directives in your host configuration
1364 file, those packets should go to your own host. Most common mistake is that
1365 you have a Subnet line in your host configuration file with a netmask which is
1366 just as large as the netmask of the virtual network interface. The latter should in almost all
1367 cases be larger. Rethink your configuration.
1368 Note that you will only see this message if you specified a debug
1369 level of 5 or higher!
1370 @item Chances are that a `Subnet = ...' line in the host configuration file of this tinc daemon is wrong.
1371 Change it to a subnet that is accepted locally by another interface,
1372 or if that is not the case, try changing the prefix length into /32. 
1373 @end itemize
1374
1375 @item Network doesn't work, syslog shows only packets of length 46
1376
1377 @cindex arp
1378 @example
1379 Jan 1 12:00:00 host tinc.net[1234]: Read packet of length 46 from tap device
1380 Jan 1 12:00:00 host tinc.net[1234]: Trying to look up 0.0.192.168 in connection list failed!
1381 @end example
1382 @itemize
1383 @item Add the `ifconfig $INTERFACE -arp' to tinc-up.
1384 @end itemize
1385
1386 @item Network address and subnet mask do not match!
1387
1388 @itemize
1389 @item The Subnet field must contain a @emph{network} address.
1390 @item If you only want to use one IP address, set the netmask to /32.
1391 @end itemize
1392
1393 @item This is a bug: net.c:253: 24: Some error
1394
1395 @itemize
1396 @item This is something that should not have happened.
1397 Please report this, and tell us exactly what went wrong before you got
1398 this message.  In normal operation, these errors should not occur.
1399 @end itemize
1400
1401 @item Error reading RSA key file `rsa_key.priv': No such file or directory
1402
1403 @itemize
1404 @item You must specify the complete pathname.
1405 Specifying a relative path does not make sense here.  tinc changes its
1406 directory to / when starting (to avoid keeping a mount point busy); and
1407 even if we built in a default directory to look for these files, the key
1408 files are bound to be in a different directory.
1409 @end itemize
1410
1411 @end table
1412
1413 @c ==================================================================
1414 @node    Technical information, About us, Running tinc, Top
1415 @chapter Technical information
1416
1417
1418 @menu
1419 * The connection::
1420 * The meta-protocol::
1421 * Security::
1422 @end menu
1423
1424
1425 @c ==================================================================
1426 @node    The connection, The meta-protocol, Technical information, Technical information
1427 @section The connection
1428
1429 @cindex connection
1430 tinc is a daemon that takes VPN data and transmit that to another host
1431 computer over the existing Internet infrastructure.
1432
1433 @menu
1434 * The UDP tunnel::
1435 * The meta-connection::
1436 @end menu
1437
1438
1439 @c ==================================================================
1440 @node    The UDP tunnel, The meta-connection, The connection, The connection
1441 @subsection The UDP tunnel
1442
1443 @cindex virtual network device
1444 @cindex frame type
1445 The data itself is read from a character device file, the so-called
1446 @emph{virtual network device}.  This device is associated with a network
1447 interface.  Any data sent to this interface can be read from the device,
1448 and any data written to the device gets sent from the interface.  Data to
1449 and from the device is formatted as if it were a normal Ethernet card,
1450 so a frame is preceded by two MAC addresses and a @emph{frame type}
1451 field.
1452
1453 So when tinc reads an Ethernet frame from the device, it determines its
1454 type. When tinc is in it's default routing mode, it can handle IPv4 and IPv6
1455 packets. Depending on the Subnet lines, it will send the packets off to their destination.
1456 In the `switch' and `hub' mode, tinc will use broadcasts and MAC address discovery
1457 to deduce the destination of the packets.
1458 Since the latter modes only depend on the link layer information,
1459 any protocol that runs over Ethernet is supported (for instance IPX and Appletalk).
1460
1461 After the destination has been determined, a sequence number will be added to the packet.
1462 The packet will then be encrypted and a message authentication
1463 code will be appended.
1464
1465 @cindex encapsulating
1466 @cindex UDP
1467 When that is done, time has come to actually transport the
1468 packet to the destination computer.  We do this by sending the packet
1469 over an UDP connection to the destination host.  This is called
1470 @emph{encapsulating}, the VPN packet (though now encrypted) is
1471 encapsulated in another IP datagram.
1472
1473 When the destination receives this packet, the same thing happens, only
1474 in reverse.  So it checks the message authentication code, decrypts the contents of the UDP datagram,
1475 checks the sequence number
1476 and writes the decrypted information to its own virtual network device.
1477
1478 To let the kernel on the receiving end accept the packet, the destination MAC
1479 address must match that of the virtual network interface.
1480 If tinc is in it's default routing mode, ARP does not work, so the correct destination MAC cannot be set
1481 by the sending daemons.
1482 tinc solves this by always overwriting the
1483 destination MAC address with fe:fd:0:0:0:0. That is also the reason why you must
1484 set the MAC address of your tap interface to that address.
1485
1486
1487 @c ==================================================================
1488 @node    The meta-connection,  , The UDP tunnel, The connection
1489 @subsection The meta-connection
1490
1491 Having only an UDP connection available is not enough.  Though suitable
1492 for transmitting data, we want to be able to reliably send other
1493 information, such as routing and session key information to somebody.
1494
1495 @cindex TCP
1496 TCP is a better alternative, because it already contains protection
1497 against information being lost, unlike UDP.
1498
1499 So we establish two connections.  One for the encrypted VPN data, and one
1500 for other information, the meta-data.  Hence, we call the second
1501 connection the meta-connection.  We can now be sure that the
1502 meta-information doesn't get lost on the way to another computer.
1503
1504 @cindex data-protocol
1505 @cindex meta-protocol
1506 Like with any communication, we must have a protocol, so that everybody
1507 knows what everything stands for, and how she should react.  Because we
1508 have two connections, we also have two protocols.  The protocol used for
1509 the UDP data is the ``data-protocol,'' the other one is the
1510 ``meta-protocol.''
1511
1512 The reason we don't use TCP for both protocols is that UDP is much
1513 better for encapsulation, even while it is less reliable.  The real
1514 problem is that when TCP would be used to encapsulate a TCP stream
1515 that's on the private network, for every packet sent there would be
1516 three ACKs sent instead of just one.  Furthermore, if there would be
1517 a timeout, both TCP streams would sense the timeout, and both would
1518 start re-sending packets.
1519
1520
1521 @c ==================================================================
1522 @node    The meta-protocol, Security, The connection, Technical information
1523 @section The meta-protocol
1524
1525 The meta protocol is used to tie all tinc daemons together, and
1526 exchange information about which tinc daemon serves which virtual
1527 subnet.
1528
1529 The meta protocol consists of requests that can be sent to the other
1530 side.  Each request has a unique number and several parameters.  All
1531 requests are represented in the standard ASCII character set.  It is
1532 possible to use tools such as telnet or netcat to connect to a tinc
1533 daemon and to read and write requests by hand, provided that one
1534 understands the numeric codes sent.
1535
1536 The authentication scheme is described in @ref{Authentication protocol}. After a
1537 successful authentication, the server and the client will exchange all the
1538 information about other tinc daemons and subnets they know of, so that both
1539 sides (and all the other tinc daemons behind them) have their information
1540 synchronised.
1541
1542 @cindex ADD_EDGE
1543 @cindex ADD_SUBNET
1544 @example
1545 daemon  message
1546 --------------------------------------------------------------------------
1547 origin  ADD_EDGE node1 12.23.34.45 655 node2 21.32.43.54 655 222 0
1548                     |       |       |  \___________________/  |  +-> options
1549                     |       |       |             |           +----> weight
1550                     |       |       |             +----------------> see below
1551                     |       |       +--> UDP port
1552                     |       +----------> real address
1553                     +------------------> name of node on one side of the edge
1554
1555 origin  ADD_SUBNET node 192.168.1.0/24
1556                      |         |     +--> masklength
1557                      |         +--------> IPv4 network address
1558                      +------------------> owner of this subnet
1559 --------------------------------------------------------------------------
1560 @end example
1561
1562 @cindex DEL_EDGE
1563 In case a connection between two daemons is closed or broken, DEL_EDGE messages
1564 are sent to inform the other daemons of that fact. Each daemon will calculate a
1565 new route to the the daemons, or mark them unreachable if there isn't any.
1566
1567 The keys used to encrypt VPN packets are not sent out directly. This is
1568 because it would generate a lot of traffic on VPNs with many daemons, and
1569 chances are that not every tinc daemon will ever send a packet to every
1570 other daemon. Instead, if a daemon needs a key it sends a request for it
1571 via the meta connection of the nearest hop in the direction of the
1572 destination. If any hop on the way has already learned the key, it will
1573 act as a proxy and forward its copy back to the requester.
1574
1575 @cindex REQ_KEY
1576 @cindex ANS_KEY
1577 @cindex KEY_CHANGED
1578 @example
1579 daemon  message
1580 --------------------------------------------------------------------------
1581 daemon  REQ_KEY origin destination
1582                    |       +--> name of the tinc daemon it wants the key from
1583                    +----------> name of the daemon that wants the key      
1584
1585 daemon  ANS_KEY origin destination 4ae0b0a82d6e0078 91 64 4
1586                    |       |       \______________/ |  |  +--> MAC length
1587                    |       |               |        |  +-----> digest algorithm
1588                    |       |               |        +--------> cipher algorithm
1589                    |       |               +--> 128 bits key
1590                    |       +--> name of the daemon that wants the key
1591                    +----------> name of the daemon that uses this key
1592
1593 daemon  KEY_CHANGED origin
1594                       +--> daemon that has changed it's packet key
1595 --------------------------------------------------------------------------
1596 @end example
1597
1598 There is also a mechanism to check if hosts are still alive. Since network
1599 failures or a crash can cause a daemon to be killed without properly
1600 shutting down the TCP connection, this is necessary to keep an up to date
1601 connection list. PINGs are sent at regular intervals, except when there
1602 is also some other traffic. A little bit of salt (random data) is added
1603 with each PING and PONG message, to make sure that long sequences of PING/PONG
1604 messages without any other traffic won't result in known plaintext.
1605
1606 @cindex PING
1607 @cindex PONG
1608 @example
1609 daemon  message
1610 --------------------------------------------------------------------------
1611 origin  PING
1612 dest.   PONG
1613 --------------------------------------------------------------------------
1614 @end example
1615
1616 This basically covers what is sent over the meta connection by
1617 tinc.
1618
1619
1620 @c ==================================================================
1621 @node    Security,  , The meta-protocol, Technical information
1622 @section About tinc's encryption and other security-related issues.
1623
1624 @cindex TINC
1625 @cindex Cabal
1626 tinc got its name from ``TINC,'' short for @emph{There Is No Cabal}; the
1627 alleged Cabal was/is an organisation that was said to keep an eye on the
1628 entire Internet.  As this is exactly what you @emph{don't} want, we named
1629 the tinc project after TINC.
1630
1631 @cindex SVPN
1632 But in order to be ``immune'' to eavesdropping, you'll have to encrypt
1633 your data.  Because tinc is a @emph{Secure} VPN (SVPN) daemon, it does
1634 exactly that: encrypt.
1635 tinc uses blowfish encryption in CBC mode, sequence numbers and message authentication codes
1636 to make sure eavesdroppers cannot get and cannot change any information at all from the packets they can intercept.
1637
1638 @menu
1639 * Authentication protocol::
1640 * Encryption of network packets::
1641 @end menu
1642
1643
1644 @c ==================================================================
1645 @node    Authentication protocol, Encryption of network packets, Security, Security
1646 @subsection Authentication protocol
1647
1648 @cindex authentication
1649 A new scheme for authentication in tinc has been devised, which offers some
1650 improvements over the protocol used in 1.0pre2 and 1.0pre3. Explanation is
1651 below.
1652
1653 @cindex ID
1654 @cindex META_KEY
1655 @cindex CHALLENGE
1656 @cindex CHAL_REPLY
1657 @cindex ACK
1658 @example
1659 daemon  message
1660 --------------------------------------------------------------------------
1661 client  <attempts connection>
1662
1663 server  <accepts connection>
1664
1665 client  ID client 12
1666               |   +---> version
1667               +-------> name of tinc daemon
1668
1669 server  ID server 12
1670               |   +---> version
1671               +-------> name of tinc daemon
1672
1673 client  META_KEY 5f0823a93e35b69e...7086ec7866ce582b
1674                  \_________________________________/
1675                                  +-> RSAKEYLEN bits totally random string S1,
1676                                      encrypted with server's public RSA key
1677
1678 server  META_KEY 6ab9c1640388f8f0...45d1a07f8a672630
1679                  \_________________________________/
1680                                  +-> RSAKEYLEN bits totally random string S2,
1681                                      encrypted with client's public RSA key
1682
1683 From now on:
1684  - the client will symmetrically encrypt outgoing traffic using S1
1685  - the server will symmetrically encrypt outgoing traffic using S2
1686
1687 client  CHALLENGE da02add1817c1920989ba6ae2a49cecbda0
1688                   \_________________________________/
1689                                  +-> CHALLEN bits totally random string H1
1690
1691 server  CHALLENGE 57fb4b2ccd70d6bb35a64c142f47e61d57f
1692                   \_________________________________/
1693                                  +-> CHALLEN bits totally random string H2
1694
1695 client  CHAL_REPLY 816a86
1696                       +-> 160 bits SHA1 of H2
1697
1698 server  CHAL_REPLY 928ffe
1699                       +-> 160 bits SHA1 of H1
1700
1701 After the correct challenge replies are received, both ends have proved
1702 their identity. Further information is exchanged.
1703
1704 client  ACK 655 12.23.34.45 123 0
1705              |       |       |  +-> options
1706              |       |       +----> estimated weight
1707              |       +------------> IP address of server as seen by client
1708              +--------------------> UDP port of client
1709
1710 server  ACK 655 21.32.43.54 321 0
1711              |       |       |  +-> options
1712              |       |       +----> estimated weight
1713              |       +------------> IP address of client as seen by server
1714              +--------------------> UDP port of server
1715 --------------------------------------------------------------------------
1716 @end example
1717
1718 This new scheme has several improvements, both in efficiency and security.
1719
1720 First of all, the server sends exactly the same kind of messages over the wire
1721 as the client. The previous versions of tinc first authenticated the client,
1722 and then the server. This scheme even allows both sides to send their messages
1723 simultaneously, there is no need to wait for the other to send something first.
1724 This means that any calculations that need to be done upon sending or receiving
1725 a message can also be done in parallel. This is especially important when doing
1726 RSA encryption/decryption. Given that these calculations are the main part of
1727 the CPU time spent for the authentication, speed is improved by a factor 2.
1728
1729 Second, only one RSA encrypted message is sent instead of two. This reduces the
1730 amount of information attackers can see (and thus use for a cryptographic
1731 attack). It also improves speed by a factor two, making the total speedup a
1732 factor 4.
1733
1734 Third, and most important:
1735 The symmetric cipher keys are exchanged first, the challenge is done
1736 afterwards. In the previous authentication scheme, because a man-in-the-middle
1737 could pass the challenge/chal_reply phase (by just copying the messages between
1738 the two real tinc daemons), but no information was exchanged that was really
1739 needed to read the rest of the messages, the challenge/chal_reply phase was of
1740 no real use. The man-in-the-middle was only stopped by the fact that only after
1741 the ACK messages were encrypted with the symmetric cipher. Potentially, it
1742 could even send it's own symmetric key to the server (if it knew the server's
1743 public key) and read some of the metadata the server would send it (it was
1744 impossible for the mitm to read actual network packets though). The new scheme
1745 however prevents this.
1746
1747 This new scheme makes sure that first of all, symmetric keys are exchanged. The
1748 rest of the messages are then encrypted with the symmetric cipher. Then, each
1749 side can only read received messages if they have their private key. The
1750 challenge is there to let the other side know that the private key is really
1751 known, because a challenge reply can only be sent back if the challenge is
1752 decrypted correctly, and that can only be done with knowledge of the private
1753 key.
1754
1755 Fourth: the first thing that is send via the symmetric cipher encrypted
1756 connection is a totally random string, so that there is no known plaintext (for
1757 an attacker) in the beginning of the encrypted stream.
1758
1759
1760 @c ==================================================================
1761 @node    Encryption of network packets,  , Authentication protocol, Security
1762 @subsection Encryption of network packet
1763 @cindex encryption
1764
1765 A data packet can only be sent if the encryption key is known to both
1766 parties, and the connection is  activated. If the encryption key is not
1767 known, a request is sent to the destination using the meta connection
1768 to retrieve it. The packet is stored in a queue while waiting for the
1769 key to arrive.
1770
1771 @cindex UDP
1772 The UDP packet containing the network packet from the VPN has the following layout:
1773
1774 @example
1775 ... | IP header | UDP header | seqno | VPN packet | MAC | UDP trailer
1776                              \___________________/\_____/
1777                                        |             |
1778                                        V             +---> digest algorithm
1779                          Encrypted with symmetric cipher
1780 @end example
1781
1782 So, the entire VPN packet is encrypted using a symmetric cipher. A 32 bits
1783 sequence number is added in front of the actual VPN packet, to act as a unique
1784 IV for each packet and to prevent replay attacks. A message authentication code
1785 is added to the UDP packet to prevent alteration of packets. By default the
1786 first 4 bytes of the digest are used for this, but this can be changed using
1787 the MACLength configuration variable.
1788
1789 @c ==================================================================
1790 @node    About us, Concept Index, Technical information, Top
1791 @chapter About us
1792
1793
1794 @menu
1795 * Contact Information::
1796 * Authors::
1797 @end menu
1798
1799
1800 @c ==================================================================
1801 @node    Contact Information, Authors, About us, About us
1802 @section Contact information
1803
1804 @cindex website
1805 tinc's website is at @url{http://tinc.nl.linux.org/},
1806 this server is located in the Netherlands.
1807
1808 @cindex IRC
1809 We have an IRC channel on the Open Projects IRC network.  Connect to
1810 @uref{http://openprojects.nu/services/irc.html, irc.openprojects.net},
1811 and join channel #tinc.
1812
1813
1814 @c ==================================================================
1815 @node    Authors,  , Contact Information, About us
1816 @section Authors
1817
1818 @table @asis
1819 @item Ivo Timmermans (zarq) (@email{itimmermans@@bigfoot.com})
1820 Main coder/hacker and maintainer of the package.
1821
1822 @item Guus Sliepen (guus) (@email{guus@@sliepen.warande.net})
1823 Originator of it all, co-author.
1824
1825 @item Wessel Dankers (Ubiq) (@email{wsl@@nl.linux.org})
1826 For the name `tinc' and various suggestions.
1827
1828 @end table
1829
1830 We have received a lot of valuable input from users.  With their help,
1831 tinc has become the flexible and robust tool that it is today.  We have
1832 composed a list of contributions, in the file called @file{THANKS} in
1833 the source distribution.
1834
1835
1836 @c ==================================================================
1837 @node    Concept Index,  , About us, Top
1838 @c        node-name,    next, previous,        up
1839 @unnumbered Concept Index
1840
1841 @c ==================================================================
1842 @printindex cp
1843
1844
1845 @c ==================================================================
1846 @contents
1847 @bye