【网络基础】链路聚合原理与配置
程序员文章站
2022-07-01 17:19:28
...
目录
一. 前言
二. 原理
- 应用场景
- 链路聚合
- 数据流控制
三. 配置
- 手工负载分担模式
1.1 搭建拓扑
1.2 配置 - LACP模式
2.1 搭建拓扑
2.2 配置
一.前言
随着网络规模不断扩大,用户对骨干链路的带宽和可靠性提出了越来越高的要求。在传统技术中,常用更换高速率的接口板或更换支持高速率接口板的设备的方式来增加带宽,但这种方案需要付出高额的费用,而且不够灵活。
采用链路聚合技术可以在不进行硬件升级的条件下,通过将多个物理接口捆绑为一个逻辑接口,来达到增加链路带宽的目的。在实现增大带宽目的的同时,链路聚合采用备份链路的机制,可以有效的提高设备之间链路的可靠性。
二.原理
1. 应用场景
链路聚合一般部署在核心节点(核心节点的设备吞吐量比较大,使用链路聚合提升带宽),以便提升整个网络的数据吞吐量。
2. 链路聚合
- 提高链路带宽
- 增强网络可用性
- 支持负载分担
- 链路聚合模式
-
手工负载分担:
-
不支持协议
-
1:1:1
-
不支持备份
-
LACP模式:
-
支持协议
-
M(active):N(backup)
-
支持链路备份
4. 数据流控制
Eth-Trunk链路两端相连的物理接口的数量、速率、双工方式、流控方式必须一致。
三.配置
1. 手工负载分担模式
1.1 搭建拓扑
1.2 配置
LSW1:
<Huawei>sys
Enter system view, return user view with Ctrl+Z.
[Huawei]undo info-center enable
Info: Information center is disabled.
[Huawei]sysname LSW1
# 修改名称
[LSW1]interface Eth-Trunk 1
[LSW1-Eth-Trunk1]trunkport Ethernet 0/0/1 to 0/0/3
Info: This operation may take a few seconds. Please wait for a moment...done.
# 将0/0/1到0/0/3接口全部加入trunk1
查看一下会发现已经有接口信息了
此时他的最大带宽是300M
LSW2:
<Huawei>sys
Enter system view, return user view with Ctrl+Z.
[Huawei]undo info-center enable
Info: Information center is disabled.
[Huawei]sysname LSW2
[LSW2]interface Eth-Trunk 1
[LSW2-Eth-Trunk1]trunkport Ethernet 0/0/1 to 0/0/3
Info: This operation may take a few seconds. Please wait for a moment...done.
此时他的最大带宽也是300M
此时阻塞一条链路再查看一下:
[LSW2]int e0/0/3
[LSW2-Ethernet0/0/3]shutdown
此时带宽变为了200M,并且会发现0/0/3链路为down状态。
2. LACP模式
2.1 搭建拓扑
2.2 配置
LSW3:
<Huawei>sys
Enter system view, return user view with Ctrl+Z.
[Huawei]undo info-center enable
Info: Information center is disabled.
[Huawei]sysname LSW3
[LSW3]interface Eth-Trunk 1
[LSW3-Eth-Trunk1]mode lacp-static
[LSW3-Eth-Trunk1]trunkport Ethernet 0/0/1 to 0/0/3
Info: This operation may take a few seconds. Please wait for a moment...done.
LSW4:
<Huawei>sys
Enter system view, return user view with Ctrl+Z.
[Huawei]undo info-center enable
Info: Information center is disabled.
[Huawei]sysname LSW4
[LSW4]interface Eth-Trunk 1
[LSW4-Eth-Trunk1]mode lacp-static
[LSW4-Eth-Trunk1]trunkport Ethernet 0/0/1 to 0/0/3
Info: This operation may take a few seconds. Please wait for a moment...done.
查看一下trunk
设置最大链路接入数量为2
此时再查看trunk,会发现有一条链路状态已经为down了
如果此时阻塞0/0/2链路
再查看一下trunk,会发现0/0/3会自动变为up的状态
上一篇: 链路聚合LACP模式配置