目录
一、Telnet服务
1.1 什么是Telnet服务
二、系统配置
2.1 交换机的配置
2.2 客户机的配置
三、总结
一、Telnet服务
1.1 什么是Telnet服务
Telnet协议是TCP/IP协议族中的一员,是Internet远程登录服务的标准协议和主要方式。它为用户提供了在本地计算机上完成远程主机工作的能力。在终端使用者的电脑上使用telnet程序,用它连接到服务器。终端使用者可以在telnet程序中输入命令,这些命令会在服务器上运行,就像直接在服务器的控制台上输入一样。可以在本地就能控制服务器。要开始一个telnet会话,必须输入用户名和密码来登录服务器。Telnet是常用的远程控制Web服务器的方法。
一般是c/s架构,开启telnet功能的主机是服务器模式,等待用户使用telnet远程登陆主机。而客户机是client模式,使用Telnet协议远程登陆上服务器。
二、系统配置
由于实验没有直接的设备演示所使用的是ensp,而由于ensp的pc机做不了telnet服务只能采用交换机充当客户机的模拟演示。
2.1 交换机的配置
首先设置好两台交换机和连接的物理线,并启动设备。
进入LSW1进行配置
<Huawei>system-view (从用户视图进入系统视图)
[Huawei]sysname sw1(重命名sw1)
[sw1]user-interface console 0(进入主控制台)
[sw1-ui-console0]idle-timeout 0 0(命令用来设置用户界面断连的超时时间,用户界面断连的超时时间是10分钟)
[sw1]return (返回用户视图)
<sw1>undo terminal monitor (关闭弹出信息)
<sw1>system-view (进入系统视图)
[sw1]interface vlanif 1(进入默认接口)
[sw1-Vlanif1]ip address 192.168.1.10 24(配置IP地址)
[sw1-Vlanif1]quit(返回上一层)
[sw1]user-interface vty 0 4(开启功能0-4一个有5个指线程数)
[sw1-ui-vty0-4]authentication-mode password(验证模式为密码)
[sw1-ui-vty0-4]set authentication password ?(可以显示他的选项) cipher Set the password with cipher text simple Set the password in plain text
simple密码是明文存储的,看配置的时候能够直接看到密码是什么,另外的就是看到一串乱码
[sw1-ui-vty0-4]set authentication password simple huawei(设置身份验证密码)
[sw1]return (退回用户界面)
2.2 客户机的配置
<Huawei>system-view (从用户视图进入系统视图)
[Huawei]sysname sw2(重命名sw2)
[sw2]user-interface console 0(进入主控制台)
[sw2-ui-console0]idle-timeout 0 0(命令用来设置用户界面断连的超时时间,用户界面断连的超时时间是10分钟)
[sw2]return (返回用户视图)
<sw2>undo terminal monitor (关闭弹出信息)
<sw2>system-view (进入系统视图)
[sw2]interface vlanif 1(进入默认接口)
[sw2-Vlanif1]ip address 192.168.1.20 24(配置IP地址)
[sw2-Vlanif1]return(返回用户视图)
<sw2>telnet 192.168.1.10
<sw2>telnet 192.168.1.10 Trying 192.168.1.10 ... Press CTRL+K to abort Connected to 192.168.1.10 ... Login authentication Password: (输入访问的sw1的密码)
成功后进入sw1,进行操控。
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 17:46:44. <sw1>
三、总结
1.设置基本配置。2.设置telnet功能。3.设置telnet模式为密码模式。4.设置明文/密文密码
5.客户机配置管理IP。6.客户机验证telnet服务器的登录。
(使用模拟器时需要客户机在用户界面用telnet命令管理)