收藏 分销(赏)

OSPF综合实验大全.doc

上传人:w****g 文档编号:3138513 上传时间:2024-06-19 格式:DOC 页数:45 大小:300KB
下载 相关 举报
OSPF综合实验大全.doc_第1页
第1页 / 共45页
OSPF综合实验大全.doc_第2页
第2页 / 共45页
OSPF综合实验大全.doc_第3页
第3页 / 共45页
OSPF综合实验大全.doc_第4页
第4页 / 共45页
OSPF综合实验大全.doc_第5页
第5页 / 共45页
点击查看更多>>
资源描述

1、OSPF综合实验大全OSPF实验1:基本的OSPF配置实验级别:Assistant实验拓扑:实验步骤:1.首先在3台路由器上配置物理接口,并且使用ping命令确保物理链路的畅通。2.在路由器上配置loopback接口:R1(config)#int loopback 0R1(config-if)#ip add 1.1.1.1 255.255.255.0R2(config)#int loopback 0R2(config-if)#ip add 2.2.2.2 255.255.255.0R3(config)#int loopback 0R3(config-if)#ip add 3.3.3.3 255

2、.255.255.0路由器的RID是路由器接口的最高的IP地址,当有环回口存在是,路由器将使用环回口的最高IP地址作为起RID,从而保证RID的稳定。3在3台路由器上分别启动ospf进程,并且宣告直连接口的网络。R1(config)#router ospf10R1(config-router)#network 192.168.1.00.0.0.255area 0R1(config-router)#network 1.1.1.0 0.0.0.255 area 0R1(config-router)#network 192.168.3.0.0.0.255 area 0ospf的进程号只有本地意义,既

3、在不同路由器上的进程号可以不相同。但是为了日后维护的方便,一般启用相同的进程号。ospf使用反向掩码。Area 0表示骨干区域,在设计ospf网络时,所有的非骨干区域都需要和骨干区域直连!R2,R3的配置和R1类似,这里省略。不同的是我们在R2和R3上不宣告各自的环回口。*Aug 13 17:58:51.411: %OSPF-5-ADJCHG: Process 10, Nbr 2.2.2.2 on Serial1/0 from LOADING to FULL, Loading Done配置结束后,我们可以看到邻居关系已经到达FULL状态。4.在R1上查看路由表,可以看到以下信息:R1#show

4、 ip route Codes: C - connected, S - static, R - RIP, M - mobile, B - BGPD - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter areaN1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2E1 - OSPF external type 1, E2 - OSPF external type 2i - IS-IS, su - IS-IS summary, L1 - IS-IS level-1, L

5、2 - IS-IS level-2ia - IS-IS inter area, * - candidate default, U - per-user static routeo - ODR, P - periodic downloaded static route Gateway of last resort is not set 1.0.0.0/24 is subnetted, 1 subnets C1.1.1.0 is directly connected, Loopback0 C192.168.1.0/24 is directly connected, Serial1/0 O192.1

6、68.2.0/24 110/65 via 192.168.1.2, 00:03:42, Serial1/0 C192.168.3.0/24 is directly connected, FastEthernet0/ 我们看到R1学到了192.168.2.0/24这个网段的路由。后面的数字110/65,分别表示OSPF的管理距离(AD)和路由的Metric值OSPF的Metric值是由cost值逐跳累加的。Cost=100Mb/带宽值。5.在R1上show ip ospf neighbor、show ip ospf interface R1#show ip ospf neighborNeighb

7、or IDPriStateDead TimeAddressInterface3.3.3.31FULL/BDR00:00:34192.168.3.3FastEthernet0/02.2.2.20FULL/-00:00:32192.168.1.2Serial1/0我们看到R1和R3选取了DR和BDR,而R1和R2没有选取。在ospf的五种网络类型中。Point-to-Point,Point-to-Multipoint(广播与非广播)这三种网络类型不选取DR与BDR; Broadcast,NBMA选取DR与BDR。R1#show ip ospf interfaceFastEthernet0/0 is

8、 up, line protocol is upInternet Address 192.168.3.1/24, Area 0Process ID 10, Router ID 1.1.1.1,Network Type BROADCAST, Cost: 1Transmit Delay is 1 sec, State DR, Priority 1Designated Router (ID) 1.1.1.1, Interface address 192.168.3.1Backup Designated router (ID) 3.3.3.3, Interface address 192.168.3.

