OSPF协议配置

拓扑图:

要求:

理解 OSPF 协议的工作原理,并通过 OSPF 路由协议实现不同网络互通。

实验步骤:

1、配置好 PC 机的 IP 地址等参数。 PC 0>ipconfig IP Address......................: 172.16.0.2 Subnet Mask.....................: 255.255.255.0 Default Gateway.................: 172.16.0.1  2、配置路由器各个接口的 IP 地址等参数

2、配置交换机的 VLAN 信息(4 台二层交换机可以不做任何配置)    配置交换机的各端口的 VLAN 信息,使得PC0和 PC1 属于 VLAN10;PC2和 PC3属于 VLAN20;

PC4和 PC5属于 VLAN30;PC6 和 PC7 属于 VLAN40;配置完成后,各V LAN内部PC能互通,其它不能互通。

3、OSPF 路由协议配置 OSPF 的基本配置命令如下:

Router(config)#router ospf 1

Router(config-router)#network 192.168.1.0 0.0.0.255 area 0

Router(config-router)#router-id 10.1.1.1

配置命令:

(1)、在R1的配置:

Router(config)#hostname R1

R1(config)#inter f0/0

R1(config-if)#ip add 172.16.0.1 255.255.255.0

R1(config-if)#no shut

R1(config)#inter s1/0

R1(config-if)#ip add 192.168.0.1 255.255.255.0

R1(config-if)#no shut

R1(config-if)#clock rate 64000

R1(config-if)#no shut

R1(config)#router ospf 1

R1(config-router)#network 172.16.0.0 0.0.0.255 area 0

R1(config-router)#network 192.168.0.0 0.0.0.255 area 0

R1的路由表:

R1#show ip route

Codes: C - connected, S - static, I - IGRP, R - RIP, M - mobile, B - BGP

D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area

N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2

E1 - OSPF external type 1, E2 - OSPF external type 2, E - EGP

i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2, ia - IS-IS inter area

* - candidate default, U - per-user static route, o - ODR

P - periodic downloaded static route

Gateway of last resort is not set

10.0.0.0/24 is subnetted, 1 subnets

O       10.1.1.0 [110/193] via 192.168.0.2, 00:08:13, Serial1/0

172.16.0.0/24 is subnetted, 1 subnets

C       172.16.0.0 is directly connected, FastEthernet0/0

172.17.0.0/24 is subnetted, 1 subnets

O       172.17.0.0 [110/65] via 192.168.0.2, 00:12:10, Serial1/0

172.18.0.0/24 is subnetted, 1 subnets

O       172.18.0.0 [110/129] via 192.168.0.2, 00:10:05, Serial1/0

C    192.168.0.0/24 is directly connected, Serial1/0

O    192.168.1.0/24 [110/128] via 192.168.0.2, 00:12:42, Serial1/0

O    192.168.2.0/24 [110/192] via 192.168.0.2, 00:10:27, Serial1/0

(2)、在R2上的配置:

Router(config)#hostname R2

R2(config)#inter s1/0

R2(config-if)#ip add 192.168.0.2 255.255.255.0

R2(config-if)#no shut

R2(config)#inter f0/0

R2(config-if)#ip add 172.17.0.1 255.255.255.0

R2(config-if)#no shut

R2(config)#inter s1/1

R2(config-if)#ip add 192.168.1.1 255.255.255.0

R2(config-if)#no shut

R2(config-if)#clock rate 64000

R2(config-if)#no shut

R2(config)#router ospf 1

R2(config-router)#network 192.168.0.0 0.0.0.255 area 0

R2(config-router)#network 192.168.1.0 0.0.0.255 area 0

R2(config-router)#network 172.17.0.0 0.0.0.255 area 0

R2的路由表:

R2#show ip route

Codes: C - connected, S - static, I - IGRP, R - RIP, M - mobile, B - BGP

D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area

N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2

E1 - OSPF external type 1, E2 - OSPF external type 2, E - EGP

i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2, ia - IS-IS inter area

* - candidate default, U - per-user static route, o - ODR

