Bonding Two Network Interface-CentOS

# yum install bind-utils ethtool
# vi /etc/sysconfig/network-scripts/ifcfg-bond0

DEVICE  = "bond0"
NAME = "System bond0"
NM_CONTROLLED = "no"
USERCTL = no
ONBOOT = yes
TYPE =Ethernet
BOOTPROTO = none
DEFROUTE = yes
PEERDNS = no
PEERROUTES = yes
IPV4_FAILURE_FATAL = yes
IPV6INIT = no
IPADDR = 100.0.0.100
NETMASK = 255.255.255.0

#
# vi /etc/sysconfig/network-scripts/ifcfg-eth0

DEVICE  = "eth0"
NAME = "System eth0"
HWADDR =
NM_CONTROLLED = "no"
USERCTL = no
ONBOOT = yes
TYPE =Ethernet
BOOTPROTO = none
MASTER = bond0
SLAVE = yes
#
# vi /etc/sysconfig/network-scripts/ifcfg-eth1

DEVICE  = "eth1"
NAME = "System eth1"
NM_CONTROLLED = "no"
USERCTL = no
ONBOOT = yes
TYPE =Ethernet
BOOTPROTO = none
MASTER = bond0
SLAVE = yes

#
# vi /etc/modprobe.d/bonding.conf

alias bind0 bonding
options bondo mode=5 miimon=100

#
# modprobe bonding
# service networking restart