LINUX.ORG.RU

История изменений

Исправление beastie, (текущая версия) :

SHA1 убрали в SSH версии 8.8 IIRC

См. https://www.openssh.com/releasenotes.html в частности «Potentially-incompatible changes».

TL;DR:

Incompatibility is more likely when connecting to older SSH
implementations that have not been upgraded or have not closely tracked
improvements in the SSH protocol. For these cases, it may be necessary
to selectively re-enable RSA/SHA1 to allow connection and/or user
authentication via the HostkeyAlgorithms and PubkeyAcceptedAlgorithms
options. For example, the following stanza in ~/.ssh/config will enable
RSA/SHA1 for host and user authentication for a single destination host:

    Host old-host
        HostkeyAlgorithms +ssh-rsa
	PubkeyAcceptedAlgorithms +ssh-rsa

We recommend enabling RSA/SHA1 only as a stopgap measure until legacy
implementations can be upgraded or reconfigured with another key type
(such as ECDSA or Ed25519).

Исходная версия beastie, :

SHA1 убрали в SSH версии 8.8 IIRC

См. https://www.openssh.com/releasenotes.html в частности «Potentially-incompatible changes».