Even the most recent version of iLO is trying to use cypher algorithms that have been deprecated in OpenSSH:
ssh Administrator@10.1.0.235
Unable to negotiate ... no matching key exchange method found.
Their offer: diffie-hellman-group14-sha1,diffie-hellman-group1-sha1
ssh Administrator@10.1.0.235 -oKexAlgorithms=+diffie-hellman-group1-sha1
Unable to negotiate ... no matching host key type found.
Their offer: ssh-rsa,ssh-dss
Unable to negotiate ... no matching cipher found. Their offer: aes256-cbc,aes128-cbc,3des-cbc
… and the winner is:
ssh Administrator@10.1.0.235 -oKexAlgorithms=+diffie-hellman-group1-sha1 -oHostkeyAlgorithms=+ssh-rsa -oCiphers=+aes256-cbc
After upgrading to Jammy Jellyfish I could no longer connect from my phone using AndFTP (sftp).
Continue reading No sftp connection to Ubuntu 22.04 →
On the Hummy, dropbear passwords are kept in /mod/etc/dropbear/shadow. To change the password, this file will have to be edited directly.
Continue reading Humax HDR-FOX-T2 dropbear ssh / sftp password change →
There are occasions when you would like to list ssh tunnel connections
established to or from your server with information about the port numbers used.
Continue reading
List ssh tunnel connections →
If you ever get an ssh session that seems to be stuck,
try closing the connection using one of the ssh built-in
escape sequences.
Continue reading Escape from ssh →
If you are getting an error message similar to
/usr/bin/xauth: timeout in locking authority file /home/username/.Xauthority
you are probably facing one of the following scenarios.
Continue reading xauth and .Xauthority →
Notes primarily to myself, but perhaps also useful for someone else…