一、链接聚合
链路聚合(Eth-Trunk),是将多个物理接口捆绑为一个逻辑接口,实现增加链路带宽、提高可靠性、提供负载分担的目的。
SW1 [SW1]interface Eth-Trunk 1 [SW1-Eth-Trunk1]mode manual load-balance //选择为手动负载分担,缺省即为手工模式 [SW1-Eth-Trunk1]trunkport GigabitEthernet 0/0/23 to 0/0/24 //把GE0/0/23到GE0/0/24加入 配置Eth-Trunk 1为trunk模式,并放通vlan 10 和20 [SW1]interface Eth-Trunk 1 [SW1-Eth-Trunk1]port link-type trunk [SW1-Eth-Trunk1]port trunk allow-pass vlan 10 20 SW2 [SW2]interface Eth-Trunk 1 [SW2-Eth-Trunk1]mode manual load-balance [SW2-Eth-Trunk1]load-balance src-dst-ip [SW2-Eth-Trunk1]trunkport GigabitEthernet 0/0/23 to 0/0/24 配置Eth-Trunk 1为trunk并放通vlan10和20 [SW2]interface Eth-Trunk 1 [SW2-Eth-Trunk1]port link-type trunk [SW2-Eth-Trunk1]port trunk allow-pass vlan 10 20
使用命令display eth-trunk 1
二,LACP模式
当需要在两个直连设备间提供一个较大的链路带宽并且设备都支持LACP协议时,建议使用LACP模式。
LACP模式不仅可以实现增加带宽、提高可靠性、负载分担的目的,而且可以提高Eth-Trunk的容错性、提供备份功能。
在LACP模式下,部分链路是活动链路,所有活动链路均参与数据转发。如果某条活动链路故障,链路聚合组自动在非活动链路中选择一条链路作为活动链路,来参与数据转发
如下图SW1和SW2各自的GE0/0/22、GE0/0/23、GE0/0/24加入链路聚合中,GE0/0/22作为备份链路
配置过程
[SW1]interface Eth-Trunk 2 //创建eth-trunk 2聚合口 [SW1-Eth-Trunk2]mode lacp-static //配置模式为lacp静态模式 [SW1-Eth-Trunk2]trunkport GigabitEthernet 0/0/22 to 0/0/24 //把GE0/0/22 到GE0/0/24加入到聚合组 在SW1上配置系统优先级为100,使其成为LACP主动端 [SW1]lacp priority 100 在SW1上配置活动接口上限阈值为2 [SW1]interface Eth-Trunk 2 [SW1-Eth-Trunk2]max active-linknumber 2 在SW1进入物理接口配置接口优先级,确定活动链路,此处只配置GE23和GE24口,GE22口保持默认值32768。 [SW1]interface GigabitEthernet 0/0/1 [SW1-GigabitEthernet0/0/1]lacp priority 100 [SW1]interface GigabitEthernet 0/0/2 [SW1-GigabitEthernet0/0/2]lacp priority 100 配置Eth-Trunk2接口为trunk,并允许VLAN10和VLAN20通过(vlan配置过程省略) [SW1]interface Eth-Trunk 2 [SW1-Eth-Trunk2]port link-type trunk [SW1-Eth-Trunk2]port trunk allow-pass vlan 10 20
配置SW2
[SW2]interface Eth-Trunk 2 [SW2-Eth-Trunk2]mode lacp-static //配置模式为lacp静态模式 [SW2]interface GigabitEthernet 0/0/22 [SW2-GigabitEthernet0/0/1]eth-trunk 2 [SW2]interface GigabitEthernet 0/0/23 [SW2-GigabitEthernet0/0/2]eth-trunk 2 [SW2]interface GigabitEthernet 0/0/24 [SW2-GigabitEthernet0/0/3]eth-trunk 2 SW2上优先级保持默认,在SW2上配置活动接口上限阈值为2 [SW2]interface Eth-Trunk 2 [SW2-Eth-Trunk2]max active-linknumber 2 配置Eth-Trunk2接口为trunk,并允许VLAN10和VLAN20通过(vlan配置过程省略) [SW2]interface Eth-Trunk 2 [SW2-Eth-Trunk2]port link-type trunk [SW2-Eth-Trunk2]port trunk allow-pass vlan 10 20
把SW1的GE0/0/1口shutdown,
[SW1]interface GigabitEthernet 0/0/1
[SW1-GigabitEthernet0/0/1]shutdown
华为交换机配置链路聚合(手工模式链路聚合和lacp模式聚合)-CSDN博客
标签:聚合,trunk,interface,交换机,链路,SW1,Eth,SW2 From: https://www.cnblogs.com/zp513/p/17985711