码迷,mamicode.com
首页 > 其他好文 > 详细

centos6.x 配置bond

时间:2018-09-05 21:34:41      阅读:584      评论:0      收藏:0      [点我收藏+]

标签:href   ipa   device   int   pre   scripts   直接   gate   eth   

1 物理网卡配置
2 bond0网卡配置
3 查看bond0网卡状态

摘要: centos6.x下使用双网卡配置bond0, centos6 bond配置不需要在/etc/modprobe 中定义bond 直接在网卡中定义BONDING_OPTS 即可,例如bond0: BONDING_OPTS="mode=0 miimon=100"

物理网卡eth0 eth1绑定为bond0

1 物理网卡配置

ifcfg-eth0

DEVICE=eth0
ONBOOT=yes
BOOTPROTO=none
MASTER=bond0
SLAVE=yes

ifcfg-eth1

DEVICE=eth1
ONBOOT=yes
BOOTPROTO=none
MASTER=bond0
SLAVE=yes

 

2 bond0网卡配置

ifcfg-bond0

DEVICE=bond0
ONBOOT=yes
BOOTPROTO=none
IPADDR=xx.xx.xx.xx
NETMASK=xx.xx.xx.xx
GATEWAY=xx.xx.xx.xx
DNS1=xx.xx.xx.xx
BONDING_OPTS="mode=0 miimon=100"

重启网卡

service network restart

3 查看bond0网卡状态

[root@localhost network-scripts]# cat /proc/net/bonding/bond0
EthernetChannelBondingDriver: v3.7.1(April27,2011)
BondingMode: load balancing (round-robin)
MII Status: up
MII PollingInterval(ms):100
UpDelay(ms):0
DownDelay(ms):0
SlaveInterface: eth1
MII Status: up
Speed:1000Mbps
Duplex: full
LinkFailureCount:0
Permanent HW addr:00:0c:29:a1:34:eb
Slave queue ID:0
SlaveInterface: eth2
MII Status: up
Speed:1000Mbps
Duplex: full
LinkFailureCount:0
Permanent HW addr:00:0c:29:a1:34:e1
Slave queue ID:0

  Tips: 日志可以使用tailf /var/log/messages实时查看

 

本文来自于https://www.cnblogs.com/liwanggui/p/6807229.html,如有侵权,请联系1042038872@qq.com删除。谢谢

 

centos6.x 配置bond

标签:href   ipa   device   int   pre   scripts   直接   gate   eth   

原文地址:https://www.cnblogs.com/zzf0305/p/9594165.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!