blob: 89da9512ec1e1f6b84511abe9f77a40f191101c8 [file] [log] [blame]
Jesse Grossccb13522011-10-25 19:26:31 -07001#
2# Open vSwitch
3#
4
5config OPENVSWITCH
6 tristate "Open vSwitch"
Pravin B Shelar8cd43132014-11-13 22:21:30 -08007 depends on INET
Joe Stringer38c089d2015-09-11 15:01:16 -07008 depends on !NF_CONNTRACK || \
Jarno Rajahalme05752522016-03-10 10:54:23 -08009 (NF_CONNTRACK && ((!NF_DEFRAG_IPV6 || NF_DEFRAG_IPV6) && \
Arnd Bergmann99b72482016-03-18 14:33:45 +010010 (!NF_NAT || NF_NAT) && \
11 (!NF_NAT_IPV4 || NF_NAT_IPV4) && \
Yi-Hung Wei11efd5c2018-05-24 17:56:43 -070012 (!NF_NAT_IPV6 || NF_NAT_IPV6) && \
13 (!NETFILTER_CONNCOUNT || NETFILTER_CONNCOUNT)))
Joe Stringera175a722013-08-22 12:30:48 -070014 select LIBCRC32C
Eric W. Biederman7d5f41f2015-03-07 16:24:23 -060015 select MPLS
Pravin B Shelar8cd43132014-11-13 22:21:30 -080016 select NET_MPLS_GSO
Paolo Abenid71785f2016-02-12 15:43:57 +010017 select DST_CACHE
Yi Yangb2d0f5d2017-11-07 21:07:02 +080018 select NET_NSH
Jesse Grossccb13522011-10-25 19:26:31 -070019 ---help---
20 Open vSwitch is a multilayer Ethernet switch targeted at virtualized
21 environments. In addition to supporting a variety of features
22 expected in a traditional hardware switch, it enables fine-grained
23 programmatic extension and flow-based control of the network. This
24 control is useful in a wide variety of applications but is
25 particularly important in multi-server virtualization deployments,
26 which are often characterized by highly dynamic endpoints and the
27 need to maintain logical abstractions for multiple tenants.
28
29 The Open vSwitch datapath provides an in-kernel fast path for packet
30 forwarding. It is complemented by a userspace daemon, ovs-vswitchd,
31 which is able to accept configuration from a variety of sources and
32 translate it into packet processing rules.
33
Jesse Grossccb13522011-10-25 19:26:31 -070034 See http://openvswitch.org for more information and userspace
35 utilities.
36
37 To compile this code as a module, choose M here: the module will be
38 called openvswitch.
39
40 If unsure, say N.
Pravin B Shelarfb825a52013-06-28 16:07:40 -070041
42config OPENVSWITCH_GRE
Thomas Graf62b9c8d2014-10-22 17:29:06 +020043 tristate "Open vSwitch GRE tunneling support"
Pravin B Shelarfb825a52013-06-28 16:07:40 -070044 depends on OPENVSWITCH
Pravin B Shelarb2acd1d2015-08-07 23:51:47 -070045 depends on NET_IPGRE
Thomas Graf62b9c8d2014-10-22 17:29:06 +020046 default OPENVSWITCH
Pravin B Shelarfb825a52013-06-28 16:07:40 -070047 ---help---
48 If you say Y here, then the Open vSwitch will be able create GRE
49 vport.
50
51 Say N to exclude this support and reduce the binary size.
52
53 If unsure, say Y.
Pravin B Shelar58264842013-08-19 11:23:34 -070054
Thomas Grafdcc38c02015-07-29 13:52:06 +020055config OPENVSWITCH_VXLAN
56 tristate "Open vSwitch VXLAN tunneling support"
57 depends on OPENVSWITCH
58 depends on VXLAN
59 default OPENVSWITCH
60 ---help---
61 If you say Y here, then the Open vSwitch will be able create vxlan vport.
62
63 Say N to exclude this support and reduce the binary size.
64
65 If unsure, say Y.
66
Jesse Grossf5796682014-10-03 15:35:33 -070067config OPENVSWITCH_GENEVE
Thomas Graf62b9c8d2014-10-22 17:29:06 +020068 tristate "Open vSwitch Geneve tunneling support"
Jesse Grossf5796682014-10-03 15:35:33 -070069 depends on OPENVSWITCH
Pravin B Shelar6b001e62015-08-26 23:46:53 -070070 depends on GENEVE
Thomas Graf62b9c8d2014-10-22 17:29:06 +020071 default OPENVSWITCH
Jesse Grossf5796682014-10-03 15:35:33 -070072 ---help---
73 If you say Y here, then the Open vSwitch will be able create geneve vport.
74
75 Say N to exclude this support and reduce the binary size.