diff options
author | Stijn Tintel <stijn@linux-ipv6.be> | 2021-09-21 14:58:15 +0300 |
---|---|---|
committer | Yousong Zhou <yszhou4tech@gmail.com> | 2021-09-23 09:15:34 +0800 |
commit | 9e45d4534807d372cbb22b1fa734b4d79b42a8a9 (patch) | |
tree | af1632cf158fe88b907daace84f5bed62654394c /net/openvswitch/Makefile | |
parent | b2bfb572a33401bd9437ce84ff53aba0da74d742 (diff) |
openvswitch: add option for failure mode
When Open vSwitch is configured to use a controller, but is unable to
connect to it, Open vSwitch will setup flows to allow all traffic, if
the failure mode is not configured, or set to standalone.
As this might be a security hazard, it is also possible to configure
Open vSwitch in a secure failure mode. Enabling this mode causes Open
vSwitch to drop all traffic if it is unable to connect to the
controller.
Redirect stderr of the command to /dev/null as it does not support the
--if-exists option.
Signed-off-by: Stijn Tintel <stijn@linux-ipv6.be>
Diffstat (limited to 'net/openvswitch/Makefile')
-rw-r--r-- | net/openvswitch/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/openvswitch/Makefile b/net/openvswitch/Makefile index bbe8b4614..1fdc11c07 100644 --- a/net/openvswitch/Makefile +++ b/net/openvswitch/Makefile @@ -17,7 +17,7 @@ include ./openvswitch.mk # PKG_NAME:=openvswitch PKG_VERSION:=$(ovs_version) -PKG_RELEASE:=8 +PKG_RELEASE:=9 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=https://www.openvswitch.org/releases/ PKG_HASH:=7d5797f2bf2449c6a266149e88f72123540f7fe7f31ad52902057ae8d8f88c38 |