问题:
You are a Cisco certified expert.You have been contracted by the TestCenter Pro chain to fix a problem that was caused by a MCP certified technicician who could net complete the configuration of the routers.
This TestCenter Pro chain has three stores and wanted to maintain their bicycle repair business in a centralized manner through network connectivity.They then asked the local MCP certitified technician to configure the routers,but the technician failed to establish connectivity among the routers.
The routers are named Router1,Router2,and Router3,respectively.
Identify the fault and make the appropriate change(s) to rectify the configuration fo the routers.The MCP technician configured the routers with the specification that follows:
·The routers are named Router1,Router2,Router3
·RIP is the routing Protocol
·Clocking is provided on the serial 0 interfaces
·The password on each router is pconline
·The subnet mask on all interfaces is the default mask.
·The IP addresses are listed in chart below.
Router1:
E0 192.168.27.1
e1 192.168.29.1
s0 192.168.31.1
secret password:pcjob
Router2:
E0 192.168.35.1
S0 192.168.33.1
S1 192.168.31.2
secret password:pcjob
Router3:
E0 192.168.37.1
S1 192.168.33.2
secret password:pcjob
To configure the router you need to click on the host icon that is connected to the router by a serial cable.
故事是这样滴……
有一名MCP配置的路由器(这年头,在中国不会配置路由还当个P网管……)无法连通,请你去帮忙给解决,情况如下:
·路由器被命名为Router1,Router2,Router3
·使用RIP协议
·Serial 0时钟设置
·每个路由器的密码都是“Pcjob”
·所有接口的子网掩码均为默认掩码
·IP地址如题中所示

解答:
命令后面的注释只在第一次出现时进行提示讲解。
路由器1在主机2上配置:
Router1>en --------enable命令的简写,进入到用户配置模式,只有在用户配置模式才可以以对路由器进行相关的配置操作,考试中最好是将命令写全
password:pcjob --------输入密码:pcjob,正式使用中的密码在输入时是不可见的
Router1#conf t --------config terminal命令的简写,进入终端配置模式
Router1(config)#int e0 --------interface ethernet 0命令的简写,进入E0端口进行配置
Router1(config-if)#ip add 192.168.27.1 255.255.255.0 --------ip address命令简写,注意它后面的IP 地址一定要跟随子网掩码
Router1(config-if)#no shut --------启用端口,no shutdown命令简写
Router1(config-if)#exi --------退出端口配置模式
Router1(config)#int E1
Router1(config-if)#ip add 192.168.29.1 255.255.255.0
Router1(config-if)#no shut
Router1(config-if)#exi
Router1(config)#int s0
Router1(config-if)#ip add 192.168.31.1 255.255.255.0
Router1(config-if)#clock rate 64000 --------设置DCE时钟为64000
Router1(config-if)#no shut
Router1(config-if)#exit
Router1(config)#router rip --------使用RIP路由协议,进入RIP配置
Router1(config-router)#network 192.168.27.0 --------配置网络
Router1(config-router)#network 192.168.29.0
Router1(config-router)#network192.168.31.0
Router1(config-router)#Ctrl-z --------退出终端配置模式
Router1#copy run start --------copy running-config starting-config命令简写
路由器2在Host4上的配置
Router2>en
password:pcjob
Router2#conf t
Router2(config)#int e0
Router2(config-if)#ip add 192.168.35.1 255.255.255.0
Router2(config-if)#no shut
Router2(config-if)#exi
Router2(config)#int s0
Router2(config-if)#ip add 192.168.33.1 255.255.255.0
Router2(config-if)#no shut
Router2(config-if)#exi
Router2(configf)#int s1
Router2(config-if)#ip add 192.168.31.2 255.255.255.0
Router2(config-if)#no shut
Router2(config-if)#exi
Router2(config)#router rip
Router2(config-router)#network 192.168.35.0
Router2(config-router)#network 192.168.33.0
Router2(config-router)#network 192.168.31.0
Router2(config-router)#Ctrl-z
Router2#copy run start
路由器3在主机6上的配置:
Router3>ena
password:pcjob
Router3#conf t
Router3(config)#int E0
Router3(config-if)#ip add 192.168.37.1 255.255.255.0
Router3(config-if)#no shut
Router3(config-if)#exi
Router3(config)#int s1
Router3(config-if)#ip add 192.168.33.2 255.255.255.0
Router3(config-if)#no shut
Router3(config-if)#exi
Router3(config)#router rip
Router3(config-router)#network 192.168.33.0
Router3(config-router)#network 192.168.37.0
Router3(config-router)#Ctrl-z
Router3#copy run start