2022-08-17 16:08:58 +02:00
2019-06-28 02:28:50 +02:00
2022-07-20 00:54:30 +02:00
2022-08-17 16:08:58 +02:00
2022-08-17 16:08:58 +02:00
2020-05-16 16:45:17 +02:00
2019-06-28 02:28:50 +02:00
2021-08-12 18:27:50 +02:00
2019-06-28 02:28:50 +02:00
2019-06-28 02:28:50 +02:00
2021-07-08 18:56:07 +02:00
2019-06-28 02:28:50 +02:00
2019-06-28 02:28:50 +02:00
2022-07-20 00:54:30 +02:00
2019-11-28 18:29:16 +01:00
2019-06-28 02:28:50 +02:00
2019-06-28 02:28:50 +02:00
2022-06-15 02:10:25 +02:00
2019-06-28 02:28:50 +02:00
2022-01-18 11:07:14 +01:00
2019-06-28 02:28:50 +02:00
2019-06-28 02:28:50 +02:00
2019-06-28 02:28:50 +02:00

# ----------------------------------
# Example Configurations bond device
# ----------------------------------

In /etc/network/interfaces, the following stanza will configure bond0, in
802.3ad mode (mode 4), with eth0 and eth1 as slaves.

-----8<----------8<----------8<----------8<----------8<-----

auto bond0
iface bond0 inet dhcp
 bond-slaves eth0 eth1
 bond-mode 4
 bond-miimon 100
 bond-primary eth0 eth1

-----8<----------8<----------8<----------8<----------8<-----

If the above configuration doesn't work, you might have a system using
upstart for system startup. This is most notably true for recent
Ubuntu versions. The following stanza in /etc/network/interfaces will
produce the same result on those systems.

-----8<----------8<----------8<----------8<----------8<-----

auto bond0
iface bond0 inet dhcp
 bond-slaves none
 bond-mode 4
 bond-miimon 100

auto eth0
iface eth0 inet manual
 bond-master bond0
 bond-primary eth0 eth1

auto eth1
iface eth1 inet manual
 bond-master bond0
 bond-primary eth0 eth1

-----8<----------8<----------8<----------8<----------8<-----

Description
No description provided
Readme 3.8 MiB
Languages
Vim Script 91.5%
Jinja 8.1%
Shell 0.4%