#Creating Bonding interfaces on Linux
##Configuration Files
###/etc/sysconfig/network-scripts/ifcfg-eth0 DEVICE=eth0 BOOTPROTO=none ONBOOT=yes #settings for bond MASTER=bond0 SLAVE=yes
###/etc/sysconfig/network-scripts/ifcfg-eth1 DEVICE=eth1 BOOTPROTO=none ONBOOT=yes #settings for bond MASTER=bond0 SLAVE=yes
###/etc/sysconfig/network-scripts/ifcfg-bond0 DEVICE=bond0 IPADDR=192.168.1.1 NETMASK=255.255.255.0 GATEWAY=192.168.1.254 USERCTL=no BOOTPROTO=none ONBOOT=yes
###/etc/modprobe.conf alias bond0 bonding options bond0 mode=balance-xor
##Steps
- Set configuration files
- run
modprobe bonding
- run
service network restart
- check bond information using ``` cat /proc/net/bonding/bond0