[eNSP] 路由器telnet配置
程序员文章站
2024-02-12 17:24:10
...
方式一:无需验证,直接登录
(代码略)
方式二:password方式,需要提供密码:
[R1]telnet server enable # 开启telnet服务
[R1]user-interface vty 0 4 # 用户界面(user-interface)的虚拟终端(Virtual Teletype Terminal简称vty)可同时打开5个会话
[R1-ui-vty0-4]authentication-mode password #设置验证方式为密码(仅用密码即可登录)
Please configure the login password (maximum length 16):[email protected]123 # 设置密码
[R1-ui-vty0-4]user privilege level 3 #设置用户权限
方式三:aaa方式,需要提供账号和密码
[R1]telnet server enable # 开启telnet服务
[R1]user-interface vty 0 4 # 用户界面(user-interface)的虚拟终端(Virtual Teletype Terminal简称vty)可同时打开5个会话
[R1-ui-vty0-4]authentication-mode aaa #设置验证方式为aaa模式
[R1]aaa
[R1-aaa]local-user (用户名) password cipher (密码) # 设置用户和密码
[R1-ui-vty0-4]authentication-mode aaa
由于telnet不安全,抓到的包密码为明文,可以使用stelnet进行配置:
[eNSP] 路由器stelnet