链路聚合作用:1、增加带宽;2、链路可靠;3、链路负载;
链路聚合有两种模式:1、手工分配模式(不支持跨设备,所有链路均参与数据转发);2、LACP模式(支持跨设备);
一、手工分配模式配置思路:
1、创建Eth-Trunk接口并加入成员接口,实现增加链路带宽。
2、创建VLAN并将接口加入VLAN。
3、配置负载分担方式,实现流量在Eth-Trunk各成员接口间的负载分担,增加可靠性。
操作步骤:
LSW1
1、在交换机上创建Eth-Trunk接口并加入成员接口。
sys
interface Eth-Trunk 1 //创建聚合链路接口
[LSW1-Eth-Trunk1]trunkport g0/0/2 to g0/0/4 //将g0/0/2-4加入trunk1
quit
dis eth-trunk 1 //查看链路聚合状态
2、创建VLAN并将接口加入VLAN
vlan 10
int g0/0/1
port link-type access
port default vlan 10
#配置Eth-Trunk 1接口允许VLAN 10通过。
interface Eth-Trunk1
port link-type trunk
port trunk allow-pass vlan 10
3、配置Eth-Trunk 1的负担方式。
load-balance src-dst-mac
4、验证配置结果。
display Eth-Trunk 1
二、LACP模式的链路配置思路:
1、创建Eth-Trunk 1,模式为lacp-static。
2、将g0/0/2,g0/0/3,g0/0/4加入Eth-Trunk。
3、配置优先级,确定活动链路。(默认优先级为32768,LSW1为主动端,LSW2优先级低,为被动端,无需配置)
4、在LSW1配置活动接口上限阈值为2。(默认优先级为32768,g0/0/2和g0/0/3优先级为100,LSW2优先级低,无需配置)
5、创建VLAN,并将接口加入VLAN。
6、验证配置结果:display Eth-Trunk 1
参考华为官方配置:https://support.huawei.com/enterprise/zh/doc/EDOC1100213093/56fa680f
服务器网卡链路聚合:服务器管理器-本地服务器-NIC组合(已启用)-网络适配器,右键添加到新的组。