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