实验二 路由器的基本配置
【实验目的】
1.掌握路由器的几种工作模式。 2. 掌握路由器的基本配置命令。 3. 掌握路由器接口配置方法。
【实验原理】
1.路由器的几种工作模式 (1)、一般用户模式
进入路由器时,首先要进入一般用户模式。在这种模式下,用户只能运行少数的命令,而且不能对路由器进行配置。
提示符为:Route>
(2)、特权用户模式(超级用户模式)
可以使用比一般用户模式下更多的命令。绝大多数命令用于测试网络,检查系统等,不能对端口及网络协议进行配置。
提示符为:Route#
由一般用户模式切换到特权权限模式的命令:Route> enable 14 (3)、全局配置模式
可以设置一些全局性的参数 提示符为:Router (config)#
在特权用户模式下敲命令:config terminal 即可进入 (4)、其他的配置模式(从全局配置模式进入)
端口配置模式
可以对接口进行配置,如ip地址等 提示符为:Router (config-if)#
在全局配置模式下敲命令:interface [接口] 即可进入 路由配置模式
可以配置路由协议
提示符为:Router (config-route)#
在全局配置模式下敲命令:router [路由协议] 即可进入
路由器的各模式之间的切换关系和切换命令如图2-1所示。
一般用户模式Router>enable特权用户模式Router#config terminalend全局配置模式Router(config)#line [xxx]exit线路配置模式Router(config-line)#exitendendexitexitinterface [xxx]exit接口配置模式Router(config-if)#router [xxx]路由配置模式Router(config-route)#
图2-1 路由器的各模式
需要注意的是,路由器的每个命令都有其相应的运行模式。如果想运行某命令,只有进入正确的模式然后输入命令才能生效。如查看路由器当前配置的命令show running-config必须运行在特权用户模式下。所以只有在“Router#”提示符下键入该命令,才能显示路由器的当前配置。若在其它模式下输入命令,如“Router(config)#”模式下输入该命令,路由器的返回结果是如下,表示路由器表示无法识别该命令。 Router(config)#show run Router(config)#show running-config ^ % Invalid input detected at '^' marker. Router(config)#
2.路由器的接口配置过程
路由器的接口通常用于连接一个网络,必须对路由器的接口进行正确的配置,使其正常工作,路由器才能与该网络通信。
接口配置过程一般分为以下几个步骤: (1)进入接口配置模式
(2)配置接口IP地址、子网掩码 (3)激活接口
(4)配置同步时钟。
【实验内容】
1、在路由器的各种模式之间的进行切换。 2、练习路由器常用命令。 3、配置路由器接口。
【实验步骤】
1. 在路由器的各种模式之间的进行切换。
(1)根据实验人员的讲述方法,登录路由器。刚登录路由器时,处于路由器的一般用户模式下,可以看到当前的提示符为“Router>”。
Router> (2)键入“enable 14”命令,输入密码(密码是不回显的),切换到特权用户模式下,提示符为“Router#”。 Router>enable 14 Password: (输入密码) Router# (3)键入“config terminal”进入全局配置模式。 Router#config terminal Router(config)# (4)键入“interface serial 3/0”进入接口配置模式。 Router(config)#interface serial 3/0 Router(config-if)# (5)键入“exit”退到上一层工作模式 Router(config-if)#exit Router(config)# (6)键入“router rip”进入路由协议配置模式 Router(config)#router rip Router(config-route)# (7)键入“CRTL+Z”组合键退到特权用户模式。“^Z”表示“CRTL+Z”组合键
Router(config-route)#^Z Router# (7-1)也可以直接键入“end”退到特权用户模式。
Router(config-route)#end Router# 2.练习路由器常用命令。
(1)查看命令——以show开头的命令。(所有以show开头的命令都必须在特权用户模式下运行) 1.1查看当前配置信息:show running-config
Router# show running-config Building configuration... Current configuration : 506 bytes ! version 12.2 service timestamps debug uptime service timestamps log uptime no service password-encryption ! 主机名的配置 hostname Router ! enable password cisco 进入特权用户模! 式密码的配置 ip subnet-zero no ip domain-lookup ! ! FastEthernet0接口的配置 ! ! interface FastEthernet0 ip address 192.168.1.1 255.255.255.0 speed auto ! interface Serial0 no ip address shutdown ! interface Serial1 no ip address shutdown ! ! ip classless no ip http server ! ! ! line con 0 logging synchronous line aux 0 line vty 0 4 password cisco login ! no scheduler allocate end Serial0接口的配置 Serial1接口的配置 控制台线路的配置 VTY线路的配置 1.2查看输入命令的历史记录:show history
Router#show history en sh run show version show flash show running-config conf t sh running-config conf t show interfaces show history 显示的是最近用户使用过的命令
4.配置路由器接口。
网络拓扑
编址方案(子网掩码均为255.255.255.0) RTA RTB F0/0 192.168.1.1 192.168.2.1 S3/0 192.168.60.1 192.168.60.2 (F0/0表示FastEthernet 0/0接口,S3/0表示Serial 3/0接口)
这里以配置RTA的S3/0接口和RTB的S3/0接口为例。 以下是RTA的S3/0接口的配置 RTA#conf t RTA(config)#interface serial 3/0 RTA(config-if)# ip address 192.168.60.1 255.255.255.0 RTA(config-if)# no shutdown RTA(config-if)# clock rate 64000 RTA(config-if)# end RTA# 在“interface”后加上接口类型和接口编号。
“interface serial 3/0” 命令用于进入接口配置模式。我们现在需要配置哪个接口,就进入该接口的配置模式。“ip address 192.168.60.1 255.255.255.0” 命令用于配置接口IP。直连链路两端的接口应分配同一子网的IP。
例如RTA的S3/0接口和RTB的S3/0接口的IP的前3个字节必须相同,都是192.168.60。
“no shutdown” 命令用于激活接口。接口在默认的情况下是关闭的,如果我们希望接口开始工作,需要先
将接口激活。
“clock rate 64000” 命令用于配置同步时钟。这是同步链路。时钟率设定为64000bps “end” 命令用于退出接口配置模式。
以下是RTB的S3/0接口的配置