• C9800CL初始化登陆报密码错误!


    我们在使用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

    如此得以解决问题~~

  • 相关阅读:
    ansible
    celery 计划任务使用
    11 session 使用
    10 模版继承和页面之间的调用
    9 模版语言 jinja2
    8 公共函数
    7 文件上传
    6 获取请求头和URL信息
    5 获取Form表单取值
    4 文件操作 支持图片 视频 mp3 文本等
  • 原文地址:https://www.cnblogs.com/MomentsLee/p/16353463.html
Copyright © 2020-2023  润新知