2
0
mirror of https://github.com/openvswitch/ovs synced 2025-08-22 01:51:26 +00:00

netdev: Deprecate CAPWAP support.

The CAPWAP implementation is just the encapsulation format and
therefore really not the full protocol.  While there were some
uses of it (primarily hardware support and UDP transport).  But
these are most likely better provided by VXLAN.  As a result,
CAPWAP will be removed no earlier than February 2013.

Signed-off-by: Pravin B Shelar <pshelar@nicira.com>
This commit is contained in:
Pravin B Shelar 2012-11-05 13:40:17 -08:00
parent 2315e6b5bc
commit 1280bf0e51
4 changed files with 9 additions and 0 deletions

1
NEWS
View File

@ -60,6 +60,7 @@ v1.9.0 - xx xxx xxxx
- Interface type "null".
- Numeric values for reserved ports (see "ovs-ofctl" note above).
- Tunnel Path MTU Discovery.
- CAPWAP tunnel support.
- The data in the RARP packets can now be matched in the same way as the
data in ARP packets.

1
debian/changelog vendored
View File

@ -49,6 +49,7 @@ openvswitch (1.9.0-1) unstable; urgency=low
- Interface type "null".
- Numeric values for reserved ports (see "ovs-ofctl" note above).
- Tunnel Path MTU Discovery.
- CAPWAP tunnel support.
- The data in the RARP packets can now be matched in the same way as the
data in ARP packets.

View File

@ -590,6 +590,10 @@ parse_tunnel_config(const char *name, const char *type,
ovs_be32 saddr = htonl(0);
uint32_t flags;
if (!strcmp(type, "capwap")) {
VLOG_WARN_ONCE("CAPWAP tunnel support is deprecated.");
}
flags = TNL_F_DF_DEFAULT | TNL_F_HDR_CACHE;
if (!strcmp(type, "gre") || !strcmp(type, "gre64")) {
is_gre = true;

View File

@ -1233,6 +1233,9 @@
implemented. UDP ports 58881 and 58882 are used as the source and
destination ports respectively. CAPWAP is currently supported only
with the Linux kernel datapath with kernel version 2.6.26 or later.
CAPWAP support is deprecated and will be removed no earlier than
February 2013.
</dd>
<dt><code>patch</code></dt>