blob: 15bd287f5cbdbf879791ab873f3c572ec28190da [file] [log] [blame]
Thomas Gleixnerec8f24b2019-05-19 13:07:45 +01001# SPDX-License-Identifier: GPL-2.0-only
Jesse Grossccb13522011-10-25 19:26:31 -07002#
3# Open vSwitch
4#
5
6config OPENVSWITCH
7 tristate "Open vSwitch"
Pravin B Shelar8cd43132014-11-13 22:21:30 -08008 depends on INET
Joe Stringer38c089d2015-09-11 15:01:16 -07009 depends on !NF_CONNTRACK || \
Jarno Rajahalme05752522016-03-10 10:54:23 -080010 (NF_CONNTRACK && ((!NF_DEFRAG_IPV6 || NF_DEFRAG_IPV6) && \
Arnd Bergmann99b72482016-03-18 14:33:45 +010011 (!NF_NAT || NF_NAT) && \
Yi-Hung Wei11efd5c2018-05-24 17:56:43 -070012 (!NETFILTER_CONNCOUNT || NETFILTER_CONNCOUNT)))
Joe Stringera175a722013-08-22 12:30:48 -070013 select LIBCRC32C
Eric W. Biederman7d5f41f2015-03-07 16:24:23 -060014 select MPLS
Pravin B Shelar8cd43132014-11-13 22:21:30 -080015 select NET_MPLS_GSO
Paolo Abenid71785f2016-02-12 15:43:57 +010016 select DST_CACHE
Yi Yangb2d0f5d2017-11-07 21:07:02 +080017 select NET_NSH
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +090018 help
Jesse Grossccb13522011-10-25 19:26:31 -070019 Open vSwitch is a multilayer Ethernet switch targeted at virtualized
20 environments. In addition to supporting a variety of features
21 expected in a traditional hardware switch, it enables fine-grained
22 programmatic extension and flow-based control of the network. This
23 control is useful in a wide variety of applications but is
24 particularly important in multi-server virtualization deployments,
25 which are often characterized by highly dynamic endpoints and the
26 need to maintain logical abstractions for multiple tenants.
27
28 The Open vSwitch datapath provides an in-kernel fast path for packet
29 forwarding. It is complemented by a userspace daemon, ovs-vswitchd,
30 which is able to accept configuration from a variety of sources and
31 translate it into packet processing rules.
32
Jesse Grossccb13522011-10-25 19:26:31 -070033 See http://openvswitch.org for more information and userspace
34 utilities.
35
36 To compile this code as a module, choose M here: the module will be
37 called openvswitch.
38
39 If unsure, say N.
Pravin B Shelarfb825a52013-06-28 16:07:40 -070040
41config OPENVSWITCH_GRE
Thomas Graf62b9c8d2014-10-22 17:29:06 +020042 tristate "Open vSwitch GRE tunneling support"
Pravin B Shelarfb825a52013-06-28 16:07:40 -070043 depends on OPENVSWITCH
Pravin B Shelarb2acd1d2015-08-07 23:51:47 -070044 depends on NET_IPGRE
Thomas Graf62b9c8d2014-10-22 17:29:06 +020045 default OPENVSWITCH
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +090046 help
Pravin B Shelarfb825a52013-06-28 16:07:40 -070047 If you say Y here, then the Open vSwitch will be able create GRE
48 vport.
49
50 Say N to exclude this support and reduce the binary size.
51
52 If unsure, say Y.
Pravin B Shelar58264842013-08-19 11:23:34 -070053
Thomas Grafdcc38c02015-07-29 13:52:06 +020054config OPENVSWITCH_VXLAN
55 tristate "Open vSwitch VXLAN tunneling support"
56 depends on OPENVSWITCH
57 depends on VXLAN
58 default OPENVSWITCH
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +090059 help
Thomas Grafdcc38c02015-07-29 13:52:06 +020060 If you say Y here, then the Open vSwitch will be able create vxlan vport.
61
62 Say N to exclude this support and reduce the binary size.
63
64 If unsure, say Y.
65
Jesse Grossf5796682014-10-03 15:35:33 -070066config OPENVSWITCH_GENEVE
Thomas Graf62b9c8d2014-10-22 17:29:06 +020067 tristate "Open vSwitch Geneve tunneling support"
Jesse Grossf5796682014-10-03 15:35:33 -070068 depends on OPENVSWITCH
Pravin B Shelar6b001e62015-08-26 23:46:53 -070069 depends on GENEVE
Thomas Graf62b9c8d2014-10-22 17:29:06 +020070 default OPENVSWITCH
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +090071 help
Jesse Grossf5796682014-10-03 15:35:33 -070072 If you say Y here, then the Open vSwitch will be able create geneve vport.
73
74 Say N to exclude this support and reduce the binary size.