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
This commit is contained in:
LukeZGD 2024-01-04 23:19:13 +08:00
parent 01a494b9de
commit 04f0267b2a

View File

@ -4,3 +4,4 @@ Host *
StrictHostKeyChecking no StrictHostKeyChecking no
UserKnownHostsFile /dev/null UserKnownHostsFile /dev/null
HostKeyAlgorithms +ssh-rsa HostKeyAlgorithms +ssh-rsa
PubkeyAcceptedAlgorithms +ssh-rsa