目录
一、Telnet
1.定义
先来看看什么叫登录:分时系统允许多个用户同时使用一台计算机,为了保证系统的安全和记账方便,系统要求每个用户有单独的帐号作为登录标识,系统还为每个用户指定了一个口令。用户在使用该系统之前要输入标识和口令,这个过程被称为'登录'。 远程登录是指用户使用Telnet命令,使自己的计算机暂时成为远程主机的一个仿真终端的过程。仿真终端等效于一个非智能的机器,它只负责把用户输入的每个字符传递给主机,再将主机输出的每个信息回显在屏幕上。
2.功能
Telnet是Internet远程登录服务的标准协议和主要方式,最初由ARPANET开发,现在主要用于Internet会话,它的基本功能是允许用户登录进入远程主机系统。
Telnet可以让我们坐在自己的计算机前通过Internet网络登录到另一台远程计算机上,这台计算机可以是在隔壁的房间里,也可以是在地球的另一端。当登录上远程计算机后,本地计算机就等同于远程计算机的一个终端,我们可以用自己的计算机直接操纵远程计算机,享受远程计算机本地终端同样的操作权限。
Telnet的主要用途就是使用远程计算机上所拥有的本地计算机没有的信息资源,如果远程的主要目的是在本地计算机与远程计算机之间传递文件,那么相比而言使用FTP会更加快捷有效。
二、项目记录
1.项目命令
(1)系统重命名
[主机名]sysname要更改的用户名
(2)关闭弹出信息
<主机名>undo terminal monitor
(3)永不超时命令
[主机名]user-interface console 0 (进入console0用户界面)
[主机名-ui-console0]idle-timeout 0 (设置永不超时)
【1,2,3为华为三条必打命令】
(4)查看当前信息
<主机名>display current-configuration
(5)保存信息
[主机名]saved-configuration (应用于ROM)起始文件
[主机名]current -configuration (应用于RAM)当前配置文件
<主机名>save
(6)查看已保存信息
<主机名>display saved-configuration
(7)设置管理IP
[主机名]interface vlanif 1
[主机名-VIanif1]ip address IP地址 子网掩码
(8)开启telnet功能
[主机名]user-interface vty 0 4
(9)设置telne模式为密码功能
[主机名-ui-vty0-4]authentication-mode password
(10)设置明文/密文密码
[主机名-ui-vty0-4]set authentication password simple 明文密码
[主机名-ui-vty0-4]set authentication password cipher 密文密码
(11)设置权限
[主机名-ui-vty0-4]user prilige level 3 (3-15是 管理员标识)
(12)进入系统视图
<主机名>system-view
(13)返回上一级
[主机名]quit
(14)完全退出
[主机名]return
(15)远程连接
<主机名> Telnet
【其中只有system-view;display;save;undo terminal monitor以及telnet用的是用户视图,其他均为系统视图】
2.远程连接项目步骤
准备工作
打开华为ENSP
设立两个交换机,一个为服务器,一个为客户机,用Copper线相连并启动
对于LSW2进行命令配置
双击打开LSW2的CLI
<Huawei>undo terminal monitor (关掉提示消息)
<Huawei>system-view (进入系统模式)
[Huawei]sysname sw1 (改名字)
[sw1]user-interface console 0
[sw1-ui-console0]idle-timeout 0 0(永不超时)
[sw1]interface Vlanif 1 (进入虚拟接口,配上ip地址后可以理解成人的名片)
[sw1-Vlanif1]ip address 192.168.1.5 255.255.255.0 (配置ip地址)
[sw1-Vlanif1]quit (退出接口,只能退出一级)
[sw1]user-interface vty 0 4 (进入telnet配置,0 4代表5个进程)
[sw1-ui-vty0-4]authentication-mode password (进入设置远程登录)
[sw1-ui-vty0-4]set authentication password simple huawei (配置明文密码 huawei)
[sw1-ui-vty0-4]user privilege level 3 (设定为3级管理权限,管理级为0—15)
[sw1-ui-vty0-4]return (直接返回用户视图)
<sw1>
<sw1>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. (意思是保存成功)
<sw1>
对LSW3进行配置
双击打开LSW3的CLI
<Huawei>undo terminal monitor (关掉提示消息)
<Huawei>system-view (进入系统模式)
[Huawei]sysname sw2 (改名字)
[sw2]user-interface console 0
[sw2-ui-console0]idle-timeout 0 0(永不超时)
[sw2]interface Vlanif 1
[sw2-Vlanif1]
[sw2-Vlanif1]ip ad
[sw2-Vlanif1]ip address 192.168.1.10 255.255.255.0
[sw2-Vlanif1]
[sw2-Vlanif1]quit
[sw2]q
<sw2>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.
<SW2>ping 192.168.1.5
PING 192.168.1.5: 56 data bytes, press CTRL_C to break
Reply from 192.168.1.5: bytes=56 Sequence=1 ttl=255 time=30 ms
Reply from 192.168.1.5: bytes=56 Sequence=2 ttl=255 time=50 ms
Reply from 192.168.1.5: bytes=56 Sequence=3 ttl=255 time=60 ms
Reply from 192.168.1.5: bytes=56 Sequence=4 ttl=255 time=50 ms
Reply from 192.168.1.5: bytes=56 Sequence=5 ttl=255 time=20 ms
--- 192.168.1.5 ping statistics ---
5 packet(s) transmitted
5 packet(s) received
0.00% packet loss
round-trip min/avg/max = 20/42/60 ms
<sw2>telnet
<sw2>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:01:10.
<sw1> (说明登录成功)
三、总结
今天进行了二层交换机的远程登录项目,将项目过程记录下来,以便以后回顾。