一.Telnet服务
1.1、什么是Telnet服务
Telnet协议是TCP/IP协议族中的一员,是Internet远程登录服务的标准协议和主要方式。它为用户提供了在本地计算机上完成远程主机工作的能力。在终端使用者的电脑上使用telnet程序,用它连接到服务器。终端使用者可以在telnet程序中输入命令,这些命令会在服务器上运行,就像直接在服务器的控制台上输入一样。可以在本地就能控制服务器。要开始一个telnet会话,必须输入用户名和密码来登录服务器。Telnet是常用的远程控制Web服务器的方法。
应用层有服务Telnet(telnet使用的是tcp上的23号端口),Telnet服务一般是C/S架构,开启telnet的主机是服务器(server)模式,等待用户使用telnet远程登录上本机。
交换机物理接口不能配置IP地址,交换机有一个虚拟接口,默认虚拟接口叫vlanif 1,我们可以给默认虚拟接口配置IP,即给二层交换机配置一个管理IP。
交换机/路由器虚拟接口特性:只要设备启动,虚拟接口默认开启。交换机的物理接口默认是开启状态。
二.系统设置
由于项目测试没有直接的设备演示所使用的是eNSP,而由于eNSP的PC机做不了telnet服务只能采用交换机充当客户机的模拟演示。
2.1、需要用到的命令
<> 从用户视图进入系统视图 system-view
【】从系统视图返回到用户视图quit
【】从任意的非用户视图返回到用户视图return
【】重命名sysname SW1
永不超时【SW1】user-interface console 0
永不超时【SW1-ui-console】idle-timeout 0 0
关闭弹出信息<>Sw1 undo terminal monitor
进入默认接口【】interface vlanif 1;ip address
【】user-interface vty 0 4(开启功能0-4一个有5个指线程数)
【】authentication-mode password(验证模式为密码)
【】set authentication password simple Huawei (明文密码)
【】user privilege level 3 用户权限
2.2、操作步骤
Sw1(LSW1)
进去把永不超时和关闭弹出信息打开
system-view (进入系统模式)
[Huawei]sysname sw1 (改名字)
[sw1]interface Vlanif 1 (进入虚拟接口,配上ip地址)
[sw1-Vlanif1]ip address 192.168.1.5 24 (配置ip地址)
[sw1-Vlanif1]quit (退出接口,只能退出一级)
[sw1]
[sw1]user-interface vty 0 4 (进入telnet配置,0 4代表5个进程)
[sw1-ui-vty0-4]authentication-mode password (进入设置远程登录)
[sw1-ui-vty0-4]set authentication password ?
cipher Set the password with cipher text(cipher密文)
simple Set the password in plain text (simple 明文)
[sw1-ui-vty0-4]set authentication password cipher Huawei (配置密文密码 为Huawei)
[sw1-ui-vty0-4]user privilege level 3 (设定为3级管理权限,管理级为0—15)
[sw1-ui-vty0-4]return (直接返回用户视图)
save (将配置进行保存)
The current configuration will be written to the device.
Are you sure to continue?[Y/N]y (输入y确定保存)
Info: Please input the file name ( *.cfg, *.zip ) [vrpcfg.zip]: (回车)
Now saving the current configuration to the slot 0.
Save the configuration successfully. (意思是保存成功)
Sw2(LSM2)
进去把永不超时和关闭弹出信息打开
system-view
[Huawei]sysname sw2
[sw2]interface Vlanif 1
[sw2-Vlanif1]
[sw2-Vlanif1]ip ad
[sw2-Vlanif1]ip address 192.168.1.20 24
[sw2-Vlanif1]
[sw2-Vlanif1]quit
[sw2]q
save
The current configuration will be written to the device.
Are you sure to continue?[Y/N]y
Info: Please input the file name ( *.cfg, *.zip ) [vrpcfg.zip]:
Now saving the current configuration to the slot 0.
Save the configuration successfully.
telne
telnet 192.168.1.5 (在sw2进行远程登陆sw1)
Trying 192.168.1.5 …
Press CTRL+K to abort
Connected to 192.168.1.5 …
Login authentication
Password: (输入密文密码Huawei) 然后回车)
Info: The max number of VTY users is 5, and the number
of current VTY users on line is 1.
The current login time is 2021-08-05 18:41:25.
sw1 (说明登录成功)
三.总结
重命名、永不超时和关闭弹出消息一定要打开
服务器上设置IP,开启telnet功能,设置telnet模式为密码模式,设置为明文密码/密文密码选明文密码,用户权限选3。
客户机除了不开启telnet模式,其余和服务器一样。最后验证客户机服务器是否可以登录。