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

CentOS7多网卡手动绑定

时间:2018-02-11 18:05:10      阅读:225      评论:0      收藏:0      [点我收藏+]

标签:slave   pts   centos   2.3   toolbar   stop   eth-trunk   system   bond   

关闭NetworkManager:

systemctl stop NetworkManager


一、(mode0)轮询模式:

[root@centos7 network-scripts]# vi ifcfg-bond0 
DEVICE=bond0
TYPE=Ethernet
ONBOOT=yes
NM_CONTROLLED=yes
BOOTPROTO=static
BONDING_OPTS="mode=0 miimon=100"
BONDING_MASTER=yes
[root@centos7 network-scripts]# vi ifcfg-eth0
DEVICE=eth0
TYPE=Ethernet
ONBOOT=yes
NM_CONTROLLED=yes
BOOTPROTO=none
MASTER=bond0
SLAVE=yes


[root@centos7 network-scripts]# vi ifcfg-eth1

DEVICE=eth1

TYPE=Ethernet

ONBOOT=yes

NM_CONTROLLED=yes

BOOTPROTO=none

MASTER=bond0

SLAVE=yes


二、(mode1)主备模式:

[root@centos7 network-scripts]# vi ifcfg-bond0 

DEVICE=bond0

TYPE=Ethernet

ONBOOT=yes

NM_CONTROLLED=yes

BOOTPROTO=static

BONDING_OPTS="mode=1 miimon=100"

BONDING_MASTER=yes


[root@centos7 network-scripts]# vi ifcfg-eth0

DEVICE=eth0

TYPE=Ethernet

ONBOOT=yes

NM_CONTROLLED=yes

BOOTPROTO=none

MASTER=bond0

SLAVE=yes


[root@centos7 network-scripts]# vi ifcfg-eth1

DEVICE=eth1

TYPE=Ethernet

ONBOOT=yes

NM_CONTROLLED=yes

BOOTPROTO=none

MASTER=bond0

SLAVE=yes


三、(mode2)802.3ad,LACP模式:


华为交换机侧配置:

interface gigabit0/1

   eth-trunk 14

interface gigabit0/1

   eth-trunk 14


interface Eth-Trunk14

 description link-to-centos-server-bond0

 port default vlan 10

 mode lacp


服务器侧配置:

[root@centos7 network-scripts]# vi ifcfg-bond0 

DEVICE=bond0

TYPE=Ethernet

ONBOOT=yes

NM_CONTROLLED=yes

BOOTPROTO=static

BONDING_OPTS="mode=802.3ad miimon=100 lacp_rate=fast"

BONDING_MASTER=yes


[root@centos7 network-scripts]# vi ifcfg-eth0

DEVICE=eth0

TYPE=Ethernet

ONBOOT=yes

NM_CONTROLLED=yes

BOOTPROTO=none

MASTER=bond0

SLAVE=yes


[root@centos7 network-scripts]# vi ifcfg-eth1

DEVICE=eth1

TYPE=Ethernet

ONBOOT=yes

NM_CONTROLLED=yes

BOOTPROTO=none

MASTER=bond0

SLAVE=yes


检查bond状态:

cat /proc/net/bonding/bond0


CentOS7多网卡手动绑定

标签:slave   pts   centos   2.3   toolbar   stop   eth-trunk   system   bond   

原文地址:http://blog.51cto.com/sf1314/2071167

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