Kconfig 2.1 KB

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