2017-01-31 17:52:16 -08:00
|
|
|
Post-v2.7.0
|
|
|
|
---------------------
|
|
|
|
- Tunnels:
|
|
|
|
* Added support to set packet mark for tunnel endpoint using
|
|
|
|
`egress_pkt_mark` OVSDB option.
|
2017-05-18 16:10:33 -04:00
|
|
|
* When using Linux kernel datapath tunnels may be created using rtnetlink.
|
|
|
|
This will allow us to take advantage of new tunnel features without
|
|
|
|
having to make changes to the vport modules.
|
2017-02-16 10:22:10 +00:00
|
|
|
- EMC insertion probability is reduced to 1% and is configurable via
|
|
|
|
the new 'other_config:emc-insert-inv-prob' option.
|
2017-03-06 09:49:11 +03:00
|
|
|
- DPDK:
|
|
|
|
* DPDK log messages redirected to OVS logging subsystem.
|
|
|
|
Log level can be changed in a usual OVS way using
|
|
|
|
'ovs-appctl vlog' commands for 'dpdk' module. Lower bound
|
|
|
|
still can be configured via extra arguments for DPDK EAL.
|
2017-04-20 15:25:13 +01:00
|
|
|
- IPFIX now provides additional counters for totals since startup.
|
2017-03-01 17:48:00 -05:00
|
|
|
- New support for multiple VLANs (802.1ad or "QinQ"), including a new
|
|
|
|
"dot1q-tunnel" port VLAN mode.
|
2017-04-27 12:36:24 -07:00
|
|
|
- In ovn-vsctl and vtep-ctl, record UUIDs in commands may now be
|
|
|
|
abbreviated to 4 hex digits.
|
2017-03-09 10:53:37 +08:00
|
|
|
- OVN:
|
2017-04-25 19:59:54 +05:30
|
|
|
* New built-in DNS support.
|
2017-03-10 07:46:58 +05:30
|
|
|
* IPAM for IPv4 can now exclude user-defined addresses from assignment.
|
2017-03-10 07:47:20 +05:30
|
|
|
* IPAM can now assign IPv6 addresses.
|
2017-03-09 10:53:37 +08:00
|
|
|
* Make the DHCPv4 router setting optional.
|
2017-03-30 11:42:22 -07:00
|
|
|
* Gratuitous ARP for NAT addresses on a distributed logical router.
|
2017-04-06 12:49:13 -04:00
|
|
|
* Allow ovn-controller SSL configuration to be obtained from vswitchd
|
|
|
|
database.
|
2017-04-18 12:47:21 -07:00
|
|
|
* ovn-trace now has basic support for tracing distributed firewalls.
|
2017-04-27 12:36:24 -07:00
|
|
|
* In ovn-nbctl and ovn-sbctl, record UUIDs in commands may now be
|
|
|
|
abbreviated to 4 hex digits.
|
2017-04-28 08:09:55 -07:00
|
|
|
* "ovn-sbctl lflow-list" can now print OpenFlow flows that correspond
|
|
|
|
to logical flows.
|
2017-03-18 01:13:56 -07:00
|
|
|
- Add the command 'ovs-appctl stp/show' (see ovs-vswitchd(8)).
|
2017-03-09 12:01:02 +08:00
|
|
|
- OpenFlow:
|
2017-04-24 11:49:59 -07:00
|
|
|
* All features required by OpenFlow 1.4 are now implemented, so
|
|
|
|
ovs-vswitchd now enables OpenFlow 1.4 by default (in addition to
|
|
|
|
OpenFlow 1.0 to 1.3).
|
2017-04-05 23:08:09 -07:00
|
|
|
* Increased support for OpenFlow 1.6 (draft).
|
2017-03-09 12:01:02 +08:00
|
|
|
* Bundles now support hashing by just nw_src or nw_dst.
|
|
|
|
* The "learn" action now supports a "limit" option (see ovs-ofctl(8)).
|
2017-04-20 15:41:57 +00:00
|
|
|
* The port status bit OFPPS_LIVE now reflects link aliveness.
|
2017-05-02 16:18:19 -04:00
|
|
|
- Fedora Packaging:
|
|
|
|
* OVN services are no longer restarted automatically after upgrade.
|
2017-04-24 18:55:04 -07:00
|
|
|
- Add --cleanup option to command 'ovs-appctl exit' (see ovs-vswitchd(8)).
|
2017-01-31 17:52:16 -08:00
|
|
|
|
2017-02-21 13:58:32 -08:00
|
|
|
v2.7.0 - 21 Feb 2017
|
2016-08-06 20:49:40 -07:00
|
|
|
---------------------
|
2016-10-06 16:21:33 -07:00
|
|
|
- Utilities and daemons that support SSL now allow protocols and
|
|
|
|
ciphers to be configured with --ssl-protocols and --ssl-ciphers.
|
2016-09-07 11:40:11 +05:30
|
|
|
- OVN:
|
|
|
|
* QoS is now implemented via egress shaping rather than ingress policing.
|
2016-10-05 13:57:47 +05:30
|
|
|
* DSCP marking is now supported, via the new northbound QoS table.
|
2016-10-06 15:58:51 -04:00
|
|
|
* IPAM now supports fixed MAC addresses.
|
ovn: Add a case of policy based routing.
OVN currently supports multiple gateway routers (residing on
different chassis) connected to the same logical topology.
When external traffic enters the logical topology, they can enter
from any gateway routers and reach its eventual destination. This
is achieved with proper static routes configured on the gateway
routers.
But when traffic is initiated in the logical space by a logical
port, we do not have a good way to distribute that traffic across
multiple gateway routers.
This commit introduces one particular way to do it. Based on the
source IP address or source IP network of the packet, we can now
jump to a specific gateway router.
This is very useful for a specific use case of Kubernetes.
When traffic is initiated inside a container heading to outside world,
we want to be able to send such traffic outside the gateway router
residing in the same host as that of the container. Since each
host gets a specific subnet, we can use source IP address based
policy routing to decide on the gateway router.
Rationale for using the same routing table for both source and
destination IP address based routing:
Some hardware network vendors support policy routing in a different table
on arbitrary "match". And when a packet enters, if there is a match
in policy based routing table, the default routing table is not
consulted at all. In case of OVN, we mainly want policy based routing
for north-south traffic. We want east-west traffic to flow as-is. Creating
a separate table for policy based routing complicates the configuration
quite a bit. For e.g., if we have a source IP network based rule added,
to decide a particular gateway router as a next hop, we should add rules at
a higher priority for all the connected routes to make sure that east-west
traffic is not effected in the policy based routing table itself.
Signed-off-by: Gurucharan Shetty <guru@ovn.org>
Acked-by: Ben Pfaff <blp@ovn.org>
2016-10-06 03:33:17 -07:00
|
|
|
* Support for source IP address based routing.
|
2016-12-28 09:31:42 -08:00
|
|
|
* ovn-trace:
|
|
|
|
- New --ovs option to also print OpenFlow flows.
|
|
|
|
- put_dhcp_opts and put_dhcp_optsv6 actions may now be traced.
|
2016-12-08 13:12:23 -05:00
|
|
|
* Support for managing SSL and remote connection configuration in
|
2016-12-08 13:12:24 -05:00
|
|
|
northbound and southbound databases.
|
2017-01-03 13:29:10 -05:00
|
|
|
* TCP connections to northbound and southbound databases are no
|
|
|
|
longer enabled by default and must be explicitly configured.
|
|
|
|
See documentation for ovn-sbctl/ovn-nbctl "set-connection"
|
|
|
|
command or the ovn-ctl "--db-sb-create-insecure-remote" and
|
|
|
|
"--db-nb-create-insecure-remote" command-line options for
|
|
|
|
information regarding remote connection configuration.
|
2016-12-23 16:34:48 -08:00
|
|
|
* New appctl "inject-pkt" command in ovn-controller that allows
|
|
|
|
packets to be injected into the connected OVS instance.
|
2017-02-10 15:07:28 -08:00
|
|
|
* Distributed logical routers may now be connected directly to
|
|
|
|
logical switches with localnet ports, by specifying a
|
|
|
|
"redirect-chassis" on the distributed gateway port of the
|
|
|
|
logical router. NAT rules may be specified directly on the
|
|
|
|
distributed logical router, and are handled either centrally on
|
|
|
|
the "redirect-chassis", or in many cases are handled locally on
|
|
|
|
the hypervisor where the corresponding logical port resides.
|
|
|
|
Gratuitous ARP for NAT addresses on a distributed logical
|
|
|
|
router is not yet supported, but will be added in a future
|
|
|
|
version.
|
2016-09-14 16:51:27 -07:00
|
|
|
- Fixed regression in table stats maintenance introduced in OVS
|
|
|
|
2.3.0, wherein the number of OpenFlow table hits and misses was
|
|
|
|
not accurate.
|
2016-09-13 14:46:16 -07:00
|
|
|
- OpenFlow:
|
2016-09-14 16:51:27 -07:00
|
|
|
* OFPT_PACKET_OUT messages are now supported in bundles.
|
2016-09-16 09:39:13 -07:00
|
|
|
* A new "selection_method=dp_hash" type for OpenFlow select group
|
|
|
|
bucket selection that uses the datapath computed 5-tuple hash
|
|
|
|
without making datapath flows match the 5-tuple fields, which
|
|
|
|
is useful for more efficient load balancing, for example. This
|
|
|
|
uses the Netronome extension to OpenFlow 1.5+ that allows
|
|
|
|
control over the OpenFlow select groups selection method. See
|
|
|
|
"selection_method" and related options in ovs-ofctl(8) for
|
|
|
|
details.
|
2016-11-23 23:15:19 -08:00
|
|
|
* The "sample" action now supports "ingress" and "egress" options.
|
2016-12-22 10:58:25 -08:00
|
|
|
* The "ct" action now supports the TFTP ALG where support is available.
|
2017-01-06 08:19:53 -08:00
|
|
|
* New actions "clone" and "ct_clear".
|
2016-09-14 16:51:27 -07:00
|
|
|
- ovs-ofctl:
|
|
|
|
* 'bundle' command now supports packet-out messages.
|
|
|
|
* New syntax for 'ovs-ofctl packet-out' command, which uses the
|
|
|
|
same string parser as the 'bundle' command. The old 'packet-out'
|
|
|
|
syntax is deprecated and will be removed in a later OVS
|
|
|
|
release.
|
|
|
|
* New unixctl "ofctl/packet-out" command, which can be used to
|
|
|
|
instruct a flow monitor to issue OpenFlow packet-out messages.
|
2016-10-25 12:38:48 -04:00
|
|
|
- ovsdb-server:
|
|
|
|
* Remote connections can now be made read-only (see ovsdb-server(1)).
|
2016-04-19 18:36:04 -07:00
|
|
|
- Tunnels:
|
|
|
|
* TLV mappings for protocols such as Geneve are now segregated on
|
|
|
|
a per-OpenFlow bridge basis rather than globally. (The interface
|
|
|
|
has not changed.)
|
2016-09-24 11:44:53 -07:00
|
|
|
* Removed support for IPsec tunnels.
|
2016-10-04 13:58:30 +01:00
|
|
|
- DPDK:
|
|
|
|
* New option 'n_rxq_desc' and 'n_txq_desc' fields for DPDK interfaces
|
|
|
|
which set the number of rx and tx descriptors to use for the given port.
|
2016-11-25 10:41:11 +00:00
|
|
|
* Support for DPDK v16.11.
|
netdev-dpdk: Enable Rx checksum offloading feature on DPDK physical ports.
Add Rx checksum offloading feature support on DPDK physical ports. By default,
the Rx checksum offloading is enabled if NIC supports. However,
the checksum offloading can be turned OFF either while adding a new DPDK
physical port to OVS or at runtime.
The rx checksum offloading can be turned off by setting the parameter to
'false'. For eg: To disable the rx checksum offloading when adding a port,
'ovs-vsctl add-port br0 dpdk0 -- \
set Interface dpdk0 type=dpdk options:rx-checksum-offload=false'
OR (to disable at run time after port is being added to OVS)
'ovs-vsctl set Interface dpdk0 options:rx-checksum-offload=false'
Similarly to turn ON rx checksum offloading at run time,
'ovs-vsctl set Interface dpdk0 options:rx-checksum-offload=true'
The Tx checksum offloading support is not implemented due to the following
reasons.
1) Checksum offloading and vectorization are mutually exclusive in DPDK poll
mode driver. Vector packet processing is turned OFF when checksum offloading
is enabled which causes significant performance drop at Tx side.
2) Normally, OVS generates checksum for tunnel packets in software at the
'tunnel push' operation, where the tunnel headers are created. However
enabling Tx checksum offloading involves,
*) Mark every packets for tx checksum offloading at 'tunnel_push' and
recirculate.
*) At the time of xmit, validate the same flag and instruct the NIC to do the
checksum calculation. In case NIC doesnt support Tx checksum offloading,
the checksum calculation has to be done in software before sending out the
packets.
No significant performance improvement noticed with Tx checksum offloading
due to the e overhead of additional validations + non vector packet processing.
In some test scenarios, it introduces performance drop too.
Rx checksum offloading still offers 8-9% of improvement on VxLAN tunneling
decapsulation even though the SSE vector Rx function is disabled in DPDK poll
mode driver.
Signed-off-by: Sugesh Chandran <sugesh.chandran@intel.com>
Acked-by: Jesse Gross <jesse@kernel.org>
Acked-by: Pravin B Shelar <pshelar@ovn.org>
2017-01-02 14:27:48 -08:00
|
|
|
* Support for rx checksum offload. Refer DPDK HOWTO for details.
|
2017-01-05 10:42:08 +00:00
|
|
|
* Port Hotplug is now supported.
|
2017-01-05 10:42:09 +00:00
|
|
|
* DPDK physical ports can now have arbitrary names. The PCI address of
|
|
|
|
the device must be set using the 'dpdk-devargs' option. Compatibility
|
|
|
|
with the old dpdk<portid> naming scheme is broken, and as such a
|
|
|
|
device will not be available for use until a valid dpdk-devargs is
|
|
|
|
specified.
|
2017-01-05 10:42:10 +00:00
|
|
|
* Virtual DPDK Poll Mode Driver (vdev PMD) support.
|
2017-02-06 17:20:35 +00:00
|
|
|
* Removed experimental tag.
|
2016-10-18 15:04:42 -02:00
|
|
|
- Fedora packaging:
|
|
|
|
* A package upgrade does not automatically restart OVS service.
|
2016-11-20 20:34:41 +11:00
|
|
|
- ovs-vswitchd/ovs-vsctl:
|
|
|
|
* Ports now have a "protected" flag. Protected ports can not forward
|
|
|
|
frames to other protected ports. Unprotected ports can receive and
|
|
|
|
forward frames to protected and other unprotected ports.
|
2016-12-29 15:55:46 -07:00
|
|
|
- ovs-vsctl, ovn-nbctl, ovn-sbctl, vtep-ctl:
|
|
|
|
* Database commands now accept integer ranges, e.g. "set port
|
|
|
|
eth0 trunks=1-10" to enable trunking VLANs 1 to 10.
|
2016-08-06 20:49:40 -07:00
|
|
|
|
2016-10-06 13:51:08 -07:00
|
|
|
v2.6.0 - 27 Sep 2016
|
2015-12-03 23:20:25 -08:00
|
|
|
---------------------
|
2016-08-06 20:44:22 -07:00
|
|
|
- First supported release of OVN. See ovn-architecture(7) for more
|
|
|
|
details.
|
2015-10-15 14:08:23 -07:00
|
|
|
- ovsdb-server:
|
2016-07-18 11:45:55 +03:00
|
|
|
* New "monitor_cond" "monitor_cond_update" and "update2" extensions to
|
|
|
|
RFC 7047.
|
2016-01-07 08:57:44 -08:00
|
|
|
- OpenFlow:
|
2016-09-15 14:46:55 -07:00
|
|
|
* OpenFlow 1.3+ bundles now expire after 10 seconds since the
|
|
|
|
last time the bundle was either opened, modified, or closed.
|
2016-08-18 14:44:49 -07:00
|
|
|
* OpenFlow 1.3 Extension 230, adding OpenFlow Bundles support, is
|
|
|
|
now implemented.
|
2016-07-29 16:52:04 -07:00
|
|
|
* OpenFlow 1.3+ bundles are now supported for group mods as well as
|
|
|
|
flow mods and port mods. Both 'atomic' and 'ordered' bundle
|
|
|
|
flags are supported for group mods as well as flow mods.
|
2016-09-15 13:59:52 -07:00
|
|
|
* Internal OpenFlow rule representation for load and set-field
|
|
|
|
actions is now much more memory efficient. For a complex flow
|
|
|
|
table this can reduce rule memory consumption by 40%.
|
|
|
|
* Bundles are now much more memory efficient than in OVS 2.5.
|
|
|
|
Together with memory efficiency improvements in OpenFlow rule
|
|
|
|
representation, the peak OVS resident memory use during a
|
|
|
|
bundle commit for large complex set of flow mods can be only
|
|
|
|
25% of that in OVS 2.5 (4x lower).
|
2016-01-07 08:57:44 -08:00
|
|
|
* OpenFlow 1.1+ OFPT_QUEUE_GET_CONFIG_REQUEST now supports OFPP_ANY.
|
2016-01-18 16:00:05 -08:00
|
|
|
* OpenFlow 1.4+ OFPMP_QUEUE_DESC is now supported.
|
2016-02-18 15:54:26 +05:30
|
|
|
* OpenFlow 1.4+ OFPT_TABLE_STATUS is now supported.
|
2016-02-19 15:53:26 -08:00
|
|
|
* New property-based packet-in message format NXT_PACKET_IN2 with support
|
Implement serializing the state of packet traversal in "continuations".
One purpose of OpenFlow packet-in messages is to allow a controller to
interpose on the path of a packet through the flow tables. If, for
example, the controller needs to modify a packet in some way that the
switch doesn't directly support, the controller should be able to
program the switch to send it the packet, then modify the packet and
send it back to the switch to continue through the flow table.
That's the theory. In practice, this doesn't work with any but the
simplest flow tables. Packet-in messages simply don't include enough
context to allow the flow table traversal to continue. For example:
* Via "resubmit" actions, an Open vSwitch packet can have an
effective "call stack", but a packet-in can't describe it, and
so it would be lost.
* A packet-in can't preserve the stack used by NXAST_PUSH and
NXAST_POP actions.
* A packet-in can't preserve the OpenFlow 1.1+ action set.
* A packet-in can't preserve the state of Open vSwitch mirroring
or connection tracking.
This commit introduces a solution called "continuations". A continuation
is the state of a packet's traversal through OpenFlow flow tables. A
"controller" action with the "pause" flag, which is newly implemented in
this commit, generates a continuation and sends it to the OpenFlow
controller in a packet-in asynchronous message (only NXT_PACKET_IN2
supports continuations, so the controller must configure them with
NXT_SET_PACKET_IN_FORMAT). The controller processes the packet-in,
possibly modifying some of its data, and sends it back to the switch with
an NXT_RESUME request, which causes flow table traversal to continue. In
principle, a single packet can be paused and resumed multiple times.
Another way to look at it is:
- "pause" is an extension of the existing OFPAT_CONTROLLER
action. It sends the packet to the controller, with full
pipeline context (some of which is switch implementation
dependent, and may thus vary from switch to switch).
- A continuation is an extension of OFPT_PACKET_IN, allowing for
implementation dependent metadata.
- NXT_RESUME is an extension of OFPT_PACKET_OUT, with the
semantics that the pipeline processing is continued with the
original translation context from where it was left at the time
it was paused.
Signed-off-by: Ben Pfaff <blp@ovn.org>
Acked-by: Jarno Rajahalme <jarno@ovn.org>
2016-02-19 16:10:06 -08:00
|
|
|
for arbitrary user-provided data and for serializing flow table
|
|
|
|
traversal into a continuation for later resumption.
|
|
|
|
* New extension message NXT_SET_ASYNC_CONFIG2 to allow OpenFlow 1.4-like
|
|
|
|
control over asynchronous messages in earlier versions of OpenFlow.
|
2016-03-07 20:46:48 -08:00
|
|
|
* New OpenFlow extension NXM_NX_MPLS_TTL to provide access to MPLS TTL.
|
ofp-actions: Add truncate action.
The patch adds a new action to support packet truncation. The new action
is formatted as 'output(port=n,max_len=m)', as output to port n, with
packet size being MIN(original_size, m).
One use case is to enable port mirroring to send smaller packets to the
destination port so that only useful packet information is mirrored/copied,
saving some performance overhead of copying entire packet payload. Example
use case is below as well as shown in the testcases:
- Output to port 1 with max_len 100 bytes.
- The output packet size on port 1 will be MIN(original_packet_size, 100).
# ovs-ofctl add-flow br0 'actions=output(port=1,max_len=100)'
- The scope of max_len is limited to output action itself. The following
packet size of output:1 and output:2 will be intact.
# ovs-ofctl add-flow br0 \
'actions=output(port=1,max_len=100),output:1,output:2'
- The Datapath actions shows:
# Datapath actions: trunc(100),1,1,2
Tested-at: https://travis-ci.org/williamtu/ovs-travis/builds/140037134
Signed-off-by: William Tu <u9012063@gmail.com>
Acked-by: Pravin B Shelar <pshelar@ovn.org>
2016-06-24 07:42:30 -07:00
|
|
|
* New output option, output(port=N,max_len=M), to allow truncating a
|
|
|
|
packet to size M bytes when outputting to port N.
|
ofproto: Add relaxed group_mod command ADD_OR_MOD
This patch adds support for a new Group Mod command OFPGC_ADD_OR_MOD to
OVS for all OpenFlow versions that support groups (OF11 and higher).
The new ADD_OR_MOD creates a group that does not yet exist (like ADD)
and modifies an existing group (like MODIFY).
Rational: In OpenFlow 1.x the Group Mod commands OFPGC_ADD and
OFPGC_MODIFY have strict semantics: ADD fails if the group exists,
while MODIFY fails if the group does not exist. This requires a
controller to exactly know the state of the switch when programming a
group in order not run the risk of getting an OFP Error message in
response. This is hard to achieve and maintain at all times in view of
possible switch and controller restarts or other connection losses
between switch and controller.
Due to the un-acknowledged nature of the Group Mod message programming
groups safely and efficiently at the same time is virtually impossible
as the controller has to either query the existence of the group prior
to each Group Mod message or to insert a Barrier Request/Reply after
every group to be sure that no Error can be received at a later stage
and require a complicated roll-back of any dependent actions taken
between the failed Group Mod and the Error.
In the ovs-ofctl command line the ADD_OR_MOD command is made available
through the new option --may-create in the mod-group command:
$ ovs-ofctl -Oopenflow13 del-groups br-int group_id=100
$ ovs-ofctl -Oopenflow13 mod-group br-int
group_id=100,type=indirect,bucket=actions=2 OFPT_ERROR (OF1.3)
(xid=0x2): OFPGMFC_UNKNOWN_GROUP OFPT_GROUP_MOD (OF1.3) (xid=0x2):
MOD group_id=100,type=indirect,bucket=actions=output:2
$ ovs-ofctl -Oopenflow13 --may-create mod-group br-int
group_id=100,type=indirect,bucket=actions=2
$ ovs-ofctl -Oopenflow13 dump-groups br-int
OFPST_GROUP_DESC reply (OF1.3) (xid=0x2):
group_id=100,type=indirect,bucket=actions=output:2
$ ovs-ofctl -Oopenflow13 --may-create mod-group br-int
group_id=100,type=indirect,bucket=actions=3
$ ovs-ofctl -Oopenflow13 dump-groups br-int
OFPST_GROUP_DESC reply (OF1.3) (xid=0x2):
group_id=100,type=indirect,bucket=actions=output:3
Signed-off-by: Jan Scheurich <jan.scheurich at web.de>
Signed-off-by: Ben Pfaff <blp@ovn.org>
2016-06-29 00:29:25 +02:00
|
|
|
* New command OFPGC_ADD_OR_MOD for OFPT_GROUP_MOD message that adds a
|
|
|
|
new group or modifies an existing groups
|
2016-08-29 11:38:40 -07:00
|
|
|
* The optional OpenFlow packet buffering feature is deprecated in
|
|
|
|
this release, and will be removed in the next OVS release
|
|
|
|
(2.7). After the change OVS always sends the 'buffer_id' as
|
|
|
|
0xffffffff in packet-in messages and will send an error
|
|
|
|
response if any other value of this field is included in
|
|
|
|
packet-out and flow mod sent by a controller. Controllers are
|
|
|
|
already expected to work properly in cases where the switch can
|
|
|
|
not buffer packets, so this change should not affect existing
|
|
|
|
users.
|
2016-08-18 14:09:41 -07:00
|
|
|
* New OpenFlow extension NXT_CT_FLUSH_ZONE to flush conntrack zones.
|
2016-07-13 16:50:33 -07:00
|
|
|
- Improved OpenFlow version compatibility for actions:
|
2016-07-14 08:27:21 -07:00
|
|
|
* New OpenFlow extension to support the "group" action in OpenFlow 1.0.
|
2016-07-13 15:53:20 -07:00
|
|
|
* OpenFlow 1.0 "enqueue" action now properly translated to OpenFlow 1.1+.
|
2016-07-13 16:41:00 -07:00
|
|
|
* OpenFlow 1.1 "mod_nw_ecn" and OpenFlow 1.1+ "mod_nw_ttl" actions now
|
|
|
|
properly translated to OpenFlow 1.0.
|
2016-01-18 16:00:05 -08:00
|
|
|
- ovs-ofctl:
|
|
|
|
* queue-get-config command now allows a queue ID to be specified.
|
2016-07-29 16:52:04 -07:00
|
|
|
* '--bundle' option can now be used with OpenFlow 1.3 and with group mods.
|
|
|
|
* New "bundle" command allows executing a mixture of flow and group mods
|
|
|
|
as a single atomic transaction.
|
2016-03-02 15:56:22 +01:00
|
|
|
* New option "--color" to produce colorized output for some commands.
|
ofproto: Add relaxed group_mod command ADD_OR_MOD
This patch adds support for a new Group Mod command OFPGC_ADD_OR_MOD to
OVS for all OpenFlow versions that support groups (OF11 and higher).
The new ADD_OR_MOD creates a group that does not yet exist (like ADD)
and modifies an existing group (like MODIFY).
Rational: In OpenFlow 1.x the Group Mod commands OFPGC_ADD and
OFPGC_MODIFY have strict semantics: ADD fails if the group exists,
while MODIFY fails if the group does not exist. This requires a
controller to exactly know the state of the switch when programming a
group in order not run the risk of getting an OFP Error message in
response. This is hard to achieve and maintain at all times in view of
possible switch and controller restarts or other connection losses
between switch and controller.
Due to the un-acknowledged nature of the Group Mod message programming
groups safely and efficiently at the same time is virtually impossible
as the controller has to either query the existence of the group prior
to each Group Mod message or to insert a Barrier Request/Reply after
every group to be sure that no Error can be received at a later stage
and require a complicated roll-back of any dependent actions taken
between the failed Group Mod and the Error.
In the ovs-ofctl command line the ADD_OR_MOD command is made available
through the new option --may-create in the mod-group command:
$ ovs-ofctl -Oopenflow13 del-groups br-int group_id=100
$ ovs-ofctl -Oopenflow13 mod-group br-int
group_id=100,type=indirect,bucket=actions=2 OFPT_ERROR (OF1.3)
(xid=0x2): OFPGMFC_UNKNOWN_GROUP OFPT_GROUP_MOD (OF1.3) (xid=0x2):
MOD group_id=100,type=indirect,bucket=actions=output:2
$ ovs-ofctl -Oopenflow13 --may-create mod-group br-int
group_id=100,type=indirect,bucket=actions=2
$ ovs-ofctl -Oopenflow13 dump-groups br-int
OFPST_GROUP_DESC reply (OF1.3) (xid=0x2):
group_id=100,type=indirect,bucket=actions=output:2
$ ovs-ofctl -Oopenflow13 --may-create mod-group br-int
group_id=100,type=indirect,bucket=actions=3
$ ovs-ofctl -Oopenflow13 dump-groups br-int
OFPST_GROUP_DESC reply (OF1.3) (xid=0x2):
group_id=100,type=indirect,bucket=actions=output:3
Signed-off-by: Jan Scheurich <jan.scheurich at web.de>
Signed-off-by: Ben Pfaff <blp@ovn.org>
2016-06-29 00:29:25 +02:00
|
|
|
* New option '--may-create' to use OFPGC_ADD_OR_MOD in mod-group command.
|
2016-06-24 17:10:07 -07:00
|
|
|
- IPFIX:
|
|
|
|
* New "sampling_port" option for "sample" action to allow sampling
|
|
|
|
ingress and egress tunnel metadata with IPFIX.
|
|
|
|
* New ovs-ofctl commands "dump-ipfix-bridge" and "dump-ipfix-flow" to
|
|
|
|
dump bridge IPFIX statistics and flow based IPFIX statistics.
|
|
|
|
* New setting other-config:virtual_obs_id to add an arbitrary string
|
|
|
|
to IPFIX records.
|
2016-06-13 14:00:19 +05:30
|
|
|
- Linux:
|
2016-08-18 14:44:49 -07:00
|
|
|
* OVS Linux datapath now implements Conntrack NAT action with all
|
|
|
|
supported Linux kernels.
|
|
|
|
* Support for truncate action.
|
2016-06-13 14:00:19 +05:30
|
|
|
* New QoS type "linux-noop" that prevents Open vSwitch from trying to
|
|
|
|
manage QoS for a given port (useful when other software manages QoS).
|
2016-01-21 17:15:18 +03:00
|
|
|
- DPDK:
|
|
|
|
* New option "n_rxq" for PMD interfaces.
|
|
|
|
Old 'other_config:n-dpdk-rxqs' is no longer supported.
|
2016-07-08 16:52:37 +03:00
|
|
|
Not supported by vHost interfaces. For them number of rx and tx queues
|
|
|
|
is applied from connected virtio device.
|
2016-07-27 17:44:44 +03:00
|
|
|
* New 'other_config:pmd-rxq-affinity' field for PMD interfaces, that
|
|
|
|
allows to pin port's rx queues to desired cores.
|
2016-02-08 10:38:47 +03:00
|
|
|
* New appctl command 'dpif-netdev/pmd-rxq-show' to check the port/rxq
|
|
|
|
assignment.
|
|
|
|
* Type of log messages from PMD threads changed from INFO to DBG.
|
2016-03-02 20:35:54 +00:00
|
|
|
* QoS functionality with sample egress-policer implementation.
|
2016-04-29 13:44:01 -04:00
|
|
|
* The mechanism for configuring DPDK has changed to use database
|
|
|
|
* Sensible defaults have been introduced for many of the required
|
|
|
|
configuration options
|
|
|
|
* DB entries have been added for many of the DPDK EAL command line
|
2016-04-29 13:44:04 -04:00
|
|
|
arguments. Additional arguments can be passed via the dpdk-extra
|
|
|
|
entry.
|
2016-05-24 17:36:51 +01:00
|
|
|
* Add ingress policing functionality.
|
2016-06-13 11:10:09 +01:00
|
|
|
* PMD threads servicing vHost User ports can now come from the NUMA
|
|
|
|
node that device memory is located on if CONFIG_RTE_LIBRTE_VHOST_NUMA
|
|
|
|
is enabled in DPDK.
|
2015-11-15 22:07:25 -08:00
|
|
|
* Basic connection tracking for the userspace datapath (no ALG,
|
|
|
|
fragmentation or NAT support yet)
|
2016-08-03 13:29:24 +01:00
|
|
|
* Support for DPDK 16.07
|
2016-08-10 15:28:27 +01:00
|
|
|
* Optional support for DPDK pdump enabled.
|
2016-08-09 17:01:20 +01:00
|
|
|
* Jumbo frame support
|
2016-08-15 16:11:24 +01:00
|
|
|
* Remove dpdkvhostcuse port type.
|
2016-08-15 16:11:26 +01:00
|
|
|
* OVS client mode for vHost and vHost reconnect (Requires QEMU 2.7)
|
2016-08-19 10:22:30 +01:00
|
|
|
* 'dpdkvhostuserclient' port type.
|
2016-06-23 17:54:26 -07:00
|
|
|
- Increase number of registers to 16.
|
2016-02-05 16:00:49 -08:00
|
|
|
- ovs-benchmark: This utility has been removed due to lack of use and
|
|
|
|
bitrot.
|
2016-02-03 13:41:34 -08:00
|
|
|
- ovs-appctl:
|
|
|
|
* New "vlog/close" command.
|
2016-03-24 13:42:29 -04:00
|
|
|
- ovs-ctl:
|
|
|
|
* Added the ability to selectively start the forwarding and database
|
|
|
|
functions (ovs-vswitchd and ovsdb-server, respectively).
|
2016-02-10 14:33:45 -08:00
|
|
|
- ovsdb-server:
|
|
|
|
* Remove max number of sessions limit, to enable connection scaling
|
|
|
|
testing.
|
2015-12-18 14:53:32 -05:00
|
|
|
- python:
|
|
|
|
* Added support for Python 3.4+ in addition to existing support
|
|
|
|
for 2.7+.
|
2016-01-19 09:59:12 -08:00
|
|
|
- SELinux:
|
|
|
|
* Introduced SELinux policy package.
|
2016-02-29 09:54:15 -08:00
|
|
|
- Datapath Linux kernel compatibility.
|
|
|
|
* Dropped support for kernel older than 3.10.
|
2016-04-25 11:27:58 -07:00
|
|
|
* Removed VLAN splinters feature.
|
2016-08-22 01:15:51 -07:00
|
|
|
* Datapath supports kernel upto 4.7.
|
2016-03-24 09:30:57 -07:00
|
|
|
- Tunnels:
|
|
|
|
* Flow based tunnel match and action can be used for IPv6 address using
|
|
|
|
tun_ipv6_src, tun_ipv6_dst fields.
|
2016-07-08 16:24:19 -07:00
|
|
|
* Added support for IPv6 tunnels, for details checkout FAQ.
|
2016-09-20 10:52:58 -07:00
|
|
|
* Deprecated support for IPsec tunnels ports.
|
2016-06-08 17:49:55 -04:00
|
|
|
- A wrapper script, 'ovs-tcpdump', to easily port-mirror an OVS port and
|
|
|
|
watch with tcpdump
|
2016-06-20 14:19:40 -07:00
|
|
|
- Introduce --no-self-confinement flag that allows daemons to work with
|
|
|
|
sockets outside their run directory.
|
2016-07-01 18:05:40 -07:00
|
|
|
- ovs-pki: Changed message digest algorithm from SHA-1 to SHA-512 because
|
|
|
|
SHA-1 is no longer secure and some operating systems have started to
|
|
|
|
disable it in OpenSSL.
|
2016-08-09 17:01:15 +01:00
|
|
|
- Add 'mtu_request' column to the Interface table. It can be used to
|
2016-09-02 09:53:00 -07:00
|
|
|
configure the MTU of the ports.
|
2016-07-01 18:05:40 -07:00
|
|
|
|
2016-09-15 16:26:05 -07:00
|
|
|
Known issues:
|
|
|
|
- Using openvswitch module in conjunction with upstream Linux tunnels:
|
|
|
|
* When using the openvswitch module distributed with OVS against kernel
|
|
|
|
versions 4.4 to 4.6, the openvswitch module cannot be loaded or used at
|
|
|
|
the same time as "ip_gre".
|
|
|
|
- Conntrack FTP ALGs: When using the openvswitch module distributed with
|
|
|
|
OVS, particular Linux distribution kernels versions may provide diminished
|
|
|
|
functionality. This typically affects active FTP data connections when
|
|
|
|
using "actions=ct(alg=ftp),..." in flow tables. Specifically:
|
|
|
|
* Centos 7.1 kernels (3.10.0-2xx) kernels are unable to correctly set
|
|
|
|
up expectations for FTP data connections in multiple zones,
|
|
|
|
eg "actions=ct(zone=1,alg=ftp),ct(zone=2,alg=ftp),...". Executing the
|
|
|
|
"ct" action for subsequent data connections may fail to determine that
|
|
|
|
the data connection is "related" to an existing connection.
|
|
|
|
* Centos 7.2 kernels (3.10.0-3xx) kernels may not establish FTP ALG state
|
|
|
|
correctly for NATed connections. As a result, flows that perform NAT,
|
|
|
|
eg "actions=ct(nat,ftp=alg,table=1),..." may fail to NAT the packet,
|
|
|
|
and will populate the "ct_state=inv" bit in the flow.
|
|
|
|
|
2015-12-03 23:20:25 -08:00
|
|
|
|
2016-03-16 13:31:35 -07:00
|
|
|
v2.5.0 - 26 Feb 2016
|
2015-06-17 16:12:46 -07:00
|
|
|
---------------------
|
2015-06-10 09:04:22 -07:00
|
|
|
- Dropped support for Python older than version 2.7. As a consequence,
|
|
|
|
using Open vSwitch 2.5 or later on XenServer 6.5 or earlier (which
|
|
|
|
have Python 2.4) requires first installing Python 2.7.
|
2015-06-22 15:15:40 -07:00
|
|
|
- OpenFlow:
|
|
|
|
* Group chaining (where one OpenFlow group triggers another) is
|
|
|
|
now supported.
|
2015-07-03 08:45:15 -07:00
|
|
|
* OpenFlow 1.4+ "importance" is now considered for flow eviction.
|
2015-07-02 20:33:08 -07:00
|
|
|
* OpenFlow 1.4+ OFPTC_EVICTION is now implemented.
|
2015-11-24 17:49:42 +05:30
|
|
|
* OpenFlow 1.4+ OFPTC_VACANCY_EVENTS is now implemented.
|
2015-07-02 20:35:44 -07:00
|
|
|
* OpenFlow 1.4+ OFPMP_TABLE_DESC is now implemented.
|
2015-10-20 22:03:02 -07:00
|
|
|
* Allow modifying the ICMPv4/ICMPv6 type and code fields.
|
2015-12-07 16:49:58 -08:00
|
|
|
* OpenFlow 1.4+ OFPT_SET_ASYNC_CONFIG and OFPT_GET_ASYNC_CONFIG are
|
|
|
|
now implemented.
|
2015-09-08 15:21:45 -07:00
|
|
|
- ovs-ofctl:
|
|
|
|
* New "out_group" keyword for OpenFlow 1.1+ matching on output group.
|
2015-12-07 16:49:58 -08:00
|
|
|
- Tunnels:
|
|
|
|
* Geneve tunnels can now match and set options and the OAM bit.
|
|
|
|
* The nonstandard GRE64 tunnel extension has been dropped.
|
2015-07-01 16:12:12 -03:00
|
|
|
- Support Multicast Listener Discovery (MLDv1 and MLDv2).
|
2015-07-06 12:58:24 -05:00
|
|
|
- Add 'symmetric_l3l4' and 'symmetric_l3l4+udp' hash functions.
|
2015-07-17 21:37:02 -07:00
|
|
|
- sFlow agent now reports tunnel and MPLS structures.
|
2015-08-07 19:40:37 +01:00
|
|
|
- New 'check-system-userspace', 'check-kmod' and 'check-kernel' Makefile
|
|
|
|
targets to run a new system testsuite. These tests can be run inside
|
|
|
|
a Vagrant box. See INSTALL.md for details
|
2015-09-15 19:40:47 -07:00
|
|
|
- Mark --syslog-target argument as deprecated. It will be removed in
|
|
|
|
the next OVS release.
|
2015-09-11 11:26:39 -07:00
|
|
|
- Added --user option to all daemons
|
Add support for connection tracking.
This patch adds a new action and fields to OVS that allow connection
tracking to be performed. This support works in conjunction with the
Linux kernel support merged into the Linux-4.3 development cycle.
Packets have two possible states with respect to connection tracking:
Untracked packets have not previously passed through the connection
tracker, while tracked packets have previously been through the
connection tracker. For OpenFlow pipeline processing, untracked packets
can become tracked, and they will remain tracked until the end of the
pipeline. Tracked packets cannot become untracked.
Connections can be unknown, uncommitted, or committed. Packets which are
untracked have unknown connection state. To know the connection state,
the packet must become tracked. Uncommitted connections have no
connection state stored about them, so it is only possible for the
connection tracker to identify whether they are a new connection or
whether they are invalid. Committed connections have connection state
stored beyond the lifetime of the packet, which allows later packets in
the same connection to be identified as part of the same established
connection, or related to an existing connection - for instance ICMP
error responses.
The new 'ct' action transitions the packet from "untracked" to
"tracked" by sending this flow through the connection tracker.
The following parameters are supported initally:
- "commit": When commit is executed, the connection moves from
uncommitted state to committed state. This signals that information
about the connection should be stored beyond the lifetime of the
packet within the pipeline. This allows future packets in the same
connection to be recognized as part of the same "established" (est)
connection, as well as identifying packets in the reply (rpl)
direction, or packets related to an existing connection (rel).
- "zone=[u16|NXM]": Perform connection tracking in the zone specified.
Each zone is an independent connection tracking context. When the
"commit" parameter is used, the connection will only be committed in
the specified zone, and not in other zones. This is 0 by default.
- "table=NUMBER": Fork pipeline processing in two. The original instance
of the packet will continue processing the current actions list as an
untracked packet. An additional instance of the packet will be sent to
the connection tracker, which will be re-injected into the OpenFlow
pipeline to resume processing in the specified table, with the
ct_state and other ct match fields set. If the table is not specified,
then the packet is submitted to the connection tracker, but the
pipeline does not fork and the ct match fields are not populated. It
is strongly recommended to specify a table later than the current
table to prevent loops.
When the "table" option is used, the packet that continues processing in
the specified table will have the ct_state populated. The ct_state may
have any of the following flags set:
- Tracked (trk): Connection tracking has occurred.
- Reply (rpl): The flow is in the reply direction.
- Invalid (inv): The connection tracker couldn't identify the connection.
- New (new): This is the beginning of a new connection.
- Established (est): This is part of an already existing connection.
- Related (rel): This connection is related to an existing connection.
For more information, consult the ovs-ofctl(8) man pages.
Below is a simple example flow table to allow outbound TCP traffic from
port 1 and drop traffic from port 2 that was not initiated by port 1:
table=0,priority=1,action=drop
table=0,arp,action=normal
table=0,in_port=1,tcp,ct_state=-trk,action=ct(commit,zone=9),2
table=0,in_port=2,tcp,ct_state=-trk,action=ct(zone=9,table=1)
table=1,in_port=2,ct_state=+trk+est,tcp,action=1
table=1,in_port=2,ct_state=+trk+new,tcp,action=drop
Based on original design by Justin Pettit, contributions from Thomas
Graf and Daniele Di Proietto.
Signed-off-by: Joe Stringer <joestringer@nicira.com>
Acked-by: Jarno Rajahalme <jrajahalme@nicira.com>
Acked-by: Ben Pfaff <blp@nicira.com>
2015-08-11 10:56:09 -07:00
|
|
|
- Add support for connection tracking through the new "ct" action
|
Add connection tracking label support.
This patch adds a new 128-bit metadata field to the connection tracking
interface. When a label is specified as part of the ct action and the
connection is committed, the value is saved with the current connection.
Subsequent ct lookups with the table specified will expose this metadata
as the "ct_label" field in the flow.
For example, to allow new TCP connections from port 1->2 and only allow
established connections from port 2->1, and to associate a label with
those connections:
table=0,priority=1,action=drop
table=0,arp,action=normal
table=0,in_port=1,tcp,action=ct(commit,exec(set_field:1->ct_label)),2
table=0,in_port=2,ct_state=-trk,tcp,action=ct(table=1)
table=1,in_port=2,ct_state=+trk,ct_label=1,tcp,action=1
Signed-off-by: Joe Stringer <joestringer@nicira.com>
Acked-by: Jarno Rajahalme <jrajahalme@nicira.com>
Acked-by: Ben Pfaff <blp@nicira.com>
2015-10-13 11:13:10 -07:00
|
|
|
and "ct_state"/"ct_zone"/"ct_mark"/"ct_label" match fields. Only
|
|
|
|
available on Linux kernels with the connection tracking module loaded.
|
2015-12-02 10:16:26 -05:00
|
|
|
- Add experimental version of OVN. OVN, the Open Virtual Network, is a
|
|
|
|
system to support virtual network abstraction. OVN complements the
|
|
|
|
existing capabilities of OVS to add native support for virtual network
|
|
|
|
abstractions, such as virtual L2 and L3 overlays and security groups.
|
2015-12-01 16:48:04 +02:00
|
|
|
- RHEL packaging:
|
|
|
|
* DPDK ports may now be created via network scripts (see README.RHEL).
|
2016-01-26 16:58:14 -02:00
|
|
|
- DPDK:
|
|
|
|
* Requires DPDK 2.2
|
|
|
|
* Added multiqueue support to vhost-user
|
2016-02-24 17:30:57 +00:00
|
|
|
* Note: QEMU 2.5+ required for multiqueue support
|
2015-06-17 16:12:46 -07:00
|
|
|
|
2015-08-20 17:23:56 -07:00
|
|
|
v2.4.0 - 20 Aug 2015
|
2014-05-15 14:12:06 -07:00
|
|
|
---------------------
|
2015-06-11 15:53:43 -07:00
|
|
|
- Flow table modifications are now atomic, meaning that each packet
|
|
|
|
now sees a coherent version of the OpenFlow pipeline. For
|
|
|
|
example, if a controller removes all flows with a single OpenFlow
|
|
|
|
"flow_mod", no packet sees an intermediate version of the OpenFlow
|
|
|
|
pipeline where only some of the flows have been deleted.
|
2015-06-05 14:03:12 -07:00
|
|
|
- Added support for SFQ, FQ_CoDel and CoDel qdiscs.
|
2015-02-11 11:08:57 -08:00
|
|
|
- Add bash command-line completion support for ovs-vsctl Please check
|
|
|
|
utilities/ovs-command-compgen.INSTALL.md for how to use.
|
mac-learning: Implement per-port MAC learning fairness.
In "MAC flooding", an attacker transmits an overwhelming number of frames
with unique Ethernet source address on a switch port. The goal is to
force the switch to evict all useful MAC learning table entries, so that
its behavior degenerates to that of a hub, flooding all traffic. In turn,
that allows an attacker to eavesdrop on the traffic of other hosts attached
to the switch, with all the risks that that entails.
Before this commit, the Open vSwitch "normal" action that implements its
standalone switch behavior (and that can be used by OpenFlow controllers
as well) was vulnerable to MAC flooding attacks. This commit fixes the
problem by implementing per-port fairness for MAC table entries: when
the MAC table is at its maximum size, MAC table eviction always deletes an
entry from the port with the most entries. Thus, MAC entries will never
be evicted from ports with only a few entries if a port with a huge number
of entries exists.
Controllers could introduce their own MAC flooding vulnerabilities into
OVS. For a controller that adds destination MAC based flows to an OpenFlow
flow table as a reaction to "packet-in" events, such a bug, if it exists,
would be in the controller code itself and would need to be fixed in the
controller. For a controller that relies on the Open vSwitch "learn"
action to add destination MAC based flows, Open vSwitch has existing
support for eviction policy similar to that implemented in this commit
through the "groups" column in the Flow_Table table documented in
ovs-vswitchd.conf.db(5); we recommend that users of "learn" not already
familiar with eviction groups to read that documentation.
In addition to implementation of per-port MAC learning fairness,
this commit includes some closely related changes:
- Access to client-provided "port" data in struct mac_entry
is now abstracted through helper functions, which makes it
easier to ensure that the per-port data structures are maintained
consistently.
- The mac_learning_changed() function, which had become trivial,
vestigial, and confusing, was removed. Its functionality was folded
into the new function mac_entry_set_port().
- Many comments were added and improved; there had been a lot of
comment rot in previous versions.
CERT: VU#784996
Reported-by: "Ronny L. Bull - bullrl" <bullrl@clarkson.edu>
Reported-at: http://www.irongeek.com/i.php?page=videos/derbycon4/t314-exploring-layer-2-network-security-in-virtualized-environments-ronny-l-bull-dr-jeanna-n-matthews
Signed-off-by: Ben Pfaff <blp@nicira.com>
Acked-by: Ethan Jackson <ethan@nicira.com>
2015-02-11 23:34:50 -08:00
|
|
|
- The MAC learning feature now includes per-port fairness to mitigate
|
|
|
|
MAC flooding attacks.
|
2015-01-11 13:25:24 -08:00
|
|
|
- New support for a "conjunctive match" OpenFlow extension, which
|
|
|
|
allows constructing OpenFlow matches of the form "field1 in
|
|
|
|
{a,b,c...} AND field2 in {d,e,f...}" and generalizations. For details,
|
2015-01-19 15:45:53 +02:00
|
|
|
see documentation for the "conjunction" action in ovs-ofctl(8).
|
utilities: Add bash command-line completion script.
This patch adds bash command-line completion script for ovs-appctl,
ovs-dpctl, ovs-ofctl and ovsdb-tool command. Right now, the script
can do the following:
- display available completion or complete on unfinished user input
(long option, subcommand, and argument).
- once the subcommand (e.g. ofproto/trace) has been given, the
script will print the subcommand format.
- the script can convert between keywords like 'bridge/port/interface/dp'
and the available record in ovsdb.
The limitations are:
- only support small set of important keywords
(dp, datapath, bridge, switch, port, interface, iface).
- does not support parsing of nested options
(e.g. ovsdb-tool create [db [schema]]).
- does not support expansion on repeatitive argument
(e.g. ovs-dpctl show [dp...]).
- only support matching on long options, and only in the format
(--option [arg], i.e. should not use --option=[arg]).
To use the script, either copy it inside /etc/bash_completion.d/
or manually run it via . ovs-command-compgen.bash.
Also, a unit testsuite is provided as ovs-command-compgen-test.bash.
It is suggested that this test script be run only inside
tutorial/sandbox directory.
For more info please refer to utilities/ovs-command-compgen.INSTALL.md.
Signed-off-by: Alex Wang <alexw@nicira.com>
Acked-by: Ben Pfaff <blp@nicira.com>
2014-10-19 21:36:58 -07:00
|
|
|
- Add bash command-line completion support for ovs-appctl/ovs-dpctl/
|
|
|
|
ovs-ofctl/ovsdb-tool commands. Please check
|
|
|
|
utilities/ovs-command-compgen.INSTALL.md for how to use.
|
2014-06-05 21:53:34 -07:00
|
|
|
- The "learn" action supports a new flag "delete_learned" that causes
|
|
|
|
the learned flows to be deleted when the flow with the "learn" action
|
|
|
|
is deleted.
|
2014-06-05 19:07:32 -07:00
|
|
|
- Basic support for the Geneve tunneling protocol. It is not yet
|
|
|
|
possible to generate or match options. This is planned for a future
|
|
|
|
release. The protocol is documented at
|
|
|
|
http://tools.ietf.org/html/draft-gross-geneve-00
|
2014-07-17 10:31:03 -07:00
|
|
|
- The OVS database now reports controller rate limiting statistics.
|
2014-06-27 11:19:59 -07:00
|
|
|
- sflow now exports information about LACP-based bonds, port names, and
|
2014-12-16 14:42:05 -08:00
|
|
|
OpenFlow port numbers, as well as datapath performance counters.
|
2014-07-17 17:26:00 -07:00
|
|
|
- ovs-dpctl functionality is now available for datapaths integrated
|
|
|
|
into ovs-vswitchd, via ovs-appctl. Some existing ovs-appctl
|
|
|
|
commands are now redundant and will be removed in a future
|
|
|
|
release. See ovs-vswitchd(8) for details.
|
2014-07-28 09:50:37 -07:00
|
|
|
- OpenFlow:
|
2015-06-12 16:12:56 -07:00
|
|
|
* OpenFlow 1.4 bundles are now supported for flow mods and port
|
|
|
|
mods. For flow mods, both 'atomic' and 'ordered' bundle flags
|
|
|
|
are trivially supported, as all bundled messages are executed
|
|
|
|
in the order they were added and all flow table modifications
|
|
|
|
are now atomic to the datapath. Port mods may not appear in
|
|
|
|
atomic bundles, as port status modifications are not atomic.
|
2014-12-23 23:42:05 +00:00
|
|
|
* IPv6 flow label and neighbor discovery fields are now modifiable.
|
2015-02-24 21:02:50 -08:00
|
|
|
* OpenFlow 1.5 extended registers are now supported.
|
|
|
|
* The OpenFlow 1.5 actset_output field is now supported.
|
|
|
|
* OpenFlow 1.5 Copy-Field action is now supported.
|
|
|
|
* OpenFlow 1.5 masked Set-Field action is now supported.
|
2014-08-11 12:42:35 -07:00
|
|
|
* OpenFlow 1.3+ table features requests are now supported (read-only).
|
2014-08-15 01:01:50 +02:00
|
|
|
* Nicira extension "move" actions may now be included in action sets.
|
2014-08-31 00:24:46 -07:00
|
|
|
* "resubmit" actions may now be included in action sets. The resubmit
|
|
|
|
is executed last, and only if the action set has no "output" or "group"
|
|
|
|
action.
|
2014-11-07 18:18:48 +05:30
|
|
|
* OpenFlow 1.4+ flow "importance" is now maintained in the flow table.
|
2015-03-20 13:50:34 +09:00
|
|
|
* A new Netronome extension to OpenFlow 1.5+ allows control over the
|
|
|
|
fields hashed for OpenFlow select groups. See "selection_method" and
|
|
|
|
related options in ovs-ofctl(8) for details.
|
2015-06-05 14:03:12 -07:00
|
|
|
- ovs-ofctl has a new '--bundle' option that makes the flow mod commands
|
|
|
|
('add-flow', 'add-flows', 'mod-flows', 'del-flows', and 'replace-flows')
|
|
|
|
use an OpenFlow 1.4 bundle to operate the modifications as a single
|
2015-06-11 15:53:43 -07:00
|
|
|
atomic transaction. If any of the flow mods in a transaction fail, none
|
|
|
|
of them are executed. All flow mods in a bundle appear to datapath
|
|
|
|
lookups simultaneously.
|
2015-06-05 14:03:12 -07:00
|
|
|
- ovs-ofctl 'add-flow' and 'add-flows' commands now accept arbitrary flow
|
|
|
|
mods as an input by allowing the flow specification to start with an
|
|
|
|
explicit 'add', 'modify', 'modify_strict', 'delete', or 'delete_strict'
|
|
|
|
keyword. A missing keyword is treated as 'add', so this is fully
|
|
|
|
backwards compatible. With the new '--bundle' option all the flow mods
|
2015-06-11 15:53:43 -07:00
|
|
|
are executed as a single atomic transaction using an OpenFlow 1.4 bundle.
|
2014-09-22 15:34:12 -07:00
|
|
|
- ovs-pki: Changed message digest algorithm from MD5 to SHA-1 because
|
2014-09-19 16:17:09 -07:00
|
|
|
MD5 is no longer secure and some operating systems have started to disable
|
|
|
|
it in OpenSSL.
|
2014-08-19 17:28:55 -06:00
|
|
|
- ovsdb-server: New OVSDB protocol extension allows inequality tests on
|
|
|
|
"optional scalar" columns. See ovsdb-server(1) for details.
|
2014-09-26 16:00:44 -07:00
|
|
|
- ovs-vsctl now permits immutable columns in a new row to be modified in
|
|
|
|
the same transaction that creates the row.
|
2014-08-15 10:32:50 -07:00
|
|
|
- test-controller has been renamed ovs-testcontroller at request of users
|
|
|
|
who find it useful for testing basic OpenFlow setups. It is still not
|
|
|
|
a necessary or desirable part of most Open vSwitch deployments.
|
2014-09-01 14:52:13 +02:00
|
|
|
- Support for travis-ci.org based continuous integration builds has been
|
2014-10-28 11:19:52 +01:00
|
|
|
added. Build failures are reported to build@openvswitch.org. See INSTALL.md
|
2014-09-01 14:52:13 +02:00
|
|
|
file for additional details.
|
2014-11-20 18:49:09 +01:00
|
|
|
- Support for the Rapid Spanning Tree Protocol (IEEE 802.1D-2004).
|
|
|
|
The implementation has been tested successfully against the Ixia Automated
|
|
|
|
Network Validation Library (ANVL).
|
2014-09-12 16:00:50 -07:00
|
|
|
- Stats are no longer updated on fake bond interface.
|
2014-10-04 23:35:30 -07:00
|
|
|
- Keep active bond slave selection across OVS restart.
|
2014-10-14 00:51:52 -07:00
|
|
|
- A simple wrapper script, 'ovs-docker', to integrate OVS with Docker
|
2014-10-29 05:54:45 -07:00
|
|
|
containers. If and when there is a native integration of Open vSwitch
|
|
|
|
with Docker, the wrapper script will be retired.
|
2015-03-26 13:51:06 -07:00
|
|
|
- Added support for DPDK Tunneling. VXLAN, GRE, and Geneve are supported
|
|
|
|
protocols. This is generic tunneling mechanism for userspace datapath.
|
2015-06-17 14:12:20 -03:00
|
|
|
- Support for multicast snooping (IGMPv1, IGMPv2 and IGMPv3)
|
2015-04-09 18:40:51 -07:00
|
|
|
- Support for Linux kernels up to 4.0.x
|
2015-01-06 13:05:00 -08:00
|
|
|
- The documentation now use the term 'destination' to mean one of syslog,
|
|
|
|
console or file for vlog logging instead of the previously used term
|
|
|
|
'facility'.
|
2015-02-14 15:13:17 +01:00
|
|
|
- Support for VXLAN Group Policy extension
|
2015-02-20 14:17:11 -05:00
|
|
|
- Initial support for the IETF Auto-Attach SPBM draft standard. This
|
|
|
|
contains rudimentary support for the LLDP protocol as needed for
|
|
|
|
Auto-Attach.
|
2015-03-11 13:32:01 -07:00
|
|
|
- The default OpenFlow and OVSDB ports are now the IANA-assigned
|
|
|
|
numbers. OpenFlow is 6653 and OVSDB is 6640.
|
2015-03-05 13:42:04 -08:00
|
|
|
- Support for DPDK vHost.
|
2015-03-24 07:42:47 -07:00
|
|
|
- Support for outer UDP checksums in Geneve and VXLAN.
|
2015-04-22 09:49:43 +02:00
|
|
|
- The kernel vports with dependencies are no longer part of the overall
|
|
|
|
openvswitch.ko but built and loaded automatically as individual kernel
|
|
|
|
modules (vport-*.ko).
|
2015-04-09 20:12:32 -07:00
|
|
|
- Support for STT tunneling.
|
2015-06-16 08:38:46 -07:00
|
|
|
- ovs-sim: New developer tool for simulating multiple OVS instances.
|
|
|
|
See ovs-sim(1) for more information.
|
2015-06-13 17:22:15 -07:00
|
|
|
- Support to configure method (--syslog-method argument) that determines
|
|
|
|
how daemons will talk with syslog.
|
2015-06-13 13:28:02 -07:00
|
|
|
- Support for "ovs-appctl vlog/list-pattern" command that lets to query
|
|
|
|
logging message format for each destination.
|
2014-05-15 14:12:06 -07:00
|
|
|
|
|
|
|
|
2014-08-14 11:03:39 -07:00
|
|
|
v2.3.0 - 14 Aug 2014
|
2014-04-28 14:45:07 -07:00
|
|
|
---------------------
|
Enable OpenFlow 1.0, 1.1, 1.2, and 1.3 by default.
The Open vSwitch software switch now supports all the required features of
OpenFlow 1.0 through 1.3, with one known trivial exception[*]. Enable them
by default in ovs-vswitchd.
For now, ovs-ofctl only enables OpenFlow 1.0 by default. This is
because ovs-ofctl implements command such as "add-flow" as raw
OpenFlow requests, but those requests have subtly different semantics
in different OpenFlow versions. For example:
- In OpenFlow 1.0, a "mod-flow" operation that does not find any
existing flow to modify adds a new flow.
- In OpenFlow 1.1, a "mod-flow" operation that does not find any
existing flow to modify adds a new flow, but only if the
mod-flow did not match on the flow cookie.
- In OpenFlow 1.2 and a later, a "mod-flow" operation never adds a
new flow.
[*] OpenFlow 1.1, but not any earlier or later version of OpenFlow,
requires support for VLANs introduced by Ethertype 0x88a8, but Open
vSwitch does not support this Ethertype.
Signed-off-by: Ben Pfaff <blp@nicira.com>
Reviewed-by: YAMAMOTO Takashi <yamamoto@valinux.co.jp>
2014-04-30 06:54:09 -07:00
|
|
|
- OpenFlow 1.1, 1.2, and 1.3 are now enabled by default in
|
|
|
|
ovs-vswitchd.
|
2014-04-30 14:09:08 -07:00
|
|
|
- Linux kernel datapath now has an exact match cache optimizing the
|
|
|
|
flow matching process.
|
|
|
|
- Datapath flows now have partially wildcarded tranport port field
|
|
|
|
matches. This reduces userspace upcalls, but increases the
|
|
|
|
number of different masks in the datapath. The kernel datapath
|
|
|
|
exact match cache removes the overhead of matching the incoming
|
|
|
|
packets with the larger number of masks, but when paired with an
|
|
|
|
older kernel module, some workloads may perform worse with the
|
|
|
|
new userspace.
|
2014-06-27 09:31:57 +02:00
|
|
|
- Compatibility with autoconf 2.63 (previously >=2.64)
|
2014-04-28 14:45:07 -07:00
|
|
|
|
2014-05-15 14:09:39 -07:00
|
|
|
v2.2.0 - Internal Release
|
2013-12-23 16:17:50 -08:00
|
|
|
---------------------
|
2014-04-01 18:05:20 -03:00
|
|
|
- Internal ports are no longer brought up by default, because it
|
|
|
|
should be an administrator task to bring up devices as they are
|
|
|
|
configured properly.
|
ovs-vsctl: Improve error reporting
ovs-vsctl is a command-line interface to the Open vSwitch database,
and as such it just modifies the desired Open vSwitch configuration in
the database. ovs-vswitchd, on the other hand, monitors the database
and implements the actual configuration specified in the database.
This can lead to surprises when the user makes a change to the
database, with ovs-vsctl, that ovs-vswitchd cannot actually
implement. In such a case, the ovs-vsctl command silently succeeds
(because the database was successfully updated) but its desired
effects don't actually take place. One good example of such a change
is attempting to add a port with a misspelled name (e.g. ``ovs-vsctl
add-port br0 fth0'', where fth0 should be eth0); another is creating
a bridge or a port whose name is longer than supported
(e.g. ``ovs-vsctl add-br'' with a 16-character bridge name on
Linux). It can take users a long time to realize the error, because it
requires looking through the ovs-vswitchd log.
The patch improves the situation by checking whether operations that
ovs executes succeed and report an error when
they do not. This patch only report add-br and add-port
operation errors by examining the `ofport' value that
ovs-vswitchd stores into the database record for the newly created
interface. Until ovs-vswitchd finishes implementing the new
configuration, this column is empty, and after it finishes it is
either -1 (on failure) or a positive number (on success).
Signed-off-by: Andy Zhou <azhou@nicira.com>
Co-authored-by: Thomas Graf <tgraf@redhat.com>
Signed-off-by: Thomas Graf <tgraf@redhat.com>
Co-authored-by: Ben Pfaff <blp@nicira.com>
Signed-off-by: Ben Pfaff <blp@nicira.com>
2014-03-27 17:10:31 +01:00
|
|
|
- ovs-vsctl now reports when ovs-vswitchd fails to create a new port or
|
|
|
|
bridge.
|
2014-04-10 12:50:11 +02:00
|
|
|
- Port creation and configuration errors are now stored in a new error
|
|
|
|
column of the Interface table and included in 'ovs-vsctl show'.
|
2014-01-10 15:25:40 -08:00
|
|
|
- The "ovsdbmonitor" graphical tool has been removed, because it was
|
|
|
|
poorly maintained and not widely used.
|
2014-02-14 10:34:58 -08:00
|
|
|
- New "check-ryu" Makefile target for running Ryu tests for OpenFlow
|
2014-10-28 11:19:52 +01:00
|
|
|
controllers against Open vSwitch. See INSTALL.md for details.
|
2014-02-19 14:23:39 -08:00
|
|
|
- Added IPFIX support for SCTP flows and templates for ICMPv4/v6 flows.
|
2014-02-20 14:58:36 -08:00
|
|
|
- Upon the receipt of a SIGHUP signal, ovs-vswitchd no longer reopens its
|
|
|
|
log file (it will terminate instead). Please use 'ovs-appctl vlog/reopen'
|
|
|
|
instead.
|
2014-05-01 15:50:48 -07:00
|
|
|
- Support for Linux kernels up to 3.14. From Kernel 3.12 onwards OVS uses
|
2014-04-01 20:55:21 -07:00
|
|
|
tunnel API for GRE and VXLAN.
|
2014-03-24 19:23:08 -07:00
|
|
|
- Added DPDK support.
|
2014-03-30 12:26:55 +01:00
|
|
|
- Added support for custom vlog patterns in Python
|
2014-02-19 14:23:39 -08:00
|
|
|
|
2013-12-23 16:17:50 -08:00
|
|
|
|
2014-04-28 14:30:27 -07:00
|
|
|
v2.1.0 - 19 Mar 2014
|
2013-08-28 16:18:05 -07:00
|
|
|
---------------------
|
2013-12-11 11:07:01 -08:00
|
|
|
- Address prefix tracking support for flow tables. New columns
|
|
|
|
"prefixes" in OVS-DB table "Flow_Table" controls which packet
|
|
|
|
header fields are used for address prefix tracking. Prefix
|
|
|
|
tracking allows the classifier to skip rules with longer than
|
|
|
|
necessary prefixes, resulting in better wildcarding for datapath
|
|
|
|
flows. Default configuration is to not use any fields for prefix
|
|
|
|
tracking. However, if any flow tables contain both exact matches
|
|
|
|
and masked matches for IP address fields, OVS performance may be
|
|
|
|
increased by using this feature.
|
|
|
|
* As of now, the fields for which prefix lookup can be enabled
|
|
|
|
are: 'tun_id', 'tun_src', 'tun_dst', 'nw_src', 'nw_dst' (or
|
|
|
|
aliases 'ip_src' and 'ip_dst'), 'ipv6_src', and 'ipv6_dst'.
|
|
|
|
(Using this feature for 'tun_id' would only make sense if the
|
|
|
|
tunnel IDs have prefix structure similar to IP addresses.)
|
|
|
|
* There is a maximum number of fields that can be enabled for any
|
|
|
|
one flow table. Currently this limit is 3.
|
|
|
|
* Examples:
|
|
|
|
$ ovs-vsctl set Bridge br0 flow_tables:0=@N1 -- \
|
|
|
|
--id=@N1 create Flow_Table name=table0
|
|
|
|
$ ovs-vsctl set Bridge br0 flow_tables:1=@N1 -- \
|
|
|
|
--id=@N1 create Flow_Table name=table1
|
|
|
|
$ ovs-vsctl set Flow_Table table0 prefixes=ip_dst,ip_src
|
|
|
|
$ ovs-vsctl set Flow_Table table1 prefixes=[]
|
2013-11-13 11:19:56 -08:00
|
|
|
- TCP flags matching: OVS now supports matching of TCP flags. This
|
|
|
|
has an adverse performance impact when using OVS userspace 1.10
|
|
|
|
or older (no megaflows support) together with the new OVS kernel
|
|
|
|
module. It is recommended that the kernel and userspace modules
|
|
|
|
both are upgraded at the same time.
|
2013-09-23 14:20:27 -07:00
|
|
|
- The default OpenFlow and OVSDB ports will change to
|
|
|
|
IANA-assigned numbers in a future release. Consider updating
|
|
|
|
your installations to specify port numbers instead of using the
|
|
|
|
defaults.
|
2013-10-11 13:23:29 +09:00
|
|
|
- OpenFlow:
|
|
|
|
* The OpenFlow 1.1+ "Write-Actions" instruction is now supported.
|
2013-11-06 16:12:34 -08:00
|
|
|
* OVS limits the OpenFlow port numbers it assigns to port 32767 and
|
|
|
|
below, leaving port numbers above that range free for assignment
|
|
|
|
by the controller.
|
2013-12-11 15:40:52 -08:00
|
|
|
* ovs-vswitchd now honors changes to the "ofport_request" column
|
|
|
|
in the Interface table by changing the port's OpenFlow port
|
|
|
|
number.
|
2015-02-01 13:50:40 -08:00
|
|
|
* The Open vSwitch software switch now supports OpenFlow groups.
|
2013-10-11 13:17:07 -07:00
|
|
|
- ovs-vswitchd.conf.db.5 man page will contain graphviz/dot
|
|
|
|
diagram only if graphviz package was installed at the build time.
|
2013-10-14 15:26:40 -07:00
|
|
|
- Support for Linux kernels up to 3.11
|
2013-10-21 14:37:34 -07:00
|
|
|
- ovs-dpctl:
|
|
|
|
The "show" command also displays mega flow mask stats.
|
2013-12-23 10:41:14 -08:00
|
|
|
- ovs-ofctl:
|
|
|
|
* New command "ofp-parse-pcap" to dump OpenFlow from PCAP files.
|
2013-10-11 16:24:41 -07:00
|
|
|
- ovs-controller has been renamed test-controller. It is no longer
|
|
|
|
packaged or installed by default, because too many users assumed
|
|
|
|
incorrectly that ovs-controller was a necessary or desirable part
|
|
|
|
of an Open vSwitch deployment.
|
2013-12-05 17:01:30 -08:00
|
|
|
- Added vlog option to export to a UDP syslog sink.
|
2013-03-27 14:26:21 -07:00
|
|
|
- ovsdb-client:
|
|
|
|
* The "monitor" command can now monitor all tables in a database,
|
|
|
|
instead of being limited to a single table.
|
2013-09-24 13:39:56 -07:00
|
|
|
- The flow-eviction-threshold has been replaced by the flow-limit which is a
|
|
|
|
hard limit on the number of flows in the datapath. It defaults to 200,000
|
|
|
|
flows. OVS automatically adjusts this number depending on network
|
|
|
|
conditions.
|
2014-02-06 16:04:05 -08:00
|
|
|
- Added IPv6 support for active and passive socket communications.
|
2013-08-28 16:18:05 -07:00
|
|
|
|
|
|
|
|
2013-10-15 15:04:20 -07:00
|
|
|
v2.0.0 - 15 Oct 2013
|
2013-04-29 14:44:34 -07:00
|
|
|
---------------------
|
2013-10-15 15:36:40 -07:00
|
|
|
- The ovs-vswitchd process is no longer single-threaded. Multiple
|
|
|
|
threads are now used to handle flow set up and asynchronous
|
|
|
|
logging.
|
2013-05-09 15:24:16 +03:00
|
|
|
- OpenFlow:
|
2013-07-08 14:48:05 -07:00
|
|
|
* Experimental support for OpenFlow 1.1 (in addition to 1.2 and
|
|
|
|
1.3, which had experimental support in 1.10).
|
2013-09-01 18:30:17 -07:00
|
|
|
* Experimental protocol support for OpenFlow 1.1+ groups. This
|
|
|
|
does not yet include an implementation in the Open vSwitch
|
|
|
|
software switch.
|
|
|
|
* Experimental protocol support for OpenFlow 1.2+ meters. This
|
|
|
|
does not yet include an implementation in the Open vSwitch
|
|
|
|
software switch.
|
2013-05-09 15:24:16 +03:00
|
|
|
* New support for matching outer source and destination IP address
|
|
|
|
of tunneled packets, for tunnel ports configured with the newly
|
2013-07-23 15:03:52 -07:00
|
|
|
added "remote_ip=flow" and "local_ip=flow" options.
|
2013-08-06 12:57:16 -07:00
|
|
|
* Support for matching on metadata 'pkt_mark' for interacting with
|
|
|
|
other system components. On Linux this corresponds to the skb
|
|
|
|
mark.
|
2013-08-28 16:13:41 -07:00
|
|
|
* Support matching, rewriting SCTP ports
|
2013-07-08 13:36:06 -07:00
|
|
|
- The Interface table in the database has a new "ifindex" column to
|
|
|
|
report the interface's OS-assigned ifindex.
|
2013-05-28 11:44:21 -07:00
|
|
|
- New "check-oftest" Makefile target for running OFTest against Open
|
|
|
|
vSwitch. See README-OFTest for details.
|
2013-06-04 13:22:46 -07:00
|
|
|
- The flow eviction threshold has been moved to the Open_vSwitch table.
|
2013-06-24 08:38:22 -07:00
|
|
|
- Database names are now mandatory when specifying ovsdb-server options
|
|
|
|
through database paths (e.g. Private key option with the database name
|
|
|
|
should look like "--private-key=db:Open_vSwitch,SSL,private_key").
|
2013-07-06 18:55:45 -07:00
|
|
|
- Added ovs-dev.py, a utility script helpful for Open vSwitch developers.
|
2013-08-02 11:38:51 -07:00
|
|
|
- Support for Linux kernels up to 3.10
|
2013-08-06 09:45:07 -07:00
|
|
|
- ovs-ofctl:
|
|
|
|
* New "ofp-parse" for printing OpenFlow messages read from a file.
|
2013-09-01 18:30:17 -07:00
|
|
|
* New commands for OpenFlow 1.1+ groups.
|
2013-08-21 13:49:04 -07:00
|
|
|
- Added configurable flow caching support to IPFIX exporter.
|
2013-09-03 09:54:51 -07:00
|
|
|
- Dropped support for Linux pre-2.6.32.
|
2013-09-17 14:36:41 -07:00
|
|
|
- Log file timestamps and ovsdb commit timestamps are now reported
|
|
|
|
with millisecond resolution. (Previous versions only reported
|
|
|
|
whole seconds.)
|
2013-04-29 14:44:34 -07:00
|
|
|
|
|
|
|
|
2013-08-28 14:32:27 -07:00
|
|
|
v1.11.0 - 28 Aug 2013
|
2013-02-04 21:55:32 -08:00
|
|
|
---------------------
|
2013-05-20 17:48:49 -07:00
|
|
|
- Support for megaflows, which allows wildcarding in the kernel (and
|
|
|
|
any dpif implementation that supports wildcards). Depending on
|
|
|
|
the flow table and switch configuration, flow set up rates are
|
|
|
|
close to the Linux bridge.
|
2013-04-19 16:25:56 -07:00
|
|
|
- The "tutorial" directory contains a new tutorial for some advanced
|
|
|
|
Open vSwitch features.
|
2013-02-04 18:28:57 -08:00
|
|
|
- Stable bond mode has been removed.
|
2013-02-04 18:45:54 -08:00
|
|
|
- The autopath action has been removed.
|
2013-02-21 21:52:04 -08:00
|
|
|
- New support for the data encapsulation format of the LISP tunnel
|
|
|
|
protocol (RFC 6830). An external control plane or manual flow
|
|
|
|
setup is required for EID-to-RLOC mapping.
|
2013-03-06 16:08:23 +09:00
|
|
|
- OpenFlow:
|
2013-03-06 16:08:12 +09:00
|
|
|
* The "dec_mpls_ttl" and "set_mpls_ttl" actions from OpenFlow
|
|
|
|
1.1 and later are now implemented.
|
2013-03-05 16:27:55 -08:00
|
|
|
* New "stack" extension for use in actions, to push and pop from
|
|
|
|
NXM fields.
|
2013-05-08 11:03:06 -07:00
|
|
|
* The "load" and "set_field" actions can now modify the "in_port". (This
|
|
|
|
allows one to enable output to a flow's input port by setting the
|
|
|
|
in_port to some unused value, such as OFPP_NONE.)
|
2013-03-15 13:47:53 -07:00
|
|
|
- ovs-dpctl:
|
|
|
|
* New debugging commands "add-flow", "mod-flow", "del-flow".
|
2013-08-03 12:23:14 -07:00
|
|
|
* "dump-flows" now has a -m option to increase output verbosity.
|
2013-05-14 18:24:43 -07:00
|
|
|
- In dpif-based bridges, cache action translations, which can improve
|
|
|
|
flow set up performance by 80% with a complicated flow table.
|
2013-04-04 10:42:47 -07:00
|
|
|
- New syslog format, prefixed with "ovs|", to be easier to filter.
|
2013-04-12 12:58:27 -07:00
|
|
|
- RHEL: Removes the default firewall rule that allowed GRE traffic to
|
|
|
|
pass through. Any users that relied on this automatic firewall hole
|
|
|
|
will have to manually configure it. The ovs-ctl(8) manpage documents
|
|
|
|
the "enable-protocol" command that can be used as an alternative.
|
2013-05-15 14:31:06 -07:00
|
|
|
- New CFM demand mode which uses data traffic to indicate interface
|
|
|
|
liveness.
|
2013-02-04 21:55:32 -08:00
|
|
|
|
2013-05-01 14:30:38 -07:00
|
|
|
v1.10.0 - 01 May 2013
|
2013-02-04 15:56:36 -08:00
|
|
|
---------------------
|
2013-01-17 10:32:30 -08:00
|
|
|
- Bridge compatibility support has been removed. Any uses that
|
|
|
|
rely on ovs-brcompatd will have to stick with Open vSwitch 1.9.x
|
|
|
|
or adapt to native Open vSwitch support (e.g. use ovs-vsctl instead
|
|
|
|
of brctl).
|
2012-12-08 12:32:33 -08:00
|
|
|
- The maximum size of the MAC learning table is now configurable.
|
2013-01-04 18:34:26 -08:00
|
|
|
- With the Linux datapath, packets for new flows are now queued
|
|
|
|
separately on a per-port basis, so it should no longer be
|
|
|
|
possible for a large number of new flows arriving on one port to
|
|
|
|
prevent new flows from being processed on other ports.
|
2013-03-18 09:58:47 -07:00
|
|
|
- ovs-vsctl:
|
|
|
|
* Previously ovs-vsctl would retry connecting to the database forever,
|
|
|
|
causing it to hang if ovsdb-server was not running. Now, ovs-vsctl
|
|
|
|
only tries once by default (use --retry to try forever). This change
|
|
|
|
means that you may want to remove uses of --timeout to avoid hangs
|
|
|
|
in ovs-vsctl calls.
|
|
|
|
* Many "ovs-vsctl" database commands now accept an --if-exists option.
|
|
|
|
Please refer to the ovs-vsctl manpage for details.
|
2013-02-04 14:13:25 -08:00
|
|
|
- OpenFlow:
|
2013-02-04 14:28:05 -08:00
|
|
|
- Experimental support for newer versions of OpenFlow. See
|
|
|
|
the "What versions of OpenFlow does Open vSwitch support?"
|
|
|
|
question in the FAQ for more details.
|
2013-02-04 14:13:25 -08:00
|
|
|
- The OpenFlow "dp_desc" may now be configured by setting the
|
|
|
|
value of other-config:dp-desc in the Bridge table.
|
|
|
|
- It is possible to request the OpenFlow port number with the
|
|
|
|
"ofport_request" column in the Interface table.
|
2013-03-08 10:54:13 -08:00
|
|
|
- The NXM flow_removed message now reports the OpenFlow table ID
|
|
|
|
from which the flow was removed.
|
2013-02-04 21:45:29 -08:00
|
|
|
- Tunneling:
|
|
|
|
- New support for the VXLAN tunnel protocol (see the IETF draft here:
|
2013-02-24 18:58:03 -08:00
|
|
|
http://tools.ietf.org/html/draft-mahalingam-dutt-dcops-vxlan-03).
|
2013-02-04 21:45:29 -08:00
|
|
|
- Tunneling requires the version of the kernel module paired with
|
|
|
|
Open vSwitch 1.9.0 or later.
|
|
|
|
- Inheritance of the Don't Fragment bit in IP tunnels (df_inherit)
|
|
|
|
is no longer supported.
|
|
|
|
- Path MTU discovery is no longer supported.
|
2013-03-11 16:00:17 -07:00
|
|
|
- CAPWAP tunneling support removed.
|
|
|
|
- Tunnels with multicast destination ports are no longer supported.
|
2013-02-04 14:13:25 -08:00
|
|
|
- ovs-dpctl:
|
|
|
|
- The "dump-flows" and "del-flows" no longer require an argument
|
|
|
|
if only one datapath exists.
|
|
|
|
- ovs-appctl:
|
|
|
|
- New "vlog/disable-rate-limit" and "vlog/enable-rate-limit"
|
|
|
|
commands available allow control over logging rate limits.
|
|
|
|
- New "dpif/dump-dps", "dpif/show", and "dpif/dump-flows" command
|
|
|
|
that mimic the equivalent ovs-dpctl commands.
|
|
|
|
- The ofproto library is now responsible for assigning OpenFlow port
|
|
|
|
numbers. An ofproto implementation should assign them when
|
|
|
|
port_construct() is called.
|
|
|
|
- All dpif-based bridges of a particular type share a common
|
|
|
|
datapath called "ovs-<type>", e.g. "ovs-system". The ovs-dpctl
|
|
|
|
commands will now return information on that shared datapath. To
|
|
|
|
get the equivalent bridge-specific information, use the new
|
|
|
|
"ovs-appctl dpif/*" commands.
|
2013-01-08 15:29:44 -08:00
|
|
|
- Backward-incompatible changes:
|
|
|
|
- Earlier Open vSwitch versions treated ANY as a wildcard in flow
|
|
|
|
syntax. OpenFlow 1.1 adds a port named ANY, which introduces a
|
|
|
|
conflict. ANY was rarely used in flow syntax, so we chose to
|
|
|
|
retire that meaning of ANY in favor of the OpenFlow 1.1 meaning.
|
2013-02-04 21:45:29 -08:00
|
|
|
- Patch ports no longer require kernel support, so they now work
|
|
|
|
with FreeBSD and the kernel module built into Linux 3.3 and later.
|
2013-04-22 10:01:14 -07:00
|
|
|
- New "sample" action.
|
2012-11-05 11:05:18 -08:00
|
|
|
|
2012-10-24 16:13:31 -07:00
|
|
|
|
2013-02-26 11:24:20 -08:00
|
|
|
v1.9.0 - 26 Feb 2013
|
|
|
|
------------------------
|
2012-11-13 19:19:36 +02:00
|
|
|
- Datapath:
|
|
|
|
- Support for ipv6 set action.
|
|
|
|
- SKB mark matching and setting.
|
2013-01-16 11:19:21 +00:00
|
|
|
- support for Linux kernels up to 3.8
|
2012-07-25 22:51:05 +02:00
|
|
|
- FreeBSD is now a supported platform, thanks to code contributions from
|
|
|
|
Gaetano Catalli, Ed Maste, and Giuseppe Lettieri.
|
2012-07-18 23:50:03 -07:00
|
|
|
- ovs-bugtool: New --ovs option to report only OVS related information.
|
2012-07-18 10:30:47 -07:00
|
|
|
- New %t and %T log escapes to identify the subprogram within a
|
|
|
|
cooperating group of processes or threads that emitted a log message.
|
|
|
|
The default log patterns now include this information.
|
2012-07-18 12:02:19 +09:00
|
|
|
- OpenFlow:
|
2012-07-19 09:21:49 -07:00
|
|
|
- Allow bitwise masking for SHA and THA fields in ARP, SLL and TLL
|
|
|
|
fields in IPv6 neighbor discovery messages, and IPv6 flow label.
|
2012-10-19 02:37:37 +09:00
|
|
|
- Adds support for writing to the metadata field for a flow.
|
2013-02-04 21:45:29 -08:00
|
|
|
- Tunneling:
|
|
|
|
- The tunneling code no longer assumes input and output keys are
|
|
|
|
symmetric. If they are not, PMTUD needs to be disabled for
|
|
|
|
tunneling to work. Note this only applies to flow-based keys.
|
|
|
|
- New support for a nonstandard form of GRE that supports a 64-bit key.
|
|
|
|
- Tunnel Path MTU Discovery default value was set to 'disabled'.
|
|
|
|
This feature is deprecated and will be removed soon.
|
|
|
|
- Tunnel header caching removed.
|
2012-09-20 08:40:29 -07:00
|
|
|
- ovs-ofctl:
|
|
|
|
- Commands and actions that accept port numbers now also accept keywords
|
|
|
|
that represent those ports (such as LOCAL, NONE, and ALL). This is
|
|
|
|
also the recommended way to specify these ports, for compatibility
|
|
|
|
with OpenFlow 1.1 and later (which use the OpenFlow 1.0 numbers
|
|
|
|
for these ports for different purposes).
|
2012-08-03 11:56:33 -07:00
|
|
|
- ovs-dpctl:
|
2012-07-27 23:59:23 -07:00
|
|
|
- Support requesting the port number with the "port_no" option in
|
|
|
|
the "add-if" command.
|
2012-08-03 11:56:33 -07:00
|
|
|
- ovs-pki: The "online PKI" features have been removed, along with
|
|
|
|
the ovs-pki-cgi program that facilitated it, because of some
|
|
|
|
alarmist insecurity claims. We do not believe that these claims
|
|
|
|
are true, but because we do not know of any users for this
|
|
|
|
feature it seems better on balance to remove it. (The ovs-pki-cgi
|
|
|
|
program was not included in distribution packaging.)
|
2012-09-05 10:35:20 -07:00
|
|
|
- ovsdb-server now enforces the immutability of immutable columns. This
|
|
|
|
was not enforced in earlier versions due to an oversight.
|
2012-09-26 09:57:28 -07:00
|
|
|
- The following features are now deprecated. They will be removed no
|
|
|
|
earlier than February 2013. Please email dev@openvswitch.org with
|
|
|
|
concerns.
|
2012-12-27 13:30:59 -08:00
|
|
|
- Bridge compatibility.
|
2012-09-26 09:57:28 -07:00
|
|
|
- Stable bond mode.
|
|
|
|
- The autopath action.
|
|
|
|
- Interface type "null".
|
|
|
|
- Numeric values for reserved ports (see "ovs-ofctl" note above).
|
2012-10-29 18:12:03 +02:00
|
|
|
- Tunnel Path MTU Discovery.
|
2012-11-05 13:40:17 -08:00
|
|
|
- CAPWAP tunnel support.
|
2012-11-05 11:05:18 -08:00
|
|
|
- The data in the RARP packets can now be matched in the same way as the
|
|
|
|
data in ARP packets.
|
2012-07-16 16:49:00 -07:00
|
|
|
|
2012-12-05 16:06:46 -05:00
|
|
|
|
2013-02-26 11:24:20 -08:00
|
|
|
v1.8.0 - 26 Feb 2013
|
2012-05-08 11:11:33 -07:00
|
|
|
------------------------
|
2013-02-26 11:24:20 -08:00
|
|
|
*** Internal only release ***
|
2012-06-12 09:40:11 -07:00
|
|
|
- New FAQ. Please send updates and additions!
|
2012-07-03 22:17:14 -07:00
|
|
|
- Authors of controllers, please read the new section titled "Action
|
|
|
|
Reproduction" in DESIGN, which describes an Open vSwitch change in
|
|
|
|
behavior in corner cases that may affect some controllers.
|
2012-06-28 15:52:40 -07:00
|
|
|
- ovs-l3ping:
|
|
|
|
- A new test utility that can create L3 tunnel between two Open
|
|
|
|
vSwitches and detect connectivity issues.
|
2012-05-24 14:17:55 -07:00
|
|
|
- ovs-ofctl:
|
2012-07-12 13:32:47 -07:00
|
|
|
- New --sort and --rsort options for "dump-flows" command.
|
2012-05-24 14:17:55 -07:00
|
|
|
- "mod-port" command can now control all OpenFlow config flags.
|
2012-05-22 22:06:03 -07:00
|
|
|
- OpenFlow:
|
2012-05-22 22:49:31 -07:00
|
|
|
- Allow general bitwise masking for IPv4 and IPv6 addresses in
|
|
|
|
IPv4, IPv6, and ARP packets. (Previously, only CIDR masks
|
2012-05-22 22:06:03 -07:00
|
|
|
were allowed.)
|
|
|
|
- Allow support for arbitrary Ethernet masks. (Previously, only
|
|
|
|
the multicast bit in the destination address could be individually
|
|
|
|
masked.)
|
2012-06-27 01:09:44 +12:00
|
|
|
- New field OXM_OF_METADATA, to align with OpenFlow 1.1.
|
2012-06-11 11:23:06 -07:00
|
|
|
- The OFPST_QUEUE request now reports an error if a specified port or
|
|
|
|
queue does not exist, or for requests for a specific queue on all
|
|
|
|
ports, if the specified queue does not exist on any port. (Previous
|
|
|
|
versions generally reported an empty set of results.)
|
2012-07-12 14:18:05 -07:00
|
|
|
- New "flow monitor" feature to allow controllers to be notified of
|
|
|
|
flow table changes as they happen.
|
2012-06-06 15:22:52 -07:00
|
|
|
- Additional protocols are not mirrored and dropped when forward-bpdu is
|
|
|
|
false. For a full list, see the ovs-vswitchd.conf.db man page.
|
2012-06-07 15:27:22 -07:00
|
|
|
- Open vSwitch now sends RARP packets in situations where it previously
|
|
|
|
sent a custom protocol, making it consistent with behavior of QEMU and
|
|
|
|
VMware.
|
2012-07-02 04:32:44 -07:00
|
|
|
- All Open vSwitch programs and log files now show timestamps in UTC,
|
|
|
|
instead the local timezone, by default.
|
2012-05-08 11:11:33 -07:00
|
|
|
|
|
|
|
|
2012-07-30 17:24:39 -07:00
|
|
|
v1.7.0 - 30 Jul 2012
|
2012-02-24 10:32:36 -08:00
|
|
|
------------------------
|
2012-03-09 09:55:45 -08:00
|
|
|
- kernel modules are renamed. openvswitch_mod.ko is now
|
|
|
|
openvswitch.ko and brcompat_mod.ko is now brcompat.ko.
|
2012-03-08 14:44:54 -08:00
|
|
|
- Increased the number of NXM registers to 8.
|
2012-07-23 00:33:32 -07:00
|
|
|
- Added ability to configure DSCP setting for manager and controller
|
2012-03-10 15:58:10 -08:00
|
|
|
connections. By default, these connections have a DSCP value of
|
|
|
|
Internetwork Control (0xc0).
|
2012-04-05 14:30:23 -07:00
|
|
|
- Added the granular link health statistics, 'cfm_health', to an
|
|
|
|
interface.
|
2012-04-25 15:48:40 -07:00
|
|
|
- OpenFlow:
|
|
|
|
- Added support to mask nd_target for ICMPv6 neighbor discovery flows.
|
2012-05-04 14:42:04 -07:00
|
|
|
- Added support for OpenFlow 1.3 port description (OFPMP_PORT_DESC)
|
|
|
|
multipart messages.
|
|
|
|
- ovs-ofctl:
|
|
|
|
- Added the "dump-ports-desc" command to retrieve port
|
|
|
|
information using the new port description multipart messages.
|
2012-03-29 19:03:08 -07:00
|
|
|
- ovs-test:
|
|
|
|
- Added support for spawning ovs-test server from the client.
|
|
|
|
- Now ovs-test is able to automatically create test bridges and ports.
|
2012-04-05 10:24:56 -07:00
|
|
|
- "ovs-dpctl dump-flows" now prints observed TCP flags in TCP flows.
|
2012-07-23 00:33:32 -07:00
|
|
|
- Tripled flow setup performance.
|
2012-04-20 14:09:30 -07:00
|
|
|
- The "coverage/log" command previously available through ovs-appctl
|
|
|
|
has been replaced by "coverage/show". The new command replies with
|
|
|
|
coverage counter values, instead of logging them.
|
2012-02-24 10:32:36 -08:00
|
|
|
|
|
|
|
|
2012-06-25 21:44:56 -07:00
|
|
|
v1.6.1 - 25 Jun 2012
|
2012-01-12 15:53:55 -08:00
|
|
|
------------------------
|
2012-06-25 21:44:56 -07:00
|
|
|
- Allow OFPP_CONTROLLER as the in_port for packet-out messages.
|
|
|
|
|
|
|
|
|
|
|
|
v1.6.0 - 24 Feb 2012
|
|
|
|
------------------------
|
|
|
|
*** Internal only release ***
|
2012-01-11 17:23:38 -08:00
|
|
|
- bonding
|
2011-11-28 13:54:08 -08:00
|
|
|
- LACP bonds no longer fall back to balance-slb when negotiations fail.
|
|
|
|
Instead they drop traffic.
|
2012-01-11 17:23:38 -08:00
|
|
|
- The default bond_mode changed from SLB to active-backup, to protect
|
|
|
|
unsuspecting users from the significant risks of SLB bonds (which are
|
|
|
|
documented in vswitchd/INTERNALS).
|
2012-01-25 17:41:44 -08:00
|
|
|
- Load balancing can be disabled by setting the bond-rebalance-interval
|
|
|
|
to zero.
|
2012-01-27 17:16:05 -08:00
|
|
|
- OpenFlow:
|
|
|
|
- Added support for bitwise matching on TCP and UDP ports.
|
|
|
|
See ovs-ofctl(8) for more information.
|
2012-02-09 14:06:35 -08:00
|
|
|
- NXM flow dumps now include times elapsed toward idle and hard
|
|
|
|
timeouts.
|
|
|
|
- Added an OpenFlow extension NXT_SET_ASYNC_CONFIG that allows
|
|
|
|
controllers more precise control over which OpenFlow messages they
|
|
|
|
receive asynchronously.
|
2012-02-15 10:37:03 -08:00
|
|
|
- New "fin_timeout" action.
|
|
|
|
- Added "fin_timeout" support to "learn" action.
|
2012-02-09 14:17:33 -08:00
|
|
|
- New Nicira action NXAST_CONTROLLER that offers additional features
|
|
|
|
over output to OFPP_CONTROLLER.
|
2012-02-16 16:33:14 -08:00
|
|
|
- When QoS settings for an interface do not configure a default queue
|
|
|
|
(queue 0), Open vSwitch now uses a default configuration for that
|
|
|
|
queue, instead of dropping all packets as in previous versions.
|
2012-02-08 15:29:15 -08:00
|
|
|
- Logging:
|
|
|
|
- Logging to console and file will have UTC timestamp as a default for
|
|
|
|
all the daemons. An example of the default format is
|
|
|
|
2012-01-27T16:35:17Z. ovs-appctl can be used to change the default
|
|
|
|
format as before.
|
|
|
|
- The syntax of commands and options to set log levels was simplified,
|
|
|
|
to make it easier to remember.
|
2012-02-01 10:27:30 -08:00
|
|
|
- New support for limiting the number of flows in an OpenFlow flow
|
|
|
|
table, with configurable policy for evicting flows upon
|
|
|
|
overflow. See the Flow_Table table in ovs-vswitch.conf.db(5)
|
|
|
|
for more information.
|
2012-01-26 14:50:41 -08:00
|
|
|
- New "enable-async-messages" column in the Controller table. If set to
|
|
|
|
false, OpenFlow connections to the controller will initially have all
|
|
|
|
asynchronous messages disabled, overriding normal OpenFlow behavior.
|
2012-01-13 16:40:59 -08:00
|
|
|
- ofproto-provider interface:
|
|
|
|
- "struct rule" has a new member "used" that ofproto implementations
|
|
|
|
should maintain by updating with ofproto_rule_update_used().
|
2012-01-27 12:48:21 -08:00
|
|
|
- ovsdb-client:
|
|
|
|
- The new option --timestamp causes the "monitor" command to print
|
|
|
|
a timestamp with every update.
|
2012-02-02 15:48:13 -08:00
|
|
|
- CFM module CCM broadcasts can now be tagged with an 802.1p priority.
|
2012-01-12 15:53:55 -08:00
|
|
|
|
|
|
|
|
2012-06-01 13:21:50 -07:00
|
|
|
v1.5.0 - 01 Jun 2012
|
2011-11-30 23:41:19 -08:00
|
|
|
------------------------
|
2011-12-23 12:23:24 -08:00
|
|
|
- OpenFlow:
|
|
|
|
- Added support for querying, modifying, and deleting flows
|
|
|
|
based on flow cookie when using NXM.
|
2012-01-10 17:25:59 -08:00
|
|
|
- Added new NXM_PACKET_IN format.
|
2012-01-13 17:54:04 -08:00
|
|
|
- Added new NXAST_DEC_TTL action.
|
2011-12-20 15:31:34 -08:00
|
|
|
- ovs-ofctl:
|
|
|
|
- Added daemonization support to the monitor and snoop commands.
|
2012-01-11 09:55:53 -08:00
|
|
|
- ovs-vsctl:
|
|
|
|
- The "find" command supports new set relational operators
|
|
|
|
{=}, {!=}, {<}, {>}, {<=}, and {>=}.
|
2012-01-11 10:23:10 -08:00
|
|
|
- ovsdb-tool now uses the typical database and schema installation
|
|
|
|
directories as defaults.
|
2012-06-01 13:19:40 -07:00
|
|
|
- The default MAC learning timeout has been increased from 60 seconds
|
|
|
|
to 300 seconds. The MAC learning timeout is now configurable.
|
2011-11-30 23:41:19 -08:00
|
|
|
|
|
|
|
|
2012-01-30 19:47:33 -08:00
|
|
|
v1.4.0 - 30 Jan 2012
|
2011-10-25 12:37:26 -07:00
|
|
|
------------------------
|
2012-01-30 23:07:19 -08:00
|
|
|
- Compatible with Open vSwitch kernel module included in Linux 3.3.
|
2011-11-23 17:03:31 -08:00
|
|
|
- New "VLAN splinters" feature to work around buggy device drivers
|
|
|
|
in old Linux versions. (This feature is deprecated. When
|
|
|
|
broken device drivers are no longer in widespread use, we will
|
|
|
|
delete this feature.) See ovs-vswitchd.conf.db(5) for more
|
|
|
|
information.
|
2011-11-01 15:57:56 -07:00
|
|
|
- OpenFlow:
|
|
|
|
- Added ability to match on IPv6 flow label through NXM.
|
2011-11-02 23:34:15 -07:00
|
|
|
- Added ability to match on ECN bits in IPv4 and IPv6 through NXM.
|
2011-11-05 15:48:12 -07:00
|
|
|
- Added ability to match on TTL in IPv4 and IPv6 through NXM.
|
2011-11-02 23:34:15 -07:00
|
|
|
- Added ability to modify ECN bits in IPv4.
|
2011-11-05 15:48:12 -07:00
|
|
|
- Added ability to modify TTL in IPv4.
|
2011-11-20 15:12:36 -08:00
|
|
|
- ovs-vswitchd:
|
2011-11-23 00:04:58 -08:00
|
|
|
- Don't require the "normal" action to use mirrors. Traffic will
|
|
|
|
now be properly mirrored for any flows, regardless of their
|
|
|
|
actions.
|
2011-11-20 15:12:36 -08:00
|
|
|
- Track packet and byte statistics sent on mirrors.
|
2011-12-06 13:01:25 -08:00
|
|
|
- The sFlow implementation can now usually infer the correct agent
|
|
|
|
device instead of having to be told explicitly.
|
2011-11-01 12:08:04 -07:00
|
|
|
- ovs-appctl:
|
|
|
|
- New "fdb/flush" command to flush bridge's MAC learning table.
|
2011-10-31 14:56:08 -07:00
|
|
|
- ovs-test:
|
|
|
|
- A new distributed testing tool that allows one to diagnose performance
|
|
|
|
and connectivity issues. This tool currently is not included in RH or
|
|
|
|
Xen packages.
|
2011-11-03 10:30:04 -07:00
|
|
|
- RHEL packaging now supports integration with Red Hat network scripts.
|
2011-12-15 13:39:38 -08:00
|
|
|
- bonding:
|
|
|
|
- Post 1.4.*, OVS will be changing the default bond mode from balance-slb
|
|
|
|
to active-backup. SLB bonds carry significant risks with them
|
|
|
|
(documented vswitchd/INTERNALS) which we want to prevent unsuspecting
|
|
|
|
users from running into. Users are advised to update any scripts or
|
|
|
|
configuration which may be negatively impacted by explicitly setting
|
|
|
|
the bond mode which they want to use.
|
2011-10-25 12:37:26 -07:00
|
|
|
|
2011-10-31 14:56:08 -07:00
|
|
|
|
2011-12-20 16:48:40 -08:00
|
|
|
v1.3.0 - 09 Dec 2011
|
2011-08-03 15:10:58 -07:00
|
|
|
------------------------
|
2011-08-10 13:05:17 -07:00
|
|
|
- OpenFlow:
|
|
|
|
- Added an OpenFlow extension which allows the "output" action to accept
|
|
|
|
NXM fields.
|
2011-09-12 16:19:57 -07:00
|
|
|
- Added an OpenFlow extension for flexible learning.
|
2011-09-28 13:53:59 -07:00
|
|
|
- Bumped number of NXM registers from four to five.
|
2011-08-01 21:18:00 -07:00
|
|
|
- ovs-appctl:
|
2011-09-26 15:40:53 -07:00
|
|
|
- New "version" command to determine version of running daemon.
|
|
|
|
- If no argument is provided for "cfm/show", displays detailed
|
|
|
|
information about all interfaces with CFM enabled.
|
2011-09-26 15:44:46 -07:00
|
|
|
- If no argument is provided for "lacp/show", displays detailed
|
|
|
|
information about all ports with LACP enabled.
|
2011-10-17 11:24:37 -07:00
|
|
|
- ovs-dpctl:
|
|
|
|
- New "set-if" command to modify a datapath port's configuration.
|
2011-08-09 09:24:18 -07:00
|
|
|
- ovs-vswitchd:
|
|
|
|
- The software switch now supports 255 OpenFlow tables, instead
|
|
|
|
of just one. By default, only table 0 is consulted, but the
|
|
|
|
new NXAST_RESUBMIT_TABLE action can look up in additional
|
|
|
|
tables. Tables 128 and above are reserved for use by the
|
|
|
|
switch itself; please use only tables 0 through 127.
|
2011-10-14 09:48:17 -07:00
|
|
|
- Add support for 802.1D spanning tree (STP).
|
Implement new fragment handling policy.
Until now, OVS has handled IP fragments more awkwardly than necessary. It
has not been possible to match on L4 headers, even in fragments with offset
0 where they are actually present. This means that there was no way to
implement ACLs that treat, say, different TCP ports differently, on
fragmented traffic; instead, all decisions for fragment forwarding had to
be made on the basis of L2 and L3 headers alone.
This commit improves the situation significantly. It is still not possible
to match on L4 headers in fragments with nonzero offset, because that
information is simply not present in such fragments, but this commit adds
the ability to match on L4 headers for fragments with zero offset. This
means that it becomes possible to implement ACLs that drop such "first
fragments" on the basis of L4 headers. In practice, that effectively
blocks even fragmented traffic on an L4 basis, because the receiving IP
stack cannot reassemble a full packet when the first fragment is missing.
This commit works by adding a new "fragment type" to the kernel flow match
and making it available through OpenFlow as a new NXM field named
NXM_NX_IP_FRAG. Because OpenFlow 1.0 explicitly says that the L4 fields
are always 0 for IP fragments, it adds a new OpenFlow fragment handling
mode that fills in the L4 fields for "first fragments". It also enhances
ovs-ofctl to allow users to configure this new fragment handling mode and
to parse the new field.
Signed-off-by: Ben Pfaff <blp@nicira.com>
Bug #7557.
2011-10-19 21:33:44 -07:00
|
|
|
- Fragment handling extensions:
|
|
|
|
- New OFPC_FRAG_NX_MATCH fragment handling mode, in which L4
|
|
|
|
fields are made available for matching in fragments with
|
|
|
|
offset 0.
|
|
|
|
- New NXM_NX_IP_FRAG match field for matching IP fragments (usable
|
|
|
|
via "ip_frag" in ovs-ofctl).
|
|
|
|
- New ovs-ofctl "get-frags" and "set-frags" commands to get and set
|
|
|
|
fragment handling policy.
|
2011-12-21 11:01:45 -08:00
|
|
|
- CAPWAP tunneling now supports an extension to transport a 64-bit key.
|
|
|
|
By default it remains compatible with the old version and other
|
2011-09-12 10:43:46 -07:00
|
|
|
standards-based implementations.
|
2011-09-16 15:23:37 -07:00
|
|
|
- Flow setups are now processed in a round-robin manner across ports
|
|
|
|
to prevent any single client from monopolizing the CPU and conducting
|
|
|
|
a denial of service attack.
|
2011-09-23 17:03:03 -07:00
|
|
|
- Added support for native VLAN tagging. A new "vlan_mode"
|
|
|
|
parameter can be set for "port". Possible values: "access",
|
|
|
|
"trunk", "native-tagged" and "native-untagged".
|
2011-10-24 10:36:01 -07:00
|
|
|
- test-openflowd has been removed. Please use ovs-vswitchd instead.
|
2011-08-03 15:10:58 -07:00
|
|
|
|
2011-08-03 15:09:45 -07:00
|
|
|
v1.2.0 - 03 Aug 2011
|
2011-04-26 09:42:18 -07:00
|
|
|
------------------------
|
2011-08-02 23:15:30 -07:00
|
|
|
- New "ofproto" abstraction layer to ease porting to hardware
|
|
|
|
switching ASICs.
|
|
|
|
- Packaging for Red Hat Enterprise Linux 5.6 and 6.0.
|
|
|
|
- Datapath support for Linux kernels up to 3.0.
|
|
|
|
- OpenFlow:
|
|
|
|
- New "bundle" and "bundle_load" action extensions.
|
|
|
|
- Database:
|
|
|
|
- Implement table unique constraints.
|
|
|
|
- Support cooperative locking between callers.
|
|
|
|
- ovs-dpctl:
|
|
|
|
- New "-s" option for "show" command prints packet and byte
|
|
|
|
counters for each port.
|
2011-07-27 14:58:10 -07:00
|
|
|
- ovs-ofctl:
|
|
|
|
- New "--readd" option for "replace-flows".
|
2011-05-24 13:03:58 -07:00
|
|
|
- ovs-vsctl:
|
|
|
|
- New "show" command to print an overview of configuration.
|
2011-08-02 23:15:30 -07:00
|
|
|
- New "comment" command to add remark that explains intentions.
|
2011-06-08 09:15:38 -07:00
|
|
|
- ovs-brcompatd has been rewritten to fix long-standing bugs.
|
2011-06-07 09:40:53 -07:00
|
|
|
- ovs-openflowd has been renamed test-openflowd and moved into the
|
|
|
|
tests directory. Its presence confused too many users. Please
|
|
|
|
use ovs-vswitchd instead.
|
2011-08-02 23:15:30 -07:00
|
|
|
- New ovs-benchmark utility to test flow setup performance.
|
|
|
|
- A new log level "off" has been added. Configuring a log facility
|
|
|
|
"off" prevents any messages from being logged to it. Previously,
|
|
|
|
"emer" was effectively "off" because no messages were ever logged at
|
|
|
|
level "emer". Now, errors that cause a process to exit are logged
|
|
|
|
at "emer" level.
|
2011-06-22 11:07:33 -07:00
|
|
|
- "configure" option --with-l26 has been renamed --with-linux, and
|
|
|
|
--with-l26-source has been renamed --with-linux-source. The old
|
|
|
|
names will be removed after the next release, so please update
|
|
|
|
your scripts.
|
2011-06-23 17:10:00 -07:00
|
|
|
- The "-2.6" suffix has been dropped from the datapath/linux-2.6 and
|
|
|
|
datapath/linux-2.6/compat-2.6 directories.
|
2011-04-26 09:42:18 -07:00
|
|
|
- Feature removals:
|
|
|
|
- Dropped support for "tun_id_from_cookie" OpenFlow extension.
|
2011-10-31 14:56:08 -07:00
|
|
|
Please use the extensible match extensions instead.
|
2011-05-12 15:28:43 -07:00
|
|
|
- Removed the Maintenance_Point and Monitor tables in an effort
|
|
|
|
to simplify 802.1ag configuration.
|
2011-08-02 23:15:30 -07:00
|
|
|
- Performance and scalability improvements
|
|
|
|
- Bug fixes
|
2011-04-26 09:42:18 -07:00
|
|
|
|
2011-04-05 22:17:03 -07:00
|
|
|
v1.1.0 - 05 Apr 2011
|
|
|
|
------------------------
|
|
|
|
- Ability to define policies over IPv6
|
|
|
|
- LACP
|
|
|
|
- 802.1ag CCM
|
|
|
|
- Support for extensible match extensions to OpenFlow
|
|
|
|
- QoS:
|
|
|
|
- Support for HFSC qdisc.
|
|
|
|
- Queue used by in-band control can now be configured.
|
|
|
|
- Kernel:
|
|
|
|
- Kernel<->userspace interface has been reworked and should be
|
|
|
|
close to a stable ABI now.
|
|
|
|
- "Port group" concept has been dropped.
|
|
|
|
- GRE over IPSEC tunnels
|
|
|
|
- Bonding:
|
|
|
|
- New active backup bonding mode.
|
|
|
|
- New L4 hashing support when LACP is enabled.
|
|
|
|
- Source MAC hash now includes VLAN field also.
|
|
|
|
- miimon support.
|
|
|
|
- Greatly improved handling of large flow tables
|
|
|
|
- ovs-dpctl:
|
|
|
|
- "show" command now prints full vport configuration.
|
|
|
|
- "dump-groups" command removed since kernel support for
|
|
|
|
port groups was dropped.
|
|
|
|
- ovs-vsctl:
|
|
|
|
- New commands for working with the new Managers table.
|
|
|
|
- "list" command enhanced with new formatting options and --columns
|
|
|
|
option.
|
|
|
|
- "get" command now accepts new --id option.
|
|
|
|
- New "find" command.
|
|
|
|
- ovs-ofctl:
|
|
|
|
- New "queue-stats" command for printing queue stats.
|
|
|
|
- New commands "replace-flows" and "diff-flows".
|
|
|
|
- Commands to add and remove flows can now read from files.
|
|
|
|
- New --flow-format option to enable or disable NXM.
|
|
|
|
- New --more option to increase OpenFlow message verbosity.
|
|
|
|
- Removed "tun-cookie" command, which is no longer useful.
|
|
|
|
- ovs-controller enhancements for testing various features.
|
|
|
|
- New ovs-vlan-test command for testing for Linux kernel driver VLAN
|
|
|
|
bugs. New ovs-vlan-bug-workaround command for enabling and
|
|
|
|
disabling a workaround for these driver bugs.
|
|
|
|
- OpenFlow support:
|
2011-08-08 09:35:01 -07:00
|
|
|
- "Resubmit" actions now update flow statistics.
|
2011-04-05 22:17:03 -07:00
|
|
|
- New "register" extension for use in matching and actions, via NXM.
|
|
|
|
- New "multipath" experimental action extension.
|
|
|
|
- New support for matching multicast Ethernet frames, via NXM.
|
|
|
|
- New extension for OpenFlow vendor error codes.
|
|
|
|
- New extension to set the QoS output queue without actually
|
|
|
|
sending to an output port.
|
|
|
|
- Open vSwitch now reports a single flow table, instead of
|
|
|
|
separate hash and wildcard tables. This better models the
|
|
|
|
current implementation.
|
|
|
|
- New experimental "note" action.
|
|
|
|
- New "ofproto/trace" ovs-appctl command and associated utilities
|
|
|
|
to ease debugging complex flow tables.
|
|
|
|
- Database:
|
|
|
|
- Schema documentation now includes an entity-relationship diagram.
|
|
|
|
- The database is now garbage collected. In most tables,
|
|
|
|
unreferenced rows will be deleted automatically.
|
|
|
|
- Many tables now include statistics updated periodically by
|
|
|
|
ovs-vswitchd or ovsdb-server.
|
|
|
|
- Every table now has an "external-ids" column for use by OVS
|
|
|
|
integrators.
|
|
|
|
- There is no default controller anymore. Each bridge must have its
|
|
|
|
controller individually specified.
|
|
|
|
- The "fail-mode" is now a property of a Bridge instead of a Controller.
|
|
|
|
- New versioning and checksum features.
|
|
|
|
- New Managers table and manager_options column in Open_vSwitch table
|
|
|
|
for specifying managers. The old "managers" column in the
|
|
|
|
Open_vSwitch table has been removed.
|
|
|
|
- Many "name" columns are now immutable.
|
|
|
|
- Feature removals:
|
|
|
|
- Dropped support for XenServer pre-5.6.100.
|
|
|
|
- Dropped support for Linux pre-2.6.18.
|
|
|
|
- Dropped controller discovery support.
|
|
|
|
- Dropped "ovs-ofctl status" and the OpenFlow extension that it used.
|
|
|
|
Statistics reporting in the database is a rough equivalent.
|
|
|
|
- Dropped the "corekeeper" package (now separate, at
|
|
|
|
http://openvswitch.org/cgi-bin/gitweb.cgi?p=corekeeper).
|
|
|
|
- Performance and scalability improvements
|
|
|
|
- Bug fixes
|
|
|
|
|
2010-09-13 21:55:56 -07:00
|
|
|
v1.1.0pre2 - 13 Sep 2010
|
|
|
|
------------------------
|
|
|
|
- Bug fixes
|
|
|
|
|
2010-09-01 02:26:06 -07:00
|
|
|
v1.1.0pre1 - 31 Aug 2010
|
|
|
|
------------------------
|
2010-08-31 14:16:14 -07:00
|
|
|
- OpenFlow 1.0 slicing (QoS) functionality
|
|
|
|
- Python bindings for configuration database (no write support)
|
|
|
|
- Performance and scalability improvements
|
|
|
|
- Bug fixes
|
|
|
|
|
2010-05-31 22:31:07 -07:00
|
|
|
v1.0.1 - 31 May 2010
|
|
|
|
--------------------
|
|
|
|
- New "patch" interface type
|
|
|
|
- Bug fixes
|
|
|
|
|
2010-05-15 00:23:50 -07:00
|
|
|
v1.0.0 - 15 May 2010
|
|
|
|
--------------------
|
|
|
|
- Configuration database with remote management
|
|
|
|
- OpenFlow 1.0
|
|
|
|
- GRE tunneling
|
|
|
|
- Support for XenServer 5.5 and 5.6
|
|
|
|
- Performance and scalability improvements
|
|
|
|
- Bug fixes
|
|
|
|
|
2010-02-18 23:38:42 -08:00
|
|
|
v0.99.2 - 18 Feb 2010
|
|
|
|
---------------------
|
|
|
|
- Bug fixes
|
|
|
|
|
2010-01-25 23:09:58 -08:00
|
|
|
v0.99.1 - 25 Jan 2010
|
|
|
|
---------------------
|
|
|
|
- Add support for sFlow(R)
|
|
|
|
- Make headers compatible with C++
|
|
|
|
- Bug fixes
|
|
|
|
|
2010-01-14 23:24:09 -08:00
|
|
|
v0.99.0 - 14 Jan 2010
|
|
|
|
---------------------
|
|
|
|
- User-space forwarding engine
|
|
|
|
- Bug fixes
|
2011-08-08 09:35:01 -07:00
|
|
|
|
2009-11-29 11:23:32 -08:00
|
|
|
v0.90.7 - 29 Nov 2009
|
|
|
|
---------------------
|
|
|
|
- Add support for NetFlow active timeouts
|
|
|
|
- Bug fixes
|
2010-01-14 23:24:09 -08:00
|
|
|
|
2009-10-06 14:25:36 -07:00
|
|
|
v0.90.6 - 6 Oct 2009
|
|
|
|
--------------------
|
|
|
|
- Bug fixes
|
|
|
|
|
2009-09-21 13:08:12 -07:00
|
|
|
v0.90.5 - 21 Sep 2009
|
2009-09-07 20:44:25 -07:00
|
|
|
---------------------
|
|
|
|
- Generalize in-band control to more diverse network setups
|
|
|
|
- Bug fixes
|