====== Créer un bridge au dessus d'un bond sous Ubuntu ====== Testé sous Ubuntu LTS 12.04 sudo apt-get install ifenslave-2.6 bridge-utils echo bonding >> /etc/modules Éditer le fichier /etc/network/interfaces et y mettre quelque chose comme ça: auto lo iface lo inet loopback auto eth0 iface eth0 inet manual bond-master bond0 auto eth1 iface eth1 inet manual bond-master bond0 auto bond0 iface bond0 inet manual bond-mode 5 bond-miimon 100 bond-slaves eth0 eth1 auto br0 iface br0 inet static address 192.168.7.6 netmask 255.255.255.0 gateway 192.168.7.1 bridge_ports bond0 bridge_stp off bridge_fd 0 bridge_maxwait 0 Le mode 4 (LACP) est probablement mieux pour le bonding, mais nécessite des switchs compatibles et configurés