Bond轻松提高网速,将网卡协商速率从1000Mb/s提升到2000Mb/s

服务器传输速率很慢怎么办?教你轻松将速率从1000Mb/s提升到2000Mb/s.

1、使用命令 # ethtool ens33 查询协商速率,单个网卡为1000Mb/s
from zhutong@jianshu
2、打开虚拟机编辑,添加双网卡
from zhutong@jianshu
3、接口配置文件
[root@localhost ]   cd /etc/sysconfig/network-scripts
[root@localhost network-scripts]# vim ifcfg-bond0
DEVICE=bond0
TYPE=Ethernet
ONBOOT=yes
NM_CONTROLLED=no
BOOTPROTO=none
IPADDR=10.18.46.149
PREFIX=24
IPV6INIT=no
USERCTL=no
GATEWAYG=10.18.46.1


[root@localhost network-scripts]# cat ifcfg-ens33
TYPE=Ethernet
BOOTPROTO=none
IPV6INIT=no
USERCTL=no
NAME=ens33
DEVICE=ens33
ONBOOT=yes
NM_CONTROLLED=no
MASTER=bond0
SLAVE=yes

[root@localhost network-scripts]# cp ifcfg-ens33 ifcfg-ens37
[root@localhost network-scripts]# cat ifcfg-ens37
TYPE=Ethernet
BOOTPROTO=none
IPV6INIT=no
USERCTL=no
NAME=ens37
DEVICE=ens37
ONBOOT=yes
NM_CONTROLLED=no
MASTER=bond0
SLAVE=yes


4、bonding配置文件
[root@localhost network-scripts]# vim /etc/modprobe.d/bond0.conf
from zhutong@jianshu
[root@localhost network-scripts]# cat /etc/modprobe.d/bond0.conf 
alias bond0 bonding
options bonding mode=0 miimon=100

5、重启网络服务
systemctl  restart network  ##centos 7以上版本
service   network  restart   ##centos 7以下版本
6、大功告成,查看结果
如果显示2000Mb/s,证明成功;若没有成功,很有可能是前期那些接口配置文件有错误。
from zhutong@jianshu
7、ping百度,若是ping不通,添加域名解析服务器
from zhutong@jianshu
8、完美
from zhutong@jianshu

苍蝇也是肉,一分也是爱。既然都读到了这儿,喜欢、关注留一个呗~(.) ~

你可能感兴趣的:(Bond轻松提高网速,将网卡协商速率从1000Mb/s提升到2000Mb/s)