Kconfig 2.1 KB

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