eNSP软件模拟LACP聚合链路实验


eNSP软件模拟LACP聚合链路实验

实验目的:熟悉eNSP的命令配置,并连接LACP聚合链路的过程。

实验内容:根据拓扑图配置交换机与路由器

实验目标:配置系统优先级,确定主动端,按照主动端设备的接口选择活动接口。

配置活动接口上限阈值,实现保证带宽的情况下提高网络的可靠性。

配置接口优先级,确定活动链路接口,优先级高的接口将被选作活动接口。

实验结果:所以主机均可通信。

1、根据拓扑图进行拓扑绘制

实验步骤:

进行交换机与路由器的配置

交换机1配置

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
<Huawei>system-view  ##进入系统视图模式
[Huawei]sysname SW1  ##重命名SW1
[SW1]vlan batch 10 20  ##批量开启vlan端口10跟20
[SW1]lacp priority 1000  ##设置链路优先级,默认优先级为32768
[SW1]int Eth-Trunk 1  ##进入接口视图
[SW1-Eth-Trunk1]bpdu enable  ##配置接口上发送BPDU报文
[SW1-Eth-Trunk1]mode lacp-static  ##设置LACP模式为静态模式
[SW1-Eth-Trunk1]max active-linknumber 2  ##配置链路聚合活动接口数上限阈值。缺省时为8
[SW1-Eth-Trunk1]trunkport Ethernet 0/0/10 to 0/0/12  ## ##增加成员接口e0/0/10和e0/0/12
[SW1-Eth-Trunk1]port link-type trunk  ##设置连接模式为trunk模式
[SW1-Eth-Trunk1]port trunk allow-pass vlan 10 20  ##允许链路通过的vlan为10跟20
[SW1-Eth-Trunk1]q  ##离开视图
[SW1]int Eth-Trunk 2  ##进入接口视图
[SW1-Eth-Trunk2]trunkport GigabitEthernet 0/0/1 to 0/0/2  ## ##增加成员接口g0/0/1到g0/0/2
[SW1-Eth-Trunk2]port link-type access  ##设置主干接口为access接口模式(华为默认为hubird模式)
[SW1-Eth-Trunk2]port default vlan 10  ##把端口划分到vlan10
[SW1-Eth-Trunk2]q  ##离开视图
[SW1]int e0/0/1  ##进入接口视图
[SW1-Ethernet0/0/1]port link-type access  ##接口模式设置为access
[SW1-Ethernet0/0/1]port default vlan 10  ##接口划分到vlan10
[SW1-Ethernet0/0/1]int e0/0/2  ##进入子接口
[SW1-Ethernet0/0/2]port link-type access  ##接口模式设置为access
[SW1-Ethernet0/0/2]port default vlan 20  ##接口划分到vlan20
[SW1-Ethernet0/0/2]q  ##离开视图
[SW1]

交换机2配置

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<Huawei>system-view  ##进入系统视图模式
[Huawei]sysname SW2  ##重命名SW2
[SW2]vlan batch 10 20  ##批量开启vlan端口10跟20
[SW2]int Eth-Trunk 1  ##进入接口视图
[SW2-Eth-Trunk1]bpdu enable  ##配置接口上发送BPDU报文
[SW2-Eth-Trunk1]mode lacp-static  ##设置LACP模式为静态模式
[SW2-Eth-Trunk1]trunkport Ethernet 0/0/10 to 0/0/12  ##增加成员接口e0/0/10和e0/0/12
[SW2-Eth-Trunk1]port link-type trunk  ##设置连接模式为trunk模式
[SW2-Eth-Trunk1]port trunk allow-pass vlan 10 20  ##允许链路通过的vlan为10跟20
[SW2-Eth-Trunk1]q  ##离开接口视图
[SW2]int Eth-Trunk 2  ##进如接口视图
[SW2-Eth-Trunk2]trunkport GigabitEthernet 0/0/1 to 0/0/2   ##增加成员接口g0/0/1和g0/0/2     
[SW2-Eth-Trunk2]port link-type access   ##设置主干接口为access接口模式
[SW2-Eth-Trunk2]port default vlan 20  ##把端口划分到vlan20
[SW2-Eth-Trunk2]q  ##离开接口视图
[SW2]int e0/0/3  ##进入接口视图
[SW2-Ethernet0/0/3]port link-type access  ##接口模式设置为access  
[SW2-Ethernet0/0/3]port default vlan 10  ##接口划分到vlan10
[SW2-Ethernet0/0/3]int e0/0/2  ##进入接口视图
[SW2-Ethernet0/0/2]port link-type access  ##接口模式设置为access
[SW2-Ethernet0/0/2]port default vlan 20  ##接口划分到vlan20
[SW2-Ethernet0/0/2]q  ##离开接口视图
[SW2]

路由器1配置

1
2
3
4
5
6
7
8
9
10
11
12
<R1>system-view  ##进入系统视图模式
[R1]sysname R1  ##重命名R1  
[R1]int Eth-Trunk 2  ##进入接口视图
[R1-Eth-Trunk2]trunkport GigabitEthernet 0/0/0 to 0/0/1  ##将子端口并入聚合主干  
[R1-Eth-Trunk2]ip add 192.168.10.1 24  ##设置主干ip地址
[R1-Eth-Trunk2]q  ##离开聚合主干
[R1]int Eth-Trunk 1  ##进入接口视图
[R1-Eth-Trunk1]trunkport GigabitEthernet 0/0/2 to 0/0/3  ##增加成员接口g0/0/2和g0/0/3
[R1-Eth-Trunk1]ip add 12.0.0.1 24  ##链路IP地址
[R1-Eth-Trunk1]q
[R1]ip route-static 192.168.20.0 24 12.0.0.2  ##设置静态路由
[R1]return

路由器2配置

1
2
3
4
5
6
7
8
9
10
11
12
<R2>system-view    
[R2]sysname R2 
[R2]int Eth-Trunk 2
[R2-Eth-Trunk2]trunkport GigabitEthernet 0/0/0 to 0/0/1
[R2-Eth-Trunk2]ip add 192.168.20.1 24
[R2-Eth-Trunk2]q
[R2]int Eth-Trunk 1
[R2-Eth-Trunk1]trunkport GigabitEthernet 0/0/2 to 0/0/3
[R2-Eth-Trunk1]ip add 12.0.0.2 24
[R2-Eth-Trunk1]q
[R2]ip route-static 192.168.10.0 24 12.0.0.1
[R2]return

实验结果:

路由器验证:

中…(img-1kvv6tYH-1593676223710)]

[外链图片转存中…(img-jneLr1EG-1593676223711)]

[外链图片转存中…(img-MrQuBUOj-1593676223713)]