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