]> CyberLeo.Net >> Repos - FreeBSD/releng/10.0.git/blob - usr.sbin/nfscbd/nfscbd.8
- Copy stable/10 (r259064) to releng/10.0 as part of the
[FreeBSD/releng/10.0.git] / usr.sbin / nfscbd / nfscbd.8
1 .\" Copyright (c) 2009 Rick Macklem, University of Guelph
2 .\" All rights reserved.
3 .\"
4 .\" Redistribution and use in source and binary forms, with or without
5 .\" modification, are permitted provided that the following conditions
6 .\" are met:
7 .\" 1. Redistributions of source code must retain the above copyright
8 .\"    notice, this list of conditions and the following disclaimer.
9 .\" 2. Redistributions in binary form must reproduce the above copyright
10 .\"    notice, this list of conditions and the following disclaimer in the
11 .\"    documentation and/or other materials provided with the distribution.
12 .\"
13 .\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
14 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
16 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
17 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
18 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
19 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
20 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
21 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
22 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
23 .\" SUCH DAMAGE.
24 .\"
25 .\" $FreeBSD$
26 .\"
27 .Dd April 25, 2009
28 .Dt NFSCBD 8
29 .Os
30 .Sh NAME
31 .Nm nfscbd
32 .Nd
33 .Tn NFSv4
34 client side callback daemon
35 .Sh SYNOPSIS
36 .Nm nfscbd
37 .Op Fl p Ar port_number
38 .Op Fl P Ar client_principal
39 .Sh DESCRIPTION
40 .Nm
41 runs on a client using
42 .Tn NFSv4
43 to handle callback requests from the NFSv4 server.
44 If no
45 .Nm
46 is running, NFSv4 mounts will still work, but the server will never issue
47 Open Delegations to the client.
48 .Pp
49 One callback server and one master server
50 are always started.
51 .Pp
52 The following options are available:
53 .Bl -tag -width Ds
54 .It Fl p Ar port_number
55 Specifies what port# the callback server should use.
56 .It Fl P Ar client_principal
57 Specifies the host based principal name to be used as the target for
58 callbacks over RPCSEC_GSS. For KerberosV, it must be in the client's
59 default keytab file.
60 This client_principal should be the same one specified by the
61 .Cm gssname
62 argument being used by nfsv4 mounts.
63 If you do not specify this argument, callbacks will still work over AUTH_SYS,
64 which is what many extant servers use even for RPCSEC_GSS mounts, as of 2009.
65 .El
66 .Pp
67 For example,
68 .Dq Li "nfscbd -p 7654 -P root"
69 starts the daemon to handle callbacks on port# 7654 and is using the host based
70 principal root@<client-host>.<dns-domain> as the callback target.
71 .Pp
72 .Nm
73 listens for service requests at the port
74 defined by NFSV4_CBPORT in /usr/include/fs/nfs/nfs.h, unless
75 .Fl p
76 has been specified.
77 For more information on what callbacks and Open Delegations do, see
78 .%T "Network File System (NFS) Version 4 Protocol" ,
79 RFC3530.
80 .Sh EXIT STATUS
81 .Ex -std
82 .Sh SEE ALSO
83 .Xr nfsv4 4 ,
84 .Xr mount_nfs 8
85 .Sh HISTORY
86 First introduced with the experimental nfs client for NFSv4 support in 2009.