(1)华三网络设备远程登录的配置实验
1.实验目标
目标:实现远程ssh登录基本配置(http,https登录)
 要求:配置后,即可使用远程工具进行远程登录。
 配置过程:
 1.创建交换机的本地帐号。(用于远程登录帐号验证)
 2.选择配置登录设备的用户线。(console/VTY虚拟类型)
 3.启动远程服务进程。(配置远程登录:ssh,为了安全一般不配置telnet)
 4.记得配置一个关于交换机的管理IP专用
第一步:创建本地帐号。(系统视图直接复制刷即可)
local-user admin class manage
 password simple eve.123456789
 authorization-attribute user-role level-15
 service-type terminal telnet ssh https http
 quit
 //如上标红有底色,自定义。
 第一句:创建一个本地帐号(帐号可自定义)和帐号的类型是:manage
第二步:选择设备登录的用户线类型(terminal/ telnet /ssh/ http/ https/ pad /ftp)
一般配置:console,ssh,http,https方式。
 console方式:
 user-interface console 0
 authentication-mode scheme
 user-role level-15
 quit
 VTY(虚拟终端登录,即ssh,telnet)
 user-interface vty 0 31
 authentication-mode scheme
 user-role level-15
 protocol inbound all
 quit
第三步:启动远程服务的进程
ssh server enable
 telnet server enable
 ip http enable
 ip https enable
完整版命令:
local-user admin class manage
 password simple ceshi.2024
 authorization-attribute user-role level-15
 service-type terminal telnet ssh
 user-interface console 0
 authentication-mode scheme
 user-role level-15
 user-interface vty 0 31
 authentication-mode scheme
 user-role level-15
 protocol inbound all
 ssh server enable
 telnet server enable