IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 系统运维 -> 玩转华为数据中心交换机系列 | 配置LACP模式的跨设备聚合(单机) -> 正文阅读

[系统运维]玩转华为数据中心交换机系列 | 配置LACP模式的跨设备聚合(单机)

素材来源:华为数据中心交换机配置指南

一边学习一边整理试验笔记,并与大家分享,侵权即删,谢谢支持!

附上汇总贴:玩转华为数据中心交换机系列 | 汇总_COCOgsta的博客-CSDN博客


组网需求

图1所示,DeviceA双归接入DeviceB和DeviceC,在DeviceA上部署LACP模式的Eth-Trunk接口,成员口分别与DeviceB和DeviceC的10GE1/0/1~10GE1/0/2连接,10GE1/0/1~10GE1/0/2的接口速率和双工模式相同,现在需要使流量可以在两台设备上负载分担。

配置思路

采用如下的思路配置跨设备LACP模式链路聚合:

  1. 分别在DeviceA、DeviceB、DeviceC上创建Eth-Trunk1,并配置为静态LACP模式,将成员接口加入Eth-Trunk1,实现链路聚合功能。
  2. 在DeviceB和DeviceC上配置相同的LACP系统ID。
  3. 在DeviceB和DeviceC上配置相同的系统LACP优先级。
  4. 在DeviceC上配置Eth-Trunk成员接口在LACP协议中的编号扩展,使成员接口编号均增加32768,避免和设备DeviceB上的成员接口在LACP协议中的编号相同。

操作步骤

  1. 分别在DeviceA、DeviceB和DeviceC上创建Eth-Trunk1并配置为LACP模式,并将成员口加入Eth-Trunk1。
<HUAWEI> system-view
[~HUAWEI] sysname DeviceA
[*HUAWEI] commit
[~DeviceA] interface eth-trunk 1
[*DeviceA-Eth-Trunk1] mode lacp-static
[*DeviceA-Eth-Trunk1] trunkport 10ge 1/0/1 to 1/0/4
[*DeviceA-Eth-Trunk1] commit
[~DeviceA-Eth-Trunk1] quit
<HUAWEI> system-view
[~HUAWEI] sysname DeviceB
[*HUAWEI] commit
[~DeviceB] interface eth-trunk 1
[*DeviceB-Eth-Trunk1] mode lacp-static
[*DeviceB-Eth-Trunk1] trunkport 10ge 1/0/1 to 1/0/2
[*DeviceB-Eth-Trunk1] commit
<HUAWEI> system-view
[~HUAWEI] sysname DeviceC
[*HUAWEI] commit
[~DeviceC] interface eth-trunk 1
[*DeviceC-Eth-Trunk1] mode lacp-static
[*DeviceC-Eth-Trunk1] trunkport 10ge 1/0/1 to 1/0/2
[*DeviceC-Eth-Trunk1] commit
  1. 配置DeviceB和DeviceC的系统ID为00e0-fc12-3456。
[~DeviceB-Eth-Trunk1] lacp system-id 00e0-fc12-3456
[*DeviceB-Eth-Trunk1] commit
[~DeviceB-Eth-Trunk1] quit
[~DeviceC-Eth-Trunk1] lacp system-id 00e0-fc12-3456
[*DeviceC-Eth-Trunk1] commit
[~DeviceC-Eth-Trunk1] quit
  1. 在DeviceB和DeviceC上配置系统LACP优先级为100。
[~DeviceB] lacp priority 100
[*DeviceB] commit
[~DeviceC] lacp priority 100
[*DeviceC] commit
  1. 在DeviceC上配置Eth-Trunk成员接口编号扩展,使成员接口编号均增加32768。
[~DeviceC] interface eth-trunk 1
[~DeviceC-Eth-Trunk1] lacp port-id-extension enable
[*DeviceC-Eth-Trunk1] commit
  1. 验证配置结果

# 查看各Device设备的Eth-Trunk信息,查看链路是否协商成功。

