NEWS 23 KB

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