eNSP第二篇:Eth-trunk,链路聚合,常用命令,二层链路聚合和三层链路聚合

这篇具有很好参考价值的文章主要介绍了eNSP第二篇:Eth-trunk,链路聚合,常用命令,二层链路聚合和三层链路聚合。希望对大家有所帮助。如果存在错误或未考虑完全的地方,请大家不吝赐教,您也可以点击"举报违法"按钮提交疑问。

链路聚合,Eth-trunk,ip-trunk

链路聚合:顾名思义,就是将多条链路聚合成一条链路,这条链路的带宽等于所有有效链路的总和;属于可靠性技术。

主要作用是:提高带宽,增加可靠性

在eNSP中,交换机是只可以启用二层的链路聚合,路由器中则可以将链路切换到第三层;

常用命令:

interface Eth-trunk [id]

//创建聚合口,并进入聚合口接口视图,id范围0~63,id只在本设备中起作用

例如:interface Eth-trunk 0

mode lacp-static

//使用静态lacp模式

命令使用视图:链路聚合口接口视图

例如:[Huawei-Eth-Trunk1]mode lacp-static

trunkport [接口类型Ethernet | GigabitEthernet] [接口id] [to [接口id]]

//将接口加入聚合链路中

命令使用视图:链路聚合口接口视图

例如:[Huawei-Eth-Trunk1]trunkport GigabitEthernet 0/0/1 to 0/0/3

eth-trunk [聚合口-id]

//将接口加入聚合链路中

命令使用视图:交换机接口视图

例如:[Huawei-GigabitEthernet0/0/1]eth-trunk 1

max active-linknumber [1-8]

//配置有效链路最大数量,当聚合链路超过最大数时,将多余出来的链路作为备份链路,当有效链路中有链路down掉后,则从备用链路中选取出新的链路来替代down的链路;

命令使用视图:链路聚合口接口视图

例如:[Huawei-Eth-Trunk1]max active-linknumber 3

load-balance [负载均衡模式]

//配置链路的负载均衡模式

负载均衡模式

src-mac

源mac地址

dst-mac

目的mac地址

src-ip

源ip地址

dst-ip

目的ip地址

src-dst-mac

源和目的mac地址

src-dst-ip

源和目的ip地址(默认配置)

命令使用视图:链路聚合口接口视图

例如:[Huawei-Eth-Trunk1]load-balance src-dst-mac

undo portswitch

//切换三层路由模式

命令使用视图:链路聚合口接口视图

例如:[Huawei-Eth-Trunk1]undo portswitch

 文章来源地址https://www.toymoban.com/news/detail-496126.html

二层链路聚合配置思路:

  1. 创建聚合口
  2. 配置聚合链路的模式(可省略)
  3. 添加物理接口
  4. 配置接口模式:access,trunk,hybrid
  5. 配置接口模式的pvid,TG,UT相关的参数
  6. 配置负载均衡(可省略)
  7. 配置最大活跃接口数量(可省略)

 

三层链路聚合配置思路

  1. 创建聚合口
  2. 将接口切换到第三层
  3. 添加物理接口
  4. 添加IP地址及相关配置
  5. 配置负载均衡模式(可省略)
  6. 配置最大活跃接口数量(可省略)

 

配置注意事项:配置聚合链路模式前不可以先添加物理接口,添加物理接口后才可以配置接口模式及相关参数,否则会造成添加物理接口失败!

 

实验

本篇只讲关于Eth-trunk的配置,本实验中不涉及三层的链路聚合

其他相关配置:https://blog.csdn.net/weixin_46678521/article/details/126472140

eNSP第二篇:Eth-trunk,链路聚合,常用命令,二层链路聚合和三层链路聚合

 

S1

[S1]interface Eth-trunk 1

[S1-Eth-Trunk1]trunkport g 0/0/1 to 0/0/2

Info: This operation may take a few seconds. Please wait for a moment...done.

[S1-Eth-Trunk1]port link-type trunk

[S1-Eth-Trunk1]port trunk allow-pass vlan 10 100

[S1-Eth-Trunk1]load-balance src-dst-mac

[S1-Eth-Trunk1]quit

S2

[S2]interface Eth-trunk 1

[S2-Eth-Trunk1]trunkport g 0/0/1 to 0/0/2

Info: This operation may take a few seconds. Please wait for a moment...done.

[S2-Eth-Trunk1]port link-type trunk

[S2-Eth-Trunk1]port trunk allow-pass vlan 20 100

[S2-Eth-Trunk1]load-balance src-dst-mac

[S2-Eth-Trunk1]quit

S3

[S3]interface Eth-trunk 1

[S3-Eth-Trunk1]trunkport g 0/0/1 to 0/0/2

Info: This operation may take a few seconds. Please wait for a moment...done.

