diff options
Diffstat (limited to 'UPGRADING')
-rw-r--r-- | UPGRADING | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -33,3 +33,15 @@ Commercial SSH controlled logging using the "QuietMode" and | |||
33 | logging options "SyslogFacility" and "LogLevel". See the sshd manual | 33 | logging options "SyslogFacility" and "LogLevel". See the sshd manual |
34 | page for details. | 34 | page for details. |
35 | 35 | ||
36 | 4. Warning messages about key lengths | ||
37 | |||
38 | Commercial SSH's ssh-keygen program contained a bug which caused it to | ||
39 | occasionally generate RSA keys which had their Most Significant Bit | ||
40 | (MSB) unset. Such keys were advertised as being full-length, but are | ||
41 | actually only half as secure. | ||
42 | |||
43 | OpenSSH will print warning messages when it encounters such keys. To | ||
44 | rid yourself of these message, edit you known_hosts files and replace | ||
45 | the incorrect key length (usually "1024") with the correct key length | ||
46 | (usually "1023"). | ||
47 | |||