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