Kconfig 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. menuconfig NET_TEAM
  2. tristate "Ethernet team driver support (EXPERIMENTAL)"
  3. depends on EXPERIMENTAL
  4. ---help---
  5. This allows one to create virtual interfaces that teams together
  6. multiple ethernet devices.
  7. Team devices can be added using the "ip" command from the
  8. iproute2 package:
  9. "ip link add link [ address MAC ] [ NAME ] type team"
  10. To compile this driver as a module, choose M here: the module
  11. will be called team.
  12. if NET_TEAM
  13. config NET_TEAM_MODE_ROUNDROBIN
  14. tristate "Round-robin mode support"
  15. depends on NET_TEAM
  16. ---help---
  17. Basic mode where port used for transmitting packets is selected in
  18. round-robin fashion using packet counter.
  19. All added ports are setup to have bond's mac address.
  20. To compile this team mode as a module, choose M here: the module
  21. will be called team_mode_roundrobin.
  22. config NET_TEAM_MODE_ACTIVEBACKUP
  23. tristate "Active-backup mode support"
  24. depends on NET_TEAM
  25. ---help---
  26. Only one port is active at a time and the rest of ports are used
  27. for backup.
  28. Mac addresses of ports are not modified. Userspace is responsible
  29. to do so.
  30. To compile this team mode as a module, choose M here: the module
  31. will be called team_mode_activebackup.
  32. endif # NET_TEAM