9、3Timer intervals configured, Hello 10, Dead 40, Wait 40, Retransmit 5oob-resync timeout 40Hello due in 00:00:03Index 3/3, flood queue length 0Next 0x0(0)/0x0(0)Last flood scan length is 1, maximum is 1Last flood scan time is 0 msec, maximum is 0 msecNeighbor Count is 1, Adjacent neighbor count is 1A

10、djacent with neighbor 3.3.3.3(Backup Designated Router)Suppress hello for 0 neighbor(s)Serial1/0 is up, line protocol is upInternet Address 192.168.1.1/24, Area 0Process ID 10, Router ID 1.1.1.1,Network Type POINT_TO_POINT, Cost: 64Transmit Delay is 1 sec, State POINT_TO_POINT,Timer intervals config

11、ured, Hello 10, Dead 40, Wait 40, Retransmit 5oob-resync timeout 40Hello due in 00:00:02Index 1/1, flood queue length 0Next 0x0(0)/0x0(0)Last flood scan length is 1, maximum is 1Last flood scan time is 4 msec, maximum is 4 msecNeighbor Count is 1, Adjacent neighbor count is 1Adjacent with neighbor 2

12、.2.2.2Suppress hello for 0 neighbor(s)Loopback0 is up, line protocol is upInternet Address 1.1.1.1/24, Area 0Process ID 10, Router ID 1.1.1.1,Network Type LOOPBACK, Cost: 1Loopback interface is treated as astub Host在这里我们看到环回口的网络网络类型是Loopback,这是一种特殊的网络类型,只针对环回口存在。我们到R2上看看路由表:R2#show ip routeCodes: C

13、- connected, S - static, R - RIP, M - mobile, B - BGPD - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter areaN1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2E1 - OSPF external type 1, E2 - OSPF external type 2i - IS-IS, su - IS-IS summary, L1 - IS-IS level-1, L2 - IS-IS level-2ia

14、 - IS-IS inter area, * - candidate default, U - per-user static routeo - ODR, P - periodic downloaded static routeGateway of last resort is not set1.0.0.0/32 is subnetted, 1 subnetsO1.1.1.1 110/65 via 192.168.1.1, 00:12:34, Serial1/02.0.0.0/24 is subnetted, 1 subnetsC2.2.2.0 is directly connected, L

15、oopback0C192.168.1.0/24 is directly connected, Serial1/0C192.168.2.0/24 is directly connected, Serial1/1O192.168.3.0/24 110/65 via 192.168.1.1, 00:12:34, Serial1/0110/65 via 192.168.2.3, 00:12:34, Serial1/1R2的路由表显示来自环回口的路由,掩码为/32,既我们所说的“主机路由”。在实际应用中,环回口以32位的居多,用作ospf的管理接口。但是如果你想让环回口模拟一个网段,我们可以通过以下配置

16、来消除。R1(config)#int loopback 0R1(config-if)#ip ospf network point-to-point环回口只能配置成point-to-point这种类型,不可以配置成其它的类型。回到R2查看路由表:R2#show ip routeCodes: C - connected, S - static, R - RIP, M - mobile, B - BGPD - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter areaN1 - OSPF NSSA external type 1, N2 - O

17、SPF NSSA external type 2E1 - OSPF external type 1, E2 - OSPF external type 2i - IS-IS, su - IS-IS summary, L1 - IS-IS level-1, L2 - IS-IS level-2ia - IS-IS inter area, * - candidate default, U - per-user static routeo - ODR, P - periodic downloaded static routeGateway of last resort is not set1.0.0.

18、0/24 is subnetted, 1 subnetsO1.1.1.0 110/65 via 192.168.1.1, 00:00:24, Serial1/02.0.0.0/24 is subnetted, 1 subnetsC2.2.2.0 is directly connected, Loopback0C192.168.1.0/24 is directly connected, Serial1/0C192.168.2.0/24 is directly connected, Serial1/1O192.168.3.0/24 110/65 via 192.168.1.1, 00:00:24,

19、 Serial1/0110/65 via 192.168.2.3, 00:00:24, Serial1/1我们看到主机路由没有了,取而代之的是一个/24的网段。本文出自 “盖如鹤的步徒” 博客,请务必保留此出处OSPF实验2:DR/BDR的选取实验级别:Professional情况一: 我们都知道OSPF选取DR的过程是首先比较优先级,在优先级相同的情况下选择RID较高的为DR,但是我多次实验后发现在很多时候DR并非RID最高的路由器,这是什么原因呢? 在翻阅了卷一有关OSPF DR选取的介绍时,发现了这么一句话:“在一个多址网络上,最先初始化启动的两台具有DR选取资格的路由器将成为DR和BD

