首页 > 代码库 > 网卡绑定
网卡绑定
多块网卡绑定为一个逻辑网卡,ip地址配置在绑定后的逻辑网卡上,提高带宽及稳定性
绑定后的逻辑网卡名字为bound0
创建绑定网卡配置文件 vim /etc/sysconfig/network-scripts/ifcfg-bound0
DEVICE=bound0
IPADDR=192.168.200.1
PREFIX=24
ONBOOT=yes
BOOTPROTO=none
USERCTL=no
BONDING_OPTS="mode=1 miimon=50" 持续周期50,mode1为主动备份模式,若为平衡轮训可为mode0,这样可以提高带宽
相应修改ifcrfg-eth0与ifcfg-eth1,配置文件如下
DEVICE=eth0 另一个为eth1
BOOTPROTO=none
ONBOOT=yes
MASTER=bound0 从属于bound0网卡
SLAVE=yes slave模式开启
USERCTL=no
为bound0添加驱动 vim /etc/modprobe.d/bounding.conf
alias bound0 bounding
options bound0 miimon=50 mode=1
给权限chmod a+rx /etc/modprobed.d/bounding.conf
启动bound0 ifup bound0 或者重启网卡
ifconfig查看ip是否成功
本文出自 “北极的linux” 博客,请务必保留此出处http://941012521.blog.51cto.com/9253690/1546938
网卡绑定