,

Linux bonding (teaming)

http://d.hatena.ne.jp/hogem/20080420/1208706909
http://www.linux.or.jp/JF/JFdocs/kernel-docs-2.6/networking/bonding.txt.html

  • /etc/modprobe.d/bonding
alias bond0 bonding
options bonding mode=1 miimon=200
  • /etc/sysconfig/network-script/ifcfg-bond0
DEVICE=bond0
BOOTPROTO=static
BROADCAST=192.168.0.255
IPADDR=192.168.0.10
NETMASK=255.255.255.0
NETWORK=192.168.0.0
ONBOOT=yes
  • /etc/sysconfig/network-script/ifcfg-eth0
DEVICE=eth0
BOOTPROTO=static
ONBOOT=yes
MASTER=bond0
SLAVE=yes
  • /etc/sysconfig/network-script/ifcfg-eth1
DEVICE=eth1
BOOTPROTO=static
ONBOOT=yes
MASTER=bond0
SLAVE=yes