3.6. H3C网络基础配置

3.6.1. 华三设备初始化及Console端口密码认证

# H3C
system-view
user-interface console 0
authentication-mode password    //设置通过console端口登录交换机的用户进行Password认证
set authentication password simple H3C12#$
quit
quit

dis this
dis user

注意:在一些华三设备上可能找不到Console端口命令,此时请使用AUX端口进行配置,AUX端口即Console端口。

3.6.2. 华三设备远程Telnet管理

quit
telnet server enable
user-interface vty 0 4
set authentication password Simple H3C12#$
return
save

dis this
dis user

3.6.3. 华三设备SSH服务器配置

# SSH
ssh server enable
local-user ender    //创建本地用户.这是H3C设备上创建AAA用户的方法
password simple hujianli    //配置密码,会自动加密
service-type ssh            //该用户服务与SSH应用
user-interface vty 0 4
authentication-mode scheme
protocol inbound ssh
user-role level-15      //登录的用户为15级
save