Telnet 三种验证模式(用户名+密码、密码、不验证)
一、用户名密码验证方式
1、开启telnet服务
[RT2]telnet server enable
% Start Telnet server
2、配置VTY ,验证方式为用户名密码方式
[SW1]user-interface vty 0 4
[SW1-ui-vty0-4]authentication-mode scheme
备注:VTY 0 4 表示最多可以接入5个人。第一个人接入为VTY 0,可以针对VTY 0单独配置验证或不验证方法为VTY 0
[SW1]user-interface vty 0
[SW1-ui-vty0-4]authentication-mode scheme
3、配置用户名与密码并且绑定服务类型为TELNET 访问级别为管理级
[H3C]local-user admin
[H3C-luser-admin]password simple h3c321000
[H3C-luser-admin]service-type telnet
[H3C-luser-admin]authorization-attribute level 3
二、密码认证
1、开启telnet服务
[RT2]telnet server enable
% Start Telnet server
2、配置VTY接口
[RT2]user-interface vty 0 4
3、配置验证模式为密码验证
[RT2-ui-vty0-4]authentication-mode password
4、设置验证密码为h3c
[RT2-ui-vty0-4]set authentication password simple h3c
5、设置访问级别为3管理级
[RT2-ui-vty0-4]user privilege level 3
三、不验证方式
[RT2]user-interface vty 0 4
3、配置验证模式为不验证
[RT2-ui-vty0-4]authentication-mode none
四、超级密码
[RT2]super password level 3 simple h3c
备注:此处Level 级别分别代表(说明: 0-访问级, 1-监控级, 2-系统级, 3-管理级)