blob: 2a9673e39ca116d0d01d34e6a56e174f5fb7513f [file] [log] [blame]
Jesse Grossccb13522011-10-25 19:26:31 -07001#
2# Open vSwitch
3#
4
5config OPENVSWITCH
6 tristate "Open vSwitch"
Joe Stringera175a722013-08-22 12:30:48 -07007 select LIBCRC32C
Jesse Grossccb13522011-10-25 19:26:31 -07008 ---help---
9 Open vSwitch is a multilayer Ethernet switch targeted at virtualized
10 environments. In addition to supporting a variety of features
11 expected in a traditional hardware switch, it enables fine-grained
12 programmatic extension and flow-based control of the network. This
13 control is useful in a wide variety of applications but is
14 particularly important in multi-server virtualization deployments,
15 which are often characterized by highly dynamic endpoints and the
16 need to maintain logical abstractions for multiple tenants.
17
18 The Open vSwitch datapath provides an in-kernel fast path for packet
19 forwarding. It is complemented by a userspace daemon, ovs-vswitchd,
20 which is able to accept configuration from a variety of sources and
21 translate it into packet processing rules.
22
Jesse Grossccb13522011-10-25 19:26:31 -070023 See http://openvswitch.org for more information and userspace
24 utilities.
25
26 To compile this code as a module, choose M here: the module will be
27 called openvswitch.
28
29 If unsure, say N.
Pravin B Shelarfb825a52013-06-28 16:07:40 -070030
31config OPENVSWITCH_GRE
Thomas Graf62b9c8d2014-10-22 17:29:06 +020032 tristate "Open vSwitch GRE tunneling support"
Pravin B Shelarfb825a52013-06-28 16:07:40 -070033 depends on INET
34 depends on OPENVSWITCH
Thomas Graf62b9c8d2014-10-22 17:29:06 +020035 depends on NET_IPGRE_DEMUX
36 default OPENVSWITCH
Pravin B Shelarfb825a52013-06-28 16:07:40 -070037 ---help---
38 If you say Y here, then the Open vSwitch will be able create GRE
39 vport.
40
41 Say N to exclude this support and reduce the binary size.
42
43 If unsure, say Y.
Pravin B Shelar58264842013-08-19 11:23:34 -070044
45config OPENVSWITCH_VXLAN
Thomas Graf62b9c8d2014-10-22 17:29:06 +020046 tristate "Open vSwitch VXLAN tunneling support"
Pravin B Shelar58264842013-08-19 11:23:34 -070047 depends on INET
48 depends on OPENVSWITCH
Thomas Graf62b9c8d2014-10-22 17:29:06 +020049 depends on VXLAN
50 default OPENVSWITCH
Pravin B Shelar58264842013-08-19 11:23:34 -070051 ---help---
52 If you say Y here, then the Open vSwitch will be able create vxlan vport.
53
54 Say N to exclude this support and reduce the binary size.
55
56 If unsure, say Y.
Jesse Grossf5796682014-10-03 15:35:33 -070057
58config OPENVSWITCH_GENEVE
Thomas Graf62b9c8d2014-10-22 17:29:06 +020059 tristate "Open vSwitch Geneve tunneling support"
Jesse Grossf5796682014-10-03 15:35:33 -070060 depends on INET
61 depends on OPENVSWITCH
Thomas Graf62b9c8d2014-10-22 17:29:06 +020062 depends on GENEVE
63 default OPENVSWITCH
Jesse Grossf5796682014-10-03 15:35:33 -070064 ---help---
65 If you say Y here, then the Open vSwitch will be able create geneve vport.
66
67 Say N to exclude this support and reduce the binary size.