Lost SSH with 02.32.05-046

Updated to 02.32.05-046 tonight and it removed all SSH access!

Now, all SSH attempts return “Permission Denied”. Even though  http://mybooklive/UI/ssh says that the credentials are root/welc0me, those don’t work anymore.

Was this an intended effect of the update?

Hi, have you tried doing a powercycle, reset, another web browser?

Did you change the root password?  I had and forgot what it was, so I originally thought the firmware broke ssh.  Then I remembered what I changed it to and it worked.

Hit the reset button on the drive and it will reset the root password.

#!/bin/sh
#!/bin/sh
#
# © 2010 Western Digital Technologies, Inc. All rights reserved.
#
# resetButtonAction.sh 
#
# This is called by resetbtnd whenever the reset button has met the criteria for a reset. This script implements the actions for the reset button.
#
PATH=/sbin:/bin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin

logger "reset button pressed, invoking reset actions"

# remove owner password
owner=`getOwner.sh`
modUserPassword.sh ${owner}

# set root password back to default
echo "root:welc0me" | chpasswd 

# set network to dhcp
setNetworkDhcp.sh

reboot