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