]> git.decadent.org.uk Git - nfs-utils.git/blob - utils/gssd/gssd.man
Allow any credential to be used for machine credentials
[nfs-utils.git] / utils / gssd / gssd.man
1 .\"
2 .\" rpc.gssd(8)
3 .\"
4 .\" Copyright (C) 2003 J. Bruce Fields <bfields@umich.edu>
5 .TH rpc.gssd 8 "14 Mar 2007"
6 .SH NAME
7 rpc.gssd \- rpcsec_gss daemon
8 .SH SYNOPSIS
9 .B "rpc.gssd [-f] [-n] [-k keytab] [-p pipefsdir] [-v] [-r] [-d ccachedir]"
10 .SH DESCRIPTION
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
16 .B rpc.gssd
17 to establish security contexts.  The
18 .B rpc.gssd
19 daemon uses files in the rpc_pipefs filesystem to communicate with the kernel.
20
21 .SH OPTIONS
22 .TP
23 .B -f
24 Runs
25 .B rpc.gssd
26 in the foreground and sends output to stderr (as opposed to syslogd)
27 .TP
28 .B -n
29 By default,
30 .B rpc.gssd
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 attemtpting to mount an nfs filesystem requiring Kerberos
39 authentication.
40 .TP
41 .B -k keytab
42 Tells
43 .B rpc.gssd
44 to use the keys found in
45 .I keytab
46 to obtain "machine credentials".
47 The default value is "/etc/krb5.keytab".
48 Previous versions of
49 .B rpc.gssd
50 used only "nfs/*" keys found within the keytab.
51 Now, the first keytab entry for each distinct Kerberos realm
52 within the keytab is used.  This means that an NFS client
53 no longer needs an "nfs/hostname" principal and keytab entry,
54 but can instead use a "host/hostname" (or any other) keytab
55 entry that is available.
56 .TP
57 .B -p path
58 Tells
59 .B rpc.gssd
60 where to look for the rpc_pipefs filesystem.  The default value is
61 "/var/lib/nfs/rpc_pipefs".
62 .TP
63 .B -d directory
64 Tells
65 .B rpc.gssd
66 where to look for kerberos credential files.  The default value is "/tmp".
67 .TP
68 .B -v
69 Increases the verbosity of the output (can be specified multiple times).
70 .TP
71 .B -r
72 If the rpcsec_gss library supports setting debug level,
73 increases the verbosity of the output (can be specified multiple times).
74 .SH SEE ALSO
75 .BR rpc.svcgssd(8)
76 .SH AUTHORS
77 .br
78 Dug Song <dugsong@umich.edu>
79 .br
80 Andy Adamson <andros@umich.edu>
81 .br
82 Marius Aamodt Eriksen <marius@umich.edu>
83 .br
84 J. Bruce Fields <bfields@umich.edu>