20、R路由器。”这是我总结了非最高RID而成为DR的实验,发现这些路由器都是我在进行OSPF配置的时候首先启动ospf的路由器,那会不会是因为这些路由器首先启动了OSPF,然后把自己设置为DR导致其他路由器启动OSPF后就不再进行DR的选取了呢?于是我做了下面的这个实验。 实验的topo很简单,我就不画了,就是两台路由器通过fa0/0口相连接。R1:conf tho R1int lo0ip add 1.1.1.1 255.255.255.0int fa0/0ip add 172.1.1.1 255.255.255.0no shrouter ospf 10net 172.1.1.1 0.0.0.0

21、a 0R2:conf tho R2int lo0ip add 2.2.2.2 255.255.255.0int fa0/0ip add 172.1.1.2 255.255.255.0no shR1启动ospf进程后,我们在R2上暂时先不开启ospf,在R1上发现了以下信息:R1#sho ip ospf intFastEthernet0/0 is up, line protocol is up Internet Address 172.1.1.1/24, Area 0 Process ID 10, Router ID 1.1.1.1, Network Type BROADCAST, Cost:

22、1 Transmit Delay is 1 sec,State DR, Priority 1 Designated Router (ID) 1.1.1.1, Interface address 172.1.1.1 No backup designated router on this network Timer intervals configured, Hello 10, Dead 40, Wait 40, Retransmit 5 oob-resync timeout 40 Hello due in 00:00:01 Index 1/1, flood queue length 0 Next

23、 0x0(0)/0x0(0) Last flood scan length is 0, maximum is 0 Last flood scan time is 0 msec, maximum is 0 msec Neighbor Count is 0, Adjacent neighbor count is 0 Suppress hello for 0 neighbor(s) 我们看到R1已经把自己设定为DR了,按照OSPF的规则,新加入的路由器即使RID比DR高,也不会替换DR。这就说明了为什么在有些时候DR并非RID最高的路由器。 当然这个实验也顺便验证了ospf中DR选取结束后,除非DR

24、路由器出现故障,否则就是有更高优先级或者RID的路由器进入OSPF进程,也是无法改变DR的。既DR是不可以抢夺的!情况二(本实验参照了ITAA实验室Netfish的实验): ospf中有一个Wait Timer计时器,在这个计时器所限定的时间内起来的OSPF可以视为同时起机。 TCP/IP卷1第292页对于这个时间间隔是这样定义的: Wait Timer:在开始选举DR和BDR之间,路由器等待邻居路由器的Hello数据包通告DR和BDR的时长。长度就是RouterDeadInterval的时间。 本实验拓扑与情况一相同,不同的地方在于当我们在R1上启动OSPF后,迅速(一定要迅速,非常迅速!4

25、0s之内)在R2上也启动ospf,通过debug信息可以看到以下情况:R1#debug ip ospf adjOSPF adjacency events debugging is onR1#debug ip ospf evOSPF events debugging is on*Aug 14 00:56:19.047: OSPF: Interface FastEthernet0/0 going Up*Aug 14 00:56:19.051: OSPF: Send hello to 224.0.0.5 area 0 on FastEthernet0/0 from 172.1.1.1*Aug 14

26、00:56:19.551: OSPF: Build router LSA for area 0, router ID 1.1.1.1, seq 0x80000001*Aug 14 00:56:19.555: OSPF: Rcv hello from 2.2.2.2 area 0 from FastEthernet0/0 172.1.1.2*Aug 14 00:56:19.555: OSPF: End of hello processingR1(config-router)#*Aug 14 00:56:29.051: OSPF: Send hello to 224.0.0.5 area 0 on

27、 FastEthernet0/0 from 172.1.1.1*Aug 14 00:56:29.451: OSPF: Rcv hello from 2.2.2.2 area 0 from FastEthernet0/0 172.1.1.2*Aug 14 00:56:29.455: OSPF: 2 Way Communication to 2.2.2.2 on FastEthernet0/0, state 2WAY*Aug 14 00:56:29.455: OSPF: End of hello processingR1(config-router)#*Aug 14 00:56:39.051: O

