Bonding

From Alpine Linux
Revision as of 14:09, 10 May 2012 by Ncopa (talk | contribs) (Created page with "This article shows how to bond (or aggregate) multiple ethernet interfaces into a bond0 interface. ==Installation== First, install the ''bonding'' package. This will give you su...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

This article shows how to bond (or aggregate) multiple ethernet interfaces into a bond0 interface.

Installation

First, install the bonding package. This will give you support for bonding in the /etc/network/interfaces file.

apk add bonding

Configuration

Edit the /etc/network/interfaces file:

Contents of

auto bond0 iface bond0 inet static address 192.168.0.2 netmask 255.255.255.0 gateway 192.168.0.1 # specify the ethernet interfaces that should be bonded bond-slaves eth0 eth1 eth2 eth3

{{{2}}}

References: http://www.kernel.org/doc/Documentation/networking/bonding.txt