Hello Jurgen, You are mixing up 2 configuration methods:
On Monday 07 March 2011 at 12:42 (CET), [email protected] wrote: > ###Adapter bonding for eth0 and eth1 > auto bond0 > iface bond0 inet static > address 172.16.1.11 > netmask 255.255.0.0 > gateway 172.16.1.1 > dns-nameservers 172.16.1.2 All good so far. > post-up ifenslave bond0 eth0 eth1 > pre-down ifenslave -d bond0 eth0 eth1 This is the old "9.10 and older" way. > bond_mode 4 #802.3ad > bond_miimon 100 > bond_lacp_rate 1 This is the new "10.04 and newer" way. In order to have the last 3 lines applied, you need to replace the ifenslave lines with: bond-slaves eth0 eth1 Regards, Ruben Laban -- ubuntu-server mailing list [email protected] https://lists.ubuntu.com/mailman/listinfo/ubuntu-server More info: https://wiki.ubuntu.com/ServerTeam
