Bonding on RHEL 6.3 does not work
I have a Server running RHEL 6.3
I am trying to setup a bonding on a private network
Here are my network scripts
1)ifcfg-eth1
DEVICE=eth1
HWADDR=98:4B:E1:02:82:12
MASTER=bond0
SLAVE=yes
TYPE=Ethernet
ONBOOT=no
BOOTPROTO=none
2) ifcfg-eth2
DEVICE=eth2
HWADDR=98:4B:E1:02:82:14
MASTER=bond0
SLAVE=yes
TYPE=Ethernet
ONBOOT=no
BOOTPROTO=NONE
3) ifcfg-bond0
DEVICE=bond0
IPADDR=192.168.10.10
NETMASK=255.255.255.0
NETWORK=192.168.10.0
BROADCAST=192.168.10.255
BOOTPROTO=none
Type=Ethernet
ONBOOT=yes
BONDING_OPTS='miimon=100 mode=1'
lsmod | grep bond
bonding 128245 0
8021q 25349 1 bonding
ipv6 317340 92 bonding,ip6t_REJECT,nf_conntrack_ipv6,nf_defrag_ipv6
However bond0 does not come up .
This is the output of
cat /proc/net/bonding/bond0
Ethernet Channel Bonding Driver: v3.6.0 (September 26, 2009)
Bonding Mode: fault-tolerance (active-backup)
Primary Slave: None
Currently Active Slave: None
MII Status: down
MII Polling Interval (ms): 100
Up Delay (ms): 0
Down Delay (ms): 0
Slave Interface: eth1
MII Status: down
Speed: Unknown
Duplex: Unknown
Link Failure Count: 0
Permanent HW addr: 98:4b:e1:02:82:12
Slave queue ID: 0
Slave Interface: eth2
MII Status: down
Speed: Unknown
Duplex: Unknown
Link Failure Count: 0
Permanent HW addr: 98:4b:e1:02:82:14
Slave queue ID: 0
I am new to networking, so can some one tell me what am i doing wrong here
Thanks
|