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