当前位置: 首页 > article >正文

华为配置手工负载分担模式链路聚合实验

目录

组网需求

配置思路

操作步骤

配置文件


组网图形

图1 配置手工负载分担模式链路聚合组网图

  • 组网需求
  • 配置思路
  • 操作步骤
  • 配置文件

组网需求

如图1所示,AC1和AC2通过以太链路分别都连接VLAN10和VLAN20,且AC1和AC2之间有较大的数据流量。

用户希望AC1和AC2之间能够提供较大的链路带宽来使相同VLAN间互相通信。同时用户也希望能够提供一定的冗余度,保证数据传输和链路的可靠性。

配置思路

采用如下的思路配置负载分担链路聚合:

  1. 创建Eth-Trunk接口并加入成员接口,实现增加链路带宽。

    接口缺省都加入了VLAN1,因此加入Eth-Trunk前建议先将接口从VLAN1中退出或将接口Shutdown,避免出现广播风暴。

  2. 创建VLAN并将接口加入VLAN。

  3. 配置负载分担方式,实现流量在Eth-Trunk各成员接口间的负载分担,增加可靠性。

操作步骤
  1. 在AC1创建Eth-Trunk接口并加入成员接口。AC2配置与AC1类似,不再赘述。

    <HUAWEI> system-view
    [HUAWEI] sysname AC1
    [AC1] interface Eth-Trunk1
    [AC1-Eth-Trunk1] trunkport gigabitethernet 0/0/1 to 0/0/3
    [AC1-Eth-Trunk1] quit

  2. 创建VLAN并将接口加入VLAN。AC2配置与AC1类似,不再赘述。

    # 创建VLAN10和VLAN20并分别加入接口。
    
    [AC1] vlan batch 10 20
    [AC1] interface gigabitethernet 0/0/4
    [AC1-GigabitEthernet0/0/4] port link-type trunk
    [AC1-GigabitEthernet0/0/4] port trunk allow-pass vlan 10
    [AC1-GigabitEthernet0/0/4] quit
    [AC1] interface gigabitethernet 0/0/5
    [AC1-GigabitEthernet0/0/5] port link-type trunk
    [AC1-GigabitEthernet0/0/5] port trunk allow-pass vlan 20
    [AC1-GigabitEthernet0/0/5] quit
    
    
    # 配置Eth-Trunk1接口允许VLAN10和VLAN20通过。
    
    [AC1] interface Eth-Trunk1
    [AC1-Eth-Trunk1] port link-type trunk
    [AC1-Eth-Trunk1] port trunk allow-pass vlan 10 20

  3. 配置Eth-Trunk1的负载分担方式。AC2配置与AC1类似,不再赘述。
    
    [AC1-Eth-Trunk1] load-balance src-dst-mac
    [AC1-Eth-Trunk1] quit

  4. 验证配置结果

    在任意视图下执行display eth-trunk 1命令,检查Eth-Trunk是否创建成功,及成员接口是否正确加入。
    
    [AC1] display eth-trunk 1
    Eth-Trunk1's state information is: 
    WorkingMode: NORMAL         Hash arithmetic: According to src-dst-mac            
    Least Active-linknumber: 1  Max Bandwidth-affected-linknumber: 8                
    Operate status: up          Number Of Up Port In Trunk: 3
    --------------------------------------------------------------------------------
    PortName                      Status      Weight
    GigabitEthernet0/0/1          Up          1
    GigabitEthernet0/0/2          Up          1
    GigabitEthernet0/0/3          Up          1

    从以上信息看出Eth-Trunk 1中包含3个成员接口GigabitEthernet0/0/1、GigabitEthernet0/0/2和GigabitEthernet0/0/3。成员接口的状态都为Up。

配置文件
  • AC1的配置文件
    
    #
    sysname AC1
    #
    vlan batch 10 20
    # 
    interface Eth-Trunk1
     port link-type trunk 
     port trunk allow-pass vlan 10 20
     load-balance src-dst-mac 
    # 
    interface GigabitEthernet0/0/1 
     eth-trunk 1
    # 
    interface GigabitEthernet0/0/2 
     eth-trunk 1
    # 
    interface GigabitEthernet0/0/3 
     eth-trunk 1
    #
    interface GigabitEthernet0/0/4 
     port link-type trunk 
     port trunk allow-pass vlan 10
    #
    interface GigabitEthernet0/0/5 
     port link-type trunk 
     port trunk allow-pass vlan 20
    #
    return
    AC2的配置文件
    
    #
    sysname AC2
    #
    vlan batch 10 20
    # 
    interface Eth-Trunk1
     port link-type trunk 
     port trunk allow-pass vlan 10 20
     load-balance src-dst-mac 
    # 
    interface GigabitEthernet0/0/1 
     eth-trunk 1
    # 
    interface GigabitEthernet0/0/2 
     eth-trunk 1
    # 
    interface GigabitEthernet0/0/3 
     eth-trunk 1
    #
    interface GigabitEthernet0/0/4 
     port link-type trunk 
     port trunk allow-pass vlan 10
    #
    interface GigabitEthernet0/0/5 
     port link-type trunk 
     port trunk allow-pass vlan 20
    #
    return


http://www.kler.cn/a/372512.html

相关文章:

  • Django+Vue全栈开发旅游网项目景点详情
  • 使用AIM对SAP PO核心指标的自动化巡检监控
  • Linux系统编程——信号量
  • 频率限制:WAF保护网站免受恶意攻击的关键功能
  • 短视频矩阵系统源码开发分享/源代码部署/oem贴牌搭建分享
  • 《高频电子线路》 —— 高频谐振功放
  • 树莓派4处理器超频指南
  • 输电线路火灾隐患监测系统功能与应用是什么?
  • 基于Springboot+微信小程序的任务打卡系统(含源码数据库)
  • 网络搜索引擎Shodan(2)
  • CSS - grid制作表格
  • Java项目实战II基于微信小程序的计算机实验室排课与查询系统(开发文档+数据库+源码)
  • 深入理解所有权与借用——借用与生命周期管理
  • Linux中gcc的使用
  • Android中Logcat长日志打印不全问题正解
  • HTML入门教程6:HTML段落
  • LeetCode 2058.找出临界点之间的最小和最大距离
  • ChatGPT-o1辅助论文写作的优势及12个方向提示词分享
  • camera和lidar外参标定
  • 线性代数(1)——线性方程组的几何意义
  • Mongodb-Plus 轻松上手
  • LSTM:解决梯度消失与长期依赖问题
  • 凌雄科技打造DaaS模式,IT设备产业链由内而外嬗变升级
  • Spring Cloud --- 引入Seata分布式事务
  • 【Java并发编程】线程池详解
  • Codeforces Round 966 (Div. 3)