Update ssh_config (#157)

Best to change UserKnownHostsFile to /dev/null rather than a persistent file.
    AddKeysToAgent yes
    IdentitiesOnly yes
Both required for successful connection under Catalina/OpenSSH_8.1p1, LibreSSL 2.7.3
This commit is contained in:
cram 2022-01-02 11:24:07 -05:00 committed by GitHub
parent d6770b7a2e
commit c7a6dc3d55
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,3 +1,6 @@
StrictHostKeyChecking no
UserKnownHostsFile tmp/known_hosts
HostKeyAlgorithms=+ssh-rsa
Host *
AddKeysToAgent yes
IdentitiesOnly yes
StrictHostKeyChecking no
UserKnownHostsFile /dev/null
HostKeyAlgorithms +ssh-rsa