aboutsummaryrefslogtreecommitdiff
path: root/src/kdc/krb5kdc.M
diff options
context:
space:
mode:
authorJohn Kohl <jtkohl@mit.edu>1990-05-29 16:47:11 +0000
committerJohn Kohl <jtkohl@mit.edu>1990-05-29 16:47:11 +0000
commitad891c396d30628b7eb893f24ba4984c0363d685 (patch)
tree57e011f7a2ac069fc048ccc40f6002f57e9f8ff3 /src/kdc/krb5kdc.M
parent85904bdecd2cef74ead65157dbfc0e3a94d6d7fc (diff)
downloadkrb5-ad891c396d30628b7eb893f24ba4984c0363d685.zip
krb5-ad891c396d30628b7eb893f24ba4984c0363d685.tar.gz
krb5-ad891c396d30628b7eb893f24ba4984c0363d685.tar.bz2
*** empty log message ***
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@958 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/kdc/krb5kdc.M')
-rw-r--r--src/kdc/krb5kdc.M81
1 files changed, 81 insertions, 0 deletions
diff --git a/src/kdc/krb5kdc.M b/src/kdc/krb5kdc.M
new file mode 100644
index 0000000..c542e14
--- /dev/null
+++ b/src/kdc/krb5kdc.M
@@ -0,0 +1,81 @@
+.\" $Source$
+.\" $Author$
+.\" $Id$
+.\" Copyright 1990 by the Massachusetts Institute of Technology.
+.\"
+.\" For copying and distribution information, please see the file
+.\" <krb5/copyright.h>.
+.\"
+.TH KRB5KDC 8 "Kerberos Version 5.0" "MIT Project Athena"
+.SH NAME
+krb5kdc \- Kerberos V5 KDC
+.SH SYNOPSIS
+.B krb5kdc
+[
+.B \-r
+.I realm
+] [
+.B \-d
+.I dbname
+] [
+.B \-k
+.I keytype
+] [
+.B \-M
+.I mkeyname
+] [
+.B \-R
+.I replycache
+] [
+.B \-m
+]
+.br
+.SH DESCRIPTION
+.I krb5kdc
+is the Kerberos version 5 Authentication Service and Key Distribution
+Center (AS/KDC).
+.PP
+The
+.B \-r
+.I realm
+option specifies the realm for which the server should provide service;
+by default the realm returned by
+.IR krb5_default_local_realm (3)
+is used.
+.PP
+The
+.B \-d
+.I dbname
+option specifies the name under which the principal database can be found; by
+default the database is in DEFAULT_DBM_FILE (normally /krb5/principal).
+.PP
+The
+.B \-k
+.I keytype
+option specifies the key type (as an ascii representation of a decimal
+number) of the master key in the database; the default is KEYTYPE_DES.
+.PP
+The
+.B \-M
+.I mkeyname
+option specifies the principal name for the master key in the database;
+the default is KRB5_KDB_M_NAME (usually "K/M" in the KDC's realm).
+.PP
+The
+.B \-R
+option specifies the replay cache to be used; the default is KDCRCACHE
+(usually "dfl:krb5kdc_rcache").
+.PP
+The
+.B \-m
+option specifies that the master database password should be fetched
+from the keyboard rather than from a file on disk.
+.SH SEE ALSO
+krb5(3), kdb5_create(8), kdb5_stash(8)
+.SH BUGS
+Doesn't yet do v4 compatibility.
+
+Doesn't yet do inter-realm stuff properly.
+
+It should fork and go into the background when it finishes reading the
+master password from the terminal.