首页 > 其他分享 >配置M-LAG双归接入普通以太网络示例(根桥方式)

配置M-LAG双归接入普通以太网络示例(根桥方式)

时间:2024-04-05 14:22:38浏览次数:20  
标签:示例 LAG 根桥 port trunk interface SwitchB Eth SwitchA

组网需求

图4-22所示,采用M-LAG方式将主机双归接入普通以太网络。由于用户对于业务的可靠性要求很高,如果主机和接入设备之间做链路聚合只能保证链路级的可靠性,接入设备发生故障时则会导致业务中断。这时用户可以采用跨设备链路聚合技术,正常工作时链路进行负载分担且任何一台设备故障对业务均没有影响,保证业务的高可靠性。由于普通以太网络中存在阻塞端口无法传输M-LAG主备设备的心跳报文,这里采用配置DFS Group绑定管理网口IP地址,保证M-LAG主备设备的心跳报文能够正常传输。

图4-22 配置M-LAG双归接入普通以太网络组网图

配置思路

  1. 将SwitchA和SwitchB配置为根桥,配置相同的桥ID,保证M-LAG主备设备在二层网络中处于根桥地位。

  2. 分别在SwitchA和SwitchB上配置管理网口的IP地址,且保证能够三层互通,用于M-LAG主备设备间心跳报文的传输。

  3. 分别在SwitchA和SwitchB上配置M-LAG特性,实现服务器的双归接入。

  4. 在SwitchC和SwitchD上创建VLANIF接口并配置IP地址,在VLANIF接口上创建VRRP备份组,作为M-LAG主备设备的网关。

