]> git.meshlink.io Git - meshlink/blob - NEWS
Releasing 1.1pre7.
[meshlink] / NEWS
1 Version 1.1pre7              April 22 2013
2
3  * Fixed large latencies on Windows.
4
5  * Renamed the tincctl tool to tinc.
6
7  * Simplified changing the configuration using the tinc tool.
8
9  * Added a full description of the ExperimentalProtocol to the manual.
10
11  * Drop packets forwarded via TCP if they are too big (CVE-2013-1428).
12
13 Thanks to Martin Schobert for auditing tinc and reporting the vulnerability.
14
15 Version 1.1pre6              February 20 2013
16
17  * Fixed tincd exitting immediately on Windows.
18
19  * Detect PMTU increases.
20
21  * Fixed crashes when using a SOCKS5 proxy.
22
23  * Fixed control connection when using a proxy.
24
25 Version 1.1pre5              January 20 2013
26
27  * Fixed long delays and possible hangs on Windows.
28
29  * Fixed support for the tunemu device on iOS, the UML and VDE devices.
30
31  * Small improvements to the documentation and error messages.
32
33  * Fixed broadcast packets not reaching the whole VPN.
34
35  * Tincctl now connects via a UNIX socket to the tincd on platforms that
36    support this.
37
38  * The PriorityInheritance option now also works in switch mode.
39
40 Version 1.1pre4              December  5 2012
41
42  * Added the "AutoConnect" option which will let tinc automatically select
43    which nodes to connect to.
44
45  * Improved performance of VLAN-tagged IP traffic inside the VPN.
46
47  * Ensured LocalDiscovery works with multiple BindToAddress statements and/or
48    IPv6-only LANs.
49
50  * Dropped dependency on libevent.
51
52  * Fixed Windows version not reading packets from the TAP adapter.
53
54 Version 1.1pre3              October 14 2012
55
56  * New experimental protocol:
57    * Uses 521 bit ECDSA keys for authentication.
58    * Uses AES-256-CTR and HMAC-SHA256.
59    * Always provides perfect forward secrecy.
60    * Used for both meta-connections and VPN packets.
61    * VPN packets are encrypted end-to-end.
62
63  * Many improvements to tincctl:
64    * "config" command shows/adds/changes configuration variables.
65    * "export" and "import" commands help exchange configuration files.
66    * "init" command sets up initial configuration files.
67    * "info" command shows details about a node, subnet or address.
68    * "log" command shows live log messages.
69    * Without a command it acts as a shell, with history and TAB completion.
70    * Improved starting/stopping tincd.
71    * Improved graph output.
72
73  * When trying to directly send UDP packets to a node for which multiple
74    addresses are known, all of them are tried.
75
76  * Many small fixes, code cleanups and documentation updates.
77
78 Version 1.1pre2              July 17 2011
79
80  * .cookie files are renamed to .pid files, which are compatible with 1.0.x.
81
82  * Experimental protocol enhancements that can be enabled with the option
83    ExperimentalProtocol = yes:
84
85    * Ephemeral ECDH key exchange will be used for both the meta protocol and
86      UDP session keys.
87    * Key exchanges are signed with ECDSA.
88    * ECDSA public keys are automatically exchanged after RSA authentication if
89      nodes do not know each other's ECDSA public key yet.
90
91 Version 1.1pre1              June 25 2011
92
93  * Control interface allows control of a running tinc daemon. Used by:
94    * tincctl, a commandline utility
95    * tinc-gui, a preliminary GUI implemented in Python/wxWidgets
96
97  * Code cleanups and reorganization.
98
99  * Repleacable cryptography backend, currently supports OpenSSL and libgcrypt.
100
101  * Use libevent to handle I/O events and timeouts.
102
103  * Use splay trees instead of AVL trees to manage internal datastructures.
104
105  Thanks to Scott Lamb and Sven-Haegar Koch for their contributions to this
106  version of tinc.
107
108 Version 1.0.19               June 25 2012
109
110  * Allow :: notation in IPv6 Subnets.
111
112  * Add support for systemd style socket activation.
113
114  * Allow environment variables to be used for the Name option.
115
116  * Add basic support for SOCKS proxies, HTTP proxies, and proxying through an
117    external command.
118
119 Version 1.0.18               March 25 2012
120
121  * Fixed IPv6 in switch mode by turning off DecrementTTL by default.
122
123  * Allow a port number to be specified in BindToAddress, which also allows tinc
124    to listen on multiple ports.
125
126  * Add support for multicast communication with UML/QEMU/KVM.
127
128 Version 1.0.17               March 10 2012
129
130  * The DeviceType option can now be used to select dummy, raw socket, UML and
131    VDE devices without needing to recompile tinc.
132
133  * Allow multiple BindToAddress statements.
134
135  * Decrement TTL value of IPv4 and IPv6 packets.
136
137  * Add LocalDiscovery option allowing tinc to detect peers that are behind the
138    same NAT.
139
140  * Accept Subnets passed with the -o option when StrictSubnets = yes.
141
142  * Disabling old RSA keys when generating new ones now also works properly on
143    Windows.
144
145 Version 1.0.16               July 23 2011
146
147  * Fixed a performance issue with TCP communication under Windows.
148
149  * Fixed code that, during network outages, would cause tinc to exit when it
150    thought two nodes with identical Names were on the VPN.
151
152 Version 1.0.15               June 24 2011
153
154  * Improved logging to file.
155
156  * Reduced amount of process wakeups on platforms which support pselect().
157
158  * Fixed ProcessPriority option under Windows.
159
160   Thanks to Loïc Grenié for his contribution to this version of tinc.
161
162 Version 1.0.14               May  8 2011
163
164  * Fixed reading configuration files that do not end with a newline. Again.
165
166  * Allow arbitrary configuration options being specified on the command line.
167
168  * Allow all options in both tinc.conf and the local host config file.
169
170  * Configurable replay window, UDP send and receive buffers for performance tuning.
171
172  * Try harder to get UDP communication back after falling back to TCP.
173
174  * Initial support for attaching tinc to a VDE switch.
175
176  * DragonFly BSD support.
177
178  * Allow linking with OpenSSL 1.0.0.
179
180  Thanks to Brandon Black, Julien Muchembled, Michael Tokarev, Rumko and Timothy
181  Redaelli for their contributions to this version of tinc.
182
183 Version 1.0.13               Apr 11 2010
184
185  * Allow building tinc without LZO and/or Zlib.
186
187  * Clamp MSS of TCP packets in both directions.
188
189  * Experimental StrictSubnets, Forwarding and DirectOnly options,
190    giving more control over information and packets received from/sent to other
191    nodes.
192
193  * Ensure tinc never sends symbolic names for ports over the wire.
194
195 Version 1.0.12               Feb  3 2010
196
197  * Really allow fast roaming of hosts to other nodes in a switched VPN.
198
199  * Fixes missing or incorrect environment variables when calling host-up/down
200    and subnet-up/down scripts in some cases.
201
202  * Allow port to be specified in Address statements.
203
204  * Clamp MSS of TCP packets to the discovered path MTU.
205
206  * Let two nodes behind NAT learn each others current UDP address and port via
207    a third node, potentially allowing direct communications in a similar way to
208    STUN.
209
210 Version 1.0.11               Nov  1 2009
211
212  * Fixed potential crash when the HUP signal is sent.
213
214  * Fixes handling of weighted Subnets in switch and hub modes, preventing
215    unnecessary broadcasts.
216
217  * Works around a MinGW bug that caused packets to Windows nodes to always be
218    sent via TCP.
219
220  * Improvements to the PMTU discovery code, especially on Windows.
221
222  * Use UDP again in certain cases where 1.0.10 was too conservative and fell
223    back to TCP unnecessarily.
224
225  * Allow fast roaming of hosts to other nodes in a switched VPN.
226
227 Version 1.0.10               Oct 18 2009
228
229  * Fixed potential crashes during shutdown and (in rare conditions) when other
230    nodes disconnected from the VPN.
231
232  * Improved NAT handling: tinc now copes with mangled port numbers, and will
233    automatically fall back to TCP if direct UDP connection between nodes is not
234    possible. The TCPOnly option should not have to be used anymore.
235
236  * Allow configuration files with CRLF line endings to be read on UNIX.
237
238  * Disable old RSA keys when generating new ones, and raise the default size of
239    new RSA keys to 2048 bits.
240
241  * Many fixes in the path MTU discovery code, especially when Compression is
242    being used.
243
244  * Tinc can now drop privileges and/or chroot itself.
245
246  * The TunnelServer code now just ignores information from clients instead of
247    disconnecting them.
248
249  * Improved performance on Windows by using the new ProcessPriority option and
250    by making the handling of packets received from the TAP-Win32 adapter more
251    efficient.
252
253  * Code cleanups: tinc now follows the C99 standard, copyright headers have
254    been updated to include patch authors, checkpoint tracing and localisation
255    features have been removed.
256
257  * Support for (jailbroken) iPhone and iPod Touch has been added.
258
259  Thanks to Florian Forster, Grzegorz Dymarek and especially Michael Tokarev for
260  their contributions to this version of tinc.
261
262 Version 1.0.9                Dec 26 2008
263
264  * Fixed tinc as a service under Windows 2003.
265
266  * Fixed reading configuration files that do not end with a newline.
267
268  * Fixed crashes in situations where hostnames could not be resolved or hosts
269    would disconnect at the same time as session keys were exchanged.
270
271  * Improved default settings of tun and tap devices on BSD platforms.
272
273  * Make IPv6 sockets bind only to IPv6 on Linux.
274
275  * Enable path MTU discovery by default.
276
277  * Fixed a memory leak that occured when connections were closed.
278
279  Thanks to Max Rijevski for his contributions to this version of tinc.
280
281 Version 1.0.8                May 16 2007
282
283  * Fixed some memory and resource leaks.
284
285  * Made network sockets non-blocking under Windows.
286
287  Thanks to Scott Lamb and "dnk" for their contributions to this version of tinc.
288
289 Version 1.0.7                Jan  5 2007
290
291  * Fixed a bug that caused slow network speeds on Windows.
292
293  * Fixed a bug that caused tinc unable to write packets to the tun device on
294    OpenBSD.
295
296 Version 1.0.6                Dec 18 2006
297
298  * More flexible detection of the LZO libraries when compiling.
299
300  * Fixed a bug where broadcasts in switch and hub modes sometimes would not
301    work anymore when part of the VPN had become disconnected from the rest.
302
303 Version 1.0.5                Nov 14 2006
304
305  * Lots of small fixes.
306
307  * Broadcast packets no longer grow in size with each hop. This should
308    fix switch mode (again).
309
310  * Generic host-up and host-down scripts.
311
312  * Optionally dump graph in graphviz format to a file or a script.
313
314  * Support LZO 2.0 and later.
315
316  Thanks to Scott Lamb for his contributions to this version of tinc.
317
318 Version 1.0.4                May  4 2005
319
320  * Fix switch and hub modes.
321
322  * Optionally start scripts when a Subnet becomes (un)reachable.
323
324 Version 1.0.3                Nov 11 2004
325
326  * Show error message when failing to write a PID file.
327
328  * Ignore spaces at end of lines in config files.
329
330  * Fix handling of late packets.
331
332  * Unify BSD tun/tap device handling. This allows IPv6 on tun devices and
333    anything on tap devices as long as the underlying OS supports it.
334
335  * Handle IPv6 on Solaris tun devices.
336
337  * Allow tinc to work properly under Windows XP SP2.
338
339  * Allow VLAN tagged Ethernet frames in switch and hub mode.
340
341  * Experimental PMTUDiscovery, TunnelServer and BlockingTCP options.
342
343 Version 1.0.2                Nov  8 2003
344
345  * Fix address and hostname resolving under Windows.
346
347  * Remove warnings about non-existing scripts and unsupported address families.
348
349  * Use the event logger under Windows.
350
351  * Fix quoting of filenames and command line arguments under Windows.
352
353  * Strict checks for length incoming network packets and return values of
354    cryptographic functions,
355
356  * Fix a bug in metadata handling that made the tinc daemon abort.
357
358 Version 1.0.1                Aug 14 2003
359
360  * Allow empty lines in config files.
361
362  * Fix handling of spaces and backslashes in filenames under native Windows.
363
364  * Allow scripts to be executed under native Windows.
365
366  * Update documentation, make it less Linux specific.
367
368 Version 1.0                  Aug  4 2003
369
370  * Lots of small bugfixes and code cleanups.
371
372  * Throughput doubled and latency reduced.
373
374  * Added support for LZO compression.
375
376  * No need to set MAC address or disable ARP anymore.
377
378  * Added support for Windows 2000 and XP, both natively and in a Cygwin
379    environment.
380
381 Version 1.0pre8              Sep 16 2002
382
383  * More fixes for subnets with prefixlength undivisible by 8.
384
385  * Added support for NetBSD and MacOS/X.
386
387  * Switched from undirected graphs to directed graphs to avoid certain race
388    conditions and improve scalability.
389
390  * Generalized broadcasting and forwarding of protocol messages.
391
392  * Cleanup of source code.
393
394 Version 1.0pre7              Apr  7 2002
395
396  * Don't do blocking read()s when getting a signal.
397
398  * Remove RSA key checking code, since it sometimes thinks perfectly good RSA
399    keys are bad.
400
401  * Fix handling of subnets when prefixlength isn't divisible by 8.
402
403 Version 1.0pre6              Mar 27 2002
404
405  * Improvement of redundant links:
406    * Non-blocking connects.
407    * Protocol broadcast messages can no longer go into an infinite loop.
408    * Graph algorithm updated to look harder for direct connections.
409
410  * Good support for routing IPv6 packets over the VPN. Works on Linux,
411    FreeBSD, possibly OpenBSD but not on Solaris.
412
413  * Support for tunnels over IPv6 networks. Works on all supported
414    operating systems.
415
416  * Optional compression of UDP connections using zlib.
417
418  * Optionally let UDP connections inherit TOS field of tunneled packets.
419
420  * Optionally start scripts when certain hosts become (un)reachable.
421
422 Version 1.0pre5              Feb  9 2002
423
424  * Security enhancements:
425    * Added sequence number and optional message authentication code to
426      the packets.
427    * Configurable encryption cipher and digest algorithms.
428
429  * More robust handling of dis- and reconnects.
430
431  * Added a "switch" and a "hub" mode to allow bridging setups.
432
433  * Preliminary support for routing of IPv6 packets.
434
435  * Supports Linux, FreeBSD, OpenBSD and Solaris.
436
437 Version 1.0pre4              Jan 17 2001
438
439  * Updated documentation; the documentation now reflects the
440    configuration as it is.
441
442  * Some internal changes to make tinc scale better for large
443    networks, such as using AVL trees instead of linked lists for the
444    connection list.
445
446  * RSA keys can be stored in separate files if needed.  See the
447    documentation for more information.
448
449  * Tinc has now been reported to run on Linux PowerPC and FreeBSD x86.
450
451 Version 1.0pre3              Oct 31 2000
452
453  * The protocol has been redesigned, and although some details are
454    still under discussion, this is secure.  Care has been taken to
455    resist most, if not all, attacks.
456
457  * Unfortunately this protocol is not compatible with earlier versions,
458    nor are earlier versions compatible with this version.  Because the
459    older protocol has huge security flaws, we feel that not
460    implementing backwards compatibility is justified.
461
462  * Some data about the protocol:
463    * It uses public/private RSA keys for authentication (this is the
464      actual fix for the security hole).
465    * All cryptographic functions have been taken out of tinc, instead
466      it uses the OpenSSL library functions.
467    * Offers support for multiple subnets per tinc daemon.
468
469  * New is also the support for the universal tun/tap device.  This
470    means better portability to FreeBSD and Solaris.
471
472  * Tinc is tested to compile on Solaris, Linux x86, Linux alpha.
473
474  * Tinc now uses the OpenSSL library for cryptographic operations.
475    More information on getting and installing OpenSSL is in the manual.
476    This also means that the GMP library is no longer required.
477
478  * Further, thanks to Enrique Zanardi, we have Spanish messages; Matias
479    Carrasco provided us with a Spanish translation of the manual.
480
481 Version 1.0pre2              May 31 2000
482
483  * This version has been internationalized; and a Dutch translation has
484    been included.
485
486  * Two configuration variables have been added:
487    * VpnMask - the IP network mask for the entire VPN, not just our
488      subnet (as given by MyVirtualIP).  The Redhat and Debian packages
489      use this variable in their system startup scripts, but it is
490      ignored by tinc.
491    * Hostnames - if set to `yes', look up the names of IP addresses
492      trying to connect to us.  Default set to `no', to prevent lockups
493      during lookups.
494
495  * The system startup scripts for Debian and Redhat use
496    /etc/tinc/nets.boot to find out which networks need to be started
497    during system boot.
498
499  * Fixes to prevent denial of service attacks by sending random data
500    after connecting (and even when the connection has been established),
501    either random garbage or just nonsensical protocol fields.
502
503  * Tinc will retry to connect upon startup, does not quit if it doesn't
504    work the first time.
505
506  * Hosts that are disconnected implicitly if we lose a connection get
507    deleted from the internal list, to prevent hogging eachother with
508    add and delete requests when the connection is restored.
509
510 Version 1.0pre1              May 12 2000
511
512  * New meta-protocol
513
514  * Various other bugfixes
515
516  * Documentation updates
517
518 Version 0.3.3                Feb  9 2000
519
520  * Fixed bug that made tinc stop working with latest kernels
521
522  * Updated the manual
523
524 Version 0.3.2                Nov 12 1999
525
526  * No more `Invalid filedescriptor' when working with multiple
527    connections.
528
529  * Forward unknown packets to uplink.
530
531 Version 0.3.1                Oct 20 1999
532
533  * Fixed a bug where tinc would exit without a trace.
534
535 Version 0.3                  Aug 20 1999
536
537  * Pings now work immediately.
538
539  * All packet sizes get transmitted correctly.
540
541 Version 0.2.26               Aug 15 1999
542
543  * Fixed some remaining bugs.
544
545  * --sysconfdir works with configure.
546
547  * Last version before 0.3.
548
549 Version 0.2.25               Aug  8 1999
550
551  * Improved stability, going towards 0.3 now.
552
553 Version 0.2.24               Aug  7 1999
554
555  * Added key aging, there's a new config variable, KeyExpire.
556
557  * Updated man and info pages.
558
559 Version 0.2.23               Aug  5 1999
560
561  * All known bugs fixed, this is a candidate for 0.3.
562
563 Version 0.2.22               Apr 11 1999
564
565  * Multiconnection thing is now working nearly perfect :)
566
567 Version 0.2.21               Apr 10 1999
568
569  * You shouldn't notice a thing, but a lot has changed wrt key
570 management - except that it refuses to talk to versions < 0.2.20
571
572 Version 0.2.19               Apr  3 1999
573
574  * Don't install a libcipher.so.
575
576 Version 0.2.18               Apr  3 1999
577
578  * Blowfish library dynamically loaded upon execution.
579
580  * Included Eric Young's IDEA library.
581
582 Version 0.2.17               Apr  1 1999
583
584  * Tincd now re-executes itself in case of a segmentation fault.
585
586 Version 0.2.16               Apr  1 1999
587
588  * Wrote tincd.conf(5) man page, which still needs a lot of work.
589
590  * Config file now accepts and tolerates spaces, and any integer base
591    for integer variables, and better error reporting. See
592    doc/tincd.conf.sample for an example.
593
594 Version 0.2.15               Mar 29 1999
595
596  * Fixed bugs.
597
598 Version 0.2.14               Feb 10 1999
599
600  * Added --timeout flag and PingTimeout configuration.
601  * Did some first syslog cleanup work.
602
603 Version 0.2.13               Jan 23 1999
604
605  * Bugfixes.
606
607 Version 0.2.12               Jan 23 1999
608
609  * Fixed nauseating bug so that it would crash whenever a connection
610    got lost.
611
612 Version 0.2.11               Jan 22 1999
613
614  * Framework for multiple connections has been done.
615
616  * Simple manpage for tincd.
617
618 Version 0.2.10               Jan 18 1999
619
620  * Passphrase support added.
621
622 Version 0.2.9                Jan 13 1999
623
624  * Bugs fixed.
625
626 Version 0.2.8                Jan 11 1999
627
628  * A reworked protocol version.
629
630  * A ping/pong system.
631
632  * More reliable networking code.
633
634  * Automatic reconnection.
635
636  * Still does not work with more than one connection :)
637
638  * Strips MAC addresses before sending, so there's less overhead, and
639    less redundancy.
640
641 Version 0.2.7                Jan  3 1999
642
643  * Several updates to make extending more easy.
644
645 Version 0.2.6                Dec 20 1998
646
647  * Point-to-Point connections have been established, including
648    Blowfish encryption and a secret key-exchange.
649
650 Version 0.2.5                Dec 16 1998
651
652  * Project renamed to tinc, in honour of TINC.
653
654 Version 0.2.4                Dec 16 1998
655
656  * Now it really does ;)
657
658 Version 0.2.3                Nov 24 1998
659
660  * It sort of works now.
661
662 Version 0.2.2                Nov 20 1998
663
664  * Uses GNU gmp.
665
666 Version 0.2.1                Nov 14 1998
667
668  * Bare version.