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