以太网链路聚合简单配置
以太网链路聚合:
1、将多条物理链路捆绑在一起成为一条逻辑链路(最多聚合16条链路)
2、两端相连的物理接口数量,速率,双工方式,控流方式一致
3、能够增加带宽,提高可靠性,实现负载均衡
链路聚合模式:
1)手工模式:先创建eth-trunk,在加入成员端口
2)LACP模:通过LACP协议自动实现聚合,LACP可维护链路状态
链路聚合案例(手工聚合):
实验要求:
两台交换机之间配置以太网链路聚合(手工模式),实现负载均衡。PC1能ping通PC2。
(1)创建vlan10
[HUAWEI]vlan 10
[HUAWEI]int vlan 10
[HUAWEI-VLAN10] ip add 192.168.1.254 24
(2) SW1配置eth-trunk
[SW1] interface eth-trunk 1
[SW1-Eth-trunk1] port link-type trunk
[SW1-Eth-trunk1] port trunk allow-pass vlan 10
[SW1-Eth-trunk1] mode manual load-balance
[SW1-Eth-trunk1] trunkport g0/0/1
[SW1-Eth-trunk1] trunkport g0/0/2
(3)配置连接pc的接口
[SW1] int g0/0/3
[SW1-] port link-type access
[SW1-] port default vlan 10
SW2配置同上,只将vlan10配置成192.168.1.1/24
测试PC1与PC2连通性
(二)LACP链路聚合配置
配置要求:
在SW1与SW2之间配置LACP链路聚合
(1)SW1的配置
[Huawei] lacp priority 100
[Huawei] int Eth-Trunk 12
[Huawei-Eth-Trunk12] mode lacp-static
[Huawei-Eth-Trunk12] load-balance src-ip
[Huawei-Eth-Trunk12] lacp preempt enable
[Huawei-Eth-Trunk12] max active-linknumber 2
[Huawei] int g0/0/1
[Huawei-GigabitEthernet0/0/1] eth-trunk 12
[Huawei-GigabitEthernet0/0/1] lacp priority 100
[Huawei] int g0/0/2
[Huawei-GigabitEthernet0/0/2] eth-trunk 12
[Huawei-GigabitEthernet0/0/2]lacp priority 100
(2)SW2的配置
[Huawei] int Eth-Trunk 12
[Huawei-Eth-Trunk12] mode lacp-static
[Huawei] int g0/0/1
[Huawei-GigabitEthernet0/0/1] eth-trunk 12
[Huawei] int g0/0/2
[Huawei-GigabitEthernet0/0/2] eth-trunk 12
在SW1上面查看链路聚合情况:
此时,LACP链路聚合成功。