summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog1
-rw-r--r--README37
2 files changed, 23 insertions, 15 deletions
diff --git a/ChangeLog b/ChangeLog
index 716e0846a..df11b662a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -9,6 +9,7 @@
9 - [sshconnect.c] warn if announced size of modulus 'n' != real size 9 - [sshconnect.c] warn if announced size of modulus 'n' != real size
10 - Added GNOME passphrase requestor (use --with-gnome-askpass) 10 - Added GNOME passphrase requestor (use --with-gnome-askpass)
11 - RPM build now creates subpackages 11 - RPM build now creates subpackages
12 - Released 1.2pre9
12 13
1319991108 1419991108
14 - Removed debian/ directory. This is now being maintained separately. 15 - Removed debian/ directory. This is now being maintained separately.
diff --git a/README b/README
index 5ddc2ef8c..6a3c94c99 100644
--- a/README
+++ b/README
@@ -1,29 +1,36 @@
1This is a Linux port of OpenBSD's excellent OpenSSH. 1This is a Linux port of OpenBSD's excellent OpenSSH.
2 2
3OpenSSH is based on the last free version of Tatu Ylonen's SSH with 3OpenSSH is based on the last free version of Tatu Ylonen's SSH with
4all patent-encumbered algorithms removed, all known security bugs 4all patent-encumbered algorithms removed, all known security bugs
5fixed, new features reintroduced and many other clean-ups. 5fixed, new features reintroduced and many other clean-ups.
6 6
7This Linux port basically consists of a few fixes to deal with the way 7This Linux port basically consists of a few fixes to deal with
8that OpenSSL is usually installed on Linux systems, a few replacements 8the way that OpenSSL is usually installed on Linux systems, a few
9for OpenBSD library functions and the introduction of PAM support. This 9replacements for OpenBSD library functions and the introduction of PAM
10version tracks changes made to the OpenBSD CVS version. 10support. This version tracks changes made to the OpenBSD CVS version.
11 11
12The PAM support is now more functional than the popular packages of 12The PAM support is now more functional than the popular packages of
13commercial ssh-1.2.x. It checks "account" and "session" modules for 13commercial ssh-1.2.x. It checks "account" and "session" modules for
14all logins, not just when using password authentication. This code is 14all logins, not just when using password authentication. This code is
15very new and needs further testing. 15very new and needs further testing.
16 16
17All new code is released under a XFree style license, which is very 17All new code is released under a XFree style license, which is very
18liberal. This code is released with no warranties of any kind, 18liberal. Please refer to the source files for details. The code in
19neither I nor my employer (Internet Business Solutions) will take any 19strlcpy.c and mktemp.c is from the OpenBSD project and has its own
20responsibility for any loss, damage or liability arising from the use 20license (again, see source file for details).
21or abuse of this software. The code in strlcpy.c and mktemp.c is from 21
22the OpenBSD project and has its own license (see source file for 22OpenSSH depends on Zlib[1], OpenSSL[2] and optionally PAM[3]. To build
23details). 23the GNOME[1] passphrase requestor (--with-gnome-askpass), you will
24 24need the GNOME libraries installed.
25OpenSSH depends on Zlib[1], OpenSSL[2] and optionally PAM[3]. 25
26It now uses autoconf to build thanks to Dan Brosemer <odin@linuxfreak.com> 26To build OpenSSH, use the configure script provided. For example:
27
28./configure --prefix=/opt/openssh
29make
30make install
31
32Will install the OpenSSH binaries in /opt/openssh/bin, the
33configuration files in /opt/openssh/etc, and so forth.
27 34
28Damien Miller <djm@ibs.com.au> 35Damien Miller <djm@ibs.com.au>
29Internet Business Solutions 36Internet Business Solutions