首页 > 系统服务 > 详细

Linux6配置bond链路聚合

时间:2021-04-22 16:08:42      阅读:35      评论:0      收藏:0      [点我收藏+]

适用于RedHat6以及CentOS6

系统 网卡 bond地址 bond模式 bond功能
Centos6.9 eth0: 192.168.56.11 eth1:192.168.56.12 192.168.56.100 模式0 负载均衡
//1.创建绑定网卡配置文件
[root@xuliangwei ~]# cat ifcfg-bond0
DEVICE=bond0
TYPE=Ethernet
ONBOOT=yes
USERCTL=no
BOOTPROTO=static
IPADDR=192.168.56.200
NETMASK=255.255.255.0
GATEWAY=192.168.56.2
DNS1=192.168.56.2
BONDING_OPTS="mode=0 miimon=50" #如果使用模式1将mode修改为1即可

//2.修改eth0和eth1网卡配置文件
[root@xuliangwei ~]# vim /etc/sysconfig/network-scripts/ifcfg-eth0
DEVICE=eth0
TYPE=Ethernet
ONBOOT=yes
USERCTL=no
BOOTPROTO=none
MASTER=bond0
SLAVE=yes
[root@xuliangwei ~]# vim /etc/sysconfig/network-scripts/ifcfg-eth1
DEVICE=eth1
TYPE=Ethernet
ONBOOT=yes
USERCTL=no
BOOTPROTO=none
MASTER=bond0
SLAVE=yes

//3.添加驱动支持bond0
[root@xuliangwei ~]# vim /etc/modprobe.d/bonding.conf
alias bond0 bonding

Linux6配置bond链路聚合

原文:https://www.cnblogs.com/oldxu/p/14688719.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!