华为交换机的链路聚合(TRUNK)

时间:2024-04-16 12:05:42

华为交换机的链路聚合

链路聚合(trunk)一般应用在网络的核心,如核心交换机处,以此提高网络数据的吞吐量。在华为交换机当中,一般能聚合8条链路,链路聚合方式分两种;一种是手动分工负载,另一种是LACP(Link Aggregation Control Protocol)模式(支持链路备份)。
trunk
手动分工负载模式时:交换机所有添加到trunk中的接口都参与数据的转发,如上图e0/0/1、e0/0/2和e0/0/3三个接口都为活动状态;LACP模式时,会预留一条备份链路,当主链路故障时,备份链路就会自动启动。同样以上图为例,e0/0/1和e0/0/2作为主链路,e0/0/3则作为备份链路。
Trunk链路要求链路的两端接口数量、速率、双工方式等需要一致。

汇聚聚合配置

如上图,现把两台交换机的e0/0/1、e0/0/2和e0/0/3设为Trunk。
一、手动分工负载模式:
交换机S1配置:
system-view
[Huawei]sysn S1
[S1]interface Eth-Trunk 1 //新增 trunk链路,名字为 “1”
[S1-Eth-Trunk1]trunkport Ethernet 0/0/1 //把 e0/0/1添加到 trunk当中
[S1-Eth-Trunk1]trunkport Ethernet 0/0/2 //把 e0/0/2添加到 trunk当中
[S1-Eth-Trunk1]trunkport Ethernet 0/0/3 //把 e0/0/3添加到 trunk当中
[S1-Eth-Trunk1]display interface Eth-Trunk 1 //查看 trunk 1当前接口
Eth-Trunk 1状态
交换机S2重复以上配置即可。

二、LACP模式:
交换机S1配置:
system-view
[Huawei]sysn S1
[S1]interface Eth-Trunk 2 //新增 trunk链路,名字为 “2”
[S1-Eth-Trunk2]mode lacp-static // trunk模式设置为lacp
[S1-Eth-Trunk2]trunkport Ethernet 0/0/1 //把 e0/0/1添加到 trunk当中
[S1-Eth-Trunk2]trunkport Ethernet 0/0/2 //把 e0/0/2添加到 trunk当中
[S1-Eth-Trunk2]trunkport Ethernet 0/0/3 //把 e0/0/3添加到 trunk当中
[S1-Eth-Trunk2]max active-linknumber 2 //设置 trunk主链路数量为2路
[S1-Eth-Trunk2]quit
[S1]lacp priority 100 //调整交换机S1的 lacp优先级为100,使之成为主动方。lacp优先级默认为32768,该数值越小,则成为主动方。
[S1]display interface Eth-Trunk 2

down
查看trunk 2得知,三个接口都处于down状态,原因是交换机S2还没有做配置。
交换机S2的配置与S1的配置基本相同,就是“lacp priority 100”这条指令不用设置,其他一样。
S2配置后,再查看trunk 2状态,如下:

UP
e0/0/1和e0/0/2作为主链路,处于up状态,e0/0/3作为备份链路,处于down状态。

谢谢浏览,如有错误,欢迎指出。