P - periodic downloaded static route

Gateway of last resort is not set

10.0.0.0/24 is subnetted, 1 subnets

O       10.1.1.0 [110/129] via 192.168.1.2, 00:13:40, Serial1/1

172.16.0.0/24 is subnetted, 1 subnets

O       172.16.0.0 [110/65] via 192.168.0.1, 00:18:20, Serial1/0

172.17.0.0/24 is subnetted, 1 subnets

C       172.17.0.0 is directly connected, FastEthernet0/0

172.18.0.0/24 is subnetted, 1 subnets

O       172.18.0.0 [110/65] via 192.168.1.2, 00:15:32, Serial1/1

C    192.168.0.0/24 is directly connected, Serial1/0

C    192.168.1.0/24 is directly connected, Serial1/1

O    192.168.2.0/24 [110/128] via 192.168.1.2, 00:15:55, Serial1/1

(3)、在R3上的配置:

Router(config)#hostname R3

R3(config)#inter f0/0

R3(config-if)#ip add 172.18.0.1 255.255.255.0

R3(config-if)#no shut

R3(config)#inter s1/0

R3(config-if)#ip add 192.168.1.2 255.255.255.0

R3(config-if)#no shut

R3(config)#inter s1/1

R3(config-if)#ip add 192.168.2.1 255.255.255.0

R3(config-if)#no shut

R3(config-if)#clock rate 64000

R3(config-if)#no shut

R3(config)#router ospf 1

R3(config-router)#network 192.168.1.0 0.0.0.255 area 0

R3(config-router)#network 192.168.2.0 0.0.0.255 area 0

R3(config-router)#network 172.18.0.0 0.0.0.255 area 0

R3的路由表:

R3#show ip route

Codes: C - connected, S - static, I - IGRP, R - RIP, M - mobile, B - BGP

D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area

N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2

E1 - OSPF external type 1, E2 - OSPF external type 2, E - EGP

i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2, ia - IS-IS inter area

* - candidate default, U - per-user static route, o - ODR

P - periodic downloaded static route

Gateway of last resort is not set

10.0.0.0/24 is subnetted, 1 subnets

O       10.1.1.0 [110/65] via 192.168.2.2, 00:10:53, Serial1/1

172.16.0.0/24 is subnetted, 1 subnets

O       172.16.0.0 [110/129] via 192.168.1.1, 00:13:17, Serial1/0

172.17.0.0/24 is subnetted, 1 subnets

O       172.17.0.0 [110/65] via 192.168.1.1, 00:13:17, Serial1/0

172.18.0.0/24 is subnetted, 1 subnets

C       172.18.0.0 is directly connected, FastEthernet0/0

O    192.168.0.0/24 [110/128] via 192.168.1.1, 00:13:17, Serial1/0

C    192.168.1.0/24 is directly connected, Serial1/0

C    192.168.2.0/24 is directly connected, Serial1/1

(4)、在R4的配置:

Router(config)#hostname R4

R4(config)#inter f0/0

R4(config-if)#ip add 10.1.1.1 255.255.255.0

R4(config-if)#no shut

R4(config)#inter s1/0

R4(config-if)#ip add 192.168.2.2 255.255.255.0

R4(config-if)#no shut

R4(config)#router ospf 1

R4(config-router)#network 10.1.1.0 0.0.0.255 area 0

R4(config-router)#network 192.168.2.0 0.0.0.255 area 0

R4的路由表:

R4#show ip route

Codes: C - connected, S - static, I - IGRP, R - RIP, M - mobile, B - BGP

D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area

N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2

E1 - OSPF external type 1, E2 - OSPF external type 2, E - EGP

i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2, ia - IS-IS inter area

* - candidate default, U - per-user static route, o - ODR

P - periodic downloaded static route

Gateway of last resort is not set

10.0.0.0/24 is subnetted, 1 subnets

C       10.1.1.0 is directly connected, FastEthernet0/0

172.16.0.0/24 is subnetted, 1 subnets

O       172.16.0.0 [110/193] via 192.168.2.1, 00:14:31, Serial1/0

