Releasing 1.1pre13.
[tinc] / README
1 This is the README file for tinc version 1.1pre13. Installation
2 instructions may be found in the INSTALL file.
3
4 tinc is Copyright © 1998-2016 Ivo Timmermans, Guus Sliepen <guus@tinc-vpn.org>, and others.
5
6 For a complete list of authors see the AUTHORS file.
7
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or (at
11 your option) any later version. See the file COPYING for more details.
12
13
14 This is a pre-release
15 ---------------------
16
17 Please note that this is NOT a stable release. Until version 1.1.0 is released,
18 please use one of the 1.0.x versions if you need a stable version of tinc.
19
20 Although tinc 1.1 will be protocol compatible with tinc 1.0.x, the
21 functionality of the tinc program may still change, and the control socket
22 protocol is not fixed yet.
23
24
25 Security statement
26 ------------------
27
28 This version uses an experimental and unfinished cryptographic protocol. Use it
29 at your own risk.
30
31
32 Compatibility
33 -------------
34
35 Version 1.1pre13 is compatible with 1.0pre8, 1.0 and later, but not with older
36 versions of tinc.
37
38 When the ExperimentalProtocol option is used, tinc is still compatible with
39 1.0.X, 1.1pre11 and later, but not with any version between 1.1pre1 and
40 1.1pre10.
41
42
43 Requirements
44 ------------
45
46 In order to compile tinc, you will need a GNU C compiler environment. Please
47 ensure you have the latest stable versions of all the required libraries:
48
49 - LibreSSL (http://www.libressl.org/) or OpenSSL (https://openssl.org/) version 1.0.0 or later.
50
51 The following libraries are used by default, but can be disabled if necessary:
52
53 - zlib (http://www.zlib.net/)
54 - LZO (https://www.oberhumer.com/opensource/lzo/)
55 - ncurses (http://invisible-island.net/ncurses/)
56 - readline (https://cnswww.cns.cwru.edu/php/chet/readline/rltop.html)
57
58
59 Features
60 --------
61
62 Tinc is a peer-to-peer VPN daemon that supports VPNs with an arbitrary number
63 of nodes. Instead of configuring tunnels, you give tinc the location and
64 public key of a few nodes in the VPN. After making the initial connections to
65 those nodes, tinc will learn about all other nodes on the VPN, and will make
66 connections automatically. When direct connections are not possible, data will
67 be forwarded by intermediate nodes.
68
69 Tinc 1.1 support two protocols. The first is a legacy protocol that provides
70 backwards compatibility with tinc 1.0 nodes, and which by default uses 2048 bit
71 RSA keys for authentication, and encrypts traffic using Blowfish in CBC mode
72 and HMAC-SHA1. The second is a new protocol which uses Curve25519 keys for
73 authentication, and encrypts traffic using Chacha20-Poly1305, and provides
74 forward secrecy.
75
76 Tinc fully supports IPv6.
77
78 Tinc can operate in several routing modes. In the default mode, "router", every
79 node is associated with one or more IPv4 and/or IPv6 Subnets. The other two
80 modes, "switch" and "hub", let the tinc daemons work together to form a virtual
81 Ethernet network switch or hub.
82
83 Normally, when started tinc will detach and run in the background. In a native
84 Windows environment this means tinc will install itself as a service, which will
85 restart after reboots.  To prevent tinc from detaching or running as a service,
86 use the -D option.
87
88 The status of the VPN can be queried using the "tinc" command, which connects
89 to a running tinc daemon via a control connection. The same tool also makes it
90 easy to start and stop tinc, and to change its configuration.