01-16-2018 12:22 PM - edited 03-19-2019 01:03 PM
I'm getting the following error in CUCM when attempting to edit a device after we updated from 11.x to 12.x
Update failed. SSH Password is not valid. SSH Password is an encrypted value containing up to 288 hexadecimal characters (0-9 and A-F)
I'm still digging around but I feel like a feature/service was enabled by default after the upgrade that I need to locate and disable?
01-16-2018 12:30 PM
Are you able to change the "Secure Shell Password" on the Device -> Phone Page?
01-16-2018 12:52 PM
The field is available, however, no matter what is entered it won't seem to accept the changes. I can't ever recall needing to edit/adjust that field previously; and it seems some phones have info filled in and other don't.
Updating: Realized that there's a patch available that potentially resolves this issue, hopefully: 12.0.1.21900-7
01-16-2018 01:00 PM
Yeah, CSCve59587 looks like the bug you're hitting.
01-16-2018 08:41 PM
Still seem to be having the issue after applying 12.0.1.21900-7
01-18-2018 08:15 AM
TAC is still looking into this issue for us. The most recently released files/version has not resolved this for us. I've been advised 12.5 might be our resolution; still have TAC on it.
Will be looking for a workaround as we're not able to edit/adjust any of our phones.
03-08-2018 07:24 AM
Hello Kelin,
I have the same problem with some of my phones.
Do you have resolution of that problem?
Best regards,
Uladzimir Hryharovich
03-08-2018 05:52 PM
The Bug status says its fixed with the code incorporated in the following versions:
03-09-2018 12:44 AM
I've upgraded my cluster from 10.5 to 12.0 and now I have 12.0.1.21900-7 version. It looks like I have a problem with it.
Best regards,
Uladzimir Hryharovich
05-09-2018 07:44 PM
I am also on this version and am having this issue with SOME of my phones.
System version: 12.0.1.21900-7 Unrestricted
04-08-2019 08:22 PM - edited 04-08-2019 08:24 PM
No sure about other versions you mentioned here but I had similar issue on CUCM version 12.5.1.10000-22. Cisco TAC provided following workaround:
In order to identify all devices with the non-hexadecimal value, run the following query:
run sql select name , sshpassword from device
Filter devices to identify the password issue or you can confirm the password on the affected devices with query:
run sql select name , sshpassword from device where name="MAC_add"
+++ Do Not Change "MAC_add" +++
After identifying all affected devices, apply the following query to blank the ssh password:
run sql update device set sshpassword='' where name='SEPMAC_OF_IP_Phone'
+++ Change 'SEPMAC_OF_IP_Phone' to IP Phone Device Name i.e. 'SEP00AABBCCDD' +++
If you want to blank the ssh password on all devices, run the following query:
run sql update device set sshpassword='' where name like 'SEP%'
02-03-2020 11:48 PM
This really helped me fixing the issue. We recently upgraded from 10.5 version to 12.5.1 and could experience this recently when trying to modify a device.
The solution help to resolve the issue.
Thanks
S. Sriram
11-30-2018 07:55 AM
I happened upon this while researching the same problem.
What I found was that I couldn't update any devices which had a SSH password assigned without a SSH UserID.
I found this by querying the database directly.
admin:run sql select name,sshpassword,sshuserid from device where sshpassword <> "" and sshuserid = ""
name sshpassword sshuserid
=============== ============ =========
SEP1CDEA733082A sshpassword!!
SEP00082FB490CE sshpassword!!
SEP1CDEA78334C0 sshpassword!!
When querying the device in /ccmadmin the password didn't seem to show up.
After running an update on the database, again via sql to blank out the ssh password, I was able to update the devices again.
admin:run sql update device set sshpassword = '' where name = "SEP1CDEA78334C0"
I updated individually as I don't like running generic updates on the device table, but you could summarize to do it all in 1 sql statement.
Hope this helps.
Brad.
01-06-2019 01:12 PM
Hi , thanks Bradley , i had this issue after migration from 10.5 to 12.0.1.10000-10 , and my problem was only with a few phones , i couldnt update phone page , only ine page.. You solution worked very well to me.
Regards
07-26-2019 10:10 AM
Did this not get fixed in
12.5.1.11900-146
Running into the same problem.
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