华为交换机ssh user admin authentication-type password
时间: 2024-11-03 08:20:20 浏览: 11
华为交换机SSH标准文档.doc
华为交换机上通过SSH(Secure Shell)登录用户admin时,设置密码认证类型通常涉及配置SSH服务器的基本认证。当你提到`authentication-type password`,这表示管理员权限的账号`admin`采用的是明文密码方式进行身份验证。
具体的步骤如下:
1. 登录到交换机的管理界面,通常是通过Console端口连接,然后通过telnet或Web UI访问。
2. 打开命令行模式,进入全局配置模式。
3. 使用`configure terminal`或类似命令进入配置模式。
4. 配置SSH服务,如在HUAWEI eSight中,可以输入命令`system-view [Huawei] security system ssh`.
5. 在`security system ssh`下,找到`user-interface Vty`相关的配置,这里指定SSH用户界面。
6. 对于用户`admin`,设置其认证方式为`authentication-mode password`,并配置对应的密码。
配置示例:
```
[Huawei] security system ssh
[Huawei-security-ssh] user-interface Vty0
[Huawei-security-ssh-Vty0] authentication-mode password
[Huawei-security-ssh-Vty0] authentication-password admin_password
```
记得替换`admin_password`为你想要设置的实际密码。
阅读全文