LACP模式 - 可以称之为M:N模式
1)M代表处于活动状态的转发数据
2)N代表处于非活动状态的备份链路
3)建立的三条链路,就是其中两条转发,其中1条备份,当转发链路出现故障的时候,备份链路才会进行数据转发,平时是不转发数据
交换机之间的多个链路通过 LACP 协议自动捆绑,
[1-创建 vlan 1 和 2]
vlan batch 1 2
[2-配置交换机与PC之间的链路为 Access,并加入到正确的 VLAN]
[sw1]
interface e/0/4
port link-type access
port default vlan 1
q
interface e0/0/5
port link-type access
port default vlan 2
q
[sw2]
interface e0/0/4
port link-type access
port default vlan 1
q
interface e0/0/5
port link-type access
port default vlan 2
q
[3-SW1&SW2 链路捆绑.并设置trunk模式]
interface Eth-Trunk 1
mode lacp-stastic
trunkport e0/0/1
trunkport e0/0/2
trunkport e0/0/3
port link-type trunk
port trunk allow-pass vlan all
display eth-trunk 1
---------------------------------------------------------------------------------
[SW2]display eth-trunk 1
Eth-Trunk1's state information is:
Local:
LAG ID: 1 WorkingMode: STATIC
Preempt Delay: Disabled Hash arithmetic: According to SIP-XOR-DIP
System Priority: 32768 System ID: 4c1f-ccf1-5ad7
Least Active-linknumber: 1 Max Active-linknumber: 8
Operate status: down Number Of Up Port In Trunk: 0
-----------------------------------------------------------------------------------
Local:本地信息 Partner:对端信息
Svstem Prioritv:32768 系统的优先级
System ID:4clf-cc4e-5 系统的mac地址
MAX Active-linknumber:8 最大的活动链路数是8条
链路数是可以进行调整的, 调整为<8条(按照实验要求调整为2)
Number of Up Port In Trunk:0 目前有X 条
UNSELECT 为备份端口 Selected 为活动端口
-----------------------------------------------------------------------------------
[4-配置最大带宽为200,并开启 LACP的抢占功能(SW1/2都要配置)]
display eth-trunk 1 \\查看 eth-trunk
int eth-trunk 1 \\进入eth-trunk1
max active-linknumber 2 \\设置为2条链路
lacp preempt enable
[5-修改sw2为主设备,设置为100]
[S2]lacp priority 100 \\设置默认值为100
[S2]display eth-trunk 1 \\查看 eth-trunk
以上配置总结如下-配置动态Eth-Trunk模式
1、创建Eth-Trunk
2、配置Eth-Trunk的工作模式
3、Eth-Trunk中加入接口成员
4、配置SW2为eth-trunk的主动端,优先级设置为100
5、交换机之间的最大连接宽带为2G
also -LACP负载分担模式的配置命令
1、创建Eth-Trunk
命令格式:interface Eth-Trunk接口(范围0-63)
2、配置Eth-Trunk的工作模式
命令格式:mode lacp-static
3、Eth-Trunk中加入接口成员
命令格式:trunkport gi0/0/1
4、Eth-Trunk修改优先级(值越小优先级越大)
命令格式:lacp priority 优先级的值 (范围0-65535,默认值 32768)
5、Eth-Trunk最大连接数的设置
命令格式:interface Eth-Trunk 1
max active-linkunmber 数量(范围1-8,默认值 8)
6、配置Eth-Trunk的抢占功能
命令格式:interface Eth-Trunk 1
lacp preempt enable \\开启抢占功能