0% found this document useful (0 votes)
30 views2 pages

Bonding

The document describes configuration steps to set up a bonded network interface called bond0 using three Ethernet interfaces eth0, eth1, and eth2. It edits configuration files to set the interfaces as slaves to the bond0 master and configure IP addresses, then loads the bonding module and restarts the network service.

Uploaded by

Hem Chander
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOC, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
30 views2 pages

Bonding

The document describes configuration steps to set up a bonded network interface called bond0 using three Ethernet interfaces eth0, eth1, and eth2. It edits configuration files to set the interfaces as slaves to the bond0 master and configure IP addresses, then loads the bonding module and restarts the network service.

Uploaded by

Hem Chander
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOC, PDF, TXT or read online on Scribd
You are on page 1/ 2

vi /etc/sysconfig/network-scripts/ifcfg-bond0 DEVICE=bond0 IPADDR=192.168. 1.12 NETMASK=255. 255.255.0 GATEWAY=192. 168.1.

1 USERCTL=no BOOTPROTO=none ONBOOT=yes Steps: 2 vi /etc/sysconfig/network-scripts/ifcfg-eth0 DEVICE=eth0 BOOTPROTO=none #HWADDR=00:12:17:5C:A7:9D #IPADDR=192.168.1.12 #NETMASK=255.255.255.0 #TYPE=Ethernet #GATEWAY=192.168.1.1 #USERCTL=no #IPV6INIT=no #PEERDNS=yes ONBOOT=yes # Settings for Bond MASTER=bond0 SLAVE=yes vi /etc/sysconfig/network-scripts/ifcfg-eth1 DEVICE=eth1 BOOTPROTO=none #HWADDR=01:12:18:5C:A7 #IPADDR=192.168.1.13 #NETMASK=255.255.255.0 ONBOOT=yes #TYPE=Ethernet USERCTL=no #IPV6INIT=no #PEERDNS=yes # # Settings for bonding MASTER=bond0 SLAVE=yes vi /etc/sysconfig/network-scripts/ifcfg-eth2

DEVICE=eth2 BOOTPROTO=none #HWADDR=00:12:27:5C:A7:9D #IPADDR=192.168.1.12 #NETMASK=255.255.255.0 ONBOOT=yes #TYPE=Ethernet #GATEWAY=192.168.1.1 #USERCTL=no #IPV6INIT=no #PEERDNS=yes MASTER=bond0 SLAVE=yes vi /etc/modprobe. conf alias bond0 bonding options bond0 mode=balance- alb miimon=100 modprobe bonding /etc/init.d/network restart For Testing cat /proc/net/bonding/bond0

You might also like