[S3-Eth-Trunk1]port link-type trunk

[S3-Eth-Trunk1]port trunk allow-pass vlan 30 100

[S3-Eth-Trunk1]load-balance src-dst-mac

[S3-Eth-Trunk1]quit

S4

[S4]interface Eth-trunk 1

[S4-Eth-Trunk1]trunkport g 0/0/1 to 0/0/2

Info: This operation may take a few seconds. Please wait for a moment...done.

[S4-Eth-Trunk1]port link-type trunk

[S4-Eth-Trunk1]port trunk allow-pass vlan 40 100

[S4-Eth-Trunk1]load-balance src-dst-mac

[S4-Eth-Trunk1]quit

SW1

[SW1]interface Eth-trunk 1

[SW1-Eth-Trunk1]trunkport g 0/0/11 to 0/0/12

Info: This operation may take a few seconds. Please wait for a moment...done.

[SW1-Eth-Trunk1]port link-type trunk

[SW1-Eth-Trunk1]port trunk allow-pass vlan 10 100

[SW1-Eth-Trunk1]load-balance src-dst-mac

[SW1-Eth-Trunk1]quit

[SW1]interface Eth-trunk 2

[SW1-Eth-Trunk2]trunkport g 0/0/13 to 0/0/14

Info: This operation may take a few seconds. Please wait for a moment...done.

[SW1-Eth-Trunk2]port link-type trunk

[SW1-Eth-Trunk2]port trunk allow-pass vlan 20 100

[SW1-Eth-Trunk2]load-balance src-dst-mac

[SW1-Eth-Trunk2]quit

[SW1]interface Eth-trunk 3

[SW1-Eth-Trunk3]trunkport g 0/0/23 to 0/0/24

Info: This operation may take a few seconds. Please wait for a moment...done.

[SW1-Eth-Trunk3]port link-type trunk

[SW1-Eth-Trunk3]port trunk allow-pass vlan  6 100

[SW1-Eth-Trunk3]load-balance src-dst-ip

[SW1-Eth-Trunk3]quit

SW2

[SW2]interface Eth-trunk 1

[SW2-Eth-Trunk1]trunkport g 0/0/11 to 0/0/12

Info: This operation may take a few seconds. Please wait for a moment...done.

[SW2-Eth-Trunk1]port link-type trunk

[SW2-Eth-Trunk1]port trunk allow-pass vlan 30 100

[SW2-Eth-Trunk1]load-balance src-dst-mac

[SW2-Eth-Trunk1]quit

[SW2]interface Eth-trunk 2

[SW2-Eth-Trunk2]trunkport g 0/0/13 to 0/0/14

Info: This operation may take a few seconds. Please wait for a moment...done.

[SW2-Eth-Trunk2]port link-type trunk

[SW2-Eth-Trunk2]port trunk allow-pass vlan 40 100

[SW2-Eth-Trunk2]load-balance src-dst-mac

[SW2-Eth-Trunk2]quit

[SW2]interface Eth-trunk 3

[SW2-Eth-Trunk3]trunkport g 0/0/23 to 0/0/24

Info: This operation may take a few seconds. Please wait for a moment...done.

[SW2-Eth-Trunk3]port link-type trunk

[SW2-Eth-Trunk3]port trunk allow-pass vlan  6 100

[SW2-Eth-Trunk3]load-balance src-dst-ip

[SW2-Eth-Trunk3]quit

LSW1

[LSW1]interface Eth-trunk 1

[LSW1-Eth-Trunk1]trunkport g 0/0/23  to 0/0/24

Info: This operation may take a few seconds. Please wait for a moment...done.

[LSW1-Eth-Trunk1]port link-type trunk

[LSW1-Eth-Trunk1]port trunk allow-pass vlan 2 to 5 7

[LSW1-Eth-Trunk1]load-balance src-dst-mac

[LSW1-Eth-Trunk1]quit

LSW2

[LSW2]interface Eth-trunk 1

[LSW2-Eth-Trunk1]trunkport g 0/0/23  to 0/0/24

Info: This operation may take a few seconds. Please wait for a moment...done.

[LSW2-Eth-Trunk1]port link-type trunk

[LSW2-Eth-Trunk1]port trunk allow-pass vlan 2 to 5 7

[LSW2-Eth-Trunk1]load-balance src-dst-mac

[LSW2-Eth-Trunk1]quit

 

到了这里,关于eNSP第二篇:Eth-trunk,链路聚合,常用命令,二层链路聚合和三层链路聚合的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处: 如若内容造成侵权/违法违规/事实不符,请点击违法举报进行投诉反馈,一经查实,立即删除!

领支付宝红包 赞助服务器费用

