博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
手工链路聚合与静态LACP聚合的配置命令(华为)
阅读量:5756 次
发布时间:2019-06-18

本文共 1536 字,大约阅读时间需要 5 分钟。

步骤1 创建Eth-Trunk #

创建Eth-Trunk 1。
<Quidway> system-view
[Quidway] sysname Switch
[Switch] interface eth-trunk 1
[Switch-Eth-Trunk1] quit
步骤2 向Eth-Trunk中加入成员接口

将Eth0/0/3加入Eth-Trunk 1。

[Switch] interface ethernet 0/0/3

[Switch-Ethernet0/0/3] eth-trunk 1
[Switch-Ethernet0/0/3] quit
默认情况下不允许任何VLAN通过,所以必须配置允许的VLAN,不仅仅是聚合端口,
Trunk端口也要做该配置
步骤3 配置Eth-Trunk 1

配置Eth-Trunk 1允许VLAN100-200的报文通过。

[Switch] interface eth-trunk 1

[Switch-Eth-Trunk1] port link-type trunk
[Switch-Eth-Trunk1] port trunk allow-pass vlan 100 to 200
[Switch-Eth-Trunk1] quit
在任意视图下执行
display
trunkmembership
命令,检查
Eth-Trunk 1是否创建成功,及成员接口是否正确加入。

静态LACP聚合:

步骤1 创建编号为1的Eth-Trunk,配置它的工作模式为静态LACP模式

配置SwitchA。

<Quidway> system-view

[Quidway] sysname SwitchA
[SwitchA] interface eth-trunk 1
[SwitchA-Eth-Trunk1] bpdu enable
[SwitchA-Eth-Trunk1] mode lacp-static
[SwitchA-Eth-Trunk1] quit
步骤2 将成员接口加入Eth-Trunk

配置SwitchA。

[SwitchA] interface ethernet 0/0/1

[SwitchA-Ethernet0/0/1] eth-trunk 1
[SwitchA-Ethernet0/0/1] quit
步骤3 在SwitchA上配置系统优先级为100,使其成为LACP主动端
[SwitchA] lacp priority 100
步骤4 在SwitchA上配置活动接口上限阈值为2
[SwitchA] interface eth-trunk 1
[SwitchA-Eth-Trunk1] max active-linknumber 2
[SwitchA-Eth-Trunk1] quit
步骤5 在SwitchA上配置接口优先级确定活动链路
[SwitchA] interface ethernet 0/0/1
[SwitchA-Ethernet0/0/1] lacp priority 100
[SwitchA-Ethernet0/0/1] quit
增加接口成员在Eth-Trunk接口视图下

  1. 执行命令system-view,进入系统视图。
  2. 执行命令interface eth-trunk trunk-id,进入Eth-Trunk接口视图。
  3. 执行命令trunkport interface-type { interface-number1 [ to interface-number2 ] } &<1-8>,增加成员接口。

转载于:https://blog.51cto.com/13562456/2065017

你可能感兴趣的文章
Linux远程访问及控制
查看>>
MongoDB实战系列之五:mongodb的分片配置
查看>>
Unable to determine local host from URL REPOSITORY_URL=http://
查看>>
java基础(1)
查看>>
ORACLE配置,修改tnsnames.ora文件实例
查看>>
用户无法在输入框中键入数字
查看>>
Workstation服务无法启动导致无法访问文件服务器
查看>>
.Net组件程序设计之远程调用(二)
查看>>
ant中文教程
查看>>
Linux常用命令(一)
查看>>
WSUS数据库远端存储条件下切换域及数据库迁移
查看>>
【VMCloud云平台】SCAP(四)租户(一)
查看>>
linux释放内存的方法
查看>>
基于 Android NDK 的学习之旅----- C调用Java
查看>>
我的友情链接
查看>>
双边过滤器(Bilateral filter)
查看>>
Android图形显示系统——下层显示4:图层合成上(合成原理与3D合成)
查看>>
Windows 10 技术预览
查看>>
Tomcat http跳转https
查看>>
一个自动布署.net网站的bat批处理实例
查看>>