Merge remote-tracking branch 'ovs-dev/master'
[sliver-openvswitch.git] / NEWS
1 post-v1.12.0
2 ---------------------
3
4
5 v1.12.0 - xx xxx xxxx
6 ---------------------
7     - OpenFlow:
8       * Experimental support for OpenFlow 1.1 (in addition to 1.2 and
9         1.3, which had experimental support in 1.10).
10       * New support for matching outer source and destination IP address
11         of tunneled packets, for tunnel ports configured with the newly
12         added "remote_ip=flow" and "local_ip=flow" options.
13     - The Interface table in the database has a new "ifindex" column to
14       report the interface's OS-assigned ifindex.
15     - New "check-oftest" Makefile target for running OFTest against Open
16       vSwitch.  See README-OFTest for details.
17     - The flow eviction threshold has been moved to the Open_vSwitch table.
18     - Database names are now mandatory when specifying ovsdb-server options
19       through database paths (e.g. Private key option with the database name
20       should look like "--private-key=db:Open_vSwitch,SSL,private_key").
21     - Added ovs-dev.py, a utility script helpful for Open vSwitch developers.
22
23
24 v1.11.0 - xx xxx xxxx
25 ---------------------
26     - Support for megaflows, which allows wildcarding in the kernel (and
27       any dpif implementation that supports wildcards).  Depending on
28       the flow table and switch configuration, flow set up rates are
29       close to the Linux bridge.
30     - The "tutorial" directory contains a new tutorial for some advanced
31       Open vSwitch features.
32     - Stable bond mode has been removed.
33     - The autopath action has been removed.
34     - New support for the data encapsulation format of the LISP tunnel
35       protocol (RFC 6830).  An external control plane or manual flow
36       setup is required for EID-to-RLOC mapping.
37     - OpenFlow:
38       * The "dec_mpls_ttl" and "set_mpls_ttl" actions from OpenFlow
39         1.1 and later are now implemented.
40       * New "stack" extension for use in actions, to push and pop from
41         NXM fields.
42       * The "load" and "set_field" actions can now modify the "in_port".  (This
43         allows one to enable output to a flow's input port by setting the
44         in_port to some unused value, such as OFPP_NONE.)
45     - ovs-dpctl:
46       * New debugging commands "add-flow", "mod-flow", "del-flow".
47     - In dpif-based bridges, cache action translations, which can improve
48       flow set up performance by 80% with a complicated flow table.
49     - New syslog format, prefixed with "ovs|", to be easier to filter.
50     - RHEL: Removes the default firewall rule that allowed GRE traffic to
51       pass through. Any users that relied on this automatic firewall hole
52       will have to manually configure it. The ovs-ctl(8) manpage documents
53       the "enable-protocol" command that can be used as an alternative.
54     - New CFM demand mode which uses data traffic to indicate interface
55       liveness.
56
57 v1.10.0 - 01 May 2013
58 ---------------------
59     - Bridge compatibility support has been removed.  Any uses that
60       rely on ovs-brcompatd will have to stick with Open vSwitch 1.9.x
61       or adapt to native Open vSwitch support (e.g. use ovs-vsctl instead
62       of brctl).
63     - The maximum size of the MAC learning table is now configurable.
64     - With the Linux datapath, packets for new flows are now queued
65       separately on a per-port basis, so it should no longer be
66       possible for a large number of new flows arriving on one port to
67       prevent new flows from being processed on other ports.
68     - ovs-vsctl:
69       * Previously ovs-vsctl would retry connecting to the database forever,
70         causing it to hang if ovsdb-server was not running.  Now, ovs-vsctl
71         only tries once by default (use --retry to try forever).  This change
72         means that you may want to remove uses of --timeout to avoid hangs
73         in ovs-vsctl calls.
74       * Many "ovs-vsctl" database commands now accept an --if-exists option.
75         Please refer to the ovs-vsctl manpage for details.
76     - OpenFlow:
77       - Experimental support for newer versions of OpenFlow.  See
78         the "What versions of OpenFlow does Open vSwitch support?"
79         question in the FAQ for more details.
80       - The OpenFlow "dp_desc" may now be configured by setting the
81         value of other-config:dp-desc in the Bridge table.
82       - It is possible to request the OpenFlow port number with the
83         "ofport_request" column in the Interface table.
84       - The NXM flow_removed message now reports the OpenFlow table ID
85         from which the flow was removed.
86     - Tunneling:
87       - New support for the VXLAN tunnel protocol (see the IETF draft here:
88         http://tools.ietf.org/html/draft-mahalingam-dutt-dcops-vxlan-03).
89       - Tunneling requires the version of the kernel module paired with
90         Open vSwitch 1.9.0 or later.
91       - Inheritance of the Don't Fragment bit in IP tunnels (df_inherit)
92         is no longer supported.
93       - Path MTU discovery is no longer supported.
94       - CAPWAP tunneling support removed.
95       - Tunnels with multicast destination ports are no longer supported.
96     - ovs-dpctl:
97       - The "dump-flows" and "del-flows" no longer require an argument
98         if only one datapath exists.
99     - ovs-appctl:
100       - New "vlog/disable-rate-limit" and "vlog/enable-rate-limit"
101         commands available allow control over logging rate limits.
102       - New "dpif/dump-dps", "dpif/show", and "dpif/dump-flows" command
103         that mimic the equivalent ovs-dpctl commands.
104     - The ofproto library is now responsible for assigning OpenFlow port
105       numbers.  An ofproto implementation should assign them when
106       port_construct() is called.
107     - All dpif-based bridges of a particular type share a common
108       datapath called "ovs-<type>", e.g. "ovs-system".  The ovs-dpctl
109       commands will now return information on that shared datapath.  To
110       get the equivalent bridge-specific information, use the new
111       "ovs-appctl dpif/*" commands.
112     - Backward-incompatible changes:
113       - Earlier Open vSwitch versions treated ANY as a wildcard in flow
114         syntax.  OpenFlow 1.1 adds a port named ANY, which introduces a
115         conflict.  ANY was rarely used in flow syntax, so we chose to
116         retire that meaning of ANY in favor of the OpenFlow 1.1 meaning.
117     - Patch ports no longer require kernel support, so they now work
118       with FreeBSD and the kernel module built into Linux 3.3 and later.
119     - New "sample" action.
120
121
122 v1.9.0 - 26 Feb 2013
123 ------------------------
124     - Datapath:
125       - Support for ipv6 set action.
126       - SKB mark matching and setting.
127       - support for Linux kernels up to 3.8
128     - FreeBSD is now a supported platform, thanks to code contributions from
129       Gaetano Catalli, Ed Maste, and Giuseppe Lettieri.
130     - ovs-bugtool: New --ovs option to report only OVS related information.
131     - New %t and %T log escapes to identify the subprogram within a
132       cooperating group of processes or threads that emitted a log message.
133       The default log patterns now include this information.
134     - OpenFlow:
135       - Allow bitwise masking for SHA and THA fields in ARP, SLL and TLL
136         fields in IPv6 neighbor discovery messages, and IPv6 flow label.
137       - Adds support for writing to the metadata field for a flow.
138     - Tunneling:
139       - The tunneling code no longer assumes input and output keys are
140         symmetric.  If they are not, PMTUD needs to be disabled for
141         tunneling to work. Note this only applies to flow-based keys.
142       - New support for a nonstandard form of GRE that supports a 64-bit key.
143       - Tunnel Path MTU Discovery default value was set to 'disabled'.
144         This feature is deprecated and will be removed soon.
145       - Tunnel header caching removed.
146     - ovs-ofctl:
147       - Commands and actions that accept port numbers now also accept keywords
148         that represent those ports (such as LOCAL, NONE, and ALL).  This is
149         also the recommended way to specify these ports, for compatibility
150         with OpenFlow 1.1 and later (which use the OpenFlow 1.0 numbers
151         for these ports for different purposes).
152     - ovs-dpctl:
153       - Support requesting the port number with the "port_no" option in
154         the "add-if" command.
155     - ovs-pki: The "online PKI" features have been removed, along with
156       the ovs-pki-cgi program that facilitated it, because of some
157       alarmist insecurity claims.  We do not believe that these claims
158       are true, but because we do not know of any users for this
159       feature it seems better on balance to remove it.  (The ovs-pki-cgi
160       program was not included in distribution packaging.)
161     - ovsdb-server now enforces the immutability of immutable columns.  This
162       was not enforced in earlier versions due to an oversight.
163     - The following features are now deprecated.  They will be removed no
164       earlier than February 2013.  Please email dev@openvswitch.org with
165       concerns.
166         - Bridge compatibility.
167         - Stable bond mode.
168         - The autopath action.
169         - Interface type "null".
170         - Numeric values for reserved ports (see "ovs-ofctl" note above).
171         - Tunnel Path MTU Discovery.
172         - CAPWAP tunnel support.
173     - The data in the RARP packets can now be matched in the same way as the
174       data in ARP packets.
175
176
177 v1.8.0 - 26 Feb 2013
178 ------------------------
179     *** Internal only release ***
180     - New FAQ.  Please send updates and additions!
181     - Authors of controllers, please read the new section titled "Action
182       Reproduction" in DESIGN, which describes an Open vSwitch change in
183       behavior in corner cases that may affect some controllers.
184     - ovs-l3ping:
185         - A new test utility that can create L3 tunnel between two Open
186           vSwitches and detect connectivity issues.
187     - ovs-ofctl:
188         - New --sort and --rsort options for "dump-flows" command.
189         - "mod-port" command can now control all OpenFlow config flags.
190     - OpenFlow:
191       - Allow general bitwise masking for IPv4 and IPv6 addresses in
192         IPv4, IPv6, and ARP packets.  (Previously, only CIDR masks
193         were allowed.)
194       - Allow support for arbitrary Ethernet masks.  (Previously, only
195         the multicast bit in the destination address could be individually
196         masked.)
197       - New field OXM_OF_METADATA, to align with OpenFlow 1.1.
198       - The OFPST_QUEUE request now reports an error if a specified port or
199         queue does not exist, or for requests for a specific queue on all
200         ports, if the specified queue does not exist on any port.  (Previous
201         versions generally reported an empty set of results.)
202       - New "flow monitor" feature to allow controllers to be notified of
203         flow table changes as they happen.
204     - Additional protocols are not mirrored and dropped when forward-bpdu is
205       false.  For a full list, see the ovs-vswitchd.conf.db man page.
206     - Open vSwitch now sends RARP packets in situations where it previously
207       sent a custom protocol, making it consistent with behavior of QEMU and
208       VMware.
209     - All Open vSwitch programs and log files now show timestamps in UTC,
210       instead the local timezone, by default.
211
212
213 v1.7.0 - 30 Jul 2012
214 ------------------------
215     - kernel modules are renamed. openvswitch_mod.ko is now
216       openvswitch.ko and brcompat_mod.ko is now brcompat.ko.
217     - Increased the number of NXM registers to 8.
218     - Added ability to configure DSCP setting for manager and controller
219       connections.  By default, these connections have a DSCP value of
220       Internetwork Control (0xc0).
221     - Added the granular link health statistics, 'cfm_health', to an
222       interface.
223     - OpenFlow:
224         - Added support to mask nd_target for ICMPv6 neighbor discovery flows.
225         - Added support for OpenFlow 1.3 port description (OFPMP_PORT_DESC)
226           multipart messages.
227     - ovs-ofctl:
228         - Added the "dump-ports-desc" command to retrieve port
229           information using the new port description multipart messages.
230     - ovs-test:
231         - Added support for spawning ovs-test server from the client.
232         - Now ovs-test is able to automatically create test bridges and ports.
233     - "ovs-dpctl dump-flows" now prints observed TCP flags in TCP flows.
234     - Tripled flow setup performance.
235     - The "coverage/log" command previously available through ovs-appctl
236       has been replaced by "coverage/show".  The new command replies with
237       coverage counter values, instead of logging them.
238
239
240 v1.6.1 - 25 Jun 2012
241 ------------------------
242     - Allow OFPP_CONTROLLER as the in_port for packet-out messages.
243
244
245 v1.6.0 - 24 Feb 2012
246 ------------------------
247     *** Internal only release ***
248     - bonding
249         - LACP bonds no longer fall back to balance-slb when negotiations fail.
250           Instead they drop traffic.
251         - The default bond_mode changed from SLB to active-backup, to protect
252           unsuspecting users from the significant risks of SLB bonds (which are
253           documented in vswitchd/INTERNALS).
254         - Load balancing can be disabled by setting the bond-rebalance-interval
255           to zero.
256     - OpenFlow:
257         - Added support for bitwise matching on TCP and UDP ports.
258           See ovs-ofctl(8) for more information.
259         - NXM flow dumps now include times elapsed toward idle and hard
260           timeouts.
261         - Added an OpenFlow extension NXT_SET_ASYNC_CONFIG that allows
262           controllers more precise control over which OpenFlow messages they
263           receive asynchronously.
264         - New "fin_timeout" action.
265         - Added "fin_timeout" support to "learn" action.
266         - New Nicira action NXAST_CONTROLLER that offers additional features
267           over output to OFPP_CONTROLLER.
268     - When QoS settings for an interface do not configure a default queue
269       (queue 0), Open vSwitch now uses a default configuration for that
270       queue, instead of dropping all packets as in previous versions.
271     - Logging:
272         - Logging to console and file will have UTC timestamp as a default for
273           all the daemons. An example of the default format is
274           2012-01-27T16:35:17Z.  ovs-appctl can be used to change the default
275           format as before.
276         - The syntax of commands and options to set log levels was simplified,
277           to make it easier to remember.
278     - New support for limiting the number of flows in an OpenFlow flow
279       table, with configurable policy for evicting flows upon
280       overflow.  See the Flow_Table table in ovs-vswitch.conf.db(5)
281       for more information.
282     - New "enable-async-messages" column in the Controller table.  If set to
283       false, OpenFlow connections to the controller will initially have all
284       asynchronous messages disabled, overriding normal OpenFlow behavior.
285     - ofproto-provider interface:
286         - "struct rule" has a new member "used" that ofproto implementations
287           should maintain by updating with ofproto_rule_update_used().
288     - ovsdb-client:
289         - The new option --timestamp causes the "monitor" command to print
290           a timestamp with every update.
291     - CFM module CCM broadcasts can now be tagged with an 802.1p priority.
292
293
294 v1.5.0 - 01 Jun 2012
295 ------------------------
296     - OpenFlow:
297         - Added support for querying, modifying, and deleting flows
298           based on flow cookie when using NXM.
299         - Added new NXM_PACKET_IN format.
300         - Added new NXAST_DEC_TTL action.
301     - ovs-ofctl:
302         - Added daemonization support to the monitor and snoop commands.
303     - ovs-vsctl:
304         - The "find" command supports new set relational operators
305           {=}, {!=}, {<}, {>}, {<=}, and {>=}.
306     - ovsdb-tool now uses the typical database and schema installation
307       directories as defaults.
308     - The default MAC learning timeout has been increased from 60 seconds
309       to 300 seconds.  The MAC learning timeout is now configurable.
310
311
312 v1.4.0 - 30 Jan 2012
313 ------------------------
314     - Compatible with Open vSwitch kernel module included in Linux 3.3.
315     - New "VLAN splinters" feature to work around buggy device drivers
316       in old Linux versions.  (This feature is deprecated.  When
317       broken device drivers are no longer in widespread use, we will
318       delete this feature.)  See ovs-vswitchd.conf.db(5) for more
319       information.
320     - OpenFlow:
321        - Added ability to match on IPv6 flow label through NXM.
322        - Added ability to match on ECN bits in IPv4 and IPv6 through NXM.
323        - Added ability to match on TTL in IPv4 and IPv6 through NXM.
324        - Added ability to modify ECN bits in IPv4.
325        - Added ability to modify TTL in IPv4.
326     - ovs-vswitchd:
327        - Don't require the "normal" action to use mirrors.  Traffic will
328          now be properly mirrored for any flows, regardless of their
329          actions.
330        - Track packet and byte statistics sent on mirrors.
331        - The sFlow implementation can now usually infer the correct agent
332          device instead of having to be told explicitly.
333     - ovs-appctl:
334       - New "fdb/flush" command to flush bridge's MAC learning table.
335     - ovs-test:
336       - A new distributed testing tool that allows one to diagnose performance
337         and connectivity issues. This tool currently is not included in RH or
338         Xen packages.
339     - RHEL packaging now supports integration with Red Hat network scripts.
340     - bonding:
341       - Post 1.4.*, OVS will be changing the default bond mode from balance-slb
342         to active-backup.  SLB bonds carry significant risks with them
343         (documented vswitchd/INTERNALS) which we want to prevent unsuspecting
344         users from running into.  Users are advised to update any scripts or
345         configuration which may be negatively impacted by explicitly setting
346         the bond mode which they want to use.
347
348
349 v1.3.0 - 09 Dec 2011
350 ------------------------
351     - OpenFlow:
352       - Added an OpenFlow extension which allows the "output" action to accept
353         NXM fields.
354       - Added an OpenFlow extension for flexible learning.
355       - Bumped number of NXM registers from four to five.
356     - ovs-appctl:
357       - New "version" command to determine version of running daemon.
358       - If no argument is provided for "cfm/show", displays detailed
359         information about all interfaces with CFM enabled.
360       - If no argument is provided for "lacp/show", displays detailed
361         information about all ports with LACP enabled.
362     - ovs-dpctl:
363       - New "set-if" command to modify a datapath port's configuration.
364     - ovs-vswitchd:
365       - The software switch now supports 255 OpenFlow tables, instead
366         of just one.  By default, only table 0 is consulted, but the
367         new NXAST_RESUBMIT_TABLE action can look up in additional
368         tables.  Tables 128 and above are reserved for use by the
369         switch itself; please use only tables 0 through 127.
370       - Add support for 802.1D spanning tree (STP).
371     - Fragment handling extensions:
372       - New OFPC_FRAG_NX_MATCH fragment handling mode, in which L4
373         fields are made available for matching in fragments with
374         offset 0.
375       - New NXM_NX_IP_FRAG match field for matching IP fragments (usable
376         via "ip_frag" in ovs-ofctl).
377       - New ovs-ofctl "get-frags" and "set-frags" commands to get and set
378         fragment handling policy.
379     - CAPWAP tunneling now supports an extension to transport a 64-bit key.
380       By default it remains compatible with the old version and other
381       standards-based implementations.
382     - Flow setups are now processed in a round-robin manner across ports
383       to prevent any single client from monopolizing the CPU and conducting
384       a denial of service attack.
385     - Added support for native VLAN tagging.  A new "vlan_mode"
386       parameter can be set for "port". Possible values: "access",
387       "trunk", "native-tagged" and "native-untagged".
388     - test-openflowd has been removed.  Please use ovs-vswitchd instead.
389
390 v1.2.0 - 03 Aug 2011
391 ------------------------
392     - New "ofproto" abstraction layer to ease porting to hardware
393       switching ASICs.
394     - Packaging for Red Hat Enterprise Linux 5.6 and 6.0.
395     - Datapath support for Linux kernels up to 3.0.
396     - OpenFlow:
397       - New "bundle" and "bundle_load" action extensions.
398     - Database:
399       - Implement table unique constraints.
400       - Support cooperative locking between callers.
401     - ovs-dpctl:
402       - New "-s" option for "show" command prints packet and byte
403         counters for each port.
404     - ovs-ofctl:
405       - New "--readd" option for "replace-flows".
406     - ovs-vsctl:
407       - New "show" command to print an overview of configuration.
408       - New "comment" command to add remark that explains intentions.
409     - ovs-brcompatd has been rewritten to fix long-standing bugs.
410     - ovs-openflowd has been renamed test-openflowd and moved into the
411       tests directory.  Its presence confused too many users.  Please
412       use ovs-vswitchd instead.
413     - New ovs-benchmark utility to test flow setup performance.
414     - A new log level "off" has been added.  Configuring a log facility
415       "off" prevents any messages from being logged to it.  Previously,
416       "emer" was effectively "off" because no messages were ever logged at
417       level "emer".  Now, errors that cause a process to exit are logged
418       at "emer" level.
419     - "configure" option --with-l26 has been renamed --with-linux, and
420       --with-l26-source has been renamed --with-linux-source.  The old
421       names will be removed after the next release, so please update
422       your scripts.
423     - The "-2.6" suffix has been dropped from the datapath/linux-2.6 and
424       datapath/linux-2.6/compat-2.6 directories.
425     - Feature removals:
426       - Dropped support for "tun_id_from_cookie" OpenFlow extension.
427            Please use the extensible match extensions instead.
428       - Removed the Maintenance_Point and Monitor tables in an effort
429         to simplify 802.1ag configuration.
430     - Performance and scalability improvements
431     - Bug fixes
432
433 v1.1.0 - 05 Apr 2011
434 ------------------------
435     - Ability to define policies over IPv6
436     - LACP
437     - 802.1ag CCM
438     - Support for extensible match extensions to OpenFlow
439     - QoS:
440       - Support for HFSC qdisc.
441       - Queue used by in-band control can now be configured.
442     - Kernel:
443       - Kernel<->userspace interface has been reworked and should be
444         close to a stable ABI now.
445       - "Port group" concept has been dropped.
446     - GRE over IPSEC tunnels
447     - Bonding:
448       - New active backup bonding mode.
449       - New L4 hashing support when LACP is enabled.
450       - Source MAC hash now includes VLAN field also.
451       - miimon support.
452     - Greatly improved handling of large flow tables
453     - ovs-dpctl:
454       - "show" command now prints full vport configuration.
455       - "dump-groups" command removed since kernel support for
456         port groups was dropped.
457     - ovs-vsctl:
458       - New commands for working with the new Managers table.
459       - "list" command enhanced with new formatting options and --columns
460         option.
461       - "get" command now accepts new --id option.
462       - New "find" command.
463     - ovs-ofctl:
464       - New "queue-stats" command for printing queue stats.
465       - New commands "replace-flows" and "diff-flows".
466       - Commands to add and remove flows can now read from files.
467       - New --flow-format option to enable or disable NXM.
468       - New --more option to increase OpenFlow message verbosity.
469       - Removed "tun-cookie" command, which is no longer useful.
470     - ovs-controller enhancements for testing various features.
471     - New ovs-vlan-test command for testing for Linux kernel driver VLAN
472       bugs.  New ovs-vlan-bug-workaround command for enabling and
473       disabling a workaround for these driver bugs.
474     - OpenFlow support:
475       - "Resubmit" actions now update flow statistics.
476       - New "register" extension for use in matching and actions, via NXM.
477       - New "multipath" experimental action extension.
478       - New support for matching multicast Ethernet frames, via NXM.
479       - New extension for OpenFlow vendor error codes.
480       - New extension to set the QoS output queue without actually
481         sending to an output port.
482       - Open vSwitch now reports a single flow table, instead of
483         separate hash and wildcard tables.  This better models the
484         current implementation.
485       - New experimental "note" action.
486       - New "ofproto/trace" ovs-appctl command and associated utilities
487         to ease debugging complex flow tables.
488     - Database:
489       - Schema documentation now includes an entity-relationship diagram.
490       - The database is now garbage collected.  In most tables,
491         unreferenced rows will be deleted automatically.
492       - Many tables now include statistics updated periodically by
493         ovs-vswitchd or ovsdb-server.
494       - Every table now has an "external-ids" column for use by OVS
495         integrators.
496       - There is no default controller anymore.  Each bridge must have its
497         controller individually specified.
498       - The "fail-mode" is now a property of a Bridge instead of a Controller.
499       - New versioning and checksum features.
500       - New Managers table and manager_options column in Open_vSwitch table
501         for specifying managers.  The old "managers" column in the
502         Open_vSwitch table has been removed.
503       - Many "name" columns are now immutable.
504     - Feature removals:
505       - Dropped support for XenServer pre-5.6.100.
506       - Dropped support for Linux pre-2.6.18.
507       - Dropped controller discovery support.
508       - Dropped "ovs-ofctl status" and the OpenFlow extension that it used.
509         Statistics reporting in the database is a rough equivalent.
510       - Dropped the "corekeeper" package (now separate, at
511         http://openvswitch.org/cgi-bin/gitweb.cgi?p=corekeeper).
512     - Performance and scalability improvements
513     - Bug fixes
514
515 v1.1.0pre2 - 13 Sep 2010
516 ------------------------
517     - Bug fixes
518
519 v1.1.0pre1 - 31 Aug 2010
520 ------------------------
521     - OpenFlow 1.0 slicing (QoS) functionality
522     - Python bindings for configuration database (no write support)
523     - Performance and scalability improvements
524     - Bug fixes
525
526 v1.0.1 - 31 May 2010
527 --------------------
528     - New "patch" interface type
529     - Bug fixes
530
531 v1.0.0 - 15 May 2010
532 --------------------
533     - Configuration database with remote management
534     - OpenFlow 1.0
535     - GRE tunneling
536     - Support for XenServer 5.5 and 5.6
537     - Performance and scalability improvements
538     - Bug fixes
539
540 v0.99.2 - 18 Feb 2010
541 ---------------------
542     - Bug fixes
543
544 v0.99.1 - 25 Jan 2010
545 ---------------------
546     - Add support for sFlow(R)
547     - Make headers compatible with C++
548     - Bug fixes
549
550 v0.99.0 - 14 Jan 2010
551 ---------------------
552     - User-space forwarding engine
553     - Bug fixes
554
555 v0.90.7 - 29 Nov 2009
556 ---------------------
557     - Add support for NetFlow active timeouts
558     - Bug fixes
559
560 v0.90.6 - 6 Oct 2009
561 --------------------
562     - Bug fixes
563
564 v0.90.5 - 21 Sep 2009
565 ---------------------
566     - Generalize in-band control to more diverse network setups
567     - Bug fixes