Kconfig 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. #
  3. # Open vSwitch
  4. #
  5. config OPENVSWITCH
  6. tristate "Open vSwitch"
  7. depends on INET
  8. depends on !NF_CONNTRACK || \
  9. (NF_CONNTRACK && ((!NF_DEFRAG_IPV6 || NF_DEFRAG_IPV6) && \
  10. (!NF_NAT || NF_NAT) && \
  11. (!NETFILTER_CONNCOUNT || NETFILTER_CONNCOUNT)))
  12. depends on PSAMPLE || !PSAMPLE
  13. select MPLS
  14. select NET_CRC32C
  15. select NET_MPLS_GSO
  16. select DST_CACHE
  17. select NET_NSH
  18. select NF_CONNTRACK_OVS if NF_CONNTRACK
  19. select NF_NAT_OVS if NF_NAT
  20. help
  21. Open vSwitch is a multilayer Ethernet switch targeted at virtualized
  22. environments. In addition to supporting a variety of features
  23. expected in a traditional hardware switch, it enables fine-grained
  24. programmatic extension and flow-based control of the network. This
  25. control is useful in a wide variety of applications but is
  26. particularly important in multi-server virtualization deployments,
  27. which are often characterized by highly dynamic endpoints and the
  28. need to maintain logical abstractions for multiple tenants.
  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. See http://openvswitch.org for more information and userspace
  34. utilities.
  35. To compile this code as a module, choose M here: the module will be
  36. called openvswitch.
  37. If unsure, say N.
  38. config OPENVSWITCH_GRE
  39. tristate "Open vSwitch GRE tunneling support"
  40. depends on OPENVSWITCH
  41. depends on NET_IPGRE
  42. default OPENVSWITCH
  43. help
  44. If you say Y here, then the Open vSwitch will be able create GRE
  45. vport.
  46. Say N to exclude this support and reduce the binary size.
  47. If unsure, say Y.
  48. config OPENVSWITCH_VXLAN
  49. tristate "Open vSwitch VXLAN tunneling support"
  50. depends on OPENVSWITCH
  51. depends on VXLAN
  52. default OPENVSWITCH
  53. help
  54. If you say Y here, then the Open vSwitch will be able create vxlan vport.
  55. Say N to exclude this support and reduce the binary size.
  56. If unsure, say Y.
  57. config OPENVSWITCH_GENEVE
  58. tristate "Open vSwitch Geneve tunneling support"
  59. depends on OPENVSWITCH
  60. depends on GENEVE
  61. default OPENVSWITCH
  62. help
  63. If you say Y here, then the Open vSwitch will be able create geneve vport.
  64. Say N to exclude this support and reduce the binary size.