- 积分
- 350
- 鸿鹄币
- 个
- 好评度
- 点
- 精华
- 最后登录
- 1970-1-1
- 阅读权限
- 30
- 听众
- 收听
初级工程师
  
|
10鸿鹄币
就是实验题库的第三题:
HH010.com is a small IT corporation that is attempting to implement the
network shown in the exhibit. Currently the implementation is partially
completed. OSPF has been configured on routers Chicago and NewYork. The
SO/O interface on Chicago and the SO/1 interface on NewYork are in Area 0.
The loopbackO interface on NewYork is in Area 1. However, they cannot ping
from the serial interface of the Seattle router to the loopback interface of the
NewYork router. You have been asked to complete the implementation to allow
this ping.
HH010.com's corporate implementation guidelines require:
The OSPF process ID for all routers must be 10.
The routing protocol for each interface must be enabled under the routing
process.
The routing protocol must be enabled for each interface using the most
specific wildcard mask possible.
The serial link between Seattle and Chicago must be in OSPF area 21.
OSPF area 21 must not receive any inter-area or external routes.(except the
default route)
Network Information
Seattle
S0/0 192.168.16.5/30 - Link between Seattle and Chicago
Secret Password: cisco
Chicago
S0/0 192.168.54.9/30 - Link between Chicago and NewYork
S0/1 192.168.16.6/30 - Link between Seattle and Chicago Secre
Password: cisco
NewYork
S0/1 192.168.54.10/30 - Link between Chicago and NewYork
Loopback0 172.16.189.189
Secret Password: cisco
Explanation/Reference:Seattle Configuration:Seattle>enablePassword:ciscoSeattle#conf tSeattle(config)#router ospf 10Seattle(config-router)#network 192.168.16.4 0.0.0.3 area 21One of the tasks states that area 21 should not receive any external orinter-area routes (except the default route).Seattle(config-router)#area 21 stubSeattle(config-router)#endSeattle#copy run startChicago Configuration:Chicago>enablePassword: ciscoChicago#conf tChicago(config)#router ospf 10Chicago(config-router)#network 192.168.16.4 0.0.0.3 area 21Again, area 21 should not receive any external or inter-area routes (except thedefault route).In order to accomplish this, we must stop LSA Type 5 if we don’t want to sendexternal routes. And if we don’t want to send inter-area routes, we have to stopLSA Type 3 and Type 4. Therefore we want to configure area 21 as a totallystubby area.Chicago(config-router)#area 21 stub no-summaryChicago(config-router)#endChicago#copy run start
按照答案配置后发现邻居关系都没法建立,也没有路由通告。看因为是NBMA网络,多敲了neighbour命令也不行。有谁遇到跟我一样的情况吗?麻烦指点下
|
最佳答案
查看完整内容
在同一个进程ID里宣告端口。否则的话,需要互相重分布才行。
|