# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).
# The loopback network interface
auto lo
iface lo inet loopback
auto bond0
iface bond0 inet manual
bond-mode 802.3ad
bond-miimon 100
bond-downdelay 200
bond-updelay 200
slaves eth0 eth1
auto br0
iface br0 inet static
address 10.55.0.41
netmask 255.255.0.0
network 10.55.0.0
broadcast 10.55.255.255
gateway 10.55.0.12
# dns-* options are implemented by the resolvconf package, if installed
dns-nameservers 10.55.0.12
dns-search wolf.local
bridge_ports bond0
bridge_fd 5
bridge_stp off
-------------------------------------------------------------------------------------------------------------------------------
This config work in Wheezy, many thanks to Reinhard!
-------------------------------------------------------------------------------------------------------------------------------
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).
# The loopback network interface
auto lo
iface lo inet loopback
auto bond0
iface bond0 inet manual
bond-mode 802.3ad
bond-miimon 100
bond-downdelay 200
bond-updelay 200
bond-slaves none
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
auto br0
iface br0 inet static
address 10.55.0.41
netmask 255.255.0.0
network 10.55.0.0
broadcast 10.55.255.255
gateway 10.55.0.12
# dns-* options are implemented by the resolvconf package, if installed
dns-nameservers 10.55.0.12
dns-search wolf.local
bridge_ports bond0
bridge_fd 5
bridge_stp off
-------------------------------------------------------------------------------------------------------------------------------
Samuel