想要通过telnet访问路由器,首先要配置路由器的接口IP地址:如图

实验二、通过Telnet访问Cisco路由器_IP地址

(1)  步骤 1:配置路由器以太网接口 IP 地址

Router>enable
Router#
//以上是进入路由器的特权模式
Router#configure terminal
Enter configuration commands, one per line.  End with CNTL/Z.
Router (config)#
//以上是进入路由器的配置模式
Router (config)#interface g0/0
Router (config-if)#
//以上是进入路由器的以太网口 F0/0 接口,

是第 0 个插槽中的第 0 个接口。S0/0/0 则表示为第 0 个插槽中的第 0 个模块上的第 0 个串行接口。
Router (config-if)#ip address 172.16.0.1 255.255.0.0
//以上是配置接口的 IP地址
Router (config-if)#no shutdown
//以上是打开接口,默认时路由器的所有接口都是关闭的,这一点和交换机有很大差别
Router (config-if)#end
//退出配置模式
(2)  步骤 2:配置路由器密码
Router#conf terminal

Router(config)#line vty 0 4
//以上是进入路由器的 VTY 虚拟终端下, “vty 0 4”表示vty 0 到vty 4,共5 个虚拟终端
Router(config-line)#password CISCO
Router(config-line)#login
//以上是配置 vty 的密码CISCO,即 telnet 密码
Router(config-line)#exit
Router(config)#enable password CISCO
//以上是配置进入到路由器特权模式的密码
Router(config)#end

PC记得设IP,不然ping不通的.

PC>ping 172.16.0.1

PC>telnet 172.16.0.1
//telnet 路由器以太网卡上的 IP 地址
User Access Verification
Password: (输入vty的密码 CISCO)
Router>enable
Password: (输入 enable 的密码CISCO)
Router#exit
//输入vty的密码 CISCO、输入 enable 的密码CISCO,能正常进入路由器的特权模式。
实验调试
如果无法从计算机上 ping 通路由器,依照以下步骤进行
(1) 检查计算机、交换机、路由器之间的连接是否松动;
(2) 检查连接线应该是否是直通线;
(3) 检查计算机的网卡和 IP地址是否正常;
(4) 在路由器上,检查以太网接口是否正常
Router#show int f0/0
FastEthernet0/0 is up, line protocol is up (connected)
  Hardware is Lance, address is 0030.f22a.d901 (bia 0030.f22a.d901)
  Internet address is 172.16.0.1/16
  MTU 1500 bytes, BW 100000 Kbit, DLY 100 usec,
     reliability 255/255, txload 1/255, rxload 1/255
  Encapsulation ARPA, loopback not set
  ARP type: ARPA, ARP Timeout 04:00:00,
  Last input 00:00:08, output 00:00:05, output hang never
  Last clearing of "show interface" counters never
  Input queue: 0/75/0 (size/max/drops); Total output drops: 0
  Queueing strategy: fifo
  Output queue :0/40 (size/max)
  5 minute input rate 0 bits/sec, 0 packets/sec
  5 minute output rate 0 bits/sec, 0 packets/sec
     1 packets input, 128 bytes, 0 no buffer
     Received 0 broadcasts, 0 runts, 0 giants, 0 throttles
     0 input errors, 0 CRC, 0 frame, 0 overrun, 0 ignored, 0 abort
     0 input packets with dribble condition detected
     1 packets output, 128 bytes, 0 underruns
     0 output errors, 0 collisions, 1 interface resets
     0 babbles, 0 late collision, 0 deferred
     0 lost carrier, 0 no carrier
     0 output buffer failures, 0 output buffers swapped out

应该看到两个“up” ,否则检查路由器和交换机之间的连接。