华为交换机配置tacacs后本地账号登录失败问题

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了华为交换机配置tacacs后本地账号登录失败问题相关的知识,希望对你有一定的参考价值。

之前只配置了本地账号,是可以登陆的,后来配置了tacacs后,tacacs账号能登陆,本地账号不能登录,这是什么原因?以下是配置,请给予指导下,谢谢!
aaa
authentication-mode hwtacacs local
authentication-scheme shunc
authentication-mode hwtacacs local
authorization-scheme shunc
authorization-mode hwtacacs if-authenticated local
domain default_admin
authentication-scheme shunc
authorization-scheme shunc
hwtacacs-server shunc
local-user shcnc password cipher shcnc123
local-user shcnc privilege level 3
local-user shcnc service-type telnet

参考技术A local-user shcnc service-type telnet 用户类型加你需要的追问

非常感谢!已经清楚了,原因是tacacs那边没有配置。

本回答被提问者采纳

华为华三思科交换机设置SSH登录

华为华三思科交换机设置SSH登录

华为交换机:
1.开启stelnet服务
2.生成本地密钥对;
3.配置远程登录的认证模式aaa和远程登录的协议ssh
3.配置aaa的本地用户用户supadmin(设置密码、命令级别、服务类型);
4.配置SSH用户supadmin认证类型为password和服务类型为STelnet;
sy
stelnet server enable
rsa local-key-pair create
2048

user-interface vty 0 4
authentication-mode aaa
protocol inbound ssh

aaa
local-user supadmin password cipher supadmin@123
local-user supadmin privilege level 3
local-user supadmin service-type ssh

ssh user supadmin authentication-type password
ssh user supadmin service-type stelnet

华三交换机:
1.开启ssh服务
2.生成本地密钥对;
3.配置远程登录的认证模式scheme(aaa)和远程登录的协议ssh
3.配置aaa的本地用户用户supadmin(设置密码、命令级别、服务类型);
4.配置SSH用户supadmin认证类型为password和服务类型为STelnet;
sy

ssh server enable
public-key local create rsa
2048

user-interface vty 0 4
authentication-mode scheme
protocol inbound ssh

local-user supadmin
password simple supadmin@123
authorization-attribute level 3
service-type ssh

ssh user supadmin service-type stelnet authentication-type password

需要限制远程管理的IP的情况下,需要设置一个acl(看情况)华为为例:
acl 3000
rule permit ip source 192.18.88.1 0.0.0.0
rule permit ip source 172.16.66.0 0.0.0.255
user-int vty 0 4
acl 3000 inbound

思科交换机:
enable
configure terminal
enable sec supadmin@123
hostname SW1

ip ssh time-out 60
ip ssh authentication-retries 3

ip domain-name cisco.com
crypto key generate rsa
2048
username supadmin secret supadmin@123
line vty 0 4
transport input ssh
login local

说明:基本上可以认为相同密钥长度的 RSA 算法与 DSA 算法安全性相当,二选一。

以上是关于华为交换机配置tacacs后本地账号登录失败问题的主要内容,如果未能解决你的问题,请参考以下文章

ACS5.6实现华三交换机的TACACS认证

更改华为交换机TELNET远程登录的用户名和密码

华为交换机配置本地登录和远程登录

华为交换机配置telnet用户名密码怎么更改

华为华三思科交换机设置SSH登录

华为交换机SSH和telnet登录配置