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