mirror of
https://github.com/openvswitch/ovs
synced 2025-08-22 09:58:01 +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:
parent
2315e6b5bc
commit
1280bf0e51
1
NEWS
1
NEWS
@ -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
1
debian/changelog
vendored
@ -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.
|
||||
|
||||
|
@ -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;
|
||||
|
@ -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>
|
||||
|
Loading…
x
Reference in New Issue
Block a user