Kconfig 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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. select LIBCRC32C
  10. select MPLS
  11. select NET_MPLS_GSO
  12. ---help---
  13. Open vSwitch is a multilayer Ethernet switch targeted at virtualized
  14. environments. In addition to supporting a variety of features
  15. expected in a traditional hardware switch, it enables fine-grained
  16. programmatic extension and flow-based control of the network. This
  17. control is useful in a wide variety of applications but is
  18. particularly important in multi-server virtualization deployments,
  19. which are often characterized by highly dynamic endpoints and the
  20. need to maintain logical abstractions for multiple tenants.
  21. The Open vSwitch datapath provides an in-kernel fast path for packet
  22. forwarding. It is complemented by a userspace daemon, ovs-vswitchd,
  23. which is able to accept configuration from a variety of sources and
  24. translate it into packet processing rules.
  25. See http://openvswitch.org for more information and userspace
  26. utilities.
  27. To compile this code as a module, choose M here: the module will be
  28. called openvswitch.
  29. If unsure, say N.
  30. config OPENVSWITCH_GRE
  31. tristate "Open vSwitch GRE tunneling support"
  32. depends on OPENVSWITCH
  33. depends on NET_IPGRE
  34. default OPENVSWITCH
  35. ---help---
  36. If you say Y here, then the Open vSwitch will be able create GRE
  37. vport.
  38. Say N to exclude this support and reduce the binary size.
  39. If unsure, say Y.
  40. config OPENVSWITCH_VXLAN
  41. tristate "Open vSwitch VXLAN tunneling support"
  42. depends on OPENVSWITCH
  43. depends on VXLAN
  44. default OPENVSWITCH
  45. ---help---
  46. If you say Y here, then the Open vSwitch will be able create vxlan vport.
  47. Say N to exclude this support and reduce the binary size.
  48. If unsure, say Y.
  49. config OPENVSWITCH_GENEVE
  50. tristate "Open vSwitch Geneve tunneling support"
  51. depends on OPENVSWITCH
  52. depends on GENEVE
  53. default OPENVSWITCH
  54. ---help---
  55. If you say Y here, then the Open vSwitch will be able create geneve vport.
  56. Say N to exclude this support and reduce the binary size.