华为交换机配置telnet
时间: 2023-09-01 16:07:25 浏览: 161
华为交换机配置telnet的步骤如下:
1. 进入交换机的用户视图:
```
<Switch>system-view
```
2. 配置交换机的域名和IP地址:
```
[Switch]hostname Huawei-Switch
[Switch]interface vlanif 1
[Switch-Vlanif1]ip address 192.168.1.1 255.255.255.0
```
3. 配置交换机的telnet服务:
```
[Switch]user-interface vty 0 4
[Switch-ui-vty0-4]authentication-mode scheme
[Switch-ui-vty0-4]set authentication password cipher password
[Switch-ui-vty0-4]protocol inbound telnet
```
其中,`authentication-mode scheme`表示使用本地用户认证方式,`set authentication password cipher password`表示设置telnet登录密码为`password`,`protocol inbound telnet`表示开启telnet服务。
4. 保存配置并退出:
```
[Switch]interface vlanif 1
[Switch-Vlanif1]quit
[Switch]save
```
配置完成后,就可以通过telnet客户端连接到交换机,使用telnet登录到交换机的命令如下:
```
telnet 192.168.1.1
```
输入用户名和密码即可登录到交换机。
阅读全文