|
| 1 | +August 8th, 2001 (08.08.2001) -- wackamole -- 1.0.0 |
| 2 | +========================================== |
| 3 | + * Added this ChangeLog file. |
| 4 | + * Initial release. |
| 5 | + * Now supports Linux platform. |
| 6 | + |
| 7 | +September 14th, 2001 (09.14.2001) -- wackamole -- 1.0.1 |
| 8 | +========================================== |
| 9 | + * Now brings down all its virtual interfaces when when it dies. |
| 10 | + * Now tries to reconnect to spread if it looses connection. |
| 11 | + |
| 12 | +November 5th, 2001 (11.01.2001) -- wackamole -- 1.2.0 |
| 13 | +=========================================== |
| 14 | + * Added autoconf support (./configure) |
| 15 | + * Now supports FreeBSD platform. |
| 16 | + * Now supports Solaris 8 platform. |
| 17 | + * Now supports MacOSX platform. |
| 18 | + * Now daemonizes unless "-d" flag is given. |
| 19 | + * Write a PID file now. |
| 20 | + * Modified so that number of vitual ip's can be less than |
| 21 | + number of machines if some machines have config vip 0.0.0.0 |
| 22 | + * Writes IP release/acquire information to syslog |
| 23 | + |
| 24 | +November 15th, 2002 (11.15.2002) -- wackamole -- 2.0.0 |
| 25 | +=========================================== |
| 26 | + * Revamped configuration file completely. New format described in sample. |
| 27 | + * Allows/requires all interfaces to be named excplicitly to support machines |
| 28 | + with multiple interface cards on different VLANs and/or subnets. |
| 29 | + * Notifications are not to "a" router anymore. An arbitrary list of CIDR form |
| 30 | + addresses can be specified explicitly by interface. |
| 31 | + All will receive ARP notifications of the MAC address change. |
| 32 | + * ARP cache is collected (FreeBSD and Linux supported) and that pool can be |
| 33 | + used as a notification destination for ARP updates. (i.e. arp-spoof |
| 34 | + everyone in my arp cache). ARP caches are announced and merged, so |
| 35 | + you wil hit every IP in the collective ARP cache of the cluster. |
| 36 | + * Added multi-threaded updates. Each VIP that is started will spawn an |
| 37 | + arp-spoofing notification thread that will run through the list of |
| 38 | + recipients. |
| 39 | + * Allow for "no threading" via --with-threads=no configure option. |
| 40 | + * Notifications can be throttled so that notifications to larger networks will |
| 41 | + not cause ARP storms. Notification lists are processed in a piecemeal |
| 42 | + fashion such that large throttled notifications will not starve other |
| 43 | + notifications. |
| 44 | + * A unix domain control socket was added and a simple control procotol was |
| 45 | + defined for out-of-band daemon control. |
| 46 | + * A standalone control program was stubbed (wackatrl) that can instruct |
| 47 | + the running wackamole instance to drop VIPs and disconnect from Spread. |
| 48 | + This isn't the ideal method of releasing responsibility, but it is a |
| 49 | + proof-of-concept. |
| 50 | + * Made reconnections to spread more robust and configurable. |
| 51 | + * Awful, awful, awful hack to fetch IPs from the system ARP cache on Solaris. |
| 52 | + * The failure and success causes perpetual reconnect attempts. These attempts |
| 53 | + have been moved from their old blocking loop into the main loop. |
| 54 | + * Arp Spoofing is now done using the Spread event system |
| 55 | + * Now links correctly with Spread 3.17 (lib[t]spread.a) or |
| 56 | + older versions (lib[t]sp.a) |
| 57 | + |
| 58 | +July 28th, 2004 (07.28.2004) -- wackamole -- 2.1.0 |
| 59 | +=========================================== |
| 60 | + * Allow for both non-threaded and threaded code. Proper ifdefs. |
| 61 | + * non-threaded by default, there are problems with the threads. |
| 62 | + * RunDynamic directives to call loadable modules and embedder perl. |
| 63 | + * Fixed rampant endian problems. |
| 64 | + * Fixed CIDR form ranged arp notifications. |
| 65 | + * Shared arp cache is now IP and MAC -- includes fixes to buffer overruns |
| 66 | + triggered during collecting local ARP info on Solaris. |
| 67 | + * When arp-spoofing to IPs in the shared arp cache, both broadcast and |
| 68 | + directed ARP responses are done. |
| 69 | + * Hack for Linux to post process the VIF table after a balance that performs |
| 70 | + an if_down to make sure no other interfaces were casualties of that |
| 71 | + operation. |
| 72 | + * Added ping support so in addition to ARP spoofing, ICMP packets can be |
| 73 | + sent. |
| 74 | + |
| 75 | +July 28th, 2004 (08.31.2004) -- wackamole -- 2.1.1 |
| 76 | +=========================================== |
| 77 | + * No code changes. Messed up distribution roll. Fixed here. |
| 78 | + |
| 79 | +September 9th, 2004 (09.07.2004) -- wackamole -- 2.1.2 |
| 80 | +=========================================== |
| 81 | + * Fixed Linux ping construction (compile error) |
| 82 | + * Fixed double close in wackatrl |
| 83 | + * Fixed argument parsing |
| 84 | + |
| 85 | +February 6th, 2007 (02.06.2007) -- wackamole -- 2.1.3 |
| 86 | +=========================================== |
| 87 | + * Win32 support |
| 88 | + * patch for perl up and down invocations from Glenn Nielsen < glenn at mail |
| 89 | + dot more dot net > |
| 90 | + * patch from < pete at more dot net > and < anderson at more dot net > |
| 91 | + regarding uninitialized stack variable usable. Fixes occasional |
| 92 | + interface operations on FreeBSD. |
| 93 | + * wrong string length of static strings, off-by-one. from Glenn Nielsen |
| 94 | + < glenn at maildot more dot net > |
| 95 | + * fork/setsid/fork now exits with 0 as it should |
| 96 | + * memcpy argument fix in Solaris DLIP ife driver |
| 97 | + * fixed Makefile to add LDFLAGS and LIBS for the arptest tool |
| 98 | + |
| 99 | +December 28th, 2007 (12.28.2007) -- wackamole -- 2.1.4 |
| 100 | +=========================================== |
| 101 | + * Fix interfaces with numbers in them on Solaris (e1000g0) |
| 102 | + * Get config.w32.h into the distribution (thanks Wez) |
| 103 | + |
| 104 | + -- wackamole -- devel |
| 105 | +=========================================== |
| 106 | + * Warning and compile fixes on FreeBSD from Marcin Cieslak < saper at |
| 107 | + saper dot info > |
| 108 | + * Corrected 1.11 fix regarding interface instance numbers on Solaris from |
| 109 | + < todd at messagesystems dot com > |
0 commit comments