README 3.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. This is the README file for tinc version 1.1pre10. Installation
  2. instructions may be found in the INSTALL file.
  3. tinc is Copyright (C) 1998-2014 by:
  4. Ivo Timmermans,
  5. Guus Sliepen <guus@tinc-vpn.org>,
  6. and others.
  7. For a complete list of authors see the AUTHORS file.
  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. This is a pre-release
  13. ---------------------
  14. Please note that this is NOT a stable release. Until version 1.1.0 is released,
  15. please use one of the 1.0.x versions if you need a stable version of tinc.
  16. Although tinc 1.1 will be protocol compatible with tinc 1.0.x, the
  17. functionality of the tinc program may still change, and the control socket
  18. protocol is not fixed yet.
  19. Security statement
  20. ------------------
  21. This version uses an experimental and unfinished cryptographic protocol. Use it
  22. at your own risk.
  23. Compatibility
  24. -------------
  25. Version 1.1pre10 is compatible with 1.0pre8, 1.0 and later, but not with older
  26. versions of tinc.
  27. When the ExperimentalProtocol option is used, tinc is still compatible with
  28. 1.0.X and 1.1pre10 itself, but not with any other 1.1preX version.
  29. Requirements
  30. ------------
  31. In order to compile tinc, you will need a GNU C compiler environment. Please
  32. ensure you have the latest stable versions of all the required libraries:
  33. - OpenSSL (http://www.openssl.org/) version 1.0.0 or later, with support for
  34. elliptic curve cryptography (ECC) and Galois counter mode (GCM) enabled.
  35. The following libraries are used by default, but can be disabled if necessary:
  36. - zlib (http://www.gzip.org/zlib/)
  37. - lzo (http://www.oberhumer.com/opensource/lzo/)
  38. - ncurses (http://invisible-island.net/ncurses/)
  39. - readline (ftp://ftp.gnu.org/pub/gnu/readline/)
  40. Features
  41. --------
  42. Tinc is a peer-to-peer VPN daemon that supports VPNs with an arbitrary number
  43. of nodes. Instead of configuring tunnels, you give tinc the location and
  44. public key of a few nodes in the VPN. After making the initial connections to
  45. those nodes, tinc will learn about all other nodes on the VPN, and will make
  46. connections automatically. When direct connections are not possible, data will
  47. be forwarded by intermediate nodes.
  48. By default, nodes authenticate each other using 2048 bit RSA (or 521 bit
  49. ECDSA*) keys. Traffic is encrypted using Blowfish in CBC mode (or AES-256 in
  50. GCM mode*), authenticated using HMAC-SHA1 (or GCM*), and is protected against
  51. replay attacks.
  52. *) When using the ExperimentalProtocol option.
  53. Tinc fully supports IPv6.
  54. Tinc can operate in several routing modes. In the default mode, "router", every
  55. node is associated with one or more IPv4 and/or IPv6 Subnets. The other two
  56. modes, "switch" and "hub", let the tinc daemons work together to form a virtual
  57. Ethernet network switch or hub.
  58. Normally, when started tinc will detach and run in the background. In a native
  59. Windows environment this means tinc will intall itself as a service, which will
  60. restart after reboots. To prevent tinc from detaching or running as a service,
  61. use the -D option.
  62. The status of the VPN can be queried using the "tinc" command, which connects
  63. to a running tinc daemon via a control connection. The same tool also makes it
  64. easy to start and stop tinc, and to change its configuration.