Kconfig 2.0 KB

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