From 156e2e37cd6a63e603ad34506d044fa495feb490 Mon Sep 17 00:00:00 2001 From: Rien Maertens Date: Thu, 4 Nov 2021 09:21:14 +0100 Subject: [PATCH] Allow sha1 to ensure support for openssh 8.8 --- reStream.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/reStream.sh b/reStream.sh index 6285cd6..1973c88 100755 --- a/reStream.sh +++ b/reStream.sh @@ -90,7 +90,11 @@ done ssh_cmd() { echo "[SSH]" "$@" >&2 - ssh -o ConnectTimeout=1 -o PasswordAuthentication=no "root@$remarkable" "$@" + ssh -o ConnectTimeout=1 \ + -o PasswordAuthentication=no \ + -o PubkeyAcceptedKeyTypes=+ssh-rsa \ + -o HostKeyAlgorithms=+ssh-rsa \ + "root@$remarkable" "$@" } # kill reStream on remarkable at the end.