CentOS 6 / RHEL 6配置bonding 4模式

实现bond 802.3ad or 4 模式:(IEEE 802.3ad),

方式:创建一个整合的组,这个组会共享网速和网络双工(duplex)设置。模式 4 会根据 IEEE 802.3ad 标准使用活动组中的所有网络接口

1、需要交换机配合配置,

2、两端负载均衡模式:基于源IP和目的IP

系统配置:

/etc/modprobe.d/bonding.conf 

alias bond1 bonding
options bond1 mode=4 miimon=100 lacp_rate=fast xmit_hash_policy=layer2+3

/etc/sysconfig/network-scripts/ifcfg-eth1

DEVICE=eth1
ONBOOT=yes
BOOTPROTO=none
USERCTL=no
MASTER=bond1
SLAVE=yes

/etc/sysconfig/network-scripts/ifcfg-eth2

DEVICE=eth2
ONBOOT=yes
BOOTPROTO=none
USERCTL=no
MASTER=bond1
SLAVE=yes

/etc/sysconfig/network-scripts/ifcfg-bond1 

DEVICE=bond1
IPADDR=IP地址
NETMASK=子网掩码
BROADCAST=广播地址
GATEWAY=网关
ONBOOT=yes
BOOTPROTO=static
USERCTL=no
TYPE=Ethernet

检查配置:

cat /proc/net/bonding/bond1


Ethernet Channel Bonding Driver: v3.6.0 (September 26, 2009)

Bonding Mode: IEEE 802.3ad Dynamic link aggregation
Transmit Hash Policy: layer2+3 (2)
MII Status: up
MII Polling Interval (ms): 100
Up Delay (ms): 0
Down Delay (ms): 0

802.3ad info
LACP rate: fast
Aggregator selection policy (ad_select): stable
Active Aggregator Info:
    Aggregator ID: 1
    Number of ports: 2
    Actor Key: 17
    Partner Key: 1073
    Partner Mac Address: 3c:e8:24:e8:df:20

Slave Interface: eth1
MII Status: up
Speed: 1000 Mbps
Duplex: full
Link Failure Count: 0
Permanent HW addr: 80:18:44:e2:61:9d
Aggregator ID: 1
Slave queue ID: 0

Slave Interface: eth2
MII Status: up
Speed: 1000 Mbps
Duplex: full
Link Failure Count: 0
Permanent HW addr: 80:18:44:e2:61:9e
Aggregator ID: 1
Slave queue ID: 0

交换机的配置:

interface Eth-Trunk4
 port link-type access
 port default vlan 301
 mode lacp
 

参考:

原文地址:https://www.cnblogs.com/flashBoxer/p/9568902.html

时间: 2024-10-08 14:16:32

CentOS 6 / RHEL 6配置bonding 4模式的相关文章

在CentOS 7 / RHEL 7配置OpenLDAP服务

OpenLDAP是OpenLDAP项目开发的轻量级目录访问协议的开源实现.LDAP是一种Internet协议,电子邮件和其他程序用于从服务器查找联系人信息.它是在OpenLDAP公共许可下发布的; 它适用于所有主要的Linux发行版, AIX, Android, HP-UX, OS X, Solaris, Windows和z/OS. 它以某种方式用作关系数据库,可用于存储任何信息.LDAP不限于存储信息; 它还用作"单点登录"的后端数据库,其中用户的一个密码在许多服务之间共享. 在本教

CentOS 7 / RHEL 7 运行单用户模式进行root的密码重置

步骤一,开机时随便按下键盘,进入以下菜单 步骤二: 选择第一项,按e键进行修改 步骤三,定位到 ro(  linux 16 or linuxefi  ) 步骤四:把ro改成 “rw init=/sysroot/bin/sh”. 完成之后按 “Ctrl+x” 现在可以进入单用户模式了 依次输入以下命令进行root密码修改,修改完成之后强制重启即可. chroot /sysroot/ passwd root touch /.autorelabel