操作步骤

  1. 将SwitchA和SwitchB配置为根桥,配置相同的桥ID

     

    如果组成M-LAG的设备下行接入的是交换设备,必须配置根保护功能。

    # 配置SwitchA。

    <HUAWEI> system-view
    [~HUAWEI] sysname SwitchA
    [*HUAWEI] commit
    [~SwitchA] stp root primary
    [*SwitchA] stp bridge-address 39-39-39
    [*SwitchA] interface eth-trunk 1
    [*SwitchA-Eth-Trunk1] trunkport 10ge 1/0/5
    [*SwitchA-Eth-Trunk1] trunkport 10ge 1/0/6
    [*SwitchA-Eth-Trunk1] stp edged-port enable
    [*SwitchA-Eth-Trunk1] commit
    [~SwitchA-Eth-Trunk1] quit

    # 配置SwitchB。

    <HUAWEI> system-view
    [~HUAWEI] sysname SwitchB
    [*HUAWEI] commit
    [~SwitchB] stp root primary
    [*SwitchB] stp bridge-address 39-39-39
    [*SwitchB] interface eth-trunk 1
    [*SwitchB-Eth-Trunk1] trunkport 10ge 1/0/5
    [*SwitchB-Eth-Trunk1] trunkport 10ge 1/0/6
    [*SwitchB-Eth-Trunk1] stp edged-port enable
    [*SwitchB-Eth-Trunk1] commit
    [~SwitchB-Eth-Trunk1] quit

     

  2. 分别配置SwitchA和SwitchB管理网口的IP地址

     

    # 配置SwitchA。

    [~SwitchA] interface meth 0/0/0
    [~SwitchA-MEth0/0/0] ip address 10.1.1.1 24
    [*SwitchA-MEth0/0/0] quit
    [*SwitchA] commit

    # 配置SwitchB。

    [~SwitchB] interface meth 0/0/0
    [~SwitchB-MEth0/0/0] ip address 10.1.1.2 24
    [*SwitchB-MEth0/0/0] quit
    [*SwitchB] commit

     

  3. 在SwitchA和SwitchB上分别创建DFS并绑定管理网口的IP地址

     

    SwitchA和SwitchB管理网口需要保证能够三层互通。

    # 配置SwitchA。

    [~SwitchA] dfs-group 1
    [*SwitchA-dfs-group-1] source ip 10.1.1.1
    [*SwitchA-dfs-group-1] priority 150
    [*SwitchA-dfs-group-1] quit
    [*SwitchA] commit

    # 配置SwitchB。

    [~SwitchB] dfs-group 1
    [*SwitchB-dfs-group-1] source ip 10.1.1.2
    [*SwitchB-dfs-group-1] priority 120
    [*SwitchB-dfs-group-1] quit
    [*SwitchB] commit

     

  4. 配置SwitchA和SwitchB之间的Peer-link

     

    # 配置SwitchA。

    [~SwitchA] interface eth-trunk 0
    [*SwitchA-Eth-Trunk0] trunkport 10ge 1/0/3
    [*SwitchA-Eth-Trunk0] trunkport 10ge 2/0/4
    [*SwitchA-Eth-Trunk0] undo stp enable
    [*SwitchA-Eth-Trunk0] mode lacp-static
    [*SwitchA-Eth-Trunk0] peer-link 1
    [*SwitchA-Eth-Trunk0] quit
    [*SwitchA] commit

    # 配置SwitchB。

    [~SwitchB] interface eth-trunk 0
    [*SwitchB-Eth-Trunk0] trunkport 10ge 1/0/3
    [*SwitchB-Eth-Trunk0] trunkport 10ge 2/0/4
    [*SwitchB-Eth-Trunk0] undo stp enable
    [*SwitchB-Eth-Trunk0] mode lacp-static
    [*SwitchB-Eth-Trunk0] peer-link 1
    [*SwitchB-Eth-Trunk0] quit
    [*SwitchB] commit

     

  5. 配置SwitchA和SwitchB连接服务器的Eth-Trunk接口加入VLAN 11并绑定DFS Group

     

    服务器上行连接交换机的端口需要绑定在一个聚合链路中且链路聚合模式需要和交换机侧的聚合模式匹配。

    # 配置SwitchA。

    [~SwitchA] vlan batch 11
    [*SwitchA] interface eth-trunk 1
    [*SwitchA-Eth-Trunk1] mode lacp-dynamic
    [*SwitchA-Eth-Trunk1] port link-type access
    [*SwitchA-Eth-Trunk1] port default vlan 11
    [*SwitchA-Eth-Trunk1] dfs-group 1 m-lag 1
    [*SwitchA-Eth-Trunk1] quit
    [*SwitchA] commit

    # 配置SwitchB。

    [~SwitchB] vlan batch 11
    [*SwitchB] interface eth-trunk 1
    [*SwitchB-Eth-Trunk1] mode lacp-dynamic
    [*SwitchB-Eth-Trunk1] port link-type access
    [*SwitchB-Eth-Trunk1] port default vlan 11
    [*SwitchB-Eth-Trunk1] dfs-group 1 m-lag 1
    [*SwitchB-Eth-Trunk1] quit
    [*SwitchB] commit

     

  6. 配置SwitchA和SwitchC之间为聚合链路以及SwitchB和SwitchD之间为聚合链路,并配置接口类型和通过的VLAN

     

    # 配置SwitchA。

    [~SwitchA] interface eth-trunk 2
    [*SwitchA-Eth-Trunk2] mode lacp-static
    [*SwitchA-Eth-Trunk2] port link-type trunk
    [*SwitchA-Eth-Trunk2] port trunk allow-pass vlan 11
    [*SwitchA-Eth-Trunk2] trunkport 10ge 1/0/1
    [*SwitchA-Eth-Trunk2] trunkport 10ge 1/0/2
    [*SwitchA-Eth-Trunk2] quit
    [*SwitchA] commit

    # 配置SwitchB。

    [~SwitchB] interface eth-trunk 2
    [*SwitchB-Eth-Trunk2] mode lacp-static
    [*SwitchB-Eth-Trunk2] port link-type trunk
    [*SwitchB-Eth-Trunk2] port trunk allow-pass vlan 11
    [*SwitchB-Eth-Trunk2] trunkport 10ge 1/0/1
    [*SwitchB-Eth-Trunk2] trunkport 10ge 1/0/2
    [*SwitchB-Eth-Trunk2] quit
    [*SwitchB] commit

    # 配置SwitchC。

    <HUAWEI> system-view
    [~HUAWEI] sysname SwitchC
    [*HUAWEI] commit
    [~SwitchC] vlan batch 11
    [*SwitchC] interface eth-trunk 2
    [*SwitchC-Eth-Trunk2] mode lacp-static
    [*SwitchC-Eth-Trunk2] port link-type trunk
    [*SwitchC-Eth-Trunk2] port trunk allow-pass vlan 11
    [*SwitchC-Eth-Trunk2] trunkport 10ge 1/0/1
    [*SwitchC-Eth-Trunk2] trunkport 10ge 1/0/2
    [*SwitchC-Eth-Trunk2] quit
    [*SwitchC] commit

    # 配置SwitchD。

    <HUAWEI> system-view
    [~HUAWEI] sysname SwitchD
    [*HUAWEI] commit
    [~SwitchD] vlan batch 11
    [*SwitchD] interface eth-trunk 2
    [*SwitchD-Eth-Trunk2] mode lacp-static
    [*SwitchD-Eth-Trunk2] port link-type trunk
    [*SwitchD-Eth-Trunk2] port trunk allow-pass vlan 11
    [*SwitchD-Eth-Trunk2] trunkport 10ge 1/0/1
    [*SwitchD-Eth-Trunk2] trunkport 10ge 1/0/2
    [*SwitchD-Eth-Trunk2] quit
    [*SwitchD] commit

     

  7. 在SwitchC和SwitchD上创建VLANIF接口并配置IP地址,在VLANIF接口上创建VRRP备份组

     

    # 在SwitchC上创建VRRP备份组1,配置SwitchC在该备份组中的优先级为120。

    [~SwitchC] interface vlanif 11
    [*SwitchC-Vlanif11] ip address 10.2.1.1 24
    [*SwitchC-Vlanif11] vrrp vrid 1 virtual-ip 10.2.1.111
    [*SwitchC-Vlanif11] vrrp vrid 1 priority 120
    [*SwitchC-Vlanif11] quit
    [*SwitchC] commit

    # 在SwitchD上创建VRRP备份组1,其在该备份组中的优先级为缺省值100。

    [~SwitchD] interface vlanif 11
    [*SwitchD-Vlanif11] ip address 10.2.1.2 24
    [*SwitchD-Vlanif11] vrrp vrid 1 virtual-ip 10.2.1.111
    [*SwitchD-Vlanif11] quit
    [*SwitchD] commit

     

  8. 验证配置结果

     

    • 执行命令display dfs-group,查看M-LAG的相关信息。

      # 查看DFS Group编号为1的M-LAG信息。

      [~SwitchA] display dfs-group 1 m-lag
      *                : Local node
      Heart beat state : OK
      Node 1 *
        Dfs-Group ID   : 1
        Priority       : 150
        Address        : ip address 10.1.1.1
        State          : Master
        Causation      : -
        System ID      : 0025-9e95-7c31
        SysName        : SwitchA
        Version        : V100R006C00
        Device Type    : CE12800
      Node 2
        Dfs-Group ID   : 1
        Priority       : 120
        Address        : ip address 10.1.1.2
        State          : Backup
        Causation      : -
        System ID      : 0025-9e95-7c11
        SysName        : SwitchB
        Version        : V100R006C00
        Device Type    : CE12800

      # 查看SwitchA上的M-LAG信息。

      [~SwitchA] display dfs-group 1 node 1 m-lag brief
      * - Local node
      
      M-Lag ID     Interface      Port State    Status                Consistency-check
             1     Eth-Trunk 1    Up            active(*)-active      --
      
      
      Failed reason:                                                                  
          1 -- Relationship between vlan and port is inconsistent                     
          2 -- STP configuration under the port is inconsistent                       
          3 -- STP port priority configuration is inconsistent                        
          4 -- LACP mode of M-LAG is inconsistent                                     
          5 -- M-LAG configuration is inconsistent                                    
          6 -- The number of M-LAG members is inconsistent     

      # 查看SwitchB上的M-LAG信息。

      [~SwitchA] display dfs-group 1 node 2 m-lag brief
      * - Local node
      
      M-Lag ID     Interface      Port State    Status                Consistency-check
             1     Eth-Trunk 1    Up            active-active(*)      --
      
      
      Failed reason:                                                                  
          1 -- Relationship between vlan and port is inconsistent                     
          2 -- STP configuration under the port is inconsistent                       
          3 -- STP port priority configuration is inconsistent                        
          4 -- LACP mode of M-LAG is inconsistent                                     
          5 -- M-LAG configuration is inconsistent                                    
          6 -- The number of M-LAG members is inconsistent     

      通过以上显示信息可以看到,“Heart beat state”的状态是“OK”,表明心跳状态正常;SwitchA作为Node 1,优先级为150,“State”的状态是“Master”;SwitchB作为Node 2,优先级为120,“State”的状态是“Backup”。同时“Causation”的状态是“-”,Node 1的“Port State”状态为“Up”,Node 2的“Port State”状态为“Up”,且Node 1和Node 2的M-LAG状态均为“active”,表明M-LAG的配置正确。

    • 在SwitchC和SwitchD上分别执行display vrrp命令,可以看到SwitchC在备份组中的状态为Master,SwitchD在备份组中的状态为Backup。

      [~SwitchC] display vrrp verbose
      Vlanif11 | Virtual Router 1
      State        : Master
      Virtual IP     : 10.2.1.111
      Master IP      : 10.2.1.1
      PriorityRun    : 120
      PriorityConfig : 120                                                        
      MasterPriority : 120                                                        
      Preempt        : YES   Delay Time : 0s    Remain : --    
      TimerRun       : 1s                                                              
      TimerConfig    : 1s                                                           
      Auth Type      : NONE                                                            
      Virtual MAC    : 0000-5e00-0101                                                
      Check TTL      : YES                                                             
      Config Type    : Normal                                                   
      Create Time       : 2020-01-30 11:39:18                                           
      Last Change Time  : 2020-02-04 11:38:58 
      [~SwitchD] display vrrp verbose
      Vlanif11 | Virtual Router 1
      State        : Backup
      Virtual IP     : 10.2.1.111
      Master IP      : 10.2.1.1
      PriorityRun    : 100
      PriorityConfig : 100                                                        
      MasterPriority : 120                                                        
      Preempt        : YES   Delay Time : 0s   Remain : --     
      TimerRun       : 1s                                                        
      TimerConfig    : 1s                                                        
      Auth Type      : NONE                                                       
      Virtual MAC    : 0000-5e00-0101                                             
      Check TTL      : YES                                                        
      Config Type    : Normal                                                
      Create Time      : 2020-01-30 11:39:18                                      
      Last Change Time : 2020-02-04 11:38:58 

     

