106
21
How do I tell if Putty already knows about and has cached credentials for specific ssh servers?
Another way to ask this question is what is the Windows/Putty equivalent of a unix/ssh known_hosts file?
106
21
How do I tell if Putty already knows about and has cached credentials for specific ssh servers?
Another way to ask this question is what is the Windows/Putty equivalent of a unix/ssh known_hosts file?
131
Putty stores known hosts under a registry key: HKEY_CURRENT_USER\SoftWare\SimonTatham\PuTTY\SshHostKeys
.
2In my case, the path was different. However, just search for the registry key(s) "SshHostKeys" – OGrandeDiEnne – 2019-08-13T08:10:03.167
2
So in windows known_hosts for PuTTY is SshHostKeys.
that is stored at the HKEY_CURRENT_USER\Software\SimonTatham\PuTTY\SshHostKeys
location. To reach that location, the Registry Editor
supposed to be used.
regedit
HKEY_CURRENT_USER\Software\SimonTatham\PuTTY\SshHostKeys
location - locationSshHostKeys
file using this command REG QUERY HKEY_CURRENT_USER\Software\SimonTatham\PuTTY\SshHostKeys
in PowerShellAnd then the cache will be cleared. Will be everything new again for that particular entry
related: http://stackoverflow.com/q/33240137/10245
– Tim Abell – 2016-05-27T12:04:48.320