bond 步骤:
一:
1. [root@woo ~]# vi /etc/sysconfig/network-scripts/ifcfg-bond0
2. DEVICE=bond0
3. BOOTPROTO=none
4. ONBOOT=yes
5. IPADDR=10.10.10.1
6. NETMASK=255.255.255.0
7. NETWORK=192.168.0.0
二:
[root@woo ~]# vi /etc/sysconfig/network-scripts/ifcfg-eth0
1.DEVICE=eth0
2.BOOTPROTO=none
3.MASTER=bond0
4.SLAVE=yes
1.[root@woo ~]# vi /etc/sysconfig/network-scripts/ifcfg-eth1
2. DEVICE=eth1
3. BOOTPROTO=none
4. MASTER=bond0
5. SLAVE=yes
三:
[root@woo ~]# vi /etc/modprobe.d/bonding.conf
alias bond0 bonding
options bonding mode=0 miimon=200
[root@woo ~]# modprobe bonding
[root@db01 ~]# service network restart