summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog3
-rw-r--r--INSTALL9
2 files changed, 9 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 662f9cbdd..511b6e865 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,6 @@
120000610
2 - (djm) Minor doc tweaks
3
120000609 420000609
2 - (djm) Patch from Kenji Miyake <kenji@miyake.org> to disable utmp usage 5 - (djm) Patch from Kenji Miyake <kenji@miyake.org> to disable utmp usage
3 (in favour of utmpx) on Solaris 8 6 (in favour of utmpx) on Solaris 8
diff --git a/INSTALL b/INSTALL
index 414f72d3a..d95ea4e49 100644
--- a/INSTALL
+++ b/INSTALL
@@ -72,7 +72,9 @@ control file as "/etc/pam.d/sshd" (or wherever your system
72prefers to keep them). A generic PAM configuration is included as 72prefers to keep them). A generic PAM configuration is included as
73"contrib/sshd.pam.generic", you may need to edit it before using it on 73"contrib/sshd.pam.generic", you may need to edit it before using it on
74your system. If you are using a recent version of Redhat Linux, the 74your system. If you are using a recent version of Redhat Linux, the
75config file in contrib/redhat/sshd.pam should be more useful. 75config file in contrib/redhat/sshd.pam should be more useful.
76Failure to install a valid PAM file may result in an inability to
77use password authentication.
76 78
77There are a few other options to the configure script: 79There are a few other options to the configure script:
78 80
@@ -166,9 +168,10 @@ The default configuration should be instantly usable, though you should
166review it to ensure that it matches your security requirements. 168review it to ensure that it matches your security requirements.
167 169
168To generate a host key, run "make host-key". Alternately you can do so 170To generate a host key, run "make host-key". Alternately you can do so
169manually using the following command: 171manually using the following commands:
170 172
171/usr/bin/ssh-keygen -b 1024 -f /etc/ssh/ssh_host_key -N '' 173 ssh-keygen -b 1024 -f /etc/ssh/ssh_host_key -N ""
174 ssh-keygen -d -f /etc/ssh/ssh_host_dsa_key -N ""
172 175
173Replacing /etc/ssh with the correct path to the configuration directory. 176Replacing /etc/ssh with the correct path to the configuration directory.
174(${prefix}/etc or whatever you specified with --sysconfdir during 177(${prefix}/etc or whatever you specified with --sysconfdir during