NEWS: Mention support for keys in CAPWAP.
[sliver-openvswitch.git] / NEWS
1 Post-v1.2.0
2 ------------------------
3     - OpenFlow:
4       - Added an OpenFlow extension which allows the "output" action to accept
5         NXM fields.
6     - ovs-appctl:
7       - New "version" command to determine version of running daemon
8     - ovs-vswitchd:
9       - The software switch now supports 255 OpenFlow tables, instead
10         of just one.  By default, only table 0 is consulted, but the
11         new NXAST_RESUBMIT_TABLE action can look up in additional
12         tables.  Tables 128 and above are reserved for use by the
13         switch itself; please use only tables 0 through 127.
14     - CAPWAP tunneling now supports an extension to transport a 64-key.  By
15       default it remains compatible with the old version and other
16       standards-based implementations.
17
18 v1.2.0 - 03 Aug 2011
19 ------------------------
20     - New "ofproto" abstraction layer to ease porting to hardware
21       switching ASICs.
22     - Packaging for Red Hat Enterprise Linux 5.6 and 6.0.
23     - Datapath support for Linux kernels up to 3.0.
24     - OpenFlow:
25       - New "bundle" and "bundle_load" action extensions.
26     - Database:
27       - Implement table unique constraints.
28       - Support cooperative locking between callers.
29     - ovs-dpctl:
30       - New "-s" option for "show" command prints packet and byte
31         counters for each port.
32     - ovs-ofctl:
33       - New "--readd" option for "replace-flows".
34     - ovs-vsctl:
35       - New "show" command to print an overview of configuration.
36       - New "comment" command to add remark that explains intentions.
37     - ovs-brcompatd has been rewritten to fix long-standing bugs.
38     - ovs-openflowd has been renamed test-openflowd and moved into the
39       tests directory.  Its presence confused too many users.  Please
40       use ovs-vswitchd instead.
41     - New ovs-benchmark utility to test flow setup performance.
42     - A new log level "off" has been added.  Configuring a log facility
43       "off" prevents any messages from being logged to it.  Previously,
44       "emer" was effectively "off" because no messages were ever logged at
45       level "emer".  Now, errors that cause a process to exit are logged
46       at "emer" level.
47     - "configure" option --with-l26 has been renamed --with-linux, and
48       --with-l26-source has been renamed --with-linux-source.  The old
49       names will be removed after the next release, so please update
50       your scripts.
51     - The "-2.6" suffix has been dropped from the datapath/linux-2.6 and
52       datapath/linux-2.6/compat-2.6 directories.
53     - Feature removals:
54       - Dropped support for "tun_id_from_cookie" OpenFlow extension.
55             Please use the extensible match extensions instead.
56       - Removed the Maintenance_Point and Monitor tables in an effort
57         to simplify 802.1ag configuration.
58     - Performance and scalability improvements
59     - Bug fixes
60
61 v1.1.0 - 05 Apr 2011
62 ------------------------
63     - Ability to define policies over IPv6
64     - LACP
65     - 802.1ag CCM
66     - Support for extensible match extensions to OpenFlow
67     - QoS:
68       - Support for HFSC qdisc.
69       - Queue used by in-band control can now be configured.
70     - Kernel:
71       - Kernel<->userspace interface has been reworked and should be
72         close to a stable ABI now.
73       - "Port group" concept has been dropped.
74     - GRE over IPSEC tunnels
75     - Bonding:
76       - New active backup bonding mode.
77       - New L4 hashing support when LACP is enabled.
78       - Source MAC hash now includes VLAN field also.
79       - miimon support.
80     - Greatly improved handling of large flow tables
81     - ovs-dpctl:
82       - "show" command now prints full vport configuration.
83       - "dump-groups" command removed since kernel support for
84         port groups was dropped.
85     - ovs-vsctl:
86       - New commands for working with the new Managers table.
87       - "list" command enhanced with new formatting options and --columns
88         option.
89       - "get" command now accepts new --id option.
90       - New "find" command.
91     - ovs-ofctl:
92       - New "queue-stats" command for printing queue stats.
93       - New commands "replace-flows" and "diff-flows".
94       - Commands to add and remove flows can now read from files.
95       - New --flow-format option to enable or disable NXM.
96       - New --more option to increase OpenFlow message verbosity.
97       - Removed "tun-cookie" command, which is no longer useful.
98     - ovs-controller enhancements for testing various features.
99     - New ovs-vlan-test command for testing for Linux kernel driver VLAN
100       bugs.  New ovs-vlan-bug-workaround command for enabling and
101       disabling a workaround for these driver bugs.
102     - OpenFlow support:
103       - "Resubmit" actions now update flow statistics.
104       - New "register" extension for use in matching and actions, via NXM.
105       - New "multipath" experimental action extension.
106       - New support for matching multicast Ethernet frames, via NXM.
107       - New extension for OpenFlow vendor error codes.
108       - New extension to set the QoS output queue without actually
109         sending to an output port.
110       - Open vSwitch now reports a single flow table, instead of
111         separate hash and wildcard tables.  This better models the
112         current implementation.
113       - New experimental "note" action.
114       - New "ofproto/trace" ovs-appctl command and associated utilities
115         to ease debugging complex flow tables.
116     - Database:
117       - Schema documentation now includes an entity-relationship diagram.
118       - The database is now garbage collected.  In most tables,
119         unreferenced rows will be deleted automatically.
120       - Many tables now include statistics updated periodically by
121         ovs-vswitchd or ovsdb-server.
122       - Every table now has an "external-ids" column for use by OVS
123         integrators.
124       - There is no default controller anymore.  Each bridge must have its
125         controller individually specified.
126       - The "fail-mode" is now a property of a Bridge instead of a Controller.
127       - New versioning and checksum features.
128       - New Managers table and manager_options column in Open_vSwitch table
129         for specifying managers.  The old "managers" column in the
130         Open_vSwitch table has been removed.
131       - Many "name" columns are now immutable.
132     - Feature removals:
133       - Dropped support for XenServer pre-5.6.100.
134       - Dropped support for Linux pre-2.6.18.
135       - Dropped controller discovery support.
136       - Dropped "ovs-ofctl status" and the OpenFlow extension that it used.
137         Statistics reporting in the database is a rough equivalent.
138       - Dropped the "corekeeper" package (now separate, at
139         http://openvswitch.org/cgi-bin/gitweb.cgi?p=corekeeper).
140     - Performance and scalability improvements
141     - Bug fixes
142
143 v1.1.0pre2 - 13 Sep 2010
144 ------------------------
145     - Bug fixes
146
147 v1.1.0pre1 - 31 Aug 2010
148 ------------------------
149     - OpenFlow 1.0 slicing (QoS) functionality
150     - Python bindings for configuration database (no write support)
151     - Performance and scalability improvements
152     - Bug fixes
153
154 v1.0.1 - 31 May 2010
155 --------------------
156     - New "patch" interface type
157     - Bug fixes
158
159 v1.0.0 - 15 May 2010
160 --------------------
161     - Configuration database with remote management
162     - OpenFlow 1.0
163     - GRE tunneling
164     - Support for XenServer 5.5 and 5.6
165     - Performance and scalability improvements
166     - Bug fixes
167
168 v0.99.2 - 18 Feb 2010
169 ---------------------
170     - Bug fixes
171
172 v0.99.1 - 25 Jan 2010
173 ---------------------
174     - Add support for sFlow(R)
175     - Make headers compatible with C++
176     - Bug fixes
177
178 v0.99.0 - 14 Jan 2010
179 ---------------------
180     - User-space forwarding engine
181     - Bug fixes
182
183 v0.90.7 - 29 Nov 2009
184 ---------------------
185     - Add support for NetFlow active timeouts
186     - Bug fixes
187
188 v0.90.6 - 6 Oct 2009
189 --------------------
190     - Bug fixes
191
192 v0.90.5 - 21 Sep 2009
193 ---------------------
194     - Generalize in-band control to more diverse network setups
195     - Bug fixes