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