mirror of
https://github.com/openvswitch/ovs
synced 2025-08-22 01:51:26 +00:00
openvswitch: deprecates support for IPsec tunnel port.
OVS IPsec tunnel support has issues: 1. It only works for GRE. 2. only works on Debian. 3. It does not allow user to match on packet-mark on packet received on tunnel ports. This patch deprecates support for IPsec tunnel port. Signed-off-by: Pravin B Shelar <pshelar@ovn.org> Acked-by: Ansis Atteka <aatteka@ovn.org>
This commit is contained in:
parent
4196454379
commit
9e9d038491
1
NEWS
1
NEWS
@ -150,6 +150,7 @@ v2.6.0 - xx xxx xxxx
|
||||
* Flow based tunnel match and action can be used for IPv6 address using
|
||||
tun_ipv6_src, tun_ipv6_dst fields.
|
||||
* Added support for IPv6 tunnels, for details checkout FAQ.
|
||||
* Deprecated support for IPsec tunnels ports.
|
||||
- A wrapper script, 'ovs-tcpdump', to easily port-mirror an OVS port and
|
||||
watch with tcpdump
|
||||
- Introduce --no-self-confinement flag that allows daemons to work with
|
||||
|
1
debian/changelog
vendored
1
debian/changelog
vendored
@ -118,6 +118,7 @@ openvswitch (2.6.0-1) unstable; urgency=low
|
||||
* Flow based tunnel match and action can be used for IPv6 address using
|
||||
tun_ipv6_src, tun_ipv6_dst fields.
|
||||
* Added support for IPv6 tunnels, for details checkout FAQ.
|
||||
* Deprecated support for IPsec tunnels ports.
|
||||
- A wrapper script, 'ovs-tcpdump', to easily port-mirror an OVS port and
|
||||
watch with tcpdump
|
||||
- Introduce --no-self-confinement flag that allows daemons to work with
|
||||
|
1
debian/control
vendored
1
debian/control
vendored
@ -200,6 +200,7 @@ Description: Open vSwitch GRE-over-IPsec support
|
||||
.
|
||||
The ovs-monitor-ipsec script provides support for encrypting GRE
|
||||
tunnels with IPsec.
|
||||
IPsec tunnels support is deprecated.
|
||||
|
||||
Package: openvswitch-pki
|
||||
Architecture: all
|
||||
|
@ -543,6 +543,8 @@ set_tunnel_config(struct netdev *dev_, const struct smap *args)
|
||||
static struct ovs_mutex mutex = OVS_MUTEX_INITIALIZER;
|
||||
static pid_t pid = 0;
|
||||
|
||||
VLOG_ERR("%s: OVS IPsec tunnel support is deprecated.", name);
|
||||
|
||||
#ifndef _WIN32
|
||||
ovs_mutex_lock(&mutex);
|
||||
if (pid <= 0) {
|
||||
|
@ -2008,6 +2008,9 @@
|
||||
<dd>
|
||||
An Ethernet over RFC 2890 Generic Routing Encapsulation over IPv4/IPv6
|
||||
IPsec tunnel.
|
||||
IPsec tunnel ports are deprecated. The support will be completely
|
||||
removed in next version.
|
||||
|
||||
</dd>
|
||||
|
||||
<dt><code>vxlan</code></dt>
|
||||
|
Loading…
x
Reference in New Issue
Block a user