配置文件

  • SwitchA的配置文件

    #
    sysname SwitchA
    #
    dfs-group 1
     priority 150
     source ip 10.1.1.1
    #
    vlan batch 11
    #
    stp bridge-address 0039-0039-0039
    stp instance 0 root primary
    #
    interface MEth0/0/0
     ip address 10.1.1.1 255.255.255.0
    #
    interface Eth-Trunk0
     stp disable
     mode lacp-static
     peer-link 1
    #
    interface Eth-Trunk1
     port default vlan 11
     stp edged-port enable
     mode lacp-dynamic
     dfs-group 1 m-lag 1
    #
    interface Eth-Trunk2
     port link-type trunk
     port trunk allow-pass vlan 11
     mode lacp-static 
    #
    interface 10GE1/0/1
     eth-trunk 2
    #
    interface 10GE1/0/2
     eth-trunk 2
    #
    interface 10GE1/0/3
     eth-trunk 0
    #
    interface 10GE1/0/5
     eth-trunk 1
    #
    interface 10GE1/0/6
     eth-trunk 1
    #
    interface 10GE2/0/4
     eth-trunk 0
    #
    return
    
  • SwitchB的配置文件

    #
    sysname SwitchB
    #
    dfs-group 1
     priority 120
     source ip 10.1.1.2
    #
    vlan batch 11
    #
    stp bridge-address 0039-0039-0039
    stp instance 0 root primary
    #
    interface MEth0/0/0
     ip address 10.1.1.2 255.255.255.0
    #
    interface Eth-Trunk0
     stp disable
     mode lacp-static
     peer-link 1
    #
    interface Eth-Trunk1
     port default vlan 11
     stp edged-port enable
     mode lacp-dynamic
     dfs-group 1 m-lag 1
    #
    interface Eth-Trunk2
     port link-type trunk
     port trunk allow-pass vlan 11
     mode lacp-static
    #
    interface 10GE1/0/1
     eth-trunk 2
    #
    interface 10GE1/0/2
     eth-trunk 2
    #
    interface 10GE1/0/3
     eth-trunk 0
    #
    interface 10GE1/0/5
     eth-trunk 1
    #
    interface 10GE1/0/6
     eth-trunk 1
    #
    interface 10GE2/0/4
     eth-trunk 0
    #
    return
    
  • SwitchC的配置文件

    #
    sysname SwitchC
    #
    vlan batch 11
    #
    interface Vlanif11
     ip address 10.2.1.1 255.255.255.0
     vrrp vrid 1 virtual-ip 10.2.1.111
     vrrp vrid 1 priority 120
    #
    interface Eth-Trunk2
     port link-type trunk
     port trunk allow-pass vlan 11
     mode lacp-static
    #
    interface 10GE1/0/1
     eth-trunk 2
    #
    interface 10GE1/0/2
     eth-trunk 2
    #
    return
    
  • SwitchD的配置文件

    #
    sysname SwitchD
    #
    vlan batch 11
    #
    interface Vlanif11
     ip address 10.2.1.2 255.255.255.0
     vrrp vrid 1 virtual-ip 10.2.1.111
    #
    interface Eth-Trunk2
     port link-type trunk
     port trunk allow-pass vlan 11
     mode lacp-static
    #
    interface 10GE1/0/1
     eth-trunk 2
    #
    interface 10GE1/0/2
     eth-trunk 2
    #
    return
    
  •  
 https://support.huawei.com/enterprise/zh/doc/EDOC1100138437/adf0bbdf