172.17.0.0/24 is subnetted, 1 subnets

O       172.17.0.0 [110/129] via 192.168.2.1, 00:14:31, Serial1/0

172.18.0.0/24 is subnetted, 1 subnets

O       172.18.0.0 [110/65] via 192.168.2.1, 00:14:31, Serial1/0

O    192.168.0.0/24 [110/192] via 192.168.2.1, 00:14:31, Serial1/0

O    192.168.1.0/24 [110/128] via 192.168.2.1, 00:14:31, Serial1/0

C    192.168.2.0/24 is directly connected, Serial1/0

PC>ping 172.17.0.2

Pinging 172.17.0.2 with 32 bytes of data:

Reply from 172.17.0.2: bytes=32 time=31ms TTL=126

Reply from 172.17.0.2: bytes=32 time=31ms TTL=126

Reply from 172.17.0.2: bytes=32 time=47ms TTL=126

Reply from 172.17.0.2: bytes=32 time=47ms TTL=126

Ping statistics for 172.17.0.2:

Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),

Approximate round trip times in milli-seconds:

Minimum = 31ms, Maximum = 47ms, Average = 39ms

(5)、运行结果分析:

PC>ping 172.18.0.2

Pinging 172.18.0.2 with 32 bytes of data:

Reply from 172.18.0.2: bytes=32 time=78ms TTL=125

Reply from 172.18.0.2: bytes=32 time=48ms TTL=125

Reply from 172.18.0.2: bytes=32 time=62ms TTL=125

Reply from 172.18.0.2: bytes=32 time=47ms TTL=125

Ping statistics for 172.18.0.2:

Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),

Approximate round trip times in milli-seconds:

Minimum = 47ms, Maximum = 78ms, Average = 58ms

PC>ping 10.1.1.2

Pinging 10.1.1.2 with 32 bytes of data:

Request timed out.

Reply from 10.1.1.2: bytes=32 time=78ms TTL=124

Reply from 10.1.1.2: bytes=32 time=79ms TTL=124

Reply from 10.1.1.2: bytes=32 time=78ms TTL=124

Ping statistics for 10.1.1.2:

Packets: Sent = 4, Received = 3, Lost = 1 (25% loss),

Approximate round trip times in milli-seconds:

Minimum = 78ms, Maximum = 79ms, Average = 78ms

版权声明:本文为博主原创文章,未经博主允许不得转载。

时间: 2024-12-30 20:26:07

OSPF协议配置的相关文章

ospf 协议配置方法及实例

ospf协议配置步骤及实例 1 系统视图下启动ospf进程 (1)system-view 进入系统视图 (2)ospf [process-id] [router-id] 启动ospf进程 (3)area area-id 进入ospf区域视图 (4)可选配置  authentication-mode simple ciper  abc (5)执行命令 network ip-address  netmask 2 配置ospf接口参数,包括ospf接口类型 cost等等 (1)system-view 

OSPF协议 配置和实验、明文验证、密文验证。

OSPF协议:1.链路状态型的路由协议特点:所有路由器上对全网的拓扑都了解,即每台路由器收到的信息不只是邻居,通过不同(1.2.3.4.5.7)类型的LSA(链路状态通告)去感知全网的网络2.OSPF的算法是SPF的算法,树型结构算法无环路3.分层区域(骨干区域area 0和非骨干区域area 1等).分层原则:所有的非骨干区域必须连接在骨干区域上.Ospf的区域是基于接口划分的.#router ospf 100==将OSPF定义为IP路由协议,100位进程号,本地有效#router-id 2.

华为防火墙和路由器之间运行OSPF协议配置案例(可跟做)

防火墙的动态路由 ? 防火墙和一台路由器之间配置OSPF过程如下: FW1: ospf 1 router-id 10.10.10.10 ----------RID不能相同 area 0.0.0.0 network 202.100.1.0 0.0.0.255 ---------采用通配符方法 network 10.10.10.10 0.0.0.0 放行OSPF安全策略 ? 默认情况防火墙只放行组播的报文,单播包不放行,需要配置安全策略? OSPF网络类型------OSPF报文的单播还是组播---

