华为ensp实验详解:OSPF协议路由的计算(单区域)

一、实验拓扑
华为ensp实验详解:OSPF协议路由的计算(单区域)_第1张图片
图2-1 实验拓扑图

二、实验过程及结果分析
(1)根据图6连接各设备;
(2)配置设备;

手动调节链路cost命令:
交换机:interface vlan ?
ospf ? cost ?
路由器:interface 接口名
ospf ? cost ?
LSW1:
[Huawei]vlan 2
[Huawei-vlan2]interface vlan 2
[Huawei-Vlanif2]ip add 30.1.1.2 24
[Huawei-Vlanif2]quit
[Huawei]vlan 3
[Huawei-vlan3]interface vlan 3
[Huawei-Vlanif3]ip add 40.1.1.1 24
[Huawei-Vlanif3]quit
[Huawei]int Ethernet0/0/1
[Huawei-Ethernet0/0/1]port link-type access
[Huawei-Ethernet0/0/1]port default vlan 2
[Huawei]int Ethernet0/0/2
[Huawei-Ethernet0/0/2]port link-type access
[Huawei-Ethernet0/0/2]port default vlan 3
[Huawei]ospf
[Huawei-ospf-1]area 0
[Huawei-ospf-1-area-0.0.0.0]net 40.1.1.0 0.0.0.255
[Huawei-ospf-1-area-0.0.0.0]net 30.1.1.0 0.0.0.255
[Huawei]ospf 1 router-id 1.1.1.1
[Huawei]interface vlan 3
[Huawei-Vlanif3]ospf cost 100
[Huawei]interface Vlan 2
[Huawei-Vlanif2]ospf cost 200
LSW2:
[Huawei]vlan 2
[Huawei-vlan2]interface vlan 2
[Huawei-Vlanif2]ip add 10.1.1.2 24
[Huawei]int Ethernet0/0/1
[Huawei-Ethernet0/0/1]port link-type access
[Huawei-Ethernet0/0/1]port default vlan 2
[Huawei]ospf
[Huawei-ospf-1]area 0
[Huawei-ospf-1-area-0.0.0.0]net 10.1.1.0 0.0.0.255
[Huawei]ospf 1 router-id 4.4.4.4
[Huawei]interface vlan 2
[Huawei-Vlanif2]ospf cost 300
R1:
[Huawei]int Ethernet0/0/1
[Huawei-Ethernet0/0/1]ip add 40.1.1.2 24
[Huawei]int Ethernet0/0/0
[Huawei-Ethernet0/0/0]ip add 20.1.1.2 24
[Huawei]ospf
[Huawei-ospf-1]area 0
[Huawei-ospf-1-area-0.0.0.0]net 20.1.1.0 0.0.0.255
[Huawei-ospf-1-area-0.0.0.0]net 40.1.1.0 0.0.0.255
[Huawei]ospf 1 router-id 2.2.2.2
[Huawei]int Ethernet0/0/1
[Huawei-Ethernet0/0/1]ospf cost 100
[Huawei]int Ethernet0/0/0
[Huawei-Ethernet0/0/0]ospf cost 500
[Huawei]vlan 3
R2:
[Huawei]int Ethernet0/0/0
[Huawei-Ethernet0/0/0]ip add 30.1.1.1 24
[Huawei]int GigabitEthernet0/0/0
[Huawei-GigabitEthernet0/0/0]ip add 20.1.1.1 24
[Huawei]int Ethernet0/0/1
[Huawei-Ethernet0/0/1]ip add 10.1.1.1 24
[Huawei]ospf
[Huawei-ospf-1]area 0
[Huawei-ospf-1-area-0.0.0.0]net 30.1.1.0 0.0.0.255
[Huawei-ospf-1-area-0.0.0.0]net 20.1.1.0 0.0.0.255
[Huawei-ospf-1-area-0.0.0.0]net 10.1.1.0 0.0.0.255
[Huawei]ospf 1 router-id 3.3.3.3
[Huawei]int Ethernet0/0/0
[Huawei-Ethernet0/0/0]ospf cost 200
[Huawei]int Ethernet0/0/1
[Huawei-Ethernet0/0/1]ospf cost 300
[Huawei]int GigabitEthernet0/0/0
[Huawei-GigabitEthernet0/0/0]ospf cost 500
[Huawei]vlan 2
(3)查看路由表信息(LSW1、LSW2、R1、R2);
华为ensp实验详解:OSPF协议路由的计算(单区域)_第2张图片
图2-2 LSW1路由表信息
华为ensp实验详解:OSPF协议路由的计算(单区域)_第3张图片
图2-3 LSW2路由表信息
华为ensp实验详解:OSPF协议路由的计算(单区域)_第4张图片
图2-4 R1路由表信息
华为ensp实验详解:OSPF协议路由的计算(单区域)_第5张图片
图2-5 R2路由表信息

SPF算法中,每一个路由器根据其上某个区域的链路状态数据库,计算出该区域的拓扑结构图,以该路由器为根节点,计算得到一个最短路径树,其树干长度为cost值(16bit的整数,范围是1~65535,值越小说明路径越好
Cost值的算法:108/链路带宽
用户可以手动调节链路cost,缺省情况下自动计算开销。

你可能感兴趣的:(笔记)