Kconfig (9e9fd65d1fa51d919d54d731be0e66492b5b6c5a) Kconfig (5fc889911a99043a97da1daa0d010ad72cbc3042)
1menuconfig 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
8 Team devices can be added using the "ip" command from the
9 iproute2 package:
10
11 "ip link add link [ address MAC ] [ NAME ] type team"
12
13 To compile this driver as a module, choose M here: the module
14 will be called team.
15
16if NET_TEAM
17
1menuconfig 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
8 Team devices can be added using the "ip" command from the
9 iproute2 package:
10
11 "ip link add link [ address MAC ] [ NAME ] type team"
12
13 To compile this driver as a module, choose M here: the module
14 will be called team.
15
16if NET_TEAM
17
18config NET_TEAM_MODE_BROADCAST
19 tristate "Broadcast mode support"
20 depends on NET_TEAM
21 ---help---
22 Basic mode where packets are transmitted always by all suitable ports.
23
24 All added ports are setup to have team's mac address.
25
26 To compile this team mode as a module, choose M here: the module
27 will be called team_mode_broadcast.
28
18config NET_TEAM_MODE_ROUNDROBIN
19 tristate "Round-robin mode support"
20 depends on NET_TEAM
21 ---help---
22 Basic mode where port used for transmitting packets is selected in
23 round-robin fashion using packet counter.
24
29config NET_TEAM_MODE_ROUNDROBIN
30 tristate "Round-robin mode support"
31 depends on NET_TEAM
32 ---help---
33 Basic mode where port used for transmitting packets is selected in
34 round-robin fashion using packet counter.
35
25 All added ports are setup to have bond's mac address.
36 All added ports are setup to have team's mac address.
26
27 To compile this team mode as a module, choose M here: the module
28 will be called team_mode_roundrobin.
29
30config NET_TEAM_MODE_ACTIVEBACKUP
31 tristate "Active-backup mode support"
32 depends on NET_TEAM
33 ---help---

--- 21 unchanged lines hidden ---
37
38 To compile this team mode as a module, choose M here: the module
39 will be called team_mode_roundrobin.
40
41config NET_TEAM_MODE_ACTIVEBACKUP
42 tristate "Active-backup mode support"
43 depends on NET_TEAM
44 ---help---

--- 21 unchanged lines hidden ---