summaryrefslogtreecommitdiffstats
path: root/UPGRADING
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>1999-11-16 08:02:27 +1100
committerDamien Miller <djm@mindrot.org>1999-11-16 08:02:27 +1100
commita7cafae274f8ee56bc36a20a488254432f70c7d5 (patch)
tree224e32efa5dcfbc8133d3102778699beb575c56c /UPGRADING
parent2a9d9f6ce42c0b4ad13a6cffbaf742a93376e155 (diff)
Added upgrade instructions
Diffstat (limited to 'UPGRADING')
-rw-r--r--UPGRADING35
1 files changed, 35 insertions, 0 deletions
diff --git a/UPGRADING b/UPGRADING
new file mode 100644
index 00000000..b1c0b9da
--- /dev/null
+++ b/UPGRADING
@@ -0,0 +1,35 @@
+OpenSSH is almost completely compatible with the commercial SSH 1.2.x.
+There are, however, a few exceptions that you will need to bear in
+mind while upgrading:
+
+1. OpenSSH does not support any patented transport algorithms.
+
+Only 3DES and Blowfish can be selected. This difference may manifest
+itself in the ssh command refusing to read its config files.
+
+Solution: Edit /etc/ssh/ssh_config and select a different "Cipher"
+option ("3des" or "blowfish").
+
+2. Old versions of commercial SSH encrypt host keys with IDEA
+
+The old versions of SSH used a patented algorithm to encrypt their
+/etc/ssh/ssh_host_key
+
+This problem will manifest as sshd not being able to read its host
+key.
+
+Solution: You will need to run the *commercial* version of ssh-keygen
+on the host's private key:
+
+ssh-keygen -u /etc/ssh/ssh_host_key
+
+3. Incompatible changes to sshd_config format.
+
+OpenSSH extends the sshd_config file format in a number of ways. There
+is currently one change which is incompatible with the old.
+
+Commercial SSH controlled logging using the "QuietMode" and
+"FascistLogging" directives. OpenSSH introduces a more general set of
+logging options "SyslogFacility" and "LogLevel". See the sshd manual
+page for details.
+