请问centos 7.3如何完全删除原双网卡team方式改用bond方式怎么配置(若mode=1或4)上联交换机两入口如何配置互通?
(0)
最佳答案
您好,请知:
以下是centos7.0双网卡捆绑的要点:
Centos6/7多网卡绑定配置
1. 关闭NetworkManager服务
systemctl stop NetworkManager
systemctl disable NetworkManager
2. 加载bond模块
modprobe bonding miimon=100 mode=0
echo "alias bond0 bonding" >>/etc/modprobe.d/bond.conf
echo "options bond0 miimon=100 mode=0" >> /etc/modprobe.d/bond.conf
3. 配置网卡文件,以网卡eth0、eth1做绑定为例
创建网卡bond0的配置文件
vim /etc/sysconfig/network-scripts/ifcfg-bond0
# 添加以下配置,IP地址、掩码、网关按实际填写
DEVICE=bond0
BOOTPROTO=static
USERCTL=no
OnBOOT=yes
TYPE=Bond
BONDING_MASTER=yes
BONDING_OPTS="mode=0 miimon=100"
IPADDR=10.42.31.1
NETMASK=255.255.255.0
GATEWAY=10.42.31.1
#修改网卡eth0的配置文件
vim /etc/sysconfig/network-scripts/ifcfg-eth0
DEVICE=eth0
OnBOOT=yes
BOOTPROTO=none
USERCTL=no
MASTER=bond0
SLAVE=yes
#修改网卡eth1的配置文件
vim /etc/sysconfig/network-scripts/ifcfg-eth1
DEVICE="eth1"
BOOTPROTO="none"
OnBOOT="yes"
USERCTL=no
MASTER=bond0
SLAVE=yes
4. 重启网络服务,确认网络是网卡速率;
systemctl restart network
ethtool bond0
最后在交换机侧部署链路聚合即可。
(0)
亲~登录后才可以操作哦!
确定你的邮箱还未认证,请认证邮箱或绑定手机后进行当前操作
举报
×
侵犯我的权益
×
侵犯了我企业的权益
×
抄袭了我的内容
×
原文链接或出处
诽谤我
×
对根叔社区有害的内容
×
不规范转载
×
举报说明
暂无评论