在CentOS 7中配置bond的步驟如下:
sudo yum install -y ifenslave
/etc/sysconfig/network-scripts/ifcfg-bond0
,添加以下內(nèi)容:DEVICE=bond0
BOOTPROTO=static
ONBOOT=yes
TYPE=Bond
BONDING_MASTER=yes
BONDING_OPTS="mode=0 miimon=100"
/etc/sysconfig/network-scripts/ifcfg-eth0
和/etc/sysconfig/network-scripts/ifcfg-eth1
,分別配置兩個(gè)物理網(wǎng)絡(luò)接口。ifcfg-eth0:
DEVICE=eth0
BOOTPROTO=none
ONBOOT=yes
MASTER=bond0
SLAVE=yes
ifcfg-eth1:
DEVICE=eth1
BOOTPROTO=none
ONBOOT=yes
MASTER=bond0
SLAVE=yes
sudo systemctl restart network
cat /proc/net/bonding/bond0
命令查看bond0的詳細(xì)信息,確認(rèn)配置生效。以上是在CentOS 7中配置bond的基本步驟,根據(jù)具體需求還可以配置其他參數(shù)和模式。