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