28、SPF: Send hello to 224.0.0.5 area 0 on FastEthernet0/0 from 172.1.1.1*Aug 14 00:56:39.427: OSPF: Rcv hello from 2.2.2.2 area 0 from FastEthernet0/0 172.1.1.2*Aug 14 00:56:39.427: OSPF: End of hello processingR1(config-router)#*Aug 14 00:56:49.051: OSPF: Send hello to 224.0.0.5 area 0 on FastEthernet

29、0/0 from 172.1.1.1*Aug 14 00:56:49.447: OSPF: Rcv hello from 2.2.2.2 area 0 from FastEthernet0/0 172.1.1.2*Aug 14 00:56:49.447: OSPF: End of hello processingR1(config-router)#*Aug 14 00:56:59.051: OSPF: end of Wait on interface FastEthernet0/0*Aug 14 00:56:59.051: OSPF: DR/BDR election on FastEthern

30、et0/0*Aug 14 00:56:59.051: OSPF: Elect BDR 2.2.2.2*Aug 14 00:56:59.055: OSPF: Elect DR 2.2.2.2*Aug 14 00:56:59.055: DR: 2.2.2.2 (Id) BDR: 2.2.2.2 (Id)*Aug 14 00:56:59.055: OSPF: Send DBD to 2.2.2.2 on FastEthernet0/0 seq 0x826 opt 0x52 flag 0x7 len 32*Aug 14 00:56:59.059: OSPF: Send hello to 224.0.0

31、.5 area 0 on FastEthernet0/0 from 172.1.1.1*Aug 14 00:56:59.459: OSPF: Rcv hello from 2.2.2.2 area 0 from FastEthernet0/0 172.1.1.2*Aug 14 00:56:59.463: OSPF: Neighbor change Event on interface FastEthernet0/0*Aug 14 00:56:59.463: OSPF: DR/BDR election on FastEthernet0/0*Aug 14 00:56:59.463: OSPF: E

32、lect BDR 1.1.1.1*Aug 14 00:56:59.467: OSPF: Elect DR 2.2.2.2*Aug 14 00:56:59.467: OSPF: Elect BDR 1.1.1.1*Aug 14 00:56:59.467: OSPF: Elect DR 2.2.2.2*Aug 14 00:56:59.471: DR: 2.2.2.2 (Id) BDR: 1.1.1.1 (Id)这个时候我们发现两个路由器进行了DR/BDR的选取,并且结论和书上介绍的完全一致。从Debug信息的时间上来看,从启动OSPF进程到开始选举DR和DBR的时间间隔是40秒,在这个时间段内,无

33、论R1还是R2并没有选举DR和DBR。在RFC2328中对这个时间间隔的定义如下:Wait Timer A single shot timer that causes the interface to exit the Waiting state, and as a consequence select a Designated Router on the network. The length of the timer is RouterDeadInterval seconds.因为在广播链路中的RouterDeadInterval是40秒,所以我们看到的这个时间间隔为40秒。结论: 并不是

34、先启动OSPF进程的路由器就是DR,而是有一个时间间隔让路由器来等待其他路由器,在这个时间间隔内,路由器相互监听Hello包中的DR和DBR字段中的信息,并且服从优先级原则,可以这样认为选举是公平的。实际情况: 在实际的网络中,即使是40秒内同时起进程的情况也少见;实际情况下是率先启用ospf进程的路由器就很有可能成为DR,第二个启动的就很有可能成为BDR,考虑到路由器故障或者重启等情况,实际的运行效果是:“活”得最久的路由器成为DR(比多长时间不重起) .OSPF实验3:OSPF over NBMA下的五种网络类型实验等级:Professional实验拓扑:实验基本配置:1.首先将R1配置成

35、为帧中继交换机:frame-relay switching!interface Serial1/0no ip addressencapsulation frame-relayclock rate 64000frame-relay lmi-type ansiframe-relay intf-type dceframe-relay route 101 interface Serial1/1 102!interface Serial1/1no ip addressencapsulation frame-relayclock rate 64000frame-relay lmi-type ansifra

36、me-relay intf-type dceframe-relay route 102 interface Serial1/0 1012.R2和R3的基本配置:R2:interface Loopback0ip address 2.2.2.2 255.255.255.0!interface Serial1/0ip address 12.1.1.2 255.255.255.0encapsulation frame-relayserial restart-delay 0frame-relay map ip 12.1.1.3 101 broadcastno frame-relay inverse-ar

