基本OSPF配置实验

  • 格式:doc
  • 大小:61.00 KB
  • 文档页数:4

下载文档原格式

  / 14
  1. 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
  2. 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
  3. 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。

基本OSPF 配置实验

在路由器R1 上配置OSPF

R1(config)#router ospf 1

R1(config-router)#

R1(config-router)#network 172.16.1.16 0.0.0.15 area 0

R1(config-router)#network 192.168.10.0 0.0.0.3 area 0

R1(config-router)#network 192.168.10.4 0.0.0.3 area 0

R1(config-router)#end

R2(config)#router ospf 1

R2(config-router)#

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

R2(config-router)#network 192.168.10.0 0.0.0.3

R2(config-router)#network 192.168.10.8 0.0.0.3 area 0

R2(config-router)#end

R3(config)#router ospf 1

R3(config-router)#network 172.16.1.32 0.0.0.7 area 0

R3(config-router)#network 192.168.10.4 0.0.0.3 area 0

R3(config-router)#network 192.168.10.8 0.0.0.3 area 0

R3(config-router)#end

R1(config)#interface loopback 0

R1(config-if)#ip address 10.1.1.1 255.255.255.255

R2(config)#interface loopback 0

R2(config-if)#ip address 10.2.2.2 255.255.255.255

R3(config)#interface loopback 0

R3(config-if)#ip address 10.3.3.3 255.255.255.255

R1(config)#router ospf 1

R1(config-router)#router-id 10.4.4.4

R1#(config-router)#end

R1#clear ip ospf process

Reset ALL OSPF processes?[no]:yes

使用router-id 命令的no 形式删除所配置的路由器ID。

R1(config)#router ospf 1

R1(config-router)#router-id 10.4.4.4

Reload or use “clear ip ospf process” command, for this to take effect 使用clear ip ospf process 命令重新启动OSPF 进程。

重新启动OSPF 进程会强制路由器使用Loopback 0 接口上所配置的IP 地址作为路由器ID。R1(config-router)#end

R1#clear ip ospf process

Reset ALL OSPF processes? [no]:yes

在路由器R1 和R2 上使用bandw idth 命令将串行接口的带宽更改为实际带宽64 kbps。

路由器R1:

R1(config)#interface serial0/0/0

R1(config-if)#bandwidth 64

R1(config-if)#interface serial0/0/1

路由器R2:

R2(config)#interface serial0/0/0

R2(config-if)#bandwidth 64

R2(config)#interface serial0/0/1

R2(config-if)#bandwidth 64

在路由器R3 上使用ip ospf cost 命令配置OSPF 开销。

R3(config)#interface serial0/0/0

R3(config-if)#ip ospf cost 1562

R3(config-if)#interface serial0/0/1

R3(config-if)#ip ospf cost 1562

任务10:重新分配OSPF 默认路由

步骤1:在路由器R1 上配置一个环回接口,以模拟通向ISP 的链路。

R1(config)#interface loopback1

R1(config-if)#ip address 172.30.1.1 255.255.255.252

步骤2:在路由器R1 上配置一条静态默认路由。

使用已配置的用于模拟通向ISP 的链路的环回地址作为出口接口。

R1(config)#ip route 0.0.0.0 0.0.0.0 loopback1

R1(config)#

步骤3:使用default-information originate 命令将该静态路由包括在从路由器R1 发出的OSPF 更新中。

R1(config)#router ospf 1

R1(config-router)#default-information originate

R1(config-router)#

任务11:配置其它OSPF 功能

步骤1:使用auto-cost reference-bandwidth 命令调整参考带宽值。

将参考带宽增大到10000 以模拟10GigE 的速度。在OSPF 路由域内的所有路由器上配置此命令。R1(config-router)#auto-cost reference-bandwidth 10000

R2(config-router)#auto-cost reference-bandwidth 10000

R3(config-router)#auto-cost reference-bandwidth 10000

步骤2:在路由器R1 上检查路由表以验证OSPF 开销度量所发生的变化。

步骤3:在R1 上使用show ip ospf neighbor 命令查看Dead 间隔。

Dead 间隔正在从默认的40 秒钟开始倒计时。

R1#show ip ospf neighbor

步骤4:配置OSPF Hello 间隔和Dead 间隔。

可分别使用ip ospf hello-interval 和ip ospf dead-interval 接口命令手动修改

OSPF Hello 间隔和Dead 间隔。在路由器R1 的Serial 0/0/0 接口上使用这些命令将hello 间隔和Dead 间隔分别更改为5 秒和20 秒。

R1(config)#interface serial0/0/0

R1(config-if)#ip ospf hello-interval 5

R1(config-if)#ip ospf dead-interval 20

R1(config-if)#

步骤5:修改Dead 计时器和Hello 计时器。

在路由器R2 的Serial 0/0/0 接口上修改Dead 计时器和Hello 计时器,使其分别匹配R1 的Serial

相关主题