NEWS 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716
  1. Version 1.0.32 September 2 2017
  2. * Fix segmentation fault when using Cipher = none.
  3. * Fix Proxy = exec.
  4. * Support PriorityInheritance for IPv6 packets.
  5. * Fixes for Solaris tun/tap support.
  6. * Bind outgoing TCP sockets when ListenAddress is used.
  7. Thanks to Vittorio Gambaletta for his contribution to this version of tinc.
  8. Version 1.0.31 January 15 2017
  9. * Remove ExecStop in tinc@.service.
  10. Thanks to Élie Bouttier for his contribution to this version of tinc.
  11. Version 1.0.30 October 30 2016
  12. * Fix troubles connecting to some HTTP proxies.
  13. * Add mitigations for the Sweet32 attack when using a 64-bit block cipher.
  14. * Use AES256 and SHA256 as the default encryption and digest algorithms.
  15. Version 1.0.29 October 9 2016
  16. * Fix UDP communication with peers with link-local IPv6 addresses.
  17. * Ensure compatibility with OpenSSL 1.1.0.
  18. * Ensure autoreconf can be run without requiring autoconf-archive.
  19. * Log warnings about dropped packets only at debug level 5.
  20. Version 1.0.28 April 10 2016
  21. * Fix compilation on BSD platforms.
  22. * Add systemd service files.
  23. Version 1.0.27 April 10 2016
  24. * When using Proxy, let the proxy resolve hostnames if tinc can't.
  25. * Fixes and improvements of the DecrementTTL option.
  26. * Fixed the $NAME variable in subnet-up/down scripts for the local Subnets.
  27. * Fixed potentially wrong checksum generation when clamping the MSS.
  28. * Properly choose between the system's or our own copy of getopt.
  29. * Fixed compiling tinc for Cygwin with MinGW installed.
  30. * Added support for OS X utun interfaces.
  31. * Documentation updates and minor fixes.
  32. Thanks to Vittorio Gambaletta, LunarShaddow, Florian Weik and Nathan Stratton
  33. Treadway for their contributions to this version of tinc.
  34. Version 1.0.26 July 5 2015
  35. * Tinc now forces glibc to reload /etc/resolv.conf for every hostname lookup.
  36. * Fixed --logfile without a filename on Windows.
  37. * Ensure tinc can be compiled when using musl libc.
  38. Thanks to Jo-Philipp Wich for his contribution to this version of tinc.
  39. Version 1.0.25 December 22 2014
  40. * Documentation updates.
  41. * Support linking against -lresolv on Mac OS X.
  42. * Fix scripts on Windows when using the ScriptsInterpreter option.
  43. * Allow a minimum reconnect timeout to be specified.
  44. * Support PriorityInheritance on IPv6 sockets.
  45. Thanks to David Pflug, Baptiste Jonglez, Alexis Hildebrandt, Borg, Jochen Voss,
  46. Tomislav Čohar and VittGam for their contributions to this version of tinc.
  47. Version 1.0.24 May 11 2014
  48. * Various compiler hardening flags are enabled by default.
  49. * Updated support for Solaris, allowing switch mode on Solaris 11.
  50. * Configuration will now also be read from a conf.d directory.
  51. * Various updates to the documentation.
  52. * Tinc now forces glibc to reload /etc/resolv.conf after it receives SIGALRM.
  53. * Fixed a potential routing loop when IndirectData or TCPOnly is used and
  54. broadcast packets are being sent.
  55. * Improved security with constant time memcmp and stricter use of OpenSSL's
  56. RNG functions.
  57. * Fixed all issues found by Coverity.
  58. Thanks to Florent Clairambault, Vilbrekin, luckyhacky, Armin Fisslthaler, Loïc
  59. Dachary and Steffan Karger for their contributions to this version of tinc.
  60. Version 1.0.23 October 19 2013
  61. * Start authentication immediately on outgoing connections (useful for sslh).
  62. * Fixed segfault when Name = $HOST but $HOST is not set.
  63. * Updated the build system and the documentation.
  64. * Clean up child processes left over from Proxy = exec.
  65. Version 1.0.22 August 13 2013
  66. * Fixed the combination of Mode = router and DeviceType = tap.
  67. * The $NAME variable is now set in subnet-up/down scripts.
  68. * Tinc now gives an error when unknown options are given on the command line.
  69. * Tinc now correctly handles a space between a short command line option and
  70. an optional argument.
  71. Thanks to Etienne Dechamps for his contribution to this version of tinc.
  72. Version 1.0.21 April 22 2013
  73. * Drop packets forwarded via TCP if they are too big (CVE-2013-1428).
  74. Thanks to Martin Schobert for auditing tinc and reporting this vulnerability.
  75. Version 1.0.20 March 03 2013
  76. * Use /dev/tap0 by default on FreeBSD and NetBSD when using switch mode.
  77. * Minor improvements and clarifications in the documentation.
  78. * Allow tinc to be cross-compiled with Android's NDK.
  79. * The discovered PMTU is now also applied to VLAN tagged traffic.
  80. * The LocalDiscovery option now makes use of all addresses tinc is bound to.
  81. * Fixed support for tunemu on iOS devices.
  82. * The PriorityInheritance option now also works with switch mode.
  83. * Fixed tinc crashing when using a SOCKS5 proxy.
  84. Thanks to Mesar Hameed, Vilbrekin and Martin Schürrer for their contributions
  85. to this version of tinc.
  86. Version 1.0.19 June 25 2012
  87. * Allow :: notation in IPv6 Subnets.
  88. * Add support for systemd style socket activation.
  89. * Allow environment variables to be used for the Name option.
  90. * Add basic support for SOCKS proxies, HTTP proxies, and proxying through an
  91. external command.
  92. Thanks to Anthony G. Basile and Michael Tokarev for their contributions to
  93. this version of tinc.
  94. Version 1.0.18 March 25 2012
  95. * Fixed IPv6 in switch mode by turning off DecrementTTL by default.
  96. * Allow a port number to be specified in BindToAddress, which also allows tinc
  97. to listen on multiple ports.
  98. * Add support for multicast communication with UML/QEMU/KVM.
  99. Version 1.0.17 March 10 2012
  100. * The DeviceType option can now be used to select dummy, raw socket, UML and
  101. VDE devices without needing to recompile tinc.
  102. * Allow multiple BindToAddress statements.
  103. * Decrement TTL value of IPv4 and IPv6 packets.
  104. * Add LocalDiscovery option allowing tinc to detect peers that are behind the
  105. same NAT.
  106. * Accept Subnets passed with the -o option when StrictSubnets = yes.
  107. * Disabling old RSA keys when generating new ones now also works properly on
  108. Windows.
  109. Thanks to Nick Hibma for his contribution to this version of tinc.
  110. Version 1.0.16 July 23 2011
  111. * Fixed a performance issue with TCP communication under Windows.
  112. * Fixed code that, during network outages, would cause tinc to exit when it
  113. thought two nodes with identical Names were on the VPN.
  114. Version 1.0.15 June 24 2011
  115. * Improved logging to file.
  116. * Reduced amount of process wakeups on platforms which support pselect().
  117. * Fixed ProcessPriority option under Windows.
  118. Version 1.0.14 May 8 2011
  119. * Fixed reading configuration files that do not end with a newline. Again.
  120. * Allow arbitrary configuration options being specified on the command line.
  121. * Allow all options in both tinc.conf and the local host config file.
  122. * Configurable replay window, UDP send and receive buffers for performance tuning.
  123. * Try harder to get UDP communication back after falling back to TCP.
  124. * Initial support for attaching tinc to a VDE switch.
  125. * DragonFly BSD support.
  126. * Allow linking with OpenSSL 1.0.0.
  127. Thanks to Brandon Black, Julien Muchembled, Michael Tokarev, Rumko and Timothy
  128. Redaelli for their contributions to this version of tinc.
  129. Version 1.0.13 Apr 11 2010
  130. * Allow building tinc without LZO and/or Zlib.
  131. * Clamp MSS of TCP packets in both directions.
  132. * Experimental StrictSubnets, Forwarding and DirectOnly options,
  133. giving more control over information and packets received from/sent to other
  134. nodes.
  135. * Ensure tinc never sends symbolic names for ports over the wire.
  136. Version 1.0.12 Feb 3 2010
  137. * Really allow fast roaming of hosts to other nodes in a switched VPN.
  138. * Fixes missing or incorrect environment variables when calling host-up/down
  139. and subnet-up/down scripts in some cases.
  140. * Allow port to be specified in Address statements.
  141. * Clamp MSS of TCP packets to the discovered path MTU.
  142. * Let two nodes behind NAT learn each others current UDP address and port via
  143. a third node, potentially allowing direct communications in a similar way to
  144. STUN.
  145. Version 1.0.11 Nov 1 2009
  146. * Fixed potential crash when the HUP signal is sent.
  147. * Fixes handling of weighted Subnets in switch and hub modes, preventing
  148. unnecessary broadcasts.
  149. * Works around a MinGW bug that caused packets to Windows nodes to always be
  150. sent via TCP.
  151. * Improvements to the PMTU discovery code, especially on Windows.
  152. * Use UDP again in certain cases where 1.0.10 was too conservative and fell
  153. back to TCP unnecessarily.
  154. * Allow fast roaming of hosts to other nodes in a switched VPN.
  155. Version 1.0.10 Oct 18 2009
  156. * Fixed potential crashes during shutdown and (in rare conditions) when other
  157. nodes disconnected from the VPN.
  158. * Improved NAT handling: tinc now copes with mangled port numbers, and will
  159. automatically fall back to TCP if direct UDP connection between nodes is not
  160. possible. The TCPOnly option should not have to be used anymore.
  161. * Allow configuration files with CRLF line endings to be read on UNIX.
  162. * Disable old RSA keys when generating new ones, and raise the default size of
  163. new RSA keys to 2048 bits.
  164. * Many fixes in the path MTU discovery code, especially when Compression is
  165. being used.
  166. * Tinc can now drop privileges and/or chroot itself.
  167. * The TunnelServer code now just ignores information from clients instead of
  168. disconnecting them.
  169. * Improved performance on Windows by using the new ProcessPriority option and
  170. by making the handling of packets received from the TAP-Win32 adapter more
  171. efficient.
  172. * Code cleanups: tinc now follows the C99 standard, copyright headers have
  173. been updated to include patch authors, checkpoint tracing and localisation
  174. features have been removed.
  175. * Support for (jailbroken) iPhone and iPod Touch has been added.
  176. Thanks to Florian Forster, Grzegorz Dymarek and especially Michael Tokarev for
  177. their contributions to this version of tinc.
  178. Version 1.0.9 Dec 26 2008
  179. * Fixed tinc as a service under Windows 2003.
  180. * Fixed reading configuration files that do not end with a newline.
  181. * Fixed crashes in situations where hostnames could not be resolved or hosts
  182. would disconnect at the same time as session keys were exchanged.
  183. * Improved default settings of tun and tap devices on BSD platforms.
  184. * Make IPv6 sockets bind only to IPv6 on Linux.
  185. * Enable path MTU discovery by default.
  186. * Fixed a memory leak that occured when connections were closed.
  187. Thanks to Max Rijevski for his contributions to this version of tinc.
  188. Version 1.0.8 May 16 2007
  189. * Fixed some memory and resource leaks.
  190. * Made network sockets non-blocking under Windows.
  191. Thanks to Scott Lamb and "dnk" for their contributions to this version of tinc.
  192. Version 1.0.7 Jan 5 2007
  193. * Fixed a bug that caused slow network speeds on Windows.
  194. * Fixed a bug that caused tinc unable to write packets to the tun device on
  195. OpenBSD.
  196. Version 1.0.6 Dec 18 2006
  197. * More flexible detection of the LZO libraries when compiling.
  198. * Fixed a bug where broadcasts in switch and hub modes sometimes would not
  199. work anymore when part of the VPN had become disconnected from the rest.
  200. version 1.0.5 Nov 14 2006
  201. * Lots of small fixes.
  202. * Broadcast packets no longer grow in size with each hop. This should
  203. fix switch mode (again).
  204. * Generic host-up and host-down scripts.
  205. * Optionally dump graph in graphviz format to a file or a script.
  206. * Support LZO 2.0 and later.
  207. Thanks to Scott Lamb for his contributions to this version of tinc.
  208. version 1.0.4 May 4 2005
  209. * Fix switch and hub modes.
  210. * Optionally start scripts when a Subnet becomes (un)reachable.
  211. version 1.0.3 Nov 11 2004
  212. * Show error message when failing to write a PID file.
  213. * Ignore spaces at end of lines in config files.
  214. * Fix handling of late packets.
  215. * Unify BSD tun/tap device handling. This allows IPv6 on tun devices and
  216. anything on tap devices as long as the underlying OS supports it.
  217. * Handle IPv6 on Solaris tun devices.
  218. * Allow tinc to work properly under Windows XP SP2.
  219. * Allow VLAN tagged Ethernet frames in switch and hub mode.
  220. * Experimental PMTUDiscovery, TunnelServer and BlockingTCP options.
  221. version 1.0.2 Nov 8 2003
  222. * Fix address and hostname resolving under Windows.
  223. * Remove warnings about non-existing scripts and unsupported address families.
  224. * Use the event logger under Windows.
  225. * Fix quoting of filenames and command line arguments under Windows.
  226. * Strict checks for length incoming network packets and return values of
  227. cryptographic functions,
  228. * Fix a bug in metadata handling that made the tinc daemon abort.
  229. version 1.0.1 Aug 14 2003
  230. * Allow empty lines in config files.
  231. * Fix handling of spaces and backslashes in filenames under native Windows.
  232. * Allow scripts to be executed under native Windows.
  233. * Update documentation, make it less Linux specific.
  234. version 1.0 Aug 4 2003
  235. * Lots of small bugfixes and code cleanups.
  236. * Throughput doubled and latency reduced.
  237. * Added support for LZO compression.
  238. * No need to set MAC address or disable ARP anymore.
  239. * Added support for Windows 2000 and XP, both natively and in a Cygwin
  240. environment.
  241. version 1.0pre8 Sep 16 2002
  242. * More fixes for subnets with prefixlength undivisible by 8.
  243. * Added support for NetBSD and MacOS/X.
  244. * Switched from undirected graphs to directed graphs to avoid certain race
  245. conditions and improve scalability.
  246. * Generalized broadcasting and forwarding of protocol messages.
  247. * Cleanup of source code.
  248. version 1.0pre7 Apr 7 2002
  249. * Don't do blocking read()s when getting a signal.
  250. * Remove RSA key checking code, since it sometimes thinks perfectly good RSA
  251. keys are bad.
  252. * Fix handling of subnets when prefixlength isn't divisible by 8.
  253. version 1.0pre6 Mar 27 2002
  254. * Improvement of redundant links:
  255. * Non-blocking connects.
  256. * Protocol broadcast messages can no longer go into an infinite loop.
  257. * Graph algorithm updated to look harder for direct connections.
  258. * Good support for routing IPv6 packets over the VPN. Works on Linux,
  259. FreeBSD, possibly OpenBSD but not on Solaris.
  260. * Support for tunnels over IPv6 networks. Works on all supported
  261. operating systems.
  262. * Optional compression of UDP connections using zlib.
  263. * Optionally let UDP connections inherit TOS field of tunneled packets.
  264. * Optionally start scripts when certain hosts become (un)reachable.
  265. version 1.0pre5 Feb 9 2002
  266. * Security enhancements:
  267. * Added sequence number and optional message authentication code to
  268. the packets.
  269. * Configurable encryption cipher and digest algorithms.
  270. * More robust handling of dis- and reconnects.
  271. * Added a "switch" and a "hub" mode to allow bridging setups.
  272. * Preliminary support for routing of IPv6 packets.
  273. * Supports Linux, FreeBSD, OpenBSD and Solaris.
  274. It looks like this might be the last release before 1.0.
  275. version 1.0pre4 Jan 17 2001
  276. * Updated documentation; the documentation now reflects the
  277. configuration as it is.
  278. * Some internal changes to make tinc scale better for large
  279. networks, such as using AVL trees instead of linked lists for the
  280. connection list.
  281. * RSA keys can be stored in separate files if needed. See the
  282. documentation for more information.
  283. * tinc has now been reported to run on Linux PowerPC and FreeBSD x86.
  284. version 1.0pre3 Oct 31 2000
  285. * The protocol has been redesigned, and although some details are
  286. still under discussion, this is secure. Care has been taken to
  287. resist most, if not all, attacks.
  288. * Unfortunately this protocol is not compatible with earlier versions,
  289. nor are earlier versions compatible with this version. Because the
  290. older protocol has huge security flaws, we feel that not
  291. implementing backwards compatibility is justified.
  292. * Some data about the protocol:
  293. * It uses public/private RSA keys for authentication (this is the
  294. actual fix for the security hole).
  295. * All cryptographic functions have been taken out of tinc, instead
  296. it uses the OpenSSL library functions.
  297. * Offers support for multiple subnets per tinc daemon.
  298. * New is also the support for the universal tun/tap device. This
  299. means better portability to FreeBSD and Solaris.
  300. * tinc is tested to compile on Solaris, Linux x86, Linux alpha.
  301. * tinc now uses the OpenSSL library for cryptographic operations.
  302. More information on getting and installing OpenSSL is in the manual.
  303. This also means that the GMP library is no longer required.
  304. * Further, thanks to Enrique Zanardi, we have Spanish messages; Matias
  305. Carrasco provided us with a Spanish translation of the manual.
  306. What still needs to be done before 1.0:
  307. * Documentation. Especially since the protocol has changed, and a lot
  308. of configuration directives have been added.
  309. version 1.0pre2 May 31 2000
  310. * This version has been internationalized; and a Dutch translation has
  311. been included.
  312. * Two configuration variables have been added:
  313. * VpnMask - the IP network mask for the entire VPN, not just our
  314. subnet (as given by MyVirtualIP). The Redhat and Debian packages
  315. use this variable in their system startup scripts, but it is
  316. ignored by tinc.
  317. * Hostnames - if set to `yes', look up the names of IP addresses
  318. trying to connect to us. Default set to `no', to prevent lockups
  319. during lookups.
  320. * The system startup scripts for Debian and Redhat use
  321. /etc/tinc/nets.boot to find out which networks need to be started
  322. during system boot.
  323. * Fixes to prevent denial of service attacks by sending random data
  324. after connecting (and even when the connection has been established),
  325. either random garbage or just nonsensical protocol fields.
  326. * tinc will retry to connect upon startup, does not quit if it doesn't
  327. work the first time.
  328. * Hosts that are disconnected implicitly if we lose a connection get
  329. deleted from the internal list, to prevent hogging eachother with
  330. add and delete requests when the connection is restored.
  331. What still needs to be done before 1.0:
  332. * Documentation.
  333. * Failover ConnectTo lines, try another one if the first doesn't work.
  334. version 1.0pre1 May 12 2000
  335. * New meta-protocol
  336. * Various other bugfixes
  337. * Documentation updates
  338. version 0.3.3 Feb 9 2000
  339. * Fixed bug that made tinc stop working with latest kernels (Guus
  340. Sliepen)
  341. * Updated the manual
  342. version 0.3.2 Nov 12 1999
  343. * no more `Invalid filedescriptor' when working with multiple
  344. connections
  345. * forward unknown packets to uplink
  346. version 0.3.1 Oct 20 1999
  347. * fixed a bug where tinc would exit without a trace
  348. version 0.3 Aug 20 1999
  349. * pings now work immediately
  350. * all packet sizes get transmitted correctly
  351. version 0.2.26 Aug 15 1999
  352. * fixed some remaining bugs
  353. * --sysconfdir works with configure
  354. * last version before 0.3
  355. version 0.2.25 Aug 8 1999
  356. * improved stability, going towards 0.3 now.
  357. version 0.2.24 Aug 7 1999
  358. * added key aging, there's a new config variable, KeyExpire.
  359. * updated man and info pages
  360. version 0.2.23 Aug 5 1999
  361. * all known bugs fixed, this is a candidate for 0.3
  362. version 0.2.22 Apr 11 1999
  363. * multiconnection thing is now working nearly perfect :)
  364. version 0.2.21 Apr 10 1999
  365. * You shouldn't notice a thing, but a lot has changed wrt key
  366. management - except that it refuses to talk to versions < 0.2.20
  367. version 0.2.20
  368. version 0.2.19 Apr 3 1999
  369. * don't install a libcipher.so
  370. version 0.2.18 Apr 3 1999
  371. * blowfish library dynamically loaded upon execution
  372. * included Eric Young's IDEA library
  373. version 0.2.17 Apr 1 1999
  374. * tincd now re-executes itself in case of a segmentation fault.
  375. version 0.2.16 Apr 1 1999
  376. * wrote tincd.conf(5) man page, which still needs a lot of work.
  377. * config file now accepts and tolerates spaces, and any integer base
  378. for integer variables, and better error reporting. See
  379. doc/tincd.conf.sample for an example.
  380. version 0.2.15 Mar 29 1999
  381. * fixed bugs
  382. version 0.2.14 Feb 10 1999
  383. * added --timeout flag and PingTimeout configuration
  384. * did some first syslog cleanup work
  385. version 0.2.13 Jan 23 1999
  386. * bugfixes
  387. version 0.2.12 Jan 23 1999
  388. * fixed nauseating bug so that it would crash whenever a connection
  389. got lost
  390. version 0.2.11 Jan 22 1999
  391. * framework for multiple connections has been done
  392. * simple manpage for tincd
  393. version 0.2.10 Jan 18 1999
  394. * passphrase support added
  395. version 0.2.9 Jan 13 1999
  396. * bugs fixed.
  397. version 0.2.8 Jan 11 1999
  398. * a reworked protocol version
  399. * a ping/pong system
  400. * more reliable networking code
  401. * automatic reconnection
  402. * still does not work with more than one connection :)
  403. * strips MAC addresses before sending, so there's less overhead, and
  404. less redundancy
  405. version 0.2.7 Jan 3 1999
  406. * several updates to make extending more easy.
  407. version 0.2.6 Dec 20 1998
  408. * Point-to-Point connections have been established, including
  409. blowfish encryption and a secret key-exchange.
  410. version 0.2.5 Dec 16 1998
  411. * Project renamed to tinc, in honour of TINC.
  412. version 0.2.4 Dec 16 1998
  413. * now it really does ;)
  414. version 0.2.3 Nov 24 1998
  415. * it sort of works now
  416. version 0.2.2 Nov 20 1998
  417. * uses GNU gmp.
  418. version 0.2.1 Nov 14 1998
  419. * Bare version.