Debian 8 - Bonding with Bridge
Nov 30, 2015

Enable LACP on your switch.

  1. /etc/network/interfaces

    ``` auto eth0 iface eth0 inet manual

auto eth1 iface eth1 inet manual

auto br0 iface br0 inet static address ADDRESS netmask 255.255.255.0 broadcast BROADCAST gateway GATEWAY bridge-stp off bridge-waitport 0 bridge-fd 0 bridge-ports bond0

auto bond0 iface bond0 inet manual slaves eth0 eth1 bond-mode 802.3ad bond-miimon 100 bond-downdelay 200 bond-updelay 200


2. `/etc/modules-load.d/modules.conf`

bonding mii


3. `/etc/modprobe.d/bonding.conf`

options bonding mode=4 miimon=100 lacp_rate=1 ```

  1. apt-get install bridge-utils ifenslave
Comments