]> git.proxmox.com Git - ovs.git/blob - NEWS
db-ctl-base: Allow record UUIDs to be abbreviated.
[ovs.git] / NEWS
1 Post-v2.7.0
2 ---------------------
3 - Tunnels:
4 * Added support to set packet mark for tunnel endpoint using
5 `egress_pkt_mark` OVSDB option.
6 - EMC insertion probability is reduced to 1% and is configurable via
7 the new 'other_config:emc-insert-inv-prob' option.
8 - DPDK:
9 * DPDK log messages redirected to OVS logging subsystem.
10 Log level can be changed in a usual OVS way using
11 'ovs-appctl vlog' commands for 'dpdk' module. Lower bound
12 still can be configured via extra arguments for DPDK EAL.
13 - New support for multiple VLANs (802.1ad or "QinQ"), including a new
14 "dot1q-tunnel" port VLAN mode.
15 - In ovn-vsctl and vtep-ctl, record UUIDs in commands may now be
16 abbreviated to 4 hex digits.
17 - OVN:
18 * IPAM for IPv4 can now exclude user-defined addresses from assignment.
19 * IPAM can now assign IPv6 addresses.
20 * Make the DHCPv4 router setting optional.
21 * Gratuitous ARP for NAT addresses on a distributed logical router.
22 * Allow ovn-controller SSL configuration to be obtained from vswitchd
23 database.
24 * ovn-trace now has basic support for tracing distributed firewalls.
25 * In ovn-nbctl and ovn-sbctl, record UUIDs in commands may now be
26 abbreviated to 4 hex digits.
27 - Add the command 'ovs-appctl stp/show' (see ovs-vswitchd(8)).
28 - OpenFlow:
29 * Increased support for OpenFlow 1.6 (draft).
30 * Bundles now support hashing by just nw_src or nw_dst.
31 * The "learn" action now supports a "limit" option (see ovs-ofctl(8)).
32 * The port status bit OFPPS_LIVE now reflects link aliveness.
33
34 v2.7.0 - 21 Feb 2017
35 ---------------------
36 - Utilities and daemons that support SSL now allow protocols and
37 ciphers to be configured with --ssl-protocols and --ssl-ciphers.
38 - OVN:
39 * QoS is now implemented via egress shaping rather than ingress policing.
40 * DSCP marking is now supported, via the new northbound QoS table.
41 * IPAM now supports fixed MAC addresses.
42 * Support for source IP address based routing.
43 * ovn-trace:
44 - New --ovs option to also print OpenFlow flows.
45 - put_dhcp_opts and put_dhcp_optsv6 actions may now be traced.
46 * Support for managing SSL and remote connection configuration in
47 northbound and southbound databases.
48 * TCP connections to northbound and southbound databases are no
49 longer enabled by default and must be explicitly configured.
50 See documentation for ovn-sbctl/ovn-nbctl "set-connection"
51 command or the ovn-ctl "--db-sb-create-insecure-remote" and
52 "--db-nb-create-insecure-remote" command-line options for
53 information regarding remote connection configuration.
54 * New appctl "inject-pkt" command in ovn-controller that allows
55 packets to be injected into the connected OVS instance.
56 * Distributed logical routers may now be connected directly to
57 logical switches with localnet ports, by specifying a
58 "redirect-chassis" on the distributed gateway port of the
59 logical router. NAT rules may be specified directly on the
60 distributed logical router, and are handled either centrally on
61 the "redirect-chassis", or in many cases are handled locally on
62 the hypervisor where the corresponding logical port resides.
63 Gratuitous ARP for NAT addresses on a distributed logical
64 router is not yet supported, but will be added in a future
65 version.
66 - Fixed regression in table stats maintenance introduced in OVS
67 2.3.0, wherein the number of OpenFlow table hits and misses was
68 not accurate.
69 - OpenFlow:
70 * OFPT_PACKET_OUT messages are now supported in bundles.
71 * A new "selection_method=dp_hash" type for OpenFlow select group
72 bucket selection that uses the datapath computed 5-tuple hash
73 without making datapath flows match the 5-tuple fields, which
74 is useful for more efficient load balancing, for example. This
75 uses the Netronome extension to OpenFlow 1.5+ that allows
76 control over the OpenFlow select groups selection method. See
77 "selection_method" and related options in ovs-ofctl(8) for
78 details.
79 * The "sample" action now supports "ingress" and "egress" options.
80 * The "ct" action now supports the TFTP ALG where support is available.
81 * New actions "clone" and "ct_clear".
82 - ovs-ofctl:
83 * 'bundle' command now supports packet-out messages.
84 * New syntax for 'ovs-ofctl packet-out' command, which uses the
85 same string parser as the 'bundle' command. The old 'packet-out'
86 syntax is deprecated and will be removed in a later OVS
87 release.
88 * New unixctl "ofctl/packet-out" command, which can be used to
89 instruct a flow monitor to issue OpenFlow packet-out messages.
90 - ovsdb-server:
91 * Remote connections can now be made read-only (see ovsdb-server(1)).
92 - Tunnels:
93 * TLV mappings for protocols such as Geneve are now segregated on
94 a per-OpenFlow bridge basis rather than globally. (The interface
95 has not changed.)
96 * Removed support for IPsec tunnels.
97 - DPDK:
98 * New option 'n_rxq_desc' and 'n_txq_desc' fields for DPDK interfaces
99 which set the number of rx and tx descriptors to use for the given port.
100 * Support for DPDK v16.11.
101 * Support for rx checksum offload. Refer DPDK HOWTO for details.
102 * Port Hotplug is now supported.
103 * DPDK physical ports can now have arbitrary names. The PCI address of
104 the device must be set using the 'dpdk-devargs' option. Compatibility
105 with the old dpdk<portid> naming scheme is broken, and as such a
106 device will not be available for use until a valid dpdk-devargs is
107 specified.
108 * Virtual DPDK Poll Mode Driver (vdev PMD) support.
109 * Removed experimental tag.
110 - Fedora packaging:
111 * A package upgrade does not automatically restart OVS service.
112 - ovs-vswitchd/ovs-vsctl:
113 * Ports now have a "protected" flag. Protected ports can not forward
114 frames to other protected ports. Unprotected ports can receive and
115 forward frames to protected and other unprotected ports.
116 - ovs-vsctl, ovn-nbctl, ovn-sbctl, vtep-ctl:
117 * Database commands now accept integer ranges, e.g. "set port
118 eth0 trunks=1-10" to enable trunking VLANs 1 to 10.
119
120 v2.6.0 - 27 Sep 2016
121 ---------------------
122 - First supported release of OVN. See ovn-architecture(7) for more
123 details.
124 - ovsdb-server:
125 * New "monitor_cond" "monitor_cond_update" and "update2" extensions to
126 RFC 7047.
127 - OpenFlow:
128 * OpenFlow 1.3+ bundles now expire after 10 seconds since the
129 last time the bundle was either opened, modified, or closed.
130 * OpenFlow 1.3 Extension 230, adding OpenFlow Bundles support, is
131 now implemented.
132 * OpenFlow 1.3+ bundles are now supported for group mods as well as
133 flow mods and port mods. Both 'atomic' and 'ordered' bundle
134 flags are supported for group mods as well as flow mods.
135 * Internal OpenFlow rule representation for load and set-field
136 actions is now much more memory efficient. For a complex flow
137 table this can reduce rule memory consumption by 40%.
138 * Bundles are now much more memory efficient than in OVS 2.5.
139 Together with memory efficiency improvements in OpenFlow rule
140 representation, the peak OVS resident memory use during a
141 bundle commit for large complex set of flow mods can be only
142 25% of that in OVS 2.5 (4x lower).
143 * OpenFlow 1.1+ OFPT_QUEUE_GET_CONFIG_REQUEST now supports OFPP_ANY.
144 * OpenFlow 1.4+ OFPMP_QUEUE_DESC is now supported.
145 * OpenFlow 1.4+ OFPT_TABLE_STATUS is now supported.
146 * New property-based packet-in message format NXT_PACKET_IN2 with support
147 for arbitrary user-provided data and for serializing flow table
148 traversal into a continuation for later resumption.
149 * New extension message NXT_SET_ASYNC_CONFIG2 to allow OpenFlow 1.4-like
150 control over asynchronous messages in earlier versions of OpenFlow.
151 * New OpenFlow extension NXM_NX_MPLS_TTL to provide access to MPLS TTL.
152 * New output option, output(port=N,max_len=M), to allow truncating a
153 packet to size M bytes when outputting to port N.
154 * New command OFPGC_ADD_OR_MOD for OFPT_GROUP_MOD message that adds a
155 new group or modifies an existing groups
156 * The optional OpenFlow packet buffering feature is deprecated in
157 this release, and will be removed in the next OVS release
158 (2.7). After the change OVS always sends the 'buffer_id' as
159 0xffffffff in packet-in messages and will send an error
160 response if any other value of this field is included in
161 packet-out and flow mod sent by a controller. Controllers are
162 already expected to work properly in cases where the switch can
163 not buffer packets, so this change should not affect existing
164 users.
165 * New OpenFlow extension NXT_CT_FLUSH_ZONE to flush conntrack zones.
166 - Improved OpenFlow version compatibility for actions:
167 * New OpenFlow extension to support the "group" action in OpenFlow 1.0.
168 * OpenFlow 1.0 "enqueue" action now properly translated to OpenFlow 1.1+.
169 * OpenFlow 1.1 "mod_nw_ecn" and OpenFlow 1.1+ "mod_nw_ttl" actions now
170 properly translated to OpenFlow 1.0.
171 - ovs-ofctl:
172 * queue-get-config command now allows a queue ID to be specified.
173 * '--bundle' option can now be used with OpenFlow 1.3 and with group mods.
174 * New "bundle" command allows executing a mixture of flow and group mods
175 as a single atomic transaction.
176 * New option "--color" to produce colorized output for some commands.
177 * New option '--may-create' to use OFPGC_ADD_OR_MOD in mod-group command.
178 - IPFIX:
179 * New "sampling_port" option for "sample" action to allow sampling
180 ingress and egress tunnel metadata with IPFIX.
181 * New ovs-ofctl commands "dump-ipfix-bridge" and "dump-ipfix-flow" to
182 dump bridge IPFIX statistics and flow based IPFIX statistics.
183 * New setting other-config:virtual_obs_id to add an arbitrary string
184 to IPFIX records.
185 - Linux:
186 * OVS Linux datapath now implements Conntrack NAT action with all
187 supported Linux kernels.
188 * Support for truncate action.
189 * New QoS type "linux-noop" that prevents Open vSwitch from trying to
190 manage QoS for a given port (useful when other software manages QoS).
191 - DPDK:
192 * New option "n_rxq" for PMD interfaces.
193 Old 'other_config:n-dpdk-rxqs' is no longer supported.
194 Not supported by vHost interfaces. For them number of rx and tx queues
195 is applied from connected virtio device.
196 * New 'other_config:pmd-rxq-affinity' field for PMD interfaces, that
197 allows to pin port's rx queues to desired cores.
198 * New appctl command 'dpif-netdev/pmd-rxq-show' to check the port/rxq
199 assignment.
200 * Type of log messages from PMD threads changed from INFO to DBG.
201 * QoS functionality with sample egress-policer implementation.
202 * The mechanism for configuring DPDK has changed to use database
203 * Sensible defaults have been introduced for many of the required
204 configuration options
205 * DB entries have been added for many of the DPDK EAL command line
206 arguments. Additional arguments can be passed via the dpdk-extra
207 entry.
208 * Add ingress policing functionality.
209 * PMD threads servicing vHost User ports can now come from the NUMA
210 node that device memory is located on if CONFIG_RTE_LIBRTE_VHOST_NUMA
211 is enabled in DPDK.
212 * Basic connection tracking for the userspace datapath (no ALG,
213 fragmentation or NAT support yet)
214 * Support for DPDK 16.07
215 * Optional support for DPDK pdump enabled.
216 * Jumbo frame support
217 * Remove dpdkvhostcuse port type.
218 * OVS client mode for vHost and vHost reconnect (Requires QEMU 2.7)
219 * 'dpdkvhostuserclient' port type.
220 - Increase number of registers to 16.
221 - ovs-benchmark: This utility has been removed due to lack of use and
222 bitrot.
223 - ovs-appctl:
224 * New "vlog/close" command.
225 - ovs-ctl:
226 * Added the ability to selectively start the forwarding and database
227 functions (ovs-vswitchd and ovsdb-server, respectively).
228 - ovsdb-server:
229 * Remove max number of sessions limit, to enable connection scaling
230 testing.
231 - python:
232 * Added support for Python 3.4+ in addition to existing support
233 for 2.7+.
234 - SELinux:
235 * Introduced SELinux policy package.
236 - Datapath Linux kernel compatibility.
237 * Dropped support for kernel older than 3.10.
238 * Removed VLAN splinters feature.
239 * Datapath supports kernel upto 4.7.
240 - Tunnels:
241 * Flow based tunnel match and action can be used for IPv6 address using
242 tun_ipv6_src, tun_ipv6_dst fields.
243 * Added support for IPv6 tunnels, for details checkout FAQ.
244 * Deprecated support for IPsec tunnels ports.
245 - A wrapper script, 'ovs-tcpdump', to easily port-mirror an OVS port and
246 watch with tcpdump
247 - Introduce --no-self-confinement flag that allows daemons to work with
248 sockets outside their run directory.
249 - ovs-pki: Changed message digest algorithm from SHA-1 to SHA-512 because
250 SHA-1 is no longer secure and some operating systems have started to
251 disable it in OpenSSL.
252 - Add 'mtu_request' column to the Interface table. It can be used to
253 configure the MTU of the ports.
254
255 Known issues:
256 - Using openvswitch module in conjunction with upstream Linux tunnels:
257 * When using the openvswitch module distributed with OVS against kernel
258 versions 4.4 to 4.6, the openvswitch module cannot be loaded or used at
259 the same time as "ip_gre".
260 - Conntrack FTP ALGs: When using the openvswitch module distributed with
261 OVS, particular Linux distribution kernels versions may provide diminished
262 functionality. This typically affects active FTP data connections when
263 using "actions=ct(alg=ftp),..." in flow tables. Specifically:
264 * Centos 7.1 kernels (3.10.0-2xx) kernels are unable to correctly set
265 up expectations for FTP data connections in multiple zones,
266 eg "actions=ct(zone=1,alg=ftp),ct(zone=2,alg=ftp),...". Executing the
267 "ct" action for subsequent data connections may fail to determine that
268 the data connection is "related" to an existing connection.
269 * Centos 7.2 kernels (3.10.0-3xx) kernels may not establish FTP ALG state
270 correctly for NATed connections. As a result, flows that perform NAT,
271 eg "actions=ct(nat,ftp=alg,table=1),..." may fail to NAT the packet,
272 and will populate the "ct_state=inv" bit in the flow.
273
274
275 v2.5.0 - 26 Feb 2016
276 ---------------------
277 - Dropped support for Python older than version 2.7. As a consequence,
278 using Open vSwitch 2.5 or later on XenServer 6.5 or earlier (which
279 have Python 2.4) requires first installing Python 2.7.
280 - OpenFlow:
281 * Group chaining (where one OpenFlow group triggers another) is
282 now supported.
283 * OpenFlow 1.4+ "importance" is now considered for flow eviction.
284 * OpenFlow 1.4+ OFPTC_EVICTION is now implemented.
285 * OpenFlow 1.4+ OFPTC_VACANCY_EVENTS is now implemented.
286 * OpenFlow 1.4+ OFPMP_TABLE_DESC is now implemented.
287 * Allow modifying the ICMPv4/ICMPv6 type and code fields.
288 * OpenFlow 1.4+ OFPT_SET_ASYNC_CONFIG and OFPT_GET_ASYNC_CONFIG are
289 now implemented.
290 - ovs-ofctl:
291 * New "out_group" keyword for OpenFlow 1.1+ matching on output group.
292 - Tunnels:
293 * Geneve tunnels can now match and set options and the OAM bit.
294 * The nonstandard GRE64 tunnel extension has been dropped.
295 - Support Multicast Listener Discovery (MLDv1 and MLDv2).
296 - Add 'symmetric_l3l4' and 'symmetric_l3l4+udp' hash functions.
297 - sFlow agent now reports tunnel and MPLS structures.
298 - New 'check-system-userspace', 'check-kmod' and 'check-kernel' Makefile
299 targets to run a new system testsuite. These tests can be run inside
300 a Vagrant box. See INSTALL.md for details
301 - Mark --syslog-target argument as deprecated. It will be removed in
302 the next OVS release.
303 - Added --user option to all daemons
304 - Add support for connection tracking through the new "ct" action
305 and "ct_state"/"ct_zone"/"ct_mark"/"ct_label" match fields. Only
306 available on Linux kernels with the connection tracking module loaded.
307 - Add experimental version of OVN. OVN, the Open Virtual Network, is a
308 system to support virtual network abstraction. OVN complements the
309 existing capabilities of OVS to add native support for virtual network
310 abstractions, such as virtual L2 and L3 overlays and security groups.
311 - RHEL packaging:
312 * DPDK ports may now be created via network scripts (see README.RHEL).
313 - DPDK:
314 * Requires DPDK 2.2
315 * Added multiqueue support to vhost-user
316 * Note: QEMU 2.5+ required for multiqueue support
317
318 v2.4.0 - 20 Aug 2015
319 ---------------------
320 - Flow table modifications are now atomic, meaning that each packet
321 now sees a coherent version of the OpenFlow pipeline. For
322 example, if a controller removes all flows with a single OpenFlow
323 "flow_mod", no packet sees an intermediate version of the OpenFlow
324 pipeline where only some of the flows have been deleted.
325 - Added support for SFQ, FQ_CoDel and CoDel qdiscs.
326 - Add bash command-line completion support for ovs-vsctl Please check
327 utilities/ovs-command-compgen.INSTALL.md for how to use.
328 - The MAC learning feature now includes per-port fairness to mitigate
329 MAC flooding attacks.
330 - New support for a "conjunctive match" OpenFlow extension, which
331 allows constructing OpenFlow matches of the form "field1 in
332 {a,b,c...} AND field2 in {d,e,f...}" and generalizations. For details,
333 see documentation for the "conjunction" action in ovs-ofctl(8).
334 - Add bash command-line completion support for ovs-appctl/ovs-dpctl/
335 ovs-ofctl/ovsdb-tool commands. Please check
336 utilities/ovs-command-compgen.INSTALL.md for how to use.
337 - The "learn" action supports a new flag "delete_learned" that causes
338 the learned flows to be deleted when the flow with the "learn" action
339 is deleted.
340 - Basic support for the Geneve tunneling protocol. It is not yet
341 possible to generate or match options. This is planned for a future
342 release. The protocol is documented at
343 http://tools.ietf.org/html/draft-gross-geneve-00
344 - The OVS database now reports controller rate limiting statistics.
345 - sflow now exports information about LACP-based bonds, port names, and
346 OpenFlow port numbers, as well as datapath performance counters.
347 - ovs-dpctl functionality is now available for datapaths integrated
348 into ovs-vswitchd, via ovs-appctl. Some existing ovs-appctl
349 commands are now redundant and will be removed in a future
350 release. See ovs-vswitchd(8) for details.
351 - OpenFlow:
352 * OpenFlow 1.4 bundles are now supported for flow mods and port
353 mods. For flow mods, both 'atomic' and 'ordered' bundle flags
354 are trivially supported, as all bundled messages are executed
355 in the order they were added and all flow table modifications
356 are now atomic to the datapath. Port mods may not appear in
357 atomic bundles, as port status modifications are not atomic.
358 * IPv6 flow label and neighbor discovery fields are now modifiable.
359 * OpenFlow 1.5 extended registers are now supported.
360 * The OpenFlow 1.5 actset_output field is now supported.
361 * OpenFlow 1.5 Copy-Field action is now supported.
362 * OpenFlow 1.5 masked Set-Field action is now supported.
363 * OpenFlow 1.3+ table features requests are now supported (read-only).
364 * Nicira extension "move" actions may now be included in action sets.
365 * "resubmit" actions may now be included in action sets. The resubmit
366 is executed last, and only if the action set has no "output" or "group"
367 action.
368 * OpenFlow 1.4+ flow "importance" is now maintained in the flow table.
369 * A new Netronome extension to OpenFlow 1.5+ allows control over the
370 fields hashed for OpenFlow select groups. See "selection_method" and
371 related options in ovs-ofctl(8) for details.
372 - ovs-ofctl has a new '--bundle' option that makes the flow mod commands
373 ('add-flow', 'add-flows', 'mod-flows', 'del-flows', and 'replace-flows')
374 use an OpenFlow 1.4 bundle to operate the modifications as a single
375 atomic transaction. If any of the flow mods in a transaction fail, none
376 of them are executed. All flow mods in a bundle appear to datapath
377 lookups simultaneously.
378 - ovs-ofctl 'add-flow' and 'add-flows' commands now accept arbitrary flow
379 mods as an input by allowing the flow specification to start with an
380 explicit 'add', 'modify', 'modify_strict', 'delete', or 'delete_strict'
381 keyword. A missing keyword is treated as 'add', so this is fully
382 backwards compatible. With the new '--bundle' option all the flow mods
383 are executed as a single atomic transaction using an OpenFlow 1.4 bundle.
384 - ovs-pki: Changed message digest algorithm from MD5 to SHA-1 because
385 MD5 is no longer secure and some operating systems have started to disable
386 it in OpenSSL.
387 - ovsdb-server: New OVSDB protocol extension allows inequality tests on
388 "optional scalar" columns. See ovsdb-server(1) for details.
389 - ovs-vsctl now permits immutable columns in a new row to be modified in
390 the same transaction that creates the row.
391 - test-controller has been renamed ovs-testcontroller at request of users
392 who find it useful for testing basic OpenFlow setups. It is still not
393 a necessary or desirable part of most Open vSwitch deployments.
394 - Support for travis-ci.org based continuous integration builds has been
395 added. Build failures are reported to build@openvswitch.org. See INSTALL.md
396 file for additional details.
397 - Support for the Rapid Spanning Tree Protocol (IEEE 802.1D-2004).
398 The implementation has been tested successfully against the Ixia Automated
399 Network Validation Library (ANVL).
400 - Stats are no longer updated on fake bond interface.
401 - Keep active bond slave selection across OVS restart.
402 - A simple wrapper script, 'ovs-docker', to integrate OVS with Docker
403 containers. If and when there is a native integration of Open vSwitch
404 with Docker, the wrapper script will be retired.
405 - Added support for DPDK Tunneling. VXLAN, GRE, and Geneve are supported
406 protocols. This is generic tunneling mechanism for userspace datapath.
407 - Support for multicast snooping (IGMPv1, IGMPv2 and IGMPv3)
408 - Support for Linux kernels up to 4.0.x
409 - The documentation now use the term 'destination' to mean one of syslog,
410 console or file for vlog logging instead of the previously used term
411 'facility'.
412 - Support for VXLAN Group Policy extension
413 - Initial support for the IETF Auto-Attach SPBM draft standard. This
414 contains rudimentary support for the LLDP protocol as needed for
415 Auto-Attach.
416 - The default OpenFlow and OVSDB ports are now the IANA-assigned
417 numbers. OpenFlow is 6653 and OVSDB is 6640.
418 - Support for DPDK vHost.
419 - Support for outer UDP checksums in Geneve and VXLAN.
420 - The kernel vports with dependencies are no longer part of the overall
421 openvswitch.ko but built and loaded automatically as individual kernel
422 modules (vport-*.ko).
423 - Support for STT tunneling.
424 - ovs-sim: New developer tool for simulating multiple OVS instances.
425 See ovs-sim(1) for more information.
426 - Support to configure method (--syslog-method argument) that determines
427 how daemons will talk with syslog.
428 - Support for "ovs-appctl vlog/list-pattern" command that lets to query
429 logging message format for each destination.
430
431
432 v2.3.0 - 14 Aug 2014
433 ---------------------
434 - OpenFlow 1.1, 1.2, and 1.3 are now enabled by default in
435 ovs-vswitchd.
436 - Linux kernel datapath now has an exact match cache optimizing the
437 flow matching process.
438 - Datapath flows now have partially wildcarded tranport port field
439 matches. This reduces userspace upcalls, but increases the
440 number of different masks in the datapath. The kernel datapath
441 exact match cache removes the overhead of matching the incoming
442 packets with the larger number of masks, but when paired with an
443 older kernel module, some workloads may perform worse with the
444 new userspace.
445 - Compatibility with autoconf 2.63 (previously >=2.64)
446
447 v2.2.0 - Internal Release
448 ---------------------
449 - Internal ports are no longer brought up by default, because it
450 should be an administrator task to bring up devices as they are
451 configured properly.
452 - ovs-vsctl now reports when ovs-vswitchd fails to create a new port or
453 bridge.
454 - Port creation and configuration errors are now stored in a new error
455 column of the Interface table and included in 'ovs-vsctl show'.
456 - The "ovsdbmonitor" graphical tool has been removed, because it was
457 poorly maintained and not widely used.
458 - New "check-ryu" Makefile target for running Ryu tests for OpenFlow
459 controllers against Open vSwitch. See INSTALL.md for details.
460 - Added IPFIX support for SCTP flows and templates for ICMPv4/v6 flows.
461 - Upon the receipt of a SIGHUP signal, ovs-vswitchd no longer reopens its
462 log file (it will terminate instead). Please use 'ovs-appctl vlog/reopen'
463 instead.
464 - Support for Linux kernels up to 3.14. From Kernel 3.12 onwards OVS uses
465 tunnel API for GRE and VXLAN.
466 - Added DPDK support.
467 - Added support for custom vlog patterns in Python
468
469
470 v2.1.0 - 19 Mar 2014
471 ---------------------
472 - Address prefix tracking support for flow tables. New columns
473 "prefixes" in OVS-DB table "Flow_Table" controls which packet
474 header fields are used for address prefix tracking. Prefix
475 tracking allows the classifier to skip rules with longer than
476 necessary prefixes, resulting in better wildcarding for datapath
477 flows. Default configuration is to not use any fields for prefix
478 tracking. However, if any flow tables contain both exact matches
479 and masked matches for IP address fields, OVS performance may be
480 increased by using this feature.
481 * As of now, the fields for which prefix lookup can be enabled
482 are: 'tun_id', 'tun_src', 'tun_dst', 'nw_src', 'nw_dst' (or
483 aliases 'ip_src' and 'ip_dst'), 'ipv6_src', and 'ipv6_dst'.
484 (Using this feature for 'tun_id' would only make sense if the
485 tunnel IDs have prefix structure similar to IP addresses.)
486 * There is a maximum number of fields that can be enabled for any
487 one flow table. Currently this limit is 3.
488 * Examples:
489 $ ovs-vsctl set Bridge br0 flow_tables:0=@N1 -- \
490 --id=@N1 create Flow_Table name=table0
491 $ ovs-vsctl set Bridge br0 flow_tables:1=@N1 -- \
492 --id=@N1 create Flow_Table name=table1
493 $ ovs-vsctl set Flow_Table table0 prefixes=ip_dst,ip_src
494 $ ovs-vsctl set Flow_Table table1 prefixes=[]
495 - TCP flags matching: OVS now supports matching of TCP flags. This
496 has an adverse performance impact when using OVS userspace 1.10
497 or older (no megaflows support) together with the new OVS kernel
498 module. It is recommended that the kernel and userspace modules
499 both are upgraded at the same time.
500 - The default OpenFlow and OVSDB ports will change to
501 IANA-assigned numbers in a future release. Consider updating
502 your installations to specify port numbers instead of using the
503 defaults.
504 - OpenFlow:
505 * The OpenFlow 1.1+ "Write-Actions" instruction is now supported.
506 * OVS limits the OpenFlow port numbers it assigns to port 32767 and
507 below, leaving port numbers above that range free for assignment
508 by the controller.
509 * ovs-vswitchd now honors changes to the "ofport_request" column
510 in the Interface table by changing the port's OpenFlow port
511 number.
512 * The Open vSwitch software switch now supports OpenFlow groups.
513 - ovs-vswitchd.conf.db.5 man page will contain graphviz/dot
514 diagram only if graphviz package was installed at the build time.
515 - Support for Linux kernels up to 3.11
516 - ovs-dpctl:
517 The "show" command also displays mega flow mask stats.
518 - ovs-ofctl:
519 * New command "ofp-parse-pcap" to dump OpenFlow from PCAP files.
520 - ovs-controller has been renamed test-controller. It is no longer
521 packaged or installed by default, because too many users assumed
522 incorrectly that ovs-controller was a necessary or desirable part
523 of an Open vSwitch deployment.
524 - Added vlog option to export to a UDP syslog sink.
525 - ovsdb-client:
526 * The "monitor" command can now monitor all tables in a database,
527 instead of being limited to a single table.
528 - The flow-eviction-threshold has been replaced by the flow-limit which is a
529 hard limit on the number of flows in the datapath. It defaults to 200,000
530 flows. OVS automatically adjusts this number depending on network
531 conditions.
532 - Added IPv6 support for active and passive socket communications.
533
534
535 v2.0.0 - 15 Oct 2013
536 ---------------------
537 - The ovs-vswitchd process is no longer single-threaded. Multiple
538 threads are now used to handle flow set up and asynchronous
539 logging.
540 - OpenFlow:
541 * Experimental support for OpenFlow 1.1 (in addition to 1.2 and
542 1.3, which had experimental support in 1.10).
543 * Experimental protocol support for OpenFlow 1.1+ groups. This
544 does not yet include an implementation in the Open vSwitch
545 software switch.
546 * Experimental protocol support for OpenFlow 1.2+ meters. This
547 does not yet include an implementation in the Open vSwitch
548 software switch.
549 * New support for matching outer source and destination IP address
550 of tunneled packets, for tunnel ports configured with the newly
551 added "remote_ip=flow" and "local_ip=flow" options.
552 * Support for matching on metadata 'pkt_mark' for interacting with
553 other system components. On Linux this corresponds to the skb
554 mark.
555 * Support matching, rewriting SCTP ports
556 - The Interface table in the database has a new "ifindex" column to
557 report the interface's OS-assigned ifindex.
558 - New "check-oftest" Makefile target for running OFTest against Open
559 vSwitch. See README-OFTest for details.
560 - The flow eviction threshold has been moved to the Open_vSwitch table.
561 - Database names are now mandatory when specifying ovsdb-server options
562 through database paths (e.g. Private key option with the database name
563 should look like "--private-key=db:Open_vSwitch,SSL,private_key").
564 - Added ovs-dev.py, a utility script helpful for Open vSwitch developers.
565 - Support for Linux kernels up to 3.10
566 - ovs-ofctl:
567 * New "ofp-parse" for printing OpenFlow messages read from a file.
568 * New commands for OpenFlow 1.1+ groups.
569 - Added configurable flow caching support to IPFIX exporter.
570 - Dropped support for Linux pre-2.6.32.
571 - Log file timestamps and ovsdb commit timestamps are now reported
572 with millisecond resolution. (Previous versions only reported
573 whole seconds.)
574
575
576 v1.11.0 - 28 Aug 2013
577 ---------------------
578 - Support for megaflows, which allows wildcarding in the kernel (and
579 any dpif implementation that supports wildcards). Depending on
580 the flow table and switch configuration, flow set up rates are
581 close to the Linux bridge.
582 - The "tutorial" directory contains a new tutorial for some advanced
583 Open vSwitch features.
584 - Stable bond mode has been removed.
585 - The autopath action has been removed.
586 - New support for the data encapsulation format of the LISP tunnel
587 protocol (RFC 6830). An external control plane or manual flow
588 setup is required for EID-to-RLOC mapping.
589 - OpenFlow:
590 * The "dec_mpls_ttl" and "set_mpls_ttl" actions from OpenFlow
591 1.1 and later are now implemented.
592 * New "stack" extension for use in actions, to push and pop from
593 NXM fields.
594 * The "load" and "set_field" actions can now modify the "in_port". (This
595 allows one to enable output to a flow's input port by setting the
596 in_port to some unused value, such as OFPP_NONE.)
597 - ovs-dpctl:
598 * New debugging commands "add-flow", "mod-flow", "del-flow".
599 * "dump-flows" now has a -m option to increase output verbosity.
600 - In dpif-based bridges, cache action translations, which can improve
601 flow set up performance by 80% with a complicated flow table.
602 - New syslog format, prefixed with "ovs|", to be easier to filter.
603 - RHEL: Removes the default firewall rule that allowed GRE traffic to
604 pass through. Any users that relied on this automatic firewall hole
605 will have to manually configure it. The ovs-ctl(8) manpage documents
606 the "enable-protocol" command that can be used as an alternative.
607 - New CFM demand mode which uses data traffic to indicate interface
608 liveness.
609
610 v1.10.0 - 01 May 2013
611 ---------------------
612 - Bridge compatibility support has been removed. Any uses that
613 rely on ovs-brcompatd will have to stick with Open vSwitch 1.9.x
614 or adapt to native Open vSwitch support (e.g. use ovs-vsctl instead
615 of brctl).
616 - The maximum size of the MAC learning table is now configurable.
617 - With the Linux datapath, packets for new flows are now queued
618 separately on a per-port basis, so it should no longer be
619 possible for a large number of new flows arriving on one port to
620 prevent new flows from being processed on other ports.
621 - ovs-vsctl:
622 * Previously ovs-vsctl would retry connecting to the database forever,
623 causing it to hang if ovsdb-server was not running. Now, ovs-vsctl
624 only tries once by default (use --retry to try forever). This change
625 means that you may want to remove uses of --timeout to avoid hangs
626 in ovs-vsctl calls.
627 * Many "ovs-vsctl" database commands now accept an --if-exists option.
628 Please refer to the ovs-vsctl manpage for details.
629 - OpenFlow:
630 - Experimental support for newer versions of OpenFlow. See
631 the "What versions of OpenFlow does Open vSwitch support?"
632 question in the FAQ for more details.
633 - The OpenFlow "dp_desc" may now be configured by setting the
634 value of other-config:dp-desc in the Bridge table.
635 - It is possible to request the OpenFlow port number with the
636 "ofport_request" column in the Interface table.
637 - The NXM flow_removed message now reports the OpenFlow table ID
638 from which the flow was removed.
639 - Tunneling:
640 - New support for the VXLAN tunnel protocol (see the IETF draft here:
641 http://tools.ietf.org/html/draft-mahalingam-dutt-dcops-vxlan-03).
642 - Tunneling requires the version of the kernel module paired with
643 Open vSwitch 1.9.0 or later.
644 - Inheritance of the Don't Fragment bit in IP tunnels (df_inherit)
645 is no longer supported.
646 - Path MTU discovery is no longer supported.
647 - CAPWAP tunneling support removed.
648 - Tunnels with multicast destination ports are no longer supported.
649 - ovs-dpctl:
650 - The "dump-flows" and "del-flows" no longer require an argument
651 if only one datapath exists.
652 - ovs-appctl:
653 - New "vlog/disable-rate-limit" and "vlog/enable-rate-limit"
654 commands available allow control over logging rate limits.
655 - New "dpif/dump-dps", "dpif/show", and "dpif/dump-flows" command
656 that mimic the equivalent ovs-dpctl commands.
657 - The ofproto library is now responsible for assigning OpenFlow port
658 numbers. An ofproto implementation should assign them when
659 port_construct() is called.
660 - All dpif-based bridges of a particular type share a common
661 datapath called "ovs-<type>", e.g. "ovs-system". The ovs-dpctl
662 commands will now return information on that shared datapath. To
663 get the equivalent bridge-specific information, use the new
664 "ovs-appctl dpif/*" commands.
665 - Backward-incompatible changes:
666 - Earlier Open vSwitch versions treated ANY as a wildcard in flow
667 syntax. OpenFlow 1.1 adds a port named ANY, which introduces a
668 conflict. ANY was rarely used in flow syntax, so we chose to
669 retire that meaning of ANY in favor of the OpenFlow 1.1 meaning.
670 - Patch ports no longer require kernel support, so they now work
671 with FreeBSD and the kernel module built into Linux 3.3 and later.
672 - New "sample" action.
673
674
675 v1.9.0 - 26 Feb 2013
676 ------------------------
677 - Datapath:
678 - Support for ipv6 set action.
679 - SKB mark matching and setting.
680 - support for Linux kernels up to 3.8
681 - FreeBSD is now a supported platform, thanks to code contributions from
682 Gaetano Catalli, Ed Maste, and Giuseppe Lettieri.
683 - ovs-bugtool: New --ovs option to report only OVS related information.
684 - New %t and %T log escapes to identify the subprogram within a
685 cooperating group of processes or threads that emitted a log message.
686 The default log patterns now include this information.
687 - OpenFlow:
688 - Allow bitwise masking for SHA and THA fields in ARP, SLL and TLL
689 fields in IPv6 neighbor discovery messages, and IPv6 flow label.
690 - Adds support for writing to the metadata field for a flow.
691 - Tunneling:
692 - The tunneling code no longer assumes input and output keys are
693 symmetric. If they are not, PMTUD needs to be disabled for
694 tunneling to work. Note this only applies to flow-based keys.
695 - New support for a nonstandard form of GRE that supports a 64-bit key.
696 - Tunnel Path MTU Discovery default value was set to 'disabled'.
697 This feature is deprecated and will be removed soon.
698 - Tunnel header caching removed.
699 - ovs-ofctl:
700 - Commands and actions that accept port numbers now also accept keywords
701 that represent those ports (such as LOCAL, NONE, and ALL). This is
702 also the recommended way to specify these ports, for compatibility
703 with OpenFlow 1.1 and later (which use the OpenFlow 1.0 numbers
704 for these ports for different purposes).
705 - ovs-dpctl:
706 - Support requesting the port number with the "port_no" option in
707 the "add-if" command.
708 - ovs-pki: The "online PKI" features have been removed, along with
709 the ovs-pki-cgi program that facilitated it, because of some
710 alarmist insecurity claims. We do not believe that these claims
711 are true, but because we do not know of any users for this
712 feature it seems better on balance to remove it. (The ovs-pki-cgi
713 program was not included in distribution packaging.)
714 - ovsdb-server now enforces the immutability of immutable columns. This
715 was not enforced in earlier versions due to an oversight.
716 - The following features are now deprecated. They will be removed no
717 earlier than February 2013. Please email dev@openvswitch.org with
718 concerns.
719 - Bridge compatibility.
720 - Stable bond mode.
721 - The autopath action.
722 - Interface type "null".
723 - Numeric values for reserved ports (see "ovs-ofctl" note above).
724 - Tunnel Path MTU Discovery.
725 - CAPWAP tunnel support.
726 - The data in the RARP packets can now be matched in the same way as the
727 data in ARP packets.
728
729
730 v1.8.0 - 26 Feb 2013
731 ------------------------
732 *** Internal only release ***
733 - New FAQ. Please send updates and additions!
734 - Authors of controllers, please read the new section titled "Action
735 Reproduction" in DESIGN, which describes an Open vSwitch change in
736 behavior in corner cases that may affect some controllers.
737 - ovs-l3ping:
738 - A new test utility that can create L3 tunnel between two Open
739 vSwitches and detect connectivity issues.
740 - ovs-ofctl:
741 - New --sort and --rsort options for "dump-flows" command.
742 - "mod-port" command can now control all OpenFlow config flags.
743 - OpenFlow:
744 - Allow general bitwise masking for IPv4 and IPv6 addresses in
745 IPv4, IPv6, and ARP packets. (Previously, only CIDR masks
746 were allowed.)
747 - Allow support for arbitrary Ethernet masks. (Previously, only
748 the multicast bit in the destination address could be individually
749 masked.)
750 - New field OXM_OF_METADATA, to align with OpenFlow 1.1.
751 - The OFPST_QUEUE request now reports an error if a specified port or
752 queue does not exist, or for requests for a specific queue on all
753 ports, if the specified queue does not exist on any port. (Previous
754 versions generally reported an empty set of results.)
755 - New "flow monitor" feature to allow controllers to be notified of
756 flow table changes as they happen.
757 - Additional protocols are not mirrored and dropped when forward-bpdu is
758 false. For a full list, see the ovs-vswitchd.conf.db man page.
759 - Open vSwitch now sends RARP packets in situations where it previously
760 sent a custom protocol, making it consistent with behavior of QEMU and
761 VMware.
762 - All Open vSwitch programs and log files now show timestamps in UTC,
763 instead the local timezone, by default.
764
765
766 v1.7.0 - 30 Jul 2012
767 ------------------------
768 - kernel modules are renamed. openvswitch_mod.ko is now
769 openvswitch.ko and brcompat_mod.ko is now brcompat.ko.
770 - Increased the number of NXM registers to 8.
771 - Added ability to configure DSCP setting for manager and controller
772 connections. By default, these connections have a DSCP value of
773 Internetwork Control (0xc0).
774 - Added the granular link health statistics, 'cfm_health', to an
775 interface.
776 - OpenFlow:
777 - Added support to mask nd_target for ICMPv6 neighbor discovery flows.
778 - Added support for OpenFlow 1.3 port description (OFPMP_PORT_DESC)
779 multipart messages.
780 - ovs-ofctl:
781 - Added the "dump-ports-desc" command to retrieve port
782 information using the new port description multipart messages.
783 - ovs-test:
784 - Added support for spawning ovs-test server from the client.
785 - Now ovs-test is able to automatically create test bridges and ports.
786 - "ovs-dpctl dump-flows" now prints observed TCP flags in TCP flows.
787 - Tripled flow setup performance.
788 - The "coverage/log" command previously available through ovs-appctl
789 has been replaced by "coverage/show". The new command replies with
790 coverage counter values, instead of logging them.
791
792
793 v1.6.1 - 25 Jun 2012
794 ------------------------
795 - Allow OFPP_CONTROLLER as the in_port for packet-out messages.
796
797
798 v1.6.0 - 24 Feb 2012
799 ------------------------
800 *** Internal only release ***
801 - bonding
802 - LACP bonds no longer fall back to balance-slb when negotiations fail.
803 Instead they drop traffic.
804 - The default bond_mode changed from SLB to active-backup, to protect
805 unsuspecting users from the significant risks of SLB bonds (which are
806 documented in vswitchd/INTERNALS).
807 - Load balancing can be disabled by setting the bond-rebalance-interval
808 to zero.
809 - OpenFlow:
810 - Added support for bitwise matching on TCP and UDP ports.
811 See ovs-ofctl(8) for more information.
812 - NXM flow dumps now include times elapsed toward idle and hard
813 timeouts.
814 - Added an OpenFlow extension NXT_SET_ASYNC_CONFIG that allows
815 controllers more precise control over which OpenFlow messages they
816 receive asynchronously.
817 - New "fin_timeout" action.
818 - Added "fin_timeout" support to "learn" action.
819 - New Nicira action NXAST_CONTROLLER that offers additional features
820 over output to OFPP_CONTROLLER.
821 - When QoS settings for an interface do not configure a default queue
822 (queue 0), Open vSwitch now uses a default configuration for that
823 queue, instead of dropping all packets as in previous versions.
824 - Logging:
825 - Logging to console and file will have UTC timestamp as a default for
826 all the daemons. An example of the default format is
827 2012-01-27T16:35:17Z. ovs-appctl can be used to change the default
828 format as before.
829 - The syntax of commands and options to set log levels was simplified,
830 to make it easier to remember.
831 - New support for limiting the number of flows in an OpenFlow flow
832 table, with configurable policy for evicting flows upon
833 overflow. See the Flow_Table table in ovs-vswitch.conf.db(5)
834 for more information.
835 - New "enable-async-messages" column in the Controller table. If set to
836 false, OpenFlow connections to the controller will initially have all
837 asynchronous messages disabled, overriding normal OpenFlow behavior.
838 - ofproto-provider interface:
839 - "struct rule" has a new member "used" that ofproto implementations
840 should maintain by updating with ofproto_rule_update_used().
841 - ovsdb-client:
842 - The new option --timestamp causes the "monitor" command to print
843 a timestamp with every update.
844 - CFM module CCM broadcasts can now be tagged with an 802.1p priority.
845
846
847 v1.5.0 - 01 Jun 2012
848 ------------------------
849 - OpenFlow:
850 - Added support for querying, modifying, and deleting flows
851 based on flow cookie when using NXM.
852 - Added new NXM_PACKET_IN format.
853 - Added new NXAST_DEC_TTL action.
854 - ovs-ofctl:
855 - Added daemonization support to the monitor and snoop commands.
856 - ovs-vsctl:
857 - The "find" command supports new set relational operators
858 {=}, {!=}, {<}, {>}, {<=}, and {>=}.
859 - ovsdb-tool now uses the typical database and schema installation
860 directories as defaults.
861 - The default MAC learning timeout has been increased from 60 seconds
862 to 300 seconds. The MAC learning timeout is now configurable.
863
864
865 v1.4.0 - 30 Jan 2012
866 ------------------------
867 - Compatible with Open vSwitch kernel module included in Linux 3.3.
868 - New "VLAN splinters" feature to work around buggy device drivers
869 in old Linux versions. (This feature is deprecated. When
870 broken device drivers are no longer in widespread use, we will
871 delete this feature.) See ovs-vswitchd.conf.db(5) for more
872 information.
873 - OpenFlow:
874 - Added ability to match on IPv6 flow label through NXM.
875 - Added ability to match on ECN bits in IPv4 and IPv6 through NXM.
876 - Added ability to match on TTL in IPv4 and IPv6 through NXM.
877 - Added ability to modify ECN bits in IPv4.
878 - Added ability to modify TTL in IPv4.
879 - ovs-vswitchd:
880 - Don't require the "normal" action to use mirrors. Traffic will
881 now be properly mirrored for any flows, regardless of their
882 actions.
883 - Track packet and byte statistics sent on mirrors.
884 - The sFlow implementation can now usually infer the correct agent
885 device instead of having to be told explicitly.
886 - ovs-appctl:
887 - New "fdb/flush" command to flush bridge's MAC learning table.
888 - ovs-test:
889 - A new distributed testing tool that allows one to diagnose performance
890 and connectivity issues. This tool currently is not included in RH or
891 Xen packages.
892 - RHEL packaging now supports integration with Red Hat network scripts.
893 - bonding:
894 - Post 1.4.*, OVS will be changing the default bond mode from balance-slb
895 to active-backup. SLB bonds carry significant risks with them
896 (documented vswitchd/INTERNALS) which we want to prevent unsuspecting
897 users from running into. Users are advised to update any scripts or
898 configuration which may be negatively impacted by explicitly setting
899 the bond mode which they want to use.
900
901
902 v1.3.0 - 09 Dec 2011
903 ------------------------
904 - OpenFlow:
905 - Added an OpenFlow extension which allows the "output" action to accept
906 NXM fields.
907 - Added an OpenFlow extension for flexible learning.
908 - Bumped number of NXM registers from four to five.
909 - ovs-appctl:
910 - New "version" command to determine version of running daemon.
911 - If no argument is provided for "cfm/show", displays detailed
912 information about all interfaces with CFM enabled.
913 - If no argument is provided for "lacp/show", displays detailed
914 information about all ports with LACP enabled.
915 - ovs-dpctl:
916 - New "set-if" command to modify a datapath port's configuration.
917 - ovs-vswitchd:
918 - The software switch now supports 255 OpenFlow tables, instead
919 of just one. By default, only table 0 is consulted, but the
920 new NXAST_RESUBMIT_TABLE action can look up in additional
921 tables. Tables 128 and above are reserved for use by the
922 switch itself; please use only tables 0 through 127.
923 - Add support for 802.1D spanning tree (STP).
924 - Fragment handling extensions:
925 - New OFPC_FRAG_NX_MATCH fragment handling mode, in which L4
926 fields are made available for matching in fragments with
927 offset 0.
928 - New NXM_NX_IP_FRAG match field for matching IP fragments (usable
929 via "ip_frag" in ovs-ofctl).
930 - New ovs-ofctl "get-frags" and "set-frags" commands to get and set
931 fragment handling policy.
932 - CAPWAP tunneling now supports an extension to transport a 64-bit key.
933 By default it remains compatible with the old version and other
934 standards-based implementations.
935 - Flow setups are now processed in a round-robin manner across ports
936 to prevent any single client from monopolizing the CPU and conducting
937 a denial of service attack.
938 - Added support for native VLAN tagging. A new "vlan_mode"
939 parameter can be set for "port". Possible values: "access",
940 "trunk", "native-tagged" and "native-untagged".
941 - test-openflowd has been removed. Please use ovs-vswitchd instead.
942
943 v1.2.0 - 03 Aug 2011
944 ------------------------
945 - New "ofproto" abstraction layer to ease porting to hardware
946 switching ASICs.
947 - Packaging for Red Hat Enterprise Linux 5.6 and 6.0.
948 - Datapath support for Linux kernels up to 3.0.
949 - OpenFlow:
950 - New "bundle" and "bundle_load" action extensions.
951 - Database:
952 - Implement table unique constraints.
953 - Support cooperative locking between callers.
954 - ovs-dpctl:
955 - New "-s" option for "show" command prints packet and byte
956 counters for each port.
957 - ovs-ofctl:
958 - New "--readd" option for "replace-flows".
959 - ovs-vsctl:
960 - New "show" command to print an overview of configuration.
961 - New "comment" command to add remark that explains intentions.
962 - ovs-brcompatd has been rewritten to fix long-standing bugs.
963 - ovs-openflowd has been renamed test-openflowd and moved into the
964 tests directory. Its presence confused too many users. Please
965 use ovs-vswitchd instead.
966 - New ovs-benchmark utility to test flow setup performance.
967 - A new log level "off" has been added. Configuring a log facility
968 "off" prevents any messages from being logged to it. Previously,
969 "emer" was effectively "off" because no messages were ever logged at
970 level "emer". Now, errors that cause a process to exit are logged
971 at "emer" level.
972 - "configure" option --with-l26 has been renamed --with-linux, and
973 --with-l26-source has been renamed --with-linux-source. The old
974 names will be removed after the next release, so please update
975 your scripts.
976 - The "-2.6" suffix has been dropped from the datapath/linux-2.6 and
977 datapath/linux-2.6/compat-2.6 directories.
978 - Feature removals:
979 - Dropped support for "tun_id_from_cookie" OpenFlow extension.
980 Please use the extensible match extensions instead.
981 - Removed the Maintenance_Point and Monitor tables in an effort
982 to simplify 802.1ag configuration.
983 - Performance and scalability improvements
984 - Bug fixes
985
986 v1.1.0 - 05 Apr 2011
987 ------------------------
988 - Ability to define policies over IPv6
989 - LACP
990 - 802.1ag CCM
991 - Support for extensible match extensions to OpenFlow
992 - QoS:
993 - Support for HFSC qdisc.
994 - Queue used by in-band control can now be configured.
995 - Kernel:
996 - Kernel<->userspace interface has been reworked and should be
997 close to a stable ABI now.
998 - "Port group" concept has been dropped.
999 - GRE over IPSEC tunnels
1000 - Bonding:
1001 - New active backup bonding mode.
1002 - New L4 hashing support when LACP is enabled.
1003 - Source MAC hash now includes VLAN field also.
1004 - miimon support.
1005 - Greatly improved handling of large flow tables
1006 - ovs-dpctl:
1007 - "show" command now prints full vport configuration.
1008 - "dump-groups" command removed since kernel support for
1009 port groups was dropped.
1010 - ovs-vsctl:
1011 - New commands for working with the new Managers table.
1012 - "list" command enhanced with new formatting options and --columns
1013 option.
1014 - "get" command now accepts new --id option.
1015 - New "find" command.
1016 - ovs-ofctl:
1017 - New "queue-stats" command for printing queue stats.
1018 - New commands "replace-flows" and "diff-flows".
1019 - Commands to add and remove flows can now read from files.
1020 - New --flow-format option to enable or disable NXM.
1021 - New --more option to increase OpenFlow message verbosity.
1022 - Removed "tun-cookie" command, which is no longer useful.
1023 - ovs-controller enhancements for testing various features.
1024 - New ovs-vlan-test command for testing for Linux kernel driver VLAN
1025 bugs. New ovs-vlan-bug-workaround command for enabling and
1026 disabling a workaround for these driver bugs.
1027 - OpenFlow support:
1028 - "Resubmit" actions now update flow statistics.
1029 - New "register" extension for use in matching and actions, via NXM.
1030 - New "multipath" experimental action extension.
1031 - New support for matching multicast Ethernet frames, via NXM.
1032 - New extension for OpenFlow vendor error codes.
1033 - New extension to set the QoS output queue without actually
1034 sending to an output port.
1035 - Open vSwitch now reports a single flow table, instead of
1036 separate hash and wildcard tables. This better models the
1037 current implementation.
1038 - New experimental "note" action.
1039 - New "ofproto/trace" ovs-appctl command and associated utilities
1040 to ease debugging complex flow tables.
1041 - Database:
1042 - Schema documentation now includes an entity-relationship diagram.
1043 - The database is now garbage collected. In most tables,
1044 unreferenced rows will be deleted automatically.
1045 - Many tables now include statistics updated periodically by
1046 ovs-vswitchd or ovsdb-server.
1047 - Every table now has an "external-ids" column for use by OVS
1048 integrators.
1049 - There is no default controller anymore. Each bridge must have its
1050 controller individually specified.
1051 - The "fail-mode" is now a property of a Bridge instead of a Controller.
1052 - New versioning and checksum features.
1053 - New Managers table and manager_options column in Open_vSwitch table
1054 for specifying managers. The old "managers" column in the
1055 Open_vSwitch table has been removed.
1056 - Many "name" columns are now immutable.
1057 - Feature removals:
1058 - Dropped support for XenServer pre-5.6.100.
1059 - Dropped support for Linux pre-2.6.18.
1060 - Dropped controller discovery support.
1061 - Dropped "ovs-ofctl status" and the OpenFlow extension that it used.
1062 Statistics reporting in the database is a rough equivalent.
1063 - Dropped the "corekeeper" package (now separate, at
1064 http://openvswitch.org/cgi-bin/gitweb.cgi?p=corekeeper).
1065 - Performance and scalability improvements
1066 - Bug fixes
1067
1068 v1.1.0pre2 - 13 Sep 2010
1069 ------------------------
1070 - Bug fixes
1071
1072 v1.1.0pre1 - 31 Aug 2010
1073 ------------------------
1074 - OpenFlow 1.0 slicing (QoS) functionality
1075 - Python bindings for configuration database (no write support)
1076 - Performance and scalability improvements
1077 - Bug fixes
1078
1079 v1.0.1 - 31 May 2010
1080 --------------------
1081 - New "patch" interface type
1082 - Bug fixes
1083
1084 v1.0.0 - 15 May 2010
1085 --------------------
1086 - Configuration database with remote management
1087 - OpenFlow 1.0
1088 - GRE tunneling
1089 - Support for XenServer 5.5 and 5.6
1090 - Performance and scalability improvements
1091 - Bug fixes
1092
1093 v0.99.2 - 18 Feb 2010
1094 ---------------------
1095 - Bug fixes
1096
1097 v0.99.1 - 25 Jan 2010
1098 ---------------------
1099 - Add support for sFlow(R)
1100 - Make headers compatible with C++
1101 - Bug fixes
1102
1103 v0.99.0 - 14 Jan 2010
1104 ---------------------
1105 - User-space forwarding engine
1106 - Bug fixes
1107
1108 v0.90.7 - 29 Nov 2009
1109 ---------------------
1110 - Add support for NetFlow active timeouts
1111 - Bug fixes
1112
1113 v0.90.6 - 6 Oct 2009
1114 --------------------
1115 - Bug fixes
1116
1117 v0.90.5 - 21 Sep 2009
1118 ---------------------
1119 - Generalize in-band control to more diverse network setups
1120 - Bug fixes