本文共 973 字,大约阅读时间需要 3 分钟。
通过以太网端口利用Telnet 进行远程登录 1. 环境配置
将路由器通过以太网口连入网络。我们以两台路由器直连的网络为例(客户端为telnet 终端),我们可以通过客户端的路由器telnet 到服务器端,如下图:
在对服务器端路由器进行远程登录前,必须要对设备进行配置。第一次对设备做配
置时,必须通过console 口进行本地配置。
在服务器端路由器上做以下配置:
press enter to get started.
[h3c]system-view
[h3c]telnet server enable
% start telnet server
[h3c]interface ethernet0/0
[h3c-ethernet0/0]ip address 192.168.0.1 24
#进入vty 接口视图
[h3c]user-interface vty 0
#设置登录密码及优先级:登录密码为123456,优先级为2
[h3c-ui-vty0]set authentication password cipher 123456
[h3c-ui-vty0]user privilege level 2
确保终端到路由器之间网络的畅通,然后就可以通过终端远程登录路由器了(本例
中,远程终端为客户路由器)。
[h3c]telnet 1.1.1.1
trying 1.1.1.1 ...
press ctrl+k to abort
connected to 1.1.1.1 ...
all rights reserved (2004-2006) *
without the owner's prior written consent, *
login authentication
password:
[h3c] system-view
[h3c]
在提示输入密码时,输入密码:123456
转载于:https://blog.51cto.com/14240096/2362757