标签:示例,LAG,根桥,port,trunk,interface,SwitchB,Eth,SwitchA
From: https://www.cnblogs.com/cheyunhua/p/18115716

相关文章

  • Vue3 Diff 之 patchKeyedChildren 动态示例
    在学习全网学习各路大神的关于Vue3Diff算法分析文章的时候,一定离不开关键方法patchKeyedChildren。patchKeyedChildren处理的场景比较多,大致有5个主要过程。如果你希望查看不同测试用例下,patchKeyedChildren具体的内部处理过程,可以尝试一下这个:《Vue3Diff之patchKey......
  • 【WPF应用34】WPF基本控件-Menu的详解与示例
    WPF(WindowsPresentationFoundation)是.NET框架的一个部分,用于构建桌面应用程序的用户界面。在WPF中,菜单(Menu)是一种常用的控件,用于提供一组选项或命令,使用户可以根据自己的需要执行特定的操作。本文将详细介绍WPF中的Menu控件,包括其基本用法、属性和事件。同时,我们将通过一......
  • 排序代码示例
    冒泡排序#include<iostream>usingnamespacestd;intmain(){ intm[]={6,8,44,7,9,34,64,1}; for(intj=0;j<8;j++){ for(inti=j+1;i<8;i++){ if(m[j]>m[i]){ swap(m[j],m[i]); } } } for(inti=0;i<8;i++){ cout<<m[i]<<......
  • 艾科瑞特科技:计算机视觉-图像示例替换
    艾科瑞特科技:计算机视觉-图像示例替换关键词:目标检测、目标跟踪、图像识别、图像分类、视频分析、自然语言处理、自然语言分析、计算机视觉、人工智能、AIGC、AI、大模型、多模态大模型、API、Docker、镜像、API市场、云市场、国产软件、信创内容摘要:图像示例替换技术利用先......
  • 华为交换机M-LAG配置
    基于M-LAG组成的双活系统提供了设备级的可靠性,将双归接入的两台设备在逻辑上虚拟成一台设备。M-LAG提供了一个没有环路的二层拓扑同时实现冗余备份。多级M-LAG互联可以在保证可靠性、提供链路利用率的同时扩展双归接入的网络规模,满足客户的需求。  方法/步骤1第一......
  • 数据分析的利器,Pandas 软件包详解与应用示例
    左手编程,右手年华。大家好,我是一点,关注我,带你走入编程的世界。公众号:一点sir在中土大地上,有一位名为"数据剑客"的江湖人士,他手持一柄闪烁着银光的利剑,剑法犀利,能够破解数据的种种奥秘。传言他曾在一场数据风暴中横扫八方,击溃了无数数据乱象,以无情的数据剑法征服了各路数据恶徒......
  • React 19 新特性 – 附带代码示例的更新
    ReactJS是前端开发世界中最流行的UI库之一。我喜欢React的原因之一就是它背后的团队以及社区对它的热情。当社区提出对新功能和改进的需求时,团队会倾听。React的未来令人兴奋而有趣。如果我必须用一句话来总结,我会说这几乎概括了一切:“少写代码,多实现功能。”在本文中,我......
  • 使用BGE进行意图分类的示例代码
     importtorchfromtorch.utils.dataimportDataLoader,RandomSampler,TensorDatasetfromtransformersimportBertTokenizer,BertForSequenceClassification,AdamWbge_model_name="BAAI/bge-large-zh-v1.5"bert_model_name='bert-base-uncas......
  • 基于Node.js和ws库搭建WebSocket服务并实现消息互通的简单示例
    环境要求:Node.js环境安装npm(Node.js的包管理器)步骤:安装Node.js:如果你还没有安装Node.js,请从Node.js官网下载并安装。创建项目:创建一个新的目录作为项目文件夹,并在该目录下初始化一个新的Node.js项目。        mkdirmy-websocket-server        cdmy......
  • R语言 基于人口的医师配置公平性洛伦兹曲线的代码和示例
    文章目录前言一、洛伦兹曲线介绍二、基于人口的医师配置洛伦兹曲线    1.创建模拟数据    2.绘制洛伦兹曲线总结前言洛伦兹曲线(LorenzCurve)是一种用于描述资源分配公平性的图形表示方法,可用于评价卫生技术人员的分布公平性。洛伦兹曲线可以......