[~DeviceA] display eth-trunk 1
Eth-Trunk1's state information is:
Local:
LAG ID: 1                       Working Mode: Static
Preempt Delay: Disabled         Hash Arithmetic: profile default
System Priority: 100            System ID: 00e0-fc12-3457
Least Active-linknumber: 1      Max Active-linknumber: 16Operating Status: up            Number Of Up Ports In Trunk: 4
Timeout Period: Slow
--------------------------------------------------------------------------------
ActorPortName          Status   PortType PortPri PortNo PortKey PortState Weight
10GE1/0/1              Selected 10GE     32768   3      321     10111100  1
10GE1/0/2              Selected 10GE     32768   1      321     10100010  1
10GE1/0/3              Selected 10GE     32768   4      321     10111100  1
10GE1/0/4              Selected 10GE     32768   2      321     10100010  1

Partner:
--------------------------------------------------------------------------------
ActorPortName          SysPri   SystemID        PortPri PortNo PortKey PortState
10GE1/0/1              100      00e0-fc12-3456  32768   32769  321     10111100
10GE1/0/2              100      00e0-fc12-3456  32768   32770  321     10111100
10GE1/0/1              100      00e0-fc12-3456  32768   4      321     10111100
10GE1/0/2              100      00e0-fc12-3456  32768   5      321     10111100
[~DeviceB] display eth-trunk 1
Eth-Trunk1's state information is:
Local:
LAG ID: 1                       Working Mode: Static
Preempt Delay: Disabled         Hash Arithmetic: profile default
System Priority: 100            System ID: 00e0-fc12-3456
Least Active-linknumber: 1      Max Active-linknumber: 32Operating Status: up            Number Of Up Ports In Trunk: 2
Timeout Period: Slow
--------------------------------------------------------------------------------
ActorPortName          Status   PortType PortPri PortNo PortKey PortState Weight
10GE1/0/1              Selected 10GE     32768   4      321     10111100  1
10GE1/0/2              Selected 10GE     32768   5      321     10111100  1

Partner:
--------------------------------------------------------------------------------
ActorPortName          SysPri   SystemID        PortPri PortNo PortKey PortState
10GE1/0/3              100      00e0-fc12-3457  32768   4      321     10111100
10GE1/0/4              100      00e0-fc12-3457  32768   2      321     10100010
[~DeviceC] display eth-trunk 1
Eth-Trunk1's state information is:
Local:
LAG ID: 1                       Working Mode: Static
Preempt Delay: Disabled         Hash Arithmetic: profile default
System Priority: 100            System ID: 00e0-fc12-3456
Least Active-linknumber: 1      Max Active-linknumber: 16Operating Status: up            Number Of Up Ports In Trunk: 2
Timeout Period: Slow
--------------------------------------------------------------------------------
ActorPortName          Status   PortType PortPri PortNo PortKey PortState Weight
10GE1/0/1              Selected 10GE     32768   32769  321     10111100  1
10GE1/0/2              Selected 10GE     32768   32770  321     10111100  1

Partner:
--------------------------------------------------------------------------------
ActorPortName          SysPri   SystemID        PortPri PortNo PortKey PortState
10GE1/0/1              100      00e0-fc12-3457  32768   3      321     10111100
10GE1/0/2              100      00e0-fc12-3457  32768   1      321     10100010

通过以上显示信息可以看到,各Device的Operating Status均为Up,表明Eth-Trunk1已经协商成功。DeviceB和DeviceC上的成员接口成为活动接口,处于“Selected”状态,表示DeviceB和DeviceC上的成员接口均可以负载分担。DeviceC的PortNo显示成员口的LACP编号已经增加32768。

?

  系统运维 最新文章
配置小型公司网络WLAN基本业务(AC通过三层
如何在交付运维过程中建立风险底线意识,提
快速传输大文件,怎么通过网络传大文件给对
从游戏服务端角度分析移动同步(状态同步)
MySQL使用MyCat实现分库分表
如何用DWDM射频光纤技术实现200公里外的站点
国内顺畅下载k8s.gcr.io的镜像
自动化测试appium
ctfshow ssrf
Linux操作系统学习之实用指令(Centos7/8均
上一篇文章      下一篇文章      查看所有文章
加:2022-04-28 12:14:41  更:2022-04-28 12:16:29 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/14 12:52:04-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码