Il faut au minimum 2 interfaces réseau (eth0 / eth1 ici)
Installer ifenslave :
apt-get install ifenslave
Charger le module de bonding :
modprobe bonding
Pour le charger automatiquement à chaque démarrage :
echo 'bonding' >> /etc/modules
Ajouter la configuration dans "/etc/network/interfaces" :
nano /etc/network/interfaces
# Les inferfaces liées
auto bond0
iface bond0 inet dhcp
bond-mode balance-alb
bond-primary eth0
bond-slaves eth0 eth1
bond-miimon 100
bond-downdelay 400
bond-updelay 800