Centos上的双网卡绑定

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Centos上的双网卡绑定相关的知识,希望对你有一定的参考价值。

1.登录系统切换目录:

# cd /etc/sysconfig/network-scripts/

2.添加绑定网卡bond#的配置

# vim ifcfg-bond0

DEVICE=bond0

TYPE=Ethernet

ONBOOT=yes

BOOTPROTO=static

IPADDR=59.151.2.134

NETMASK=255.255.255.240

GATEWAY=59.151.2.129

# vim ifcfg-bond1

DEVICE=bond1

TYPE=Ethernet

ONBOOT=yes

BOOTPROTO=static

IPADDR=172.16.10.134

NETMASK=255.255.255.0

3.修改原来的网卡配置文件内容为:

# cat ifcfg-em*

DEVICE=em1

ONBOOT=yes

BOOTPROTO=none

 

DEVICE=em2

ONBOOT=yes

BOOTPROTO=none

 

DEVICE=em3

ONBOOT=yes

BOOTPROTO=none

 

DEVICE=em4

ONBOOT=yes

BOOTPROTO=none

4.dist.conf文件中添加

# vim/etc/modprobe.d/dist.conf

alias bond0bonding

options bond0miimon=100 mode=6

 

alias bond1bonding

options bond1miimon=100 mode=6

 

alias net-pf-10off

alias ipv6 off

 

5./etc/rc.local中添加

ifenslave bond0em1 em2

ifenslave bond1em3 em4


本文出自 “wqh” 博客,请务必保留此出处http://wangqh.blog.51cto.com/5367393/1758788

以上是关于Centos上的双网卡绑定的主要内容,如果未能解决你的问题,请参考以下文章

记录一次centos的双网卡绑定

centos7及以上系统版本的双网卡绑定方法

Centos7双网卡绑定

Centos7 / RHEL 7 双网卡绑定

RHEL5.6的双网卡配置

centos 双网卡绑定 mode哪种好些