SSH: Difference between revisions

From wiki.vacula.xyz
(Created page with "== Troubleshooting == === Invalid Host Key Length === Manifests as {{code|Bad server host key: Invalid key length}} Fix: {{code|ssh -o RSAMinSize=1024 host}}")
 
No edit summary
 
(3 intermediate revisions by the same user not shown)
Line 3: Line 3:
=== Invalid Host Key Length ===
=== Invalid Host Key Length ===
Manifests as {{code|Bad server host key: Invalid key length}}
Manifests as {{code|Bad server host key: Invalid key length}}
Fix: {{code|ssh -o RSAMinSize=1024 host}}
 
Fix: <code>ssh -o RSAMinSize=1024 host</code>

Latest revision as of 17:23, 2 January 2025

Troubleshooting

Invalid Host Key Length

Manifests as Bad server host key: Invalid key length

Fix: ssh -o RSAMinSize=1024 host