05-13-2022 08:55 AM - edited 05-13-2022 09:04 AM
Hi Trying to setup c9800 as normal procedure. We can login the WLC via cli but not gui with saying "Wrong Credential .." The below link is bug on it.
Is this issue resolved? Thank you
https://bst.cloudapps.cisco.com/bugsearch/bug/CSCvd82988
Symptom: "Wrong Credentials. Please Login again." error when accessing the switch via GUI. Conditions: SHIVA#show run | i username username ww password 0 ww username cisco password 0 cisco username test password 0 test SHIVA#show run | i aaa aaa new-model aaa session-id common Problem is not always seen right after reboot, after day or two problem appears consistently. With above configuration try to access the GUI of the switch. Workaround: Power cycle of the switch. Further Problem Description:
Solved! Go to Solution.
05-13-2022 09:41 AM
- Wouldn't do that , apparently the bug report is already two years old ,avoid using usernames as being mentioned in the Conditions of the bug report.
M.
05-13-2022 10:02 AM
- Yes , don't use those usernames or passwords.
M.
05-13-2022 10:23 AM
- Issue (CLI) command "show tech wireless" : have the output analyzed by , https://cway.cisco.com/tools/WirelessAnalyzer/ , look for critical advisories (red) , and correct accordingly.
M.
05-13-2022 09:22 AM
- Use one of the Known Fixed Releases , as mentioned in the bug report.
M.
05-13-2022 09:33 AM
Thank you for your reply! now its version is 17.3.4c. The options are about 16.-- Do you mean we need to downgrade its ios?
05-13-2022 09:41 AM
- Wouldn't do that , apparently the bug report is already two years old ,avoid using usernames as being mentioned in the Conditions of the bug report.
M.
05-13-2022 09:55 AM
It means that username and password are too simple?
05-13-2022 10:02 AM
- Yes , don't use those usernames or passwords.
M.
05-13-2022 10:04 AM - edited 05-13-2022 10:32 AM
We have changed to complicated username and password. but the issue is still there.
and i also want to change the number from "0" to "7" . but it does not work. Do you think we need to change it?
V(config)#username asqwert privilege 15 password 7 ?
WORD The HIDDEN user password string
05-13-2022 10:23 AM
- Issue (CLI) command "show tech wireless" : have the output analyzed by , https://cway.cisco.com/tools/WirelessAnalyzer/ , look for critical advisories (red) , and correct accordingly.
M.
05-15-2022 05:48 AM
You should not be using type 7 password encryption or md5 hash secret anymore - both very insecure and unsafe.
You should be using type 9 (scrypt) which is now the most secure option available (type 8 also acceptable but consensus that 9 is better):
username test privilege 15 algorithm-type scrypt secret plaintextsecret
That will appear in the config as:
username test privilege 15 secret 9 $9$XDxtW9Ixseuak.$kMOej8hDPlSueAY6NsEMvwSCa51qmm11JBvdPjrF8Ec
FYI: you can't just 'change the number from "0" to "7".' - what follows 7 is the reversibly encrypted version of your plaintext password. It's very easy to decrypt using numerous websites and tools because the encryption algorithm is very basic and well known.
If you enable "service password-encryption" then IOS will encrypt plaintext passwords by default and which encryption type it uses depends on whether you have also enabled aes encryption with master key:
password encryption aes
key config-key password-encrypt <masterencryptionkey>
The master key is stored in secure NVRAM and can never be viewed. If you lose the master key then the passwords can never be decrypted.
05-13-2022 02:02 PM
Resolved, Thank you!
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide