On Mon, Oct 28, 2024 at 03:46:20AM +0000, Philipp Buehler wrote:
Try adding:
PubkeyAcceptedKeyTypes +ssh-rsa
that worked!!! TYVM :D
ssh didn't like this in .ssh/config :
###
HostKeyAlgorithms ssh-rsa,ssh-dss
###
or:
###
HostKeyAlgorithms +ssh-rsa,+ssh-dss
###
but the following, plus your suggestion, worked:
#
HostKeyAlgorithms +ssh-rsa
so the entire block reads like this:
#
Host [redacted]
Ciphers aes128-ctr,aes192-ctr,aes256-ctr,aes128-cbc,3des-cbc
MACs hmac-md5,hmac-sha1,umac...@openssh.com
HostKeyAlgorithms +ssh-rsa
KexAlgorithms diffie-hellman-group14-sha1,diffie-hellman-group1-sha1
ForwardX11 no
VerifyHostKeyDNS no
PubkeyAcceptedKeyTypes +ssh-rsa
#
thanks again,
--