linux下使用quagga配置ospf协议

环境:三台redhat6.5(VM虚拟机) 一.ospf协议 OSPF(Open Shortest Path First开放式最短路径优先)是一个内部网关协议(Interior Gateway Protocol,简称IGP),用于在单一自治系统(autonomous system,AS)内决策路由.是对链路状态路由协议的一种实现,隶属内部网关协议(IGP),故运作于自治系统内部. PS:这里不过多讲解ospf协议,可在网上自行查找学习 二.配置 首先下载安装软件包,其他yum源以及网络配置就不再

ospf基本配置协议

 OSPF(开放最短路径优先)协议是链路状态路由协议类.对于 IPv4 的 OSPF 当前版本号 OSPFv2,的版本号 John Moy 在 RFC 1247 中引入,并在 RFC 2328 中更新.1999 年,用于 IPv6 的 OSPFv3 在 RFC 2740 中公布 OSPF 特点s OSPF 不使用传输层协议.原因在于 OSPF 数据包直接通过 IP 发送 在多路訪问网络採用 DRs 和 BDRs降低LSA开销 5 种数据包类型 度量为路径开销,cisco IOS 使用从路由器

HCNP学习笔记之OSPF协议原理及配置8-OSPF外部路由

外部路由的生成,用到了asbr-summary-lsa asbr-externel-las这两类LSA报文,前文对这两类报文有简要的介绍,本文详细说明一下这两类报文在外部路由的生成中的作用. ASBR使用第五类LSA描述外部路由,这些第五类LSA在整个AS内部泛洪(注意:是在整个AS中泛洪). 当ABR向其它区域通告所接收到的第五类LSA时,同时为该区域生成一条第四类LSA描述如何到达ASBR(注意,是为该区域,所以四类LSA是在特定区域内泛洪).见下面图示. 一 AS-External-LSA

HCNP学习笔记之OSPF协议原理及配置1-基础知识

7.25日在济南博赛参加了HCNP的培训,感觉和HCDA不同,内容偏重理论,多而杂,现整理一下,和大家分享,也希望得到高手的指点. 先说下学习的感想和给初学者的建议: 学习的过程本身对自己就一种锻炼,要做好吃苦的准备,坚持下去,你一定会取得不凡的成就. 理论学习和操作是个迭代的过程. 很多同学花时间去背命令,我觉的不是可取的.命令只是一个工具,可以通过练习强化.但我们除了要知道怎么作(操作),还要知道为什么要这么做(理论).这样很好的解决实际当中遇到的问题. 所以,学习应该是理论-实践-理论-实

HCNP学习笔记之OSPF协议原理及配置3-邻居关系的建立

OSPF协议的邻居关系是通过交换Hello报文建立的,所以我们先对OSPF的报文的种类,及Hello报文的结构做一了解. 1 OSPF协议有5种协议报文(很重要,后面会依次介绍) Hello报文:用于发现和维护邻居关系,在广播型网络和NBMA网络上Hello报文也用来选举DR和BDR. DD报文:通过携带LSA(链路状态通告)头部信息来描述链路状态摘要信息. LS Request报文:用于发送下载LSA的请求信息,这些被请求的LSA是通过接收DD报文发现的,但是本路由器上没有的. LS Upda

路由器OSPF协议的高级配置之“路由重分发”

路由重分发通常在那些负责从一个AS学习路由,然后向另一个AS广播的路由器上进行配置,例如,一台路由器即运行OSPF又运行RIP,如果OSPF进程被配置为通告由RIP学习到的路由到OSPF AS中,那么这种做法就可以成为"重分发RIP". 一个单一的IP路由器协议是管理网络中IP路由的首选方案,无论是从配置管理的角度还是从容错管理的角度,每台路由器都被期望运行单种路由协议而不是多种路由协议.然而,现实网络的情况是存在多种路由协议的,并且这些网络要互联互通,那就必须至少有一台路由器运行多种