Bind the bond dual nic and linuxbond dual Nic in linux
Step 1: # vi/etc/sysconfig/network-scripts/ifcfg-bond0 DEVICE = bond0 BONDING_OPTS = "mode = 0 miimon = 100" BOOTPROTO = none ONBOOT = yes BROADCAST = 192.168.0.255 IPADDR = 192.168.0.180 NETMASK = 255.255.255.0 NETWORK = 192.168.0.0 USERCTL = no BONDING_OPTS = "mode = 0 miimon = 100 ", mode has multiple modes to implement different functions,Cloud server, cloud database solution, network security protection preferredStep 2: # vi/etc/sysconfig/network-scripts/ifcfg-eth0 DEVICE = eth0 BOOTPROTO = none ONBOOT = yes MASTER = bond0 SLAVE = yes USERCTL = no # vi/etc/sysconfig/network-scripts /ifcfg-eth1 DEVICE = eth1 BOOTPROTO = none ONBOOT = yes MASTER = bond0 SLAVE = yes USERCTL = no Step 3: configure/etc/modprobe. conf, add alias bond0 bonding # vi/etc/modprobe. confalias eth0 e1000e alias eth1 e1000e alias scsi_hostadapter mptbasealias scsi_hostadapter1 mptspi alias bond0 bonding Step 4: restart the network service # service network restart