本文共 2176 字,大约阅读时间需要 7 分钟。
要通过telnet 访问路由器,需要先通过console 口对路由器进行基本配置,例如:IP (1) 配置路由器以太网接口的IP 地址,并打开接口; (2) 配置路由器的enable 密码和vty 密码; Router#configure terminal Enter configuration commands, one per line. End with CNTL/Z. Router (config)#interface g0/0 // 以上是进入路由器的以太网口g0/0 接口,g0/0 中g 表示是GigabitEthernet, 0/0 表示 是第0 个插槽中的第0 个接口。S0/0/0 则表示为第0 个插槽中的第0 个模块上的第0 个串 Router (config-if)#ip address 172.16.0.1 255.255.0.0 Router (config-if)#no shutdown // 以上是打开接口,默认时路由器的所有接口都是关闭的,这一点和交换机有很大差别 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 的密码,即telnet 密码 Router(config)#enable password CISCO 在计算机上配置网卡的IP 地址为172.16.0.100/255.255.0.0,并打开DOS 命令行窗口。 首先测试计算机和路由器的IP 连通性,再进行telnet 远程登录。如下: Pinging 172.16.0.1 with 32 bytes of data: Reply from 172.16.0.1: bytes=32 time<1ms TTL=255 Reply from 172.16.0.1: bytes=32 time<1ms TTL=255 Reply from 172.16.0.1: bytes=32 time<1ms TTL=255 Reply from 172.16.0.1: bytes=32 time<1ms TTL=255 Ping statistics for 172.16.0.1: Packets: Sent = 4, Received = 4, Lost = 0 (0% lo Approximate round trip times in milli-seconds: Minimum = 0ms, Maximum = 0ms, Average = 0ms // 输入vty 的密码CISCO、输入enable 的密码CISCO,能正常进入路由器的特权模式。 如果无法从计算机上ping 通路由器,依照以下步骤进行 (1) 检查计算机、交换机、路由器之间的连接是否松动; GigabitEthernet0/0 is up, line protocol is up Hardware is MV96340 Ethernet, address is 0019.5535.b828 (bia 0019.5535.b828) Internet address is 172.16.0.1/16 应该看到两个“up”,否则检查路由器和交换机之间的连接。 本文转自gauyanm 51CTO博客,原文链接:http://blog.51cto.com/gauyanm/232341,如需转载请自行联系原作者