diff options
author | Damien Miller <djm@mindrot.org> | 2000-06-10 00:33:38 +0200 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2000-06-10 00:33:38 +0200 |
commit | c601a7596f1db83757f49458f09b59bc0b57ef0c (patch) | |
tree | 2520ea40e73ce1118452781e766cc50a58e0f485 /INSTALL | |
parent | - (djm) Patch from Kenji Miyake <kenji@miyake.org> to disable utmp usage (diff) | |
download | openssh-c601a7596f1db83757f49458f09b59bc0b57ef0c.tar.xz openssh-c601a7596f1db83757f49458f09b59bc0b57ef0c.zip |
- (djm) Minor doc tweaks
Diffstat (limited to 'INSTALL')
-rw-r--r-- | INSTALL | 9 |
1 files changed, 6 insertions, 3 deletions
@@ -72,7 +72,9 @@ control file as "/etc/pam.d/sshd" (or wherever your system prefers to keep them). A generic PAM configuration is included as "contrib/sshd.pam.generic", you may need to edit it before using it on your system. If you are using a recent version of Redhat Linux, the -config file in contrib/redhat/sshd.pam should be more useful. +config file in contrib/redhat/sshd.pam should be more useful. +Failure to install a valid PAM file may result in an inability to +use password authentication. There are a few other options to the configure script: @@ -166,9 +168,10 @@ The default configuration should be instantly usable, though you should review it to ensure that it matches your security requirements. To generate a host key, run "make host-key". Alternately you can do so -manually using the following command: +manually using the following commands: -/usr/bin/ssh-keygen -b 1024 -f /etc/ssh/ssh_host_key -N '' + ssh-keygen -b 1024 -f /etc/ssh/ssh_host_key -N "" + ssh-keygen -d -f /etc/ssh/ssh_host_dsa_key -N "" Replacing /etc/ssh with the correct path to the configuration directory. (${prefix}/etc or whatever you specified with --sysconfdir during |