Kconfig 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. #
  2. # Open vSwitch
  3. #
  4. config OPENVSWITCH
  5. tristate "Open vSwitch"
  6. depends on INET
  7. depends on !NF_CONNTRACK || \
  8. (NF_CONNTRACK && ((!NF_DEFRAG_IPV6 || NF_DEFRAG_IPV6) && \
  9. (!NF_NAT || NF_NAT) && \
  10. (!NF_NAT_IPV4 || NF_NAT_IPV4) && \
  11. (!NF_NAT_IPV6 || NF_NAT_IPV6) && \
  12. (!NETFILTER_CONNCOUNT || NETFILTER_CONNCOUNT)))
  13. select LIBCRC32C
  14. select MPLS
  15. select NET_MPLS_GSO
  16. select DST_CACHE
  17. select NET_NSH
  18. ---help---
  19. 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. The Open vSwitch datapath provides an in-kernel fast path for packet
  28. forwarding. It is complemented by a userspace daemon, ovs-vswitchd,
  29. which is able to accept configuration from a variety of sources and
  30. translate it into packet processing rules.
  31. See http://openvswitch.org for more information and userspace
  32. utilities.
  33. To compile this code as a module, choose M here: the module will be
  34. called openvswitch.
  35. If unsure, say N.
  36. config OPENVSWITCH_GRE
  37. tristate "Open vSwitch GRE tunneling support"
  38. depends on OPENVSWITCH
  39. depends on NET_IPGRE
  40. default OPENVSWITCH
  41. ---help---
  42. If you say Y here, then the Open vSwitch will be able create GRE
  43. vport.
  44. Say N to exclude this support and reduce the binary size.
  45. If unsure, say Y.
  46. config OPENVSWITCH_VXLAN
  47. tristate "Open vSwitch VXLAN tunneling support"
  48. depends on OPENVSWITCH
  49. depends on VXLAN
  50. default OPENVSWITCH
  51. ---help---
  52. If you say Y here, then the Open vSwitch will be able create vxlan vport.
  53. Say N to exclude this support and reduce the binary size.
  54. If unsure, say Y.
  55. config OPENVSWITCH_GENEVE
  56. tristate "Open vSwitch Geneve tunneling support"
  57. depends on OPENVSWITCH
  58. depends on GENEVE
  59. default OPENVSWITCH
  60. ---help---
  61. If you say Y here, then the Open vSwitch will be able create geneve vport.
  62. Say N to exclude this support and reduce the binary size.