其他分享
首页 > 其他分享> > C9800-CL初始化登陆报密码错误!

C9800-CL初始化登陆报密码错误!

作者:互联网

我们在使用Cisco C9800-CL的时候,或者是C9800的硬件设备的时候,需要注意一个问题,关于SSH/Telnet等方式的远程,在VTY下开启local auth相信基本不会有人miss。

line con 0
 exec-timeout 0 0
 stopbits 1
line vty 0 4
 password Cisco@123
 login local
 transport input all
line vty 5 15
 login local
 transport input ssh

但是在登陆WEBUI的时候,明明账户名和密码是正确的,但是报错,凭据错误!

这个时候需要注意检查C9800-CL是否开启了http local auth,默认是未开启的,这也容易忽略!

WLC#conf t
Enter configuration commands, one per line.  End with CNTL/Z.
WLC(config)#ip http authentication local
WLC(config)#end
WLC#wr
WLC#sh run | i ip http
ip http server
ip http authentication local
ip http secure-server

这个时候再来登陆WEBUI,发现可以正常登陆。

 

 关于物理设备,例如C9800-L,则需要配置如下命令,然后重启设备:

9800#conf t
9800(config)#ip http secure-server
9800(config)#ip http secure-trustpoint CISCO_IDEVID_SUDI

Refer to:https://community.cisco.com/t5/wireless/cisco-wireless-lan-controller-9800-l-c-unable-to-login-to-gui/td-p/4025477

如此得以解决问题~~

 

标签:初始化,http,CL,ip,C9800,line,config,local
来源: https://www.cnblogs.com/MomentsLee/p/16353463.html