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