Bootstrap

链路聚合和vrrp概述与配置

链路聚合

以太网链路聚合----Eth- trunk多链路汇聚,将多条物理链路变为一条E-trunk的逻辑链路,从而实现增加链路带宽的目的。同时,这些捆绑在一起的链路通过相互间的动态备份,可以有效的提高链路的可靠性。即使某条线路短掉,仍能进行数据传输。

链路聚合分为手工模式和LACP模式。手工模式大多被淘汰。

LACP模式需要有链路集合控制协议LACP的参与。当需要在两个直连设备间提供一个较大的链路带宽而设备支持LACP时,建议使用LACP模式。

链路聚合配置

在这里插入图片描述

LSW1:

[LSW1]lacp priority 1000   #配置系统LACP优先级
[LSW1]int Eth-Trunk 1   #进入Eth-Trunk视图
[LSW1-Eth-Trunk1]bpdu enable  #开启DPDU功能,起防环作用
[LSW1-Eth-Trunk1]mode lacp-static  #配置Eth-Trunk为静态LACP模式
[LSW1-Eth-Trunk1]trunkport Ethernet 0/0/2 to 0/0/4  #批量添加接口
Info: This operation may take a few seconds. Please wait for a moment...done.
[LSW1-Eth-Trunk1]p l t   #必须先添加接口到Eth-Trunk后,再设置接口模式
[LSW1-Eth-Trunk1]p t a v a 
[LSW1-Eth-Trunk1]max active-linknumber 2 #配置接口上限阈值,表示同时有俩接口是活动状态
[LSW1-Eth-Trunk1]q                  #接上:剩余接口处于备份状态(忽略的话默认设为8)

LSW2:

#LSW1设过优先级后,LSW2可不设
[LSW2]int Eth-Trunk 1                #配置和LSW1一样,上限阈值设过了 这里也不用设了
[LSW2-Eth-Trun
;