• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

bsd/H03-May-2022-11,5909,114

gssftp/H27-Dec-2011-15,09012,416

libmissing/H27-Dec-2011-2,4111,594

libpty/H03-May-2022-3,1501,856

telnet/H27-Dec-2011-34,63226,810

tests/H27-Dec-2011-5,1673,872

Makefile.inH A D20-Jul-200980 53

NOTICEH A D13-Jul-20094.3 KiB9173

READMEH A D06-Jan-20102.9 KiB8361

aclocal.m4H A D21-Nov-200916.4 KiB489484

autoconf.h.inH A D27-Dec-201113.7 KiB537358

autogen.shH A D23-Jan-2010412 143

config.guessH A D21-Nov-200943.5 KiB1,5171,305

config.subH A D21-Nov-200932 KiB1,6271,483

configureH A D27-Dec-2011236.2 KiB8,5127,121

configure.acH A D11-Jul-201114.3 KiB423389

depfix.plH A D18-Nov-20095.3 KiB204129

depsH A D05-Jan-200924 21

fake-addrinfo.hH A D19-Nov-20097.8 KiB234110

install-shH A D08-Jul-20098.1 KiB296170

k5-platform.hH A D05-Nov-20093.8 KiB13265

k5-util.hH A D11-Jul-20112.8 KiB7723

mkinstalldirsH A D08-Jul-2009723 4123

move-if-changedH A D08-Jul-2009376 1812

port-sockets.hH A D08-Jul-20094.6 KiB162114

post.inH A D18-Nov-20096.2 KiB182157

pre.inH A D20-Jul-20095.6 KiB234196

socket-utils.hH A D08-Jul-20094.1 KiB10941

README

1             Kerberos Version 5 Applications, Release 1.0
2
3                            Release Notes
4                        The MIT Kerberos Team
5
6Introduction
7------------
8
9Please refer to the NOTICE file for copyright, license, and
10acknowledgement information applying to this package.
11
12This package contains Kerberized versions of telnet, rlogin, rsh, rcp,
13and ftp clients and daemons, as well as a terminal login program which
14can obtain Kerberos credentials when presented with the user's
15password.
16
17These programs are no longer in wide use, having been supplanted in
18many environments by OpenSSH, but there is still some interest in
19their continued maintenance.  These programs were included in the main
20Kerberos 5 distribution through release 1.7, but are now packaged
21separately.
22
23Building and Installing
24-----------------------
25
26This package requires a krb5 installation.  If you are using your
27operating system's krb5 installation, ensure that the appropriate
28development package is installed--in particular, there should be a
29program named "krb5-config" in your path.  In this case, you can build
30the package with:
31
32    ./configure
33    make
34    make install
35
36If you are using your own build of Kerberos, you will have to tell
37this package where it is:
38
39    ./configure --with-krb5=/path/to/krb5
40    make
41    make install
42
43You can supply either the krb5 installation's exec-prefix or the path
44to the krb5-config program.  In either case, you can specify other
45options to configure such as the installation prefix; for a list of
46possibilities, run:
47
48    ./configure --help
49
50The daemons in this package are intended to run out of an inetd-like
51system.  The presence and/or configuration syntax of this system will
52vary according to your operating system.  If you are using a
53traditional inetd daemon, the configuration in /etc/inetd.conf should
54look like:
55
56    klogin   stream  tcp  nowait  root  /usr/sbin/klogind  klogind -k -c
57    eklogin  stream  tcp  nowait  root  /usr/sbin/klogind  klogind -k -c -e
58    kshell   stream  tcp  nowait  root  /usr/sbin/kshd     kshd -k -c -A
59    ftp      stream  tcp  nowait  root  /usr/sbin/ftpd     ftpd -a
60    telnet   stream  tcp  nowait  root  /usr/sbin/telnetd  telnetd -a valid
61
62with the pathname /usr adjusted to match your installation prefix (the
63default is /usr/local).  The service names in the first column must be
64present in /etc/services; if the Kerberos services are not present
65there, add them as follows:
66
67    klogin        543/tcp          # Kerberos authenticated rlogin
68    kshell        544/tcp   cmd    # and remote shell
69    eklogin       2105/tcp         # Kerberos auth. & encrypted rlogin
70
71Reporting Bugs
72--------------
73
74Please report any problems/bugs/comments using the krb5-send-pr
75program from your Kerberos 5 distribution, or by sending mail to
76krb5-bugs@mit.edu.
77
78You may view bug reports by visiting
79
80http://krbdev.mit.edu/rt/
81
82and logging in as "guest" with password "guest".
83