环境
- 操作系统 CentOS7.5,禁用 NetworkManager 服务
- 网卡 eth0
- 网卡 eth1
- 绑定网卡 bond0
网卡 eth0 配置
- 修改 /etc/sysconfig/network-scripts/ifcfg-eth0
TYPE=EthernetBOOTPROTO=noneDEVICE=eth0ONBOOT=yesUSERCTL=noSLAVE=yesMASTER=bond0
网卡 eth1 配置
- 修改 /etc/sysconfig/network-scripts/ifcfg-eth1
TYPE=EthernetBOOTPROTO=noneDEVICE=eth1ONBOOT=yesUSERCTL=noSLAVE=yesMASTER=bond0
配置 bond0 绑定模式
- 创建 /etc/modprobe.d/bonding.conf,加入以下内容
alias bond0 bondingoptions bond0 miimon=100 mode=1
载入 bonding 模块,重启 network 服务
modprob bondingsystemctl restart network