linux双网卡绑定
Posted lovening
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux双网卡绑定相关的知识,希望对你有一定的参考价值。
1.用ip a的命令确定哪两个up的端口作为绑定的端口
实际现场可以用ethtool -p来确定电口
2.创建bond0
cd /etc/sysconfig/network-script/
touch ifcfg-bond0
在bond0上添加ip,掩码,另外设置ONBOOT=yes及BOOTPROTO=none或static
设置BOODING_OPTS
3.将需要的网卡绑定
添加MASTER=bond0及SLAVE=yes
4.重启网络
出现:
cat /proc/net/bonding/bond0
排查是eth1的问题,无法绑定,强行ifup开启eth1端口
出现master connection not found or invalid:
解决办法是关闭NetworkManager
#NetworkManager影响到了双网卡绑定
service NetworkManager stop
chkconfig NetworkManager off
以上是关于linux双网卡绑定的主要内容,如果未能解决你的问题,请参考以下文章