链路聚合lacp

Lacp的作用

  • 提升链路的带宽,将多个物理端口捆绑为一个端口,可以提升链路的总带宽;
  • 提升可靠性,可以将多端口lacp设置为活动链路和备份链路,当活动链路出现故障时,链路聚合组会在备份链路中选择一路为活动链路。


如上图所示,将4台PC实现互通,配置如下:

SW1

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
sysname SW1
vlan batch 10 20
interface Vlanif10
ip address 192.168.1.1 255.255.255.0
interface Vlanif20
ip address 192.168.2.1 255.255.255.0
interface GigabitEthernet0/0/4
port link-type access
port default vlan 10
interface GigabitEthernet0/0/5
port link-type access
port default vlan 20

int Eth-Trunk 1
port link-type trunk
port trunk allow-pass vlan 10 20
mode lacp-static #更改lacp模式
lacp preempt enable #开启抢占优先级
max active-linknumber 2 #最大支持2条活跃链路
lacp preempt delay 30 #抢占延迟为30秒
trunkport GigabitEthernet 0/0/1 to 0/0/3 #接口加入Eth-Trunk 1
interface GigabitEthernet0/0/2
lacp priority 100 #设置接口优先级为100
interface GigabitEthernet0/0/3
lacp priority 100 #设置接口优先级为100

SW2

1
2
3
4
5
6
7
8
sysname SW2
vlan batch 10 20 30
port link-type trunk
port trunk allow-pass vlan 10 20

int Eth-Trunk 1
mode lacp-static #更改lacp模
trunkport GigabitEthernet 0/0/1 to 0/0/3 #接口加入Eth-Trunk 1