Kconfig 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. #
  2. # Open vSwitch
  3. #
  4. config OPENVSWITCH
  5. tristate "Open vSwitch"
  6. depends on INET
  7. select LIBCRC32C
  8. select NET_MPLS_GSO
  9. ---help---
  10. Open vSwitch is a multilayer Ethernet switch targeted at virtualized
  11. environments. In addition to supporting a variety of features
  12. expected in a traditional hardware switch, it enables fine-grained
  13. programmatic extension and flow-based control of the network. This
  14. control is useful in a wide variety of applications but is
  15. particularly important in multi-server virtualization deployments,
  16. which are often characterized by highly dynamic endpoints and the
  17. need to maintain logical abstractions for multiple tenants.
  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. See http://openvswitch.org for more information and userspace
  23. utilities.
  24. To compile this code as a module, choose M here: the module will be
  25. called openvswitch.
  26. If unsure, say N.
  27. config OPENVSWITCH_GRE
  28. tristate "Open vSwitch GRE tunneling support"
  29. depends on OPENVSWITCH
  30. depends on NET_IPGRE_DEMUX
  31. default OPENVSWITCH
  32. ---help---
  33. If you say Y here, then the Open vSwitch will be able create GRE
  34. vport.
  35. Say N to exclude this support and reduce the binary size.
  36. If unsure, say Y.
  37. config OPENVSWITCH_VXLAN
  38. tristate "Open vSwitch VXLAN tunneling support"
  39. depends on OPENVSWITCH
  40. depends on VXLAN
  41. default OPENVSWITCH
  42. ---help---
  43. If you say Y here, then the Open vSwitch will be able create vxlan vport.
  44. Say N to exclude this support and reduce the binary size.
  45. If unsure, say Y.
  46. config OPENVSWITCH_GENEVE
  47. tristate "Open vSwitch Geneve tunneling support"
  48. depends on OPENVSWITCH
  49. depends on GENEVE
  50. default OPENVSWITCH
  51. ---help---
  52. If you say Y here, then the Open vSwitch will be able create geneve vport.
  53. Say N to exclude this support and reduce the binary size.