学习啦 > 学习电脑 > 网络知识 > 路由器 > 路由器设置 > cisco思科 >

cisco思科如何进行Telnet访问?

时间: 嘉洛1198 分享

  cisco思科如何进行Telnet访问?跟我一起来看看吧。下面是小编为大家精心整理的关于cisco思科如何进行Telnet访问?,希望能够帮助到你们。

  方法/步骤

  1搭建拓扑结构,如图1所示Router0与switch0之间的线路无法联通,双击Router0---config--FastEthernet0/0--勾选ON,打开FastEthernet0/0的端口,1-2秒网络慢慢联通。

  2在PC0计算机上使用Console对rouer0进行配置,代码如下:

  Router#conf t

  Enter configuration commands, one per line. End with CNTL/Z.

  Router(config)#hostname R1 //修改Router0名字

  R1(config)#line vty 0 4 //进入路由器的Vty虚拟终端

  R1(config-line)#password cisco //设置vty密码也就是telnet密码

  R1(config-line)#login

  R1(config)#enable password cisco //设置进入路由器的特权模式密码

  R1(config)#int f0/0

  R1(config-if)#ip address 172.16.68.88 255.255.255.0 //设置 F0/0的IP子网掩码

  R1(config-line)#exit

  3双击PC2设置ip地址,config--IPconfiguration,详细设置见下图,使用Command Prompt,输入ping 172.16.68.88测试router0与PC2是否联通,如果联通会出现 如下信息,Reply表示连接成功。

  Pinging 172.16.68.88 with 32 bytes of data:

  Reply from 172.16.68.88: bytes=32 time=0ms TTL=255

  Reply from 172.16.68.88: bytes=32 time=6ms TTL=255

  Reply from 172.16.68.88: bytes=32 time=0ms TTL=255

  Reply from 172.16.68.88: bytes=32 time=0ms TTL=255

  4接着步骤3内容输入

  PC>telnet 172.16.68.88 //远程连接ROUTER0

  Trying 172.16.68.88 ...Open  //表示连接成功

  User Access Verification

  Password:

  R1>en

  Password:

  R1#conf t

  Enter configuration commands, one per line. End with CNTL/Z.

cisco思科如何进行Telnet访问?相关文章:

1.cisco设置telnet

2.cisco设置telnet密码破解

3.使用telnet远程管理命令连接交换机的教程

4.cisco路由器上配置SSH代替Telnet的详细教程

5.详解Cisco远程管理vty线路使用教程

4159326