相关文章

  • 华为交换机配置链路聚合实验——Eth Trunk

    链路聚合也称为链路绑定 ,英文名有:Link Aggregation、Link Trunking、Link Bonding. 这里所说的链路聚合技术,针对的都是以太网链路。 基本原理其实就是 流量分担 的原理:多条成员链路共同分担了聚合链路的总流量。如果某条链路发生故障,则由其他链路继续分担。 Eth-Trunk 的工

    2024年02月04日
    浏览(94)
  • 华为ensp模拟器实验:链路聚合/路由与路由聚合

    面前2个说了手工模式和LACP模式的聚合,都交换机与交换机的聚合。  华为ensp模拟器实验:LACP模式链路聚合/交换机与交换机间_网络光小白的博客-CSDN博客 https://blog.csdn.net/weixin_57704002/article/details/126338242?spm=1001.2014.3001.5501  华为ensp模拟器实验:手工模式链路聚合/交换机与交

    2024年02月07日
    浏览(59)
  • 华为ENSP网络设备配置实战6(简单的链路聚合)

    1、创建聚合组,添加端口成员 2、PC1网段为vlan10,PC2网段为vlan20 3、LSW1为核心网关设备,正确配置PC网关 4、PC1与PC2互通 1.1、 按照拓扑图,各个设备起名 1.2、给LSW2做端口聚合 在设备LSW2上: 1.3、给LSW3做端口聚合 在设备LSW3上: 1.4、给LSW1做端口聚合 在设备LSW1上: 至此,PC

    2024年02月12日
    浏览(46)
  • 华为eNSP入门实验,Vlan配置,路由配置,用户模式,链路聚合

    因为直接启动交换机,交换机上的两端端口默认Vlan都为1,所以什么都不用配置直接就能通信。同时注意,两台PC机要在同一个网段下(ip地址+掩码即可得到网段) 主要涉及的命令(用于参考) 因为直接启动交换机,交换机上的两端端口默认Vlan都为1,所以什么都不用配置直

    2024年02月15日
    浏览(37)
  • 华为ensp中链路聚合两种(lacp-static)模式配置方法

    作者主页: 点击! ENSP专栏: 点击! 创作时间:2024年4月26日11点54分 链路聚合(Link Aggregation),又称为端口聚合(Port Trunking),是一种将多条物理链路聚合成一条逻辑链路的技术。它可以提高网络带宽、增强网络冗余性和改善网络负载均衡。 链路聚合的作用 提高网络带宽

    2024年04月29日
    浏览(27)
  • eNSP配置(直连/静态/动态路由,DHCP,单臂路由,ACL,NAT,链路聚合,负载均衡,WLAN,备份路由)

    目录 常见问题: 一.同/不同网段与网关之间通信 二.以太网基本VLAN 三.静态路由 四.动态路由 (1)OSPF(开放最短优先路径) 适用于大型网络结构 (补充DR BDR) 单区域 多区域 (2)RIP(路由信息协议)  适用于中小型网络结构 五.DHCP(动态主机配置协议) 六.三层交换机的不同网段通信

    2024年02月08日
    浏览(54)
  • 实验二 配置Trunk和链路汇聚

    一、实验内容 二、实验环境 三、实验步骤 按照拓扑图规

    2023年04月17日
    浏览(32)
  • 了解交换机接口的链路类型(access、trunk、hybrid)

    上一个章节中讲到了vlan的作用及使用,这篇了解一下交换机接口的链路类型和什么情况下使用 vlan在数据包中是如何体现的,在上一篇的时候提到测试了一下,从PC1去访问PC4的时候,只从E0/0/2发送给了E0/0/3这是,因为两个接口都配置了access并且都接入了vlan10内,一个数据包过

    2024年02月16日
    浏览(35)
  • Spring篇---第二篇

    一、构造器注入 将被依赖对象通过构造函数的参数注入给依赖对象,并且在初始化对象的时候注 入。 优点: 对象初始化完成后便可获得可使用的对象。 缺点: 当需要注入的对象很多时,构造器参数列表将会很长; 不够灵活。若有多种注入方式,每种 方式只需注入指定几

    2024年02月07日
    浏览(40)
  • Vue基础第二篇

    总结: 1 写在data或method中的属性或方法,从vm中直接可以 . 出来 2 methods的函数中,如果想使用data或methods中的属性,直接this.名字  就可以了 示例: 总结: 1  v-on:事件名=\\\'函数\\\'-----》简写成  @事件名=\\\'函数\\\' 2 触发函数,可以传参数 示例: 标签上   name   id  class  src  href

    2024年02月08日
    浏览(43)

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

博客赞助

微信扫一扫打赏

请作者喝杯咖啡吧~博客赞助

支付宝扫一扫领取红包,优惠每天领

二维码1

领取红包

二维码2

领红包