4 .\" Copyright (C) 1999 Olaf Kirch <okir@monad.swb.de>
5 .\" Modified by Paul Clements, 2004.
6 .TH rpc.mountd 8 "31 Aug 2004"
8 rpc.mountd \- NFS mount daemon
10 .BI "/usr/sbin/rpc.mountd [" options "]"
14 program implements the NFS mount protocol. When receiving a MOUNT
15 request from an NFS client, it checks the request against the list of
16 currently exported file systems. If the client is permitted to mount
19 obtains a file handle for requested directory and returns it to
21 .SS Exporting NFS File Systems
22 Making file systems available to NFS clients is called
25 Usually, a file system and the hosts it should be made available to
30 whenever the system is booted. The
32 command makes export information available to both the kernel NFS
37 Alternatively, you can export individual directories temporarily
43 For every mount request received from an NFS client,
47 file. When receiving an unmount request, that entry is removed.
49 However, this file is mostly ornamental. One, the client can continue
50 to use the file handle even after calling
52 UMOUNT procedure. And two, if a client reboots without notifying
54 a stale entry will remain in
58 .B \-d kind " or " \-\-debug kind
59 Turn on debugging. Valid kinds are: all, auth, call, general and parse.
61 .B \-F " or " \-\-foreground
62 Run in foreground (do not daemonize)
64 .B \-f " or " \-\-exports-file
65 This option specifies the exports file, listing the clients that this
66 server is prepared to serve and parameters to apply to each
69 By default, export information is read from
72 .B \-h " or " \-\-help
73 Display usage message.
75 .B \-o num " or " \-\-descriptors num
76 Set the limit of the number of open file descriptors to num. The
77 default is to leave the limit unchanged.
79 .B \-N " or " \-\-no-nfs-version
80 This option can be used to request that
82 do not offer certain versions of NFS. The current version of
84 can support both NFS version 2 and the newer version 3. If the
85 NFS kernel module was compiled without support for NFSv3,
87 must be invoked with the option
88 .B "\-\-no-nfs-version 3" .
90 .B \-n " or " \-\-no-tcp
91 Don't advertise TCP for mount.
94 Ignored (compatibility with unfsd??).
96 .B \-p " or " \-\-port num
99 to bind to the specified port num, instead of using the random port
100 number assigned by the portmapper.
102 .B \-H " or " \-\-ha-callout prog
103 Specify a high availability callout program, which will receive callouts
104 for all client mount and unmount requests. This allows
106 to be used in a High Availability NFS (HA-NFS) environment. This callout is not
107 needed (and should not be used) with 2.6 and later kernels (instead,
108 mount the nfsd filesystem on
111 The program will be called with 4 arguments.
116 depending on the reason for the callout.
117 The second will be the name of the client performing the mount.
118 The third will be the path that the client is mounting.
119 The last is the number of concurrent mounts that we believe the client
122 .BI "\-s," "" " \-\-state\-directory\-path " directory
123 specify a directory in which to place statd state information.
124 If this option is not specified the default of
128 .BI "\-r," "" " \-\-reverse\-lookup"
129 mountd tracks IP addresses in the rmtab, and when a DUMP request is made (by
130 someone running showmount -a, for instance), it returns IP addresses instead
131 of hostnames by default. This option causes mountd to do a reverse
132 lookup on each IP address and return that hostname instead. Enabling this can
133 have a substantial negative effect on performance in some situations.
135 .BR "\-t N" " or " "\-\-num\-threads=N"
136 This option specifies the number of worker threads that rpc.mountd
137 spawns. The default is 1 thread, which is probably enough. More
138 threads are usually only needed for NFS servers which need to handle
139 mount storms of hundreds of NFS mounts in a few seconds, or when
140 your DNS server is slow or unreliable.
142 .B \-V " or " \-\-nfs-version
143 This option can be used to request that
145 offer certain versions of NFS. The current version of
147 can support both NFS version 2 and the newer version 3.
149 .B \-v " or " \-\-version
154 .B \-g " or " \-\-manage-gids
155 Accept requests from the kernel to map user id numbers into lists of
156 group id numbers for use in access control. An NFS request will
157 normally (except when using Kerberos or other cryptographic
158 authentication) contains a user-id and a list of group-ids. Due to a
159 limitation in the NFS protocol, at most 16 groups ids can be listed.
162 flag, then the list of group ids received from the client will be
163 replaced by a list of group ids determined by an appropriate lookup on
164 the server. Note that the 'primary' group id is not affected so a
166 command on the client will still be effective. This function requires
167 a Linux Kernel with version at least 2.6.21.
169 .SH TCP_WRAPPERS SUPPORT
172 version is protected by the
174 library. You have to give the clients access to
176 if they should be allowed to use it. To allow connects from clients of
177 the .bar.com domain you could use the following line in /etc/hosts.allow:
181 You have to use the daemon name
183 for the daemon name (even if the binary has a different name).
185 For further information please have a look at the
198 .BR /var/lib/nfs/xtab .
200 Olaf Kirch, H. J. Lu, G. Allan Morris III, and a host of others.