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