centos 6.5 网络配置

虚拟机中centos 6.5 安装配置 网络桥接模式 1.安装好centos 系统 2.输入命令 setup 设置网络 3.敲打回车键 出现如下界面 authentication configuration:身份证配置 firewall configuration:防火墙配置 network configuration:网络 配置 System services :系统服务 选择网络配置 回车 4.选择设备配置 device configuration:ip配置 dns configuratio

Docker:CentOS/RHEL额外配置

CentOS/RHEL 的用户需要注意的事项 在 Ubuntu/Debian 上有 UnionFS 可以使用,如 aufs 或者 overlay2,而 CentOS 和 RHEL 的内核中没有相关驱动.因此对于这类系统,一般使用 devicemapper 驱动利用 LVM 的一些机制来模拟分层存储.这样的做法除了性能比较差外,稳定性一般也不好,而且配置相对复杂.Docker 安装在 CentOS/RHEL 上后,会默认选择 devicemapper,但是为了简化配置,其 devicemapper

CentOS 7 / RHEL 7 上安装 LAMP + phpMyAdmin

原文 CentOS 7 / RHEL 7 上安装 LAMP + phpMyAdmin 发表于 2014-11-02 作者 Haoxian Zeng 更新于 2014-12-12 之前根据在 Linode VPS 上部署 LAMP 服务器的经验写了安装记录,得到不少网友的亲睐.随着 CentOS 7 发布,安装过程发生了不少变化.因此在虚拟机上跑了一下,根据之前的记录做了修改,以供参考.主要注意的是,现在数据库由 MySQL 改成 MariaDB 了,故而 LAMP 代表的就是 Linux + A

CentOS 6.3下部署LVS(NAT模式)+keepalived实现高性能高可用负载均衡

一.简介 VS/NAT原理图: 二.系统环境 实验拓扑: 系统平台:CentOS 6.3 Kernel:2.6.32-279.el6.i686 LVS版本:ipvsadm-1.26 keepalived版本:keepalived-1.2.4 三.安装 0.安装LVS前系统需要安装popt-static,kernel-devel,make,gcc,openssl-devel,lftp,libnl*,popt* 1.在两台Director Server上分别配置LVS+Keepalived LVS

Docker生产环境配置——设置direct-lvm模式

CentOS/RHEL 的用户需要注意的事项 来源:https://yeasy.gitbooks.io/docker_practice/image/rm.html 在 Ubuntu/Debian 上有 UnionFS 可以使用,如 aufs 或者 overlay2,而 CentOS 和 RHEL 的内核中没有相关驱动.因此对于这类系统,一般使用 devicemapper 驱动利用 LVM 的一些机制来模拟分层存储.这样的做法除了性能比较差外,稳定性一般也不好,而且配置相对复杂.Docker 安装

使用nmcli配置Bonding连接和Teaming连接

一.Bonding的模式 1.balance-rr:轮询模式 2.active-backup:热备模式 3.broadcast:广播模式 二.配置步骤(命令配置) 1. 创建主接口 nmcli con add type bond con-name bond0 ifname bond0 mode active-backup 2. 给主接口分配ip地址 nmcli con mod bond0 ipv4.addresses '192.168.0.100/24' nmcli con mod bond0

网络接口配置 -- bonding

一:实验环境 ①两台centos虚拟机,一台做试验机,一台做测试机 ②两个网卡eth0.eth1 二:实验目的 在生产环境中,当多名用户同时访问一个IP时将会增大网卡负荷和风险,这时我们可以通过将多块网卡绑定同一IP地址对外提供服务,从而实现高可用和负载均衡 ※三:常用Bonding工作模式: Mode 0  ( balance-rr )轮转模式 轮转(Round-robin)策略: 从头到尾顺序的在每一个slave 接口上面发送数据包,当一个slave停止工作时,会出现丢包,但程序并不会死掉.