Legacy-iOS-Kit/resources/ssh_config
LukeZGD 04f0267b2a 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
2024-01-04 23:19:13 +08:00

8 lines
184 B
Plaintext

Host *
AddKeysToAgent yes
IdentitiesOnly yes
StrictHostKeyChecking no
UserKnownHostsFile /dev/null
HostKeyAlgorithms +ssh-rsa
PubkeyAcceptedAlgorithms +ssh-rsa