4 .\" Copyright (C) 2003 J. Bruce Fields <bfields@umich.edu>
5 .TH rpc.gssd 8 "14 Mar 2007"
7 rpc.gssd \- rpcsec_gss daemon
9 .B "rpc.gssd [-f] [-n] [-k keytab] [-p pipefsdir] [-v] [-r] [-d ccachedir]"
11 The rpcsec_gss protocol gives a means of using the gss-api generic security
12 api to provide security for protocols using rpc (in particular, nfs). Before
13 exchanging any rpc requests using rpcsec_gss, the rpc client must first
14 establish a security context. The linux kernel's implementation of rpcsec_gss
15 depends on the userspace daemon
17 to establish security contexts. The
19 daemon uses files in the rpc_pipefs filesystem to communicate with the kernel.
26 in the foreground and sends output to stderr (as opposed to syslogd)
31 treats accesses by the user with UID 0 specially, and uses
32 "machine credentials" for all accesses by that user which
33 require Kerberos authentication.
34 With the \-n option, "machine credentials" will not be used
35 for accesses by UID 0. Instead, credentials must be obtained
36 manually like all other users. Use of this option means that
37 "root" must manually obtain Kerberos credentials before
38 attempting to mount an nfs filesystem requiring Kerberos
44 to use the keys found in
46 to obtain "machine credentials".
47 The default value is "/etc/krb5.keytab".
51 used only "nfs/*" keys found within the keytab.
52 To be more consistent with other implementations, we now look for
53 specific keytab entries. The search order for keytabs to be used
54 for "machine credentials" is now:
56 root/<hostname>@<REALM>
58 nfs/<hostname>@<REALM>
60 host/<hostname>@<REALM>
62 root/<anyname>@<REALM>
66 host/<anyname>@<REALM>
71 where to look for the rpc_pipefs filesystem. The default value is
72 "/var/lib/nfs/rpc_pipefs".
77 where to look for Kerberos credential files. The default value is "/tmp".
78 This can also be a colon separated list of directories to be searched
79 for Kerberos credential files. Note that if machine credentials are being
80 stored in files, then the first directory on this list is where the
81 machine credentials are stored.
84 Increases the verbosity of the output (can be specified multiple times).
87 If the rpcsec_gss library supports setting debug level,
88 increases the verbosity of the output (can be specified multiple times).
91 Kerberos tickets from this
93 will be preferred when scanning available credentials cache files to be
94 used to create a context. By default, the default realm, as configured
95 in the Kerberos configuration file, is preferred.
98 Timeout, in seconds, for kernel gss contexts. This option allows you to force
99 new kernel contexts to be negotiated after
101 seconds, which allows changing Kerberos tickets and identities frequently.
102 The default is no explicit timeout, which means the kernel context will live
103 the lifetime of the Kerberos service ticket used in its creation.
108 Dug Song <dugsong@umich.edu>
110 Andy Adamson <andros@umich.edu>
112 Marius Aamodt Eriksen <marius@umich.edu>
114 J. Bruce Fields <bfields@umich.edu>