summaryrefslogtreecommitdiff
path: root/INSTALL
diff options
context:
space:
mode:
Diffstat (limited to 'INSTALL')
-rw-r--r--INSTALL59
1 files changed, 37 insertions, 22 deletions
diff --git a/INSTALL b/INSTALL
index af02c0b49..001ebb666 100644
--- a/INSTALL
+++ b/INSTALL
@@ -14,17 +14,37 @@ Blowfish) do not work correctly.)
14 14
15The remaining items are optional. 15The remaining items are optional.
16 16
17OpenSSH can utilise Pluggable Authentication Modules (PAM) if your system
18supports it. PAM is standard on Redhat and Debian Linux, Solaris and
19HP-UX 11.
20
21NB. If you operating system supports /dev/random, you should configure 17NB. If you operating system supports /dev/random, you should configure
22OpenSSL to use it. OpenSSH relies on OpenSSL's direct support of 18OpenSSL to use it. OpenSSH relies on OpenSSL's direct support of
23/dev/random. If you don't you will have to rely on ssh-rand-helper, which 19/dev/random, or failing that, either prngd or egd. If you don't have
24is inferior to a good kernel-based solution. 20any of these you will have to rely on ssh-rand-helper, which is inferior
21to a good kernel-based solution or prngd.
22
23PRNGD:
24
25If your system lacks kernel-based random collection, the use of Lutz
26Jaenicke's PRNGd is recommended.
27
28http://prngd.sourceforge.net/
29
30EGD:
31
32The Entropy Gathering Daemon (EGD) is supported if you have a system which
33lacks /dev/random and don't want to use OpenSSH's internal entropy collection.
34
35http://www.lothar.com/tech/crypto/
25 36
26PAM: 37PAM:
27http://www.kernel.org/pub/linux/libs/pam/ 38
39OpenSSH can utilise Pluggable Authentication Modules (PAM) if your
40system supports it. PAM is standard most Linux distributions, Solaris,
41HP-UX 11, AIX >= 5.2, FreeBSD and NetBSD.
42
43Information about the various PAM implementations are available:
44
45Solaris PAM: http://www.sun.com/software/solaris/pam/
46Linux PAM: http://www.kernel.org/pub/linux/libs/pam/
47OpenPAM: http://www.openpam.org/
28 48
29If you wish to build the GNOME passphrase requester, you will need the GNOME 49If you wish to build the GNOME passphrase requester, you will need the GNOME
30libraries and headers. 50libraries and headers.
@@ -37,19 +57,14 @@ passphrase requester. This is maintained separately at:
37 57
38http://www.jmknoble.net/software/x11-ssh-askpass/ 58http://www.jmknoble.net/software/x11-ssh-askpass/
39 59
40PRNGD: 60TCP Wrappers:
41
42If your system lacks Kernel based random collection, the use of Lutz
43Jaenicke's PRNGd is recommended.
44
45http://www.aet.tu-cottbus.de/personen/jaenicke/postfix_tls/prngd.html
46
47EGD:
48 61
49The Entropy Gathering Daemon (EGD) is supported if you have a system which 62If you wish to use the TCP wrappers functionality you will need at least
50lacks /dev/random and don't want to use OpenSSH's internal entropy collection. 63tcpd.h and libwrap.a, either in the standard include and library paths,
64or in the directory specified by --with-tcp-wrappers. Version 7.6 is
65known to work.
51 66
52http://www.lothar.com/tech/crypto/ 67http://ftp.porcupine.org/pub/security/index.html
53 68
54S/Key Libraries: 69S/Key Libraries:
55 70
@@ -72,7 +87,7 @@ Autoconf:
72If you modify configure.ac or configure doesn't exist (eg if you checked 87If you modify configure.ac or configure doesn't exist (eg if you checked
73the code out of CVS yourself) then you will need autoconf-2.61 to rebuild 88the code out of CVS yourself) then you will need autoconf-2.61 to rebuild
74the automatically generated files by running "autoreconf". Earlier 89the automatically generated files by running "autoreconf". Earlier
75version may also work but this is not guaranteed. 90versions may also work but this is not guaranteed.
76 91
77http://www.gnu.org/software/autoconf/ 92http://www.gnu.org/software/autoconf/
78 93
@@ -162,7 +177,7 @@ Integration Architecture. The default for OSF1 machines is enable.
162need the S/Key libraries and header files installed for this to work. 177need the S/Key libraries and header files installed for this to work.
163 178
164--with-tcp-wrappers will enable TCP Wrappers (/etc/hosts.allow|deny) 179--with-tcp-wrappers will enable TCP Wrappers (/etc/hosts.allow|deny)
165support. You will need libwrap.a and tcpd.h installed. 180support.
166 181
167--with-md5-passwords will enable the use of MD5 passwords. Enable this 182--with-md5-passwords will enable the use of MD5 passwords. Enable this
168if your operating system uses MD5 passwords and the system crypt() does 183if your operating system uses MD5 passwords and the system crypt() does
@@ -180,7 +195,7 @@ $DISPLAY environment variable. Some broken systems need this.
180--with-default-path=PATH allows you to specify a default $PATH for sessions 195--with-default-path=PATH allows you to specify a default $PATH for sessions
181started by sshd. This replaces the standard path entirely. 196started by sshd. This replaces the standard path entirely.
182 197
183--with-pid-dir=PATH specifies the directory in which the ssh.pid file is 198--with-pid-dir=PATH specifies the directory in which the sshd.pid file is
184created. 199created.
185 200
186--with-xauth=PATH specifies the location of the xauth binary 201--with-xauth=PATH specifies the location of the xauth binary
@@ -251,4 +266,4 @@ Please refer to the "reporting bugs" section of the webpage at
251http://www.openssh.com/ 266http://www.openssh.com/
252 267
253 268
254$Id: INSTALL,v 1.77 2007/03/02 06:53:41 dtucker Exp $ 269$Id: INSTALL,v 1.84 2007/08/17 12:52:05 dtucker Exp $