Defines ******* Some defines need to go into the makefile because they are either used to decide what header files get included before any common one is, or because they're relevant in packages like ss or et that don't include kerberos headers. In May 1994, many defines have been moved out of the `Makefile' and `config/' directory into `include/c-*.h' files after examining and/or changing the code that uses them. More could be moved. I was trying to make the `cc' command lines short enough that Microloss Windows, NMAKE, and DOS could run them. header stuff that at one pointed needed to be in the makefile (and still might): NOTTYENT NEED_SYS_FCNTL_H POSIX KERBEROS NCOMPAT MAXPATHLEN (since compile_et.c uses it) NEED_SYS_TIME_H NEED_TIME_H WAIT_USES_INT (list_rqs uses it.) Oddities ******** gethostid() is used by des_random_key and des_init_random_number_generator. The latter is not used anywhere in the sources. The former is used in kdb_init - and apparently hpux 8 has a gethostid that takes arguments (but it isn't in any man page.) Use of POSIX define ******************* For flock: The POP server uses POSIX only to indicate that we don't have flock and need to use emul_flock instead. krb_dbm uses it to select fcntl(F_SETLK) instead of flock. tf_util uses it to choose to define emul_flock (based on fcntl(F_SETLK).) kprop, kpropd use it to select emul_flock. For terminal control: login.c uses it for terminal control; rcp mis-uses it for int vs. void. rlogind uses it for terminal and setsid; rlogin uses it for terminal control and misuses it a little bit for wait. rkinit uses it for explicit password prompting. lib/des/read_password.c uses it for terminal control. For signal types: kadm.h (mis?) uses it for typedef sigtype (int vs. void). admin_server uses it for sigtype as well. get_in_tkt (mis?)uses it for signal types. makedepend (mis)uses it to determine signal types. Use of HOST_BYTE_ORDER define ***************************** `lib/krb/cr_err_repl.c' uses HOST_BYTE_ORDER (as 1 or 0): *t |= HOST_BYTE_ORDER; `cr_auth_repl.c' same `cr_death_pkt.c' same `krb_g_pw_in_tkt.c' same `mk_req.c' same `cr_tkt.c' flags |= HOST_BYTE_ORDER; `decomp_tkt.c' if (HOST_BYTE_ORDER != ((*flags >> K_FLAG_ORDER)& 1)) `g_ad_tkt.c' if (msg_byte_order != HOST_BYTE_ORDER) `krb_g_pw_in_tkt.c' smae `kerberos.c' same `mk_err.c' *p++ |= HOST_BYTE_ORDER; `mk_priv.c' *p++ = AUTH_MSG_PRIVATE | HOST_BYTE_ORDER; `mk_safe.c' *p++ = AUTH_MSG_SAFE | HOST_BYTE_ORDER; `rd_err.c' if ((*p++ & 1) != HOST_BYTE_ORDER) `rd_priv.c' same `rd_req.c' same `rd_safe.c' same use of ***************** Using -DNOTTYENT in a configuration indicates that all ttys are "secure" for root login. This is reasonable; but some systems have a and a getttynam() that look in something like /etc/ttytab for flags indicating whether the tty is marked "secure". how to hack on rlogind ********************** verify that ksrvutil should add krb_err_base explicitly ******************************************************* ... k_isinst(char*): checks for a valid instance, in ext_srvtab, kpasswd, kinit. Changed June 94 by gnu@cygnus.com to allow "." as valid char in instances. kparse_name no longer has to quote it, but especially in a real, separated-out instance, it is already ok. k_isname: same thing, never used unless we *know* it's only a name. k_isrealm: kdb_init, kpasswd, kinit kcmd.c: kcmd() calls gethostbyname [on arg?], copies the string, then calls krb_realmofhost on the copy. But later, it uses bits of hp... rlogin.c: main() calls krb_realmofhost on host argument, then passes host to kcmd. (rcp, rsh also use it.) login.c: do_krb_login() calls gethostbyname, then copies parts and never reuses the value. However, it calls gethostbyname on its argument, char *host... but that can only come from getopt. kadm_ser_wrap.c: kadm_ser_init() calls gethostbyname, copies the addr into a static, and drops it kadm_cli_wrap.c: kadm_init_link() calls gethostbyname, copies the values, and returns g_phost.c: krb_get_phost() calls gethostbyname on argument char*alias, may call gethostbyaddr on a *copy* of the args, and returns a pointer into space returned by gethostby{name,addr}... sendauth.c: krb_sendauth() calls krb_get_phost() on inst, which is a char* argument. (It then strcpy's it.) kcmd.c: kcmd() calls krb_sendauth() on *ahost, which is from host_save... so it is safe... send_to_kdc.c: send_to_kdc() calls gethostbyname on the value from krb_get_krbhst(), copies adress returns, calls send_recv, and loops around. realmofhost.c: krb_realmofhost() calls krb_get_lrealm, and little else g_krbrlm.c: krb_get_lrealm() calls stdio functions and nothing else how gettimeofday differs on various platforms ********************************************* solaris: int gettimeofday(struct timeval *tp); A -1 return value indicates that an error occurred and errno has been set. sunos4.1.3: int gettimeofday(tp, tzp) struct timeval *tp; struct timezone *tzp; gettimeofday() returns: 0 on success. -1 on failure and sets errno to indicate the error. SCO: gettimeofday(tp, tzp) struct timeval *tp; struct timezone *tzp; A return value of zero indicates that the call succeeded. A return value of -1 indicates that an error occurred, and in this case an error code is stored in the global variable errno. things that showed up in the svr4 port ************************************** SVR4 csh uses TIOCLGET, which is supplied by the ttcompat streams driver (ie. it is a BSD-compatibility function) and ttcompat isn't pushed on pty's by default. Under Solaris, it *is* pushed by default. The ioctl isn't needed, as evidenced by tcsh not using it... csh: ioctl(18, TCGETA, 0x08047C0A) = 0 ioctl(18, TIOCGPGRP, 0x0831EBB4) = 0 ioctl(18, TIOCGETD, 0x0831FD64) Err#22 EINVAL ioctl(17, (('t'<<8)|124), 0x08047BC0) Err#22 EINVAL write(17, " W a r n i n g : n o ".., 64) = 64 /usr/include/sys/filio.h:#define FIOSETOWN _IOW('f', 124, int) /* set owner */ /usr/include/sys/termios.h:#define TIOCLGET (tIOC|124) /* get local modes */ /usr/include/sys/ttold.h:#define TIOCLGET (tIOC|124) /* get l how to build with *only* gnu tools ********************************** config/ms-gnu containing: BISON=/usr/latest/bin/byacc FLEX=/usr/latest/bin/flex LEXLIB=/usr/latest/lib/libfl.a TARGET_CDEFS:= $(TARGET_CDEFS) -DNO_YYLINENO then configure -site=gnu should be a start. Similar work to hack dbm as well. Building Cygnus Kerberos for Unix ********************************* This info is replicated in `README' in the top level of the Kerberos V4 source tree. 1) unpack the sources; the top level directory will be referred to as $(srcdir) 2) if you have gnu make, create a build directory somewhere, and refer to it as $(builddir); if you don't, builddir should be the same as srcdir. 3) cd $(builddir); $(srcdir)/configure # can be relative 4) make depend 5) make all 6) make install DESTDIR=$(buildir)/DESTDIR # must be absolute Now, ./DESTDIR has a usr/kerberos tree. Tar it up and save it - this is an installation kit. (tar cf krb-$(host).tar -C DESTDIR usr) You can then use the installation instructions in `install.texinfo' to install it on your system. Cygnus Kerberos for Microsoft Windows ************************************* This software runs on Microsoft Windows version 3.1. The procedure assumes that you have Microsoft Visual C/C++ 1.0 already installed on your PC system and available on your path. You need to have loaded the large-model libraries with it. Microsoft C 7.0, or Borland C++ x.x might also work with minor tweaks. Also, zip must be available on the UNIX system and PKUNZIP must be available on the PC system. It is also assumed that WINSOCK.DLL is available somewhere on the path. Building this software for Microsoft Windows requires a special configuration procedure at the moment. The first part of the procedure assumes that you have checked out a version of Kerberos on a UNIX system, while the second part, is intended to be performed on a DOS/Windows PC: `*' Copy or unpack the source tree. CD to the src directory. `* make -f Makefile.in kerbsrc.zip' This builds two files with "awk", then uses a pair of "zip" commands to produce a file called kerbsrc.zip `*' Transport kerbsrc.zip to a Windows machine by whatever technique is convenient. Move to the Windows machine to type the rest of the commands. `*' Make a directory and CD there. `*' Put the kerbsrc.zip file in the new directory. `* pkunzip -d kerbsrc.zip' Unpack the kerbsrc.zip file into a directory tree. `* nmake -c -f makefile.in' This will build the DES library, the KRB library, the KADM library, the KSTREAM library, and KERBEROS.DLL, KWIN.EXE, and the WINTEL.EXE program in turn. Note that due to DOS/Windows limitations, any errors are likely to leave you in a directory other than the one in which you started. NMAKE will produce some warnings about file names that are too long and which have been truncated; these can all be ignored. If you make modifications to the Kerberos source tree and wish to migrate those modifications back to UNIX, the following procedure should be followed to insure that all shortened file names are restored to their proper form. The following procedure assumes that you start CDed to the top of the KERBEROS source tree on the PC. * nmake -c clean * pkzip -P -r kerbsrc.zip *.* Move the kerbsrc.zip file the UNIX system kerberos/src directory by whatever technique is convenient. * unzip -a kerbsrc.zip * make -f makefile.in ren2long Note that not all Makefile targets have been implemented under Windows. In particular, `all' and `clean' are the only targets intended to function properly from the command line. Other targets may function correctly but have not been tested extensively. The ticket cache Kerberos for Windows maintains a single ticket cache in the Heap segment of the KERBEROS DLL. Whenever a ticket is present in the cache, the DLL is locked in memory with a call to LoadLibrary. As a result the cache will remain in memory even after the last program which uses KERBEROS.DLL has exited. Only when all tickets are deleted and all programs which called KERBEROS.DLL have exited, will the KERBEROS.DLL library be allowed to unload. Note that the KERBEROS.DLL file will remain in use while the ticket cache contains tickets, making it impossible to overwrite or delete the file. Windows specific implementation All pointers in the Windows implementation are assumed to be FAR pointers. The interface file kerberos.h casts the pointers accordingly. Note that values which are specified as int will be 16 bits under Windows. Due to the need to formally externalize calls from a DLL, a number of routines which are only used in kpasswd on UNIX need to be made visible outside the KERBEROS.DLL. The routines are used by the KWIN program on Windows. These routines reside within the kadm library and are not usually called by users. int kadm_change_pw(des_cblock key); int kadm_change_pw2(des_cblock key, char *password, unsigned char **ret_st); int kadm_init_link(char *pwserv_name, char *krb_master, char *realm); In addition an API call has been added under Windows to give an interactive application notification when the contents of the ticket cache change. The call returns the number of the unique message which will be sent to all top level windows after the ticket cache changes. The KWIN program uses this message to keep its display current. The prototype is as follows: int krb_get_notification_message(void) Time The Kerberos library operates on the assumption that time begins at 00:00 January 1, 1970. All times expected and returned are in these units independent of what the C library returns. Note that C7.0 starts time at January 1, 1900. Kerberos reads time from the hardware clock using BIOS interrupt 0x1A. This avoids problems with the software clock drifting as the system runs. Known problems WSASetBlockingHook doesn't work in FTP and NetManage WINSOCKs This results in non-cancelable calls to gethostname. Both companies are working on a fix for me. NetManage does not have a moveable heap. The NetManage implementation of WINSOCK.DLL has a relatively small heap initial heap size (1k) and a non-moveable DATA segment, presumably due to the lack of the MOVEABLE keyword in the .DEF file used to build the DLL. Windows tries to load the users environment into the heap when it initializes a DLL if the heap isn't moveable, it may not be possible to grow the heap in order to load the DLL, resulting in a load failure of WINSOCK and the program which called WINSOCK. Here is later documentation from John Rivlin on the process by which the Cygnus 95Q1 WIndows release was built: Subject: More Windoze stuff I believe it is now possible to create and distribute the various types of Windows deliverables. I tried the windoc target in the doc directory and it didnt seem to find a texi2html command. (Texi2html in /tfm/bin or available at `http://asis01.cern.ch/infohtml/texi2html.html'. The version we used has enhancements (-no-split) beyond the latest public release at this time (1.31).) Following is a description of how to perform the various operations necessary to build and distribute CNS for Windows: How download the source to a Windows machine: This will create a file called krbsrc.zip which can be downloaded to the PC any way you like. Note that the kerbsrc.zip file is the source deliverable which should be included on a deliverable floppy. 1) cd src 2) make -f Makefile.in kerbsrc.zip How to unpack the kerbsrc.zip file: 1) Create a directory on the PC and kerbsrc.zip file in it 2) pkunzip -d kerbsrc.zip How to build the binaries on the PC: This will compile and link all components of the CNS system. 1) nmake -f Makefile.in How to build the floppy disk binary distribution files: This procedure must be run after all compilations and links have taken place. The procedure copies all necessary binary files, the include files which will be necessary to use CNS in an application and the *.TXT and *.HTM files from the DOC directory to a directory called FLOPPY. 1) nmake install How to build a binary distribution file appropriate for network distribution. This procedure creates a file called kerbdist.zip which contains the files from the floppy directory. 1) nmake dist Uploading the sources from a PC back into the unix source tree. On the PC: 1) nmake clean 2) del kerbsrc.zip 3) pkzip -P -r kerbsrc.zip Upload the kerbsrc.zip file to the Unix system. 1) cd src 2) unzip -a -o kerbsrc.zip 3) make -f makefile.in ren2long Note that the floppy directory may be deleted. Also note that the that the contents of the doc directory should be moved to the doc directory which exists one level above the src directory and be deleted from the src directory. To create a distribution floppy, copy all the files from the FLOPPY directory to the root directory of the floppy. Then copy the kerbsrc.zip file to the root directory of the floppy. Cygnus Kerberos for Macintosh with MPW ************************************** This software runs on the Apple Macintosh using MacOS 7.1. Parts are known to build with MPW C version 3.2 (so far). We used Intercon's NFS implementation to share the files between Mac and Unix (rather than copying the tree to Mac after running the Unix part of the configuration below), despite its various bugs. At the moment, the driver can only be built in Think C with a little help from MPW. Please refer to the next section, which documents the Think C build process. If we could get driver data segments working in MPW, we could build the whole thing there. Building this software for Macintosh requires a special configuration procedure at the moment. Here it is: `' Copy or unpack the source tree. Change directories to the top-level (kerberos) directory. `./configure m68k-apple-macos7.1' This will produce files throughout the tree called `MakeFile' for use with MPW. It also leaves a Makefile suitable for Unix use as `Makefile.uni' in each directory. ``make -f Makefile.in unixmac'' This builds a few files that need Unix tools like sed and awk. Eventually this will be able to happen on the Mac. `' Now transfer the directory to the Mac, and move to there to type the rest of the commands. ``directory lib:des; make'' Make the DES library for Macintosh. ``directory ::krb; make'' Make the KRB library for Macintosh. ``directory :::kuser; make kinit'' Build the scaffolding test for the software. This is as far as we have gotten as I type this. Eventually a driver and a GUI and other software will be built as part of this tree. Cygnus Kerberos for Macintosh with Think C ****************************************** This software runs on the Apple Macintosh using MacOS 7.1. It is known to build with Think C version 6.0 (assisted in spots by MPW C version 3.2 and Unix). We used Intercon's NFS implementation to share the files between Mac and Unix (rather than copying the tree to Mac after running the Unix part of the configuration below), despite its various bugs. Building this software for Macintosh requires a special configuration procedure (the legendary "simple 15-step process") at the moment. Here it is: `' Copy or unpack the source tree on a Unix machine. Change directories to the top-level (kerberos) directory. `./configure m68k-apple-macos7.1' This will produce files throughout the tree called `MakeFile' for use with MPW. It also leaves a Makefile suitable for Unix use as `Makefile.uni' in each directory. ``make -f Makefile.in unixmac'' This builds a few files that need Unix tools like sed and awk. Eventually this will be able to happen on the Mac. `' Now transfer the directory to the Mac, and move to there to type the rest of the commands. `' In order for Lightspeed C to locate the kerberos include files, you will need to create aliases for the directories which contain them. `' Open the folder `kerberos/src' and make a new folder there named `Aliases'. Make an alias of the `src/include' folder and put it into the `Aliases' folder. `' Open the `src/lib folder'. Hold down the option key and move a copy of the `Aliases' folder from `kerberos/src' into the `lib/krb' folder and into `the lib/des' folder. `' Still in the `src/lib folder', make an alias for the `lib/des folder' and for the `lib/krb' folder. Move these two aliases into the `Aliases' folder in `kerberos/src'. Close the `src/lib' folder. `' Hold down the option key and move a copy of the `Aliases' folder from `kerberos/src'into the `src/driver' directory. Finally move the `Aliases' folder from `kerberos/src'into the `src/kuser' directory. `' Go to the lib/des directory. Run Think C on DesLib-project-A4, and select "Bring up to date" from the Project menu. Avoid the temptation to select "Build Library", since that doesn't work. `' Go to the lib/krb directory. Run Think C on KrbLib-project-A4, "Bring up to date". `' Build a 4-byte ANSI library for use in a driver: In the Think C libraries, make a copy of the ANSI-A4 library and rename it ANSI-A4-4byte. Open the ANSI-A4-4byte project and select "Source -> add files". Scroll down the file list to the "C sources" folder, open that folder, select alloc.c, and click the Add button followed by the done button. Next select "Edit -> options -> Think C...", click the page changer until you see "4 byte ints", select it, and press done. Select "Project -> bring up to date". `' Go to the driver directory. Run MPW in this directory. "make assembly" to build assembler language files into object files. `' Still in the driver directory. Run Think C on LoadDriver-project, "Build Code Resource" Select "Update" and "save" accepting the default file name. Run Think C on Driver-project, "Build Device Driver". Select smart link and "save" accepting the default file name for the result. `' Run MPW. Change directories to the driver directory, and run "make 'CNS Kerberos'" to put all the pieces together with rez and SetFile. Don't forget the quotes around 'CNS Kerberos'. Copy CNS Kerberos to the Extensions folder of your startup disk. Reboot. `' To build the graphical interface to authentication and configuration, run MPW and go to the src/kconfig/kconfig directory. Type "make kconfig" and execute the resulting commands. The application file this builds, "KConfig", can be copied to any location you choose in the file system. Eventually Telnet will be built as part of this tree. At the moment, a binary is checked-in in src/mactelnet. To package it up for release, on a Unix system after building the Mac, go to the top level and type `mkdir floppy; make -i install-mac DESTDIR=`pwd`/floppy'. Then rename the "floppy" dir to the release name, e.g. cns-95q1. You can copy it directly to a floppy, or run the directory into StuffIt (in hierarchical "folder" mode so it unpacks into a single folder). Currently we aren't building 'Kerberos Client Preferences' in the driver subdirectory; it gets built by actually running the driver and adding a realm. This is why you have to use `make -i install-mac' (and then manually copy Kerberos Client Preferences to the floppy directory. This is a driver bug; it should work if there is no preferences file (reading the defaults from the CNS Kerberos file's resource fork), but it doesn't. Cygnus Extensions to Kerberos V4 ******************************** Hooks to support Preauthentication in V4 ======================================== There is interest in a simple method of reducing the risk of the offline password-guessing attack described originally by Steve Bellovin. While Kerberos Version 5 has full preauthentication support, the technique described here is of more limited use. In order to maximize backwards compatibility, the entire protocol change consists of one block of data appended to the end of an initial ticket request. This preauthentication information will be ignored by a server which doesn't support it, resulting in that server providing tickets regardless. In order to provide hooks for user-defined preauthentication, two functions have been added to the library. Currently, stub implementations that pass the constant string "PREAUTH" are used; these will need to be replaced by code that implements the desired preauthentication method. krb_rd_preauth -------------- `krb_rd_preauth' is used by the server to decode a block of preauthentication data. It is passed `pkt' The original packet as received by the server (since the verifying the preauthentication response may depend on knowing what ticket is being requested). `preauth_p' A pointer to the actual preauthentication data. `preauth_len' The size of the preauthentication data (based on the number of bytes remaining in the packet.) This function is only called inside the KDC itself. If it returns a non-zero value, the preauthentication is considered to have failed; for this purpose, two new protocol error values have been selected: `KERB_ERR_PREAUTH_SHORT' The preauthentication data was truncated, based on the length supplied. `KERB_ERR_PREAUTH_MISMATCH' The preauthentication data was incorrect. The KDC only calls this function if it is invoked with the `-P' flag, allowing one KDC to support both preauthenticated and non-preauthenticated operation. krb_mk_preauth -------------- `krb_mk_preauth' is used by other functions in the kerberos library to produce a preauthentication block. It is passed `preauth_p' Pointer to preauthentication block, passed by reference, initialized (and allocated) by this function. `preauth_len' Length of preauthentication block (in bytes), passed by reference, initialized by this function. `key_proc' Function that creates the key; arguments are four strings (user, instance, realm, password) and a C_block (key) which is filled in with the actual key. `aname' Name of ticket requested. Possibly useful in generating preauthentication data. `inst' Instance of ticket requested. Possibly useful in generating preauthentication data. `realm' Realm in which ticket was requested. Possibly useful in generating preauthentication data. `password' Password string, if already supplied, or NULL. `key' Key (C_Block) if already supplied, or NULL. This function is only called from `krb_get_pw_in_tkt_preauth' which is used by `kinit -p' and `krb_get_svc_in_tkt_preauth' which is used by `krb_svc_init_preauth' or directly by clients which need to generate their own tickets. krb_free_preauth ---------------- Finally, `krb_free_preauth' cleans up any storage allocated by `krb_mk_preauth' after the preauthentication data is sent to the KDC. It is passed `preauth_p' Pointer to preauthentication data. `preauth_len' Length of preauthentication data. It is called from both places that `krb_mk_preauth' is, immediately after the values are used. Internal data structures of the kadmin protocol *********************************************** This information is from `src/kadmin/Design.txt'. This node attempts to present the internal functioning of the kerberos admin server and interface. Outer interface (programmers interface) `kadm_mod_entry(vals *old_dat, vals *new_dat)' returns `vals *cur_dat' Sends a command telling the server to change all entries which match old_dat to entries matching new_dat. Returns in cur_dat the actual current values of the modified records. implemented with calls to `_vals_to_stream, _send_out, _take_in, and _stream_to_vals, _interpret_ret'. Inner calls: `_vals_to_stream (vals *, unsigned char *)' Converts a vals structure to a byte stream for transmission over the net. `_stream_to_vals (unsigned char *, vals *)' Converts a byte stream recieved into a vals structure. Serving multiple realms from one server *************************************** (This has a different emphasis than the existing documentation as it covers specifically those features which deal with serving multiple realms off of one machine. Little of this will be of interest to someone setting up a standard release in /usr/kerberos.) Choose a database pathname. This is a full pathname for a dbm database file; if you use, for example, /site/db/test then the various programs will open /site/db/test.dir and /site/db/test.pag as needed. If you'll be using kstash in order to start the kdc and kadmind unattended, choose a location to stash the key. By default, /.k is used, but other values may make more sense (especially when not running the server as root.) Choose a port number. If you're not running the kdc or kadmind as root, then you must choose a port number above 1023; the default, 750, requires that the server be run as root. If you are running multiple servers on the same host, keep in mind that you're reserving two numbers, the given one for the KDC, and the one immediately above it for the kadmind. (If you are setting up a slave server, the slave itself won't be running a kadmind and thus doesn't need this additional port.) Choose a location to store logs. You may have privacy needs that determine more specifically where these need to be stored. There is a seperate log file for the kdc and for the kadmind. If you're running kadmind, choose a location to store the access control lists it uses to authorize administrators. This is a directory, which will contain the files admin_acl.add, admin_acl.mod, and admin_acl.get. Choose a location for the "krb.conf" configuration file. Normally, applications will look for /usr/kerberos/lib/krb.conf. If you can't use that location, set the environment variable KRB_CONF to the pathname you chose. [bug: support for handling the krb.realms file the same way is currently absent.] Also, as in a normal setup, you'll need to choose a realm name. The necessary commands will follow. Note that lines beginning with # are not commands but comments; lines begining with % are csh commands, and intervening text is usually input to those commands. # Choices made, per above: # database path: /site/krb/db/test # master key stash: /site/krb/stash/test # kadmind acl path: /site/krb/acl/test # port number: 3882 # log path: /site/krb/log/ # krb.conf: /site/krb/krb.conf # realm name: TEST.CH # server hostname: beech # # First, set up krb.conf. % setenv KRB_CONF /site/krb/krb.conf % cat > $KRB_CONF TEST.CH TEST.CH beech:3882 admin server ^D % kdb_init TEST.CH /site/krb/db/test % kstash -k /site/krb/stash/test -d /site/krb/db/test % kdb_edit -n -k /site/krb/stash/test /site/krb/db/test # If you'll be running kadmin, then simply add one user's admin instance # here; we'll call it "ebs.admin" for now. # If you won't be running kadmin, then add all of your keys here. # If you'll be running kprop, be sure not to forget the rcmd entry. # % kerberos -P -i -k /site/krb/stash/test -l /site/krb/log/krb.log -u 3882 /site/krb/db/test & # # Note that -P causes the kdc to reject requests without preauthentication, # and that -i causes it to ignore ip addresses in authenticators (this should # only be used when you're forwarding tickets around deliberately.) # Note also that the database is the last argument, it doesn't have a specifier. # % cat > /site/krb/acl/test/admin_acl.add ebs.admin@TEST.CH ^D % cp /site/krb/acl/test/admin_acl.add /site/krb/acl/test/admin_acl.mod % cp /site/krb/acl/test/admin_acl.add /site/krb/acl/test/admin_acl.get % kadmind -k /site/krb/stash/test -n -d /site/krb/db/test -u 3882 -a /site/krb/acl/test -f /site/krb/log/test & # # Note in particular that -u 3882 matches the argument given to the kdc... # since the client has to calculate the real port number from the one given # in the log file, we have the kadmind calculate it too. # % kadmin -p -u ebs # # Here, the -p is needed only because we started the kdc with -P. # The -u ebs causes us to use the name "ebs.admin"; if we were using an # account with the unix login name ebs, we could have skipped that argument. # ank rcmd.beech # add_new_key tells kadmin to add a new key to the database under a given # name. rcmd is used for rlogin, rsh, and kprop, so we add it now to cover # kprop.