Configure Bond using two Ethernet Adapters
The following example sets the xCAT properties for compute node cn1 to create:
Compute node
cn1with two physical NICs:eth2andeth3Bond eth2 and eth3 as
bond0Assign ip
40.0.0.1to the bonded interfacebond0
Add network object into the networks table
Add the network net40 in the networks table
chdef -t network net40 net=40.0.0.0 mask=255.0.0.0
Define attributes in the nics table
Compute node
cn1has two physical NICs:eth2andeth3chdef cn1 nictypes.eth2=ethernet nictypes.eth3=ethernet
Define
bond0and bondeth2andeth3asbond0chdef cn1 nictypes.bond0=bond nicdevices.bond0="eth2|eth3" chdef cn1 nicips.bond0=40.0.0.1
Define
nicnetworksforbond0chdef cn1 nicnetworks.bond0=net40
Enable confignetwork to configure bond
If adding
confignetworkinto the node’s postscripts list,confignetworkwill be executed during OS deployment on compute nodechdef cn1 -p postscripts=confignetwork
Or if the compute node is already running, use
updatenodecommand to runconfignetworkpostscriptupdatenode cn1 -P confignetwork
Verify bonding mode
Login to compute node cn1 and check bonding options in /etc/sysconfig/network-scripts/ifcfg-bond0 file
BONDING_OPTS="mode=802.3ad xmit_hash_policy=layer2+3"
mode=802.3adrequires additional configuration on the switch.mode=2can be used for bonding without additional switch configuration.