From 04f0267b2a5301fab447ea083e995da1cbcda440 Mon Sep 17 00:00:00 2001 From: LukeZGD <26163116+LukeZGD@users.noreply.github.com> Date: Thu, 4 Jan 2024 23:19:13 +0800 Subject: [PATCH] Update ssh_config, fix "no matching host key type" apparently `HostKeyAlgorithms +ssh-rsa` is not enough, i also had to add `PubkeyAcceptedAlgorithms +ssh-rsa` to the config --- resources/ssh_config | 1 + 1 file changed, 1 insertion(+) diff --git a/resources/ssh_config b/resources/ssh_config index 3eb1d5a..3496bba 100644 --- a/resources/ssh_config +++ b/resources/ssh_config @@ -4,3 +4,4 @@ Host * StrictHostKeyChecking no UserKnownHostsFile /dev/null HostKeyAlgorithms +ssh-rsa + PubkeyAcceptedAlgorithms +ssh-rsa