37、p!router ospf 10router-id 2.2.2.2log-adjacency-changesnetwork 2.2.2.0 0.0.0.255 area 0network 12.1.1.0 0.0.0.255 area 0R3:interface Loopback0ip address 3.3.3.3 255.255.255.0!interface Serial1/1ip address 12.1.1.3 255.255.255.0encapsulation frame-relayserial restart-delay 0frame-relay map ip 12.1.1.2

38、 102 broadcastno frame-relay inverse-arp!router ospf 10router-id 3.3.3.3log-adjacency-changesnetwork 3.3.3.0 0.0.0.255 area 0network 12.1.1.0 0.0.0.255 area 0Type1-Non_Broadcast(默认)我们在R2上show ip ospf neighbor,发现没有邻居。说明在这种情况下邻居需要手动配置!配置如下:R2:R2(config)#router ospf 10R2(config-router)#neighbor 12.1.1.

39、3R3:R3(config)#router ospf 10R3(config-router)#neighbor 12.1.1.2此时在R2上查看邻居:R2#sho ip ospf neiNeighbor IDPriStateDead TimeAddressInterface3.3.3.31FULL/DR00:01:4612.1.1.3Serial1/0发现邻居已经形成并且有DR与BDR的选举!在R2上查看接口R2#show ip ospf interfaceSerial1/0 is up, line protocol is upInternet Address 12.1.1.2/24, Are

40、a 0Process ID 10, Router ID 2.2.2.2,Network Type NON_BROADCAST,Cost: 64Transmit Delay is 1 sec, State BDR, Priority 1Designated Router (ID) 3.3.3.3, Interface address 12.1.1.3Backup Designated router (ID) 2.2.2.2, Interface address 12.1.1.2Flush timer for old DR LSA due in 00:01:40Timer intervals co

41、nfigured,Hello 30, Dead 120, Wait 120, Retransmit 5在这种网络类型中,hello的间隔是30s。打开debug信息,我们可以看到在这种网络类型中,OSPF的数据包是单播传送的。R2#*Aug 14 14:52:52.819: OSPF: Send hello to12.1.1.3area 0 on Serial1/0 from 12.1.1.2R2#*Aug 14 14:52:57.087: OSPF: Rcv hello from 3.3.3.3 area 0 from Serial1/0 12.1.1.3*Aug 14 14:52:57.0

42、91: OSPF: End of hello processingType2- Broadcast首先去掉刚才手动配置的邻居关系:R2(config)#router ospf 10R2(config-router)#no neighbor 12.1.1.3R3(config)#router ospf 10R3(config-router)#no neighbor 12.1.1.2将R2和R3接口的网络类型改成broadcastR2(config-router)#int s1/0R2(config-if)#ip ospf network broadcastR3(config-router)#in

43、t s1/1R3(config-if)#ip ospf network broadcast一会我们就看到了如下信息R3#*Aug 14 14:59:52.823: %OSPF-5-ADJCHG: Process 10, Nbr 2.2.2.2 on Serial1/1 fromLOADING to FULL, Loading Done这说明了在这种网络类型下是不需要手动配置邻居关系的!R2#show ip ospf neiNeighbor IDPriStateDead TimeAddressInterface3.3.3.31FULL/DR00:00:3912.1.1.3Serial1/0有DR

44、与BDR的选举。R2#sho ip ospf intSerial1/0 is up, line protocol is upInternet Address 12.1.1.2/24, Area 0Process ID 10, Router ID 2.2.2.2,Network Type BROADCAST, Cost: 64Transmit Delay is 1 sec, State BDR, Priority 1Designated Router (ID) 3.3.3.3, Interface address 12.1.1.3Backup Designated router (ID) 2.2.2.2, Interface address 12.1.1.2Timer intervals configured,Hello 10, Dead 40

展开阅读全文
相似文档                                   自信AI助手自信AI助手
猜你喜欢                                   自信AI导航自信AI导航
搜索标签

当前位置:首页 > 包罗万象 > 大杂烩

移动网页_全站_页脚广告1

关于我们      便捷服务       自信AI       AI导航        获赠5币

©2010-2024 宁波自信网络信息技术有限公司  版权所有

客服电话:4008-655-100  投诉/维权电话:4009-655-100

gongan.png浙公网安备33021202000488号   

icp.png浙ICP备2021020529号-1  |  浙B2-20240490  

关注我们 :gzh.png    weibo.png    LOFTER.png 

客服