华为、华三网络设备SSH登陆配置
程序员文章站
2022-09-03 18:28:47
一、华为网络设备:1、首先配置vty接口 user-interface vty 0 4配置接口的认证模式 authentication-mode aaa配置用户权限级别 user privilege level 15配置入方向协议 protocol inbound ssh2、配置aaa用户 aaa(配置用户名密码认证)创建用户配置用户密码 local-user admin password cipher huawei@123配置用户服务器类型 local-user admin serv...
一、华为网络设备:
1、首先配置vty接口 user-interface vty 0 4
- 配置接口的认证模式 authentication-mode aaa
- 配置用户权限级别 user privilege level 15
- 配置入方向协议 protocol inbound ssh
2、配置aaa用户 aaa(配置用户名密码认证) - 创建用户
- 配置用户密码 local-user admin password cipher huawei@123
- 配置用户服务器类型 local-user admin service-type ssh
- 配置用户权限级别 local-user admin privilege level 15
3、配置ssh用户及服务 - 配置ssh用户 认证类型 ssh user admin authentication-type password
- 启用stelnet服务 stelnet server enable
二、华三网络设备
1、配置vty接口
- 配置vty接口的认证模式(scheme 用户名密码认证)
authentication-mode scheme - 配置vty接口的入方向协议 protocol inbound ssh
- 配置用户角色为network-admin
2、配置本地ssh用户 - 创建用户 local-user admin
- 配置用户密码 password simple
- 配置服务类型 service-type ssh
- 配置用户角色 authorization-attribute user-role network-admin
3、配置ssh用户及服务 - 配置ssh用户服务类型及认证类型 ssh user admin service-type stelnet authentication-type password
- 启用ssh服务 ssh server enable
本文地址:https://blog.csdn.net/qq_35009393/article/details/108988921