CCNA学习-交换路由-配置路由器通过Telnet访问

网友投稿 236 2022-09-25


CCNA学习-交换路由-配置路由器通过Telnet访问

配置路由器以太网接口的IP地址:

Router>enable Router#config t Enter configuration commands, one per line. End with CNTL/Z. Router(config)#int f0/1 //进入f0/1接口 Router(config-if)#ip add 192.168.0.1 255.255.255.0 //设置IP及子网掩码 Router(config-if)#no shutdown //启用端口 %LINK-5-CHANGED: Interface FastEthernet0/1, changed state to up Router(config-if)#end

配置路由器密码:

Router# Router#config t Enter configuration commands, one per line. End with CNTL/Z. Router(config)#line vty 0 4 //进入vty 0到vty 4 共5个虚拟终端 Router(config-line)#password sisco //配置vty的密码,即Telnet密码 Router(config-line)#login Router(config-line)#exit Router(config)#enable password sisco //配置进入到路由器特权模式的密码 Router(config)#end

通过Telnet访问路由器:

在计算机上配置IP为192.168.0.100/255.255.255.0,打开CMD命令行窗口。首先测试计算机和路由器的连通性,再进行Telnet远程登陆

C:\>ping 192.168.0.1 Pinging 192.168.0.1 with 32 bytes of data: Reply from 192.168.0.1: bytes=32 time<1ms TTL=255 Reply from 192.168.0.1: bytes=32 time<1ms TTL=255 Reply from 192.168.0.1: bytes=32 time<1ms TTL=255 Reply from 192.168.0.1: bytes=32 time<1ms TTL=255 Ping statistics for 192.168.0.1: Packets: Sent = 4, Received = 4, Lost = 0 (0% loss), //表明计算机能ping通路由器 Approximate round trip times in milli-seconds: Minimum = 0ms, Maximum = 0ms, Average = 0ms

C:\>telnet 192.168.0.1 //Telnet 路由器以太网上的IP地址 Trying 192.168.0.1 ...Open User Access Verification Password: // 输入vty的密码sisco Router>enable //进入特权模式 Password: //输入enable的密码sisco Router# exit [Connection to 192.168.0.1 closed by foreign host]


版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:nat技术动态转换(多对一)、端口多路复用
下一篇:java foreach循环为什么不能赋值的讲解
相关文章

 发表评论

暂时没有评论,来抢沙发吧~