路由器的基本配置命令详解
&
R1(config)#
步骤 9:在路由器上配置控制台口令。
使用 cisco 作为口令。配置完成后,退出线路配置模式。
R1(config)#line console 0
R1(config-line)#password cisco
R1(config-line)#login
R1(config-line)#exit
R1(config)#
步骤 10:为虚拟终端线路配置口令。
使用 cisco 作为口令。配置完成后,退出线路配置模式。
R1(config)#line vty 0 4
R1(config-line)#password cisco
R1(config-line)#login
R1(config-line)#exit
R1(config)#
步骤 11:使用 IP 地址 192.168.1.1/24 配置 FastEthernet 0/0 接口。
R1(config)#interface fastethernet 0/0
R1(config-if)#ip address 192.168.1.1 255.255.255.0
R1(config-if)#no shutdown
%LINK-5-CHANGED:Interface FastEthernet0/0, changed state to up
%LINEPROTO-5-UPDOWN:Line protocol on Interface FastEthernet0/0, changed state to up
R1(config-if)#
步骤 12:使用 description 命令为此接口设定描述。
R1(config-if)#description R1 LAN
R1(config-if)#
步骤 13:使用 IP 地址 192.168.2.1/24 配置 Serial0/0/0 接口。
将时钟频率设置为 64000。
注意:因为实验中使用的路由器没有连接到真实的租用线路,所以需要其中一台路由器为线路提供时钟信号。通常情况下,这应该由服务提供商来提供。为了在实验中提供这种时钟信号,需要使用其中一台路由器作为连接的 DCE。通过在连接 Null 调制解调器电缆 DCE 端的 serial 0/0/0 接口上执行 clock rate 64000 命令即可实现此功能。clock rate 命令的用途将在第 2 章“静态路由”中讨论。
R1(config-if)#interface serial 0/0/0
R1(config-if)#ip address 192.168.2.1 255.255.255.0
R1(config-if)#clock rate 64000
R1(config-if)#no shutdown
R1(config-if)#
注意:在配置并激活 R2 上的串行接口之前,此接口不会激活。
步骤 14:使用 description 命令为此接口设定描述。
R1(config-if)#description Link to R2
R1(config-if)#
步骤 15:使用 end 命令返回特权执行模式。