1 .TH EXPORTS 5 "28 October 1999"
4 exports \- NFS file systems being exported (for Kernel based NFS)
10 serves as the access control list for file systems which may be
11 exported to NFS clients. It is used by
13 to give information to
15 and to the kernel based NFS file server daemon
18 The file format is similar to the SunOS
20 file, except that several additional options are permitted. Each line
21 contains an export point and a list of machine or netgroup names allowed
22 to mount the file system at that point. An optional parenthesized list
23 of export parameters may follow each machine name. Blank lines are
24 ignored, and a # introduces a comment to the end of the line. Entries may
25 be continued across newlines using a backslash.
27 .SS Machine Name Formats
28 NFS clients may be specified in a number of ways:
30 This is the most common format. You may specify a host either by an
31 abbreviated name recognized be the resolver, the fully qualified domain
32 name, or an IP address.
34 NIS netgroups may be given as
36 Only the host part of each
37 netgroup members is consider in checking for membership. Empty host
38 parts or those containing a single dash (\-) are ignored.
40 Machine names may contain the wildcard characters \fI*\fR and \fI?\fR.
41 This can be used to make the \fIexports\fR file more compact; for instance,
42 \fI*.cs.foo.edu\fR matches all hosts in the domain \fIcs.foo.edu\fR. However,
43 these wildcard characters do not match the dots in a domain name, so the
44 above pattern does not include hosts such as \fIa.b.cs.foo.edu\fR.
46 You can also export directories to all hosts on an IP (sub-) network
47 simultaneously. This is done by specifying an IP address and netmask pair
50 where the netmask can be specified in dotted-decimal format, or as a
51 contiguous mask length (for example, either `/255.255.252.0' or `/22' appended
52 to the network base address result in identical subnetworks with 10 bits of
56 '''This is a special ``hostname'' that identifies the given directory name
57 '''as the public root directory (see the section on WebNFS in
59 '''for a discussion of WebNFS and the public root handle). When using this
62 '''must be the only entry on this line, and must have no export options
63 '''associated with it. Note that this does
65 '''actually export the named directory; you still have to set the exports
66 '''options in a separate entry.
68 '''The public root path can also be specified by invoking
71 '''.B \-\-public\-root
72 '''option. Multiple specifications of a public root will be ignored.
76 understands the following export options:
79 This option requires that requests originate on an internet port less
80 than IPPORT_RESERVED (1024). This option is on by default. To turn it
85 Allow both read and write requests on this NFS volume. The
86 default is to disallow any request which changes the filesystem.
87 This can also be made explicit by using
92 This option requests that all file writes be committed to disc before
93 the write request completes. This is required for complete safety of
94 data in the face of a server crash, but incurs a performance hit.
95 The default is to allow the server to write the data out whenever it
96 is ready. This can be explicitly requested with the
100 This option only has effect if
102 is also set. The NFS server will normally delay committing a write request
103 to disc slightly if it suspects that another related write request may be in
104 progress or may arrive soon. This allows multiple write requests to
105 be committed to disc with the one operation which can improve
106 performance. If an NFS server received mainly small unrelated
107 requests, this behaviour could actually reduce performance, so
109 is available to turn it off.
110 The default can be explicitly requested with the
114 This option is based on the option of the same name provided in IRIX
115 NFS. Normally, if a server exports two filesystems one of which is
116 mounted on the other, then the client will have to mount both
117 filesystems explicitly to get access to them. If it just mounts the
118 parent, it will see an empty directory at the place where the other
119 filesystem is mounted. That filesystem is "hidden".
123 option on a filesystem causes it not to be hidden, and an
124 appropriately authorised client will be able to move from the parent to
125 that filesystem without noticing the change.
127 However, some NFS clients do not cope well with this situation as, for
128 instance, it is then possible for two files in the one apparent
129 filesystem to have the same inode number.
133 option is currently only effective on
135 exports. It does not work reliably with netgroup, subnet, or wildcard
138 This option can be very useful in some situations, but it should be
139 used with due care, and only after confirming that the client system
140 copes with the situation effectively.
142 The option can be explicitly disabled with
146 This option disables subtree checking, which has mild security
147 implications, but can improve reliability is some circumstances.
149 If a subdirectory of a filesystem is exported, but the whole
150 filesystem isn't then whenever a NFS request arrives, the server must
151 check not only that the accessed file is in the appropriate filesystem
152 (which is easy) but also that it is in the exported tree (which is
153 harder). This check is called the
156 In order to perform this check, the server must include some
157 information about the location of the file in the "filehandle" that is
158 given to the client. This can cause problems with accessing files that
159 are renamed while a client has them open (though in many simple cases
162 subtree checking is also used to make sure that files inside
163 directories to which only root has access can only be accessed if the
164 filesystem is exported with
166 (see below), even the file itself allows more general access.
168 As a general guide, a home directory filesystem, which is normally
169 exported at the root and may see lots of file renames, should be
170 exported with subtree checking disabled. A filesystem which is mostly
171 readonly, and at least doesn't see many file renames (e.g. /usr or
172 /var) and for which subdirectories may be exported, should probably be
173 exported with subtree checks enabled.
175 The default of having subtree checks enabled, can be explicitly
183 This option (the two names are synonymous) tells the NFS server not to require authentication of
184 locking requests (i.e. requests which use the NLM protocol). Normally
185 the NFS server will require a lock request to hold a credential for a
186 user who has read access to the file. With this flag no access checks
189 Early NFS client implementations did not send credentials with lock
190 requests, and many current NFS clients still exist which are based on
191 the old implementations. Use this flag if you find that you can only
192 lock files which are world readable.
194 The default behaviour of requiring authentication for NLM requests can
195 be explicitly requested with either of the synonymous
202 '''This makes everything below the directory inaccessible for the named
203 '''client. This is useful when you want to export a directory hierarchy to
204 '''a client, but exclude certain subdirectories. The client's view of a
205 '''directory flagged with noaccess is very limited; it is allowed to read
206 '''its attributes, and lookup `.' and `..'. These are also the only entries
207 '''returned by a readdir.
210 '''Convert absolute symbolic links (where the link contents start with a
211 '''slash) into relative links by prepending the necessary number of ../'s
212 '''to get from the directory containing the link to the root on the
213 '''server. This has subtle, perhaps questionable, semantics when the file
214 '''hierarchy is not mounted at its root.
217 '''Leave all symbolic link as they are. This is the default operation.
221 bases its access control to files on the server machine on the uid and
222 gid provided in each NFS RPC request. The normal behavior a user would
223 expect is that she can access her files on the server just as she would
224 on a normal file system. This requires that the same uids and gids are
225 used on the client and the server machine. This is not always true, nor
226 is it always desirable.
228 Very often, it is not desirable that the root user on a client machine
229 is also treated as root when accessing files on the NFS server. To this
230 end, uid 0 is normally mapped to a different id: the so-called
233 uid. This mode of operation (called `root squashing') is the default,
234 and can be turned off with
239 '''tries to obtain the anonymous uid and gid by looking up user
241 '''in the password file at startup time. If it isn't found, a uid and gid
243 chooses a uid and gid
244 of -2 (i.e. 65534) for squashed access. These values can also be overridden by
246 .IR anonuid " and " anongid
249 '''In addition to this,
251 '''lets you specify arbitrary uids and gids that should be mapped to user
253 Finally, you can map all user requests to the
254 anonymous uid by specifying the
255 .IR all_squash " option.
257 '''For the benefit of installations where uids differ between different
260 '''provides several mechanism to dynamically map server uids to client
261 '''uids and vice versa: static mapping files, NIS-based mapping, and
266 '''mapping is enabled with the
268 '''option, and uses the UGID RPC protocol. For this to work, you have to run
271 '''mapping daemon on the client host. It is the least secure of the three methods,
272 '''because by running
274 '''everybody can query the client host for a list of valid user names. You
275 '''can protect yourself by restricting access to
277 '''to valid hosts only. This can be done by entering the list of valid
282 '''file. The service name is
284 '''For a description of the file's syntax, please read
285 '''.IR hosts_access (5).
287 '''Static mapping is enabled by using the
289 '''option, which takes a file name as an argument that describes the mapping.
290 '''NIS-based mapping queries the client's NIS server to obtain a mapping from
291 '''user and group names on the server host to user and group names on the
294 Here's the complete list of mapping options:
297 Map requests from uid/gid 0 to the anonymous uid/gid. Note that this does
298 not apply to any other uids that might be equally sensitive, such as user
302 Turn off root squashing. This option is mainly useful for diskless clients.
304 '''.IR squash_uids " and " squash_gids
305 '''This option specifies a list of uids or gids that should be subject to
306 '''anonymous mapping. A valid list of ids looks like this:
308 '''.IR squash_uids=0-15,20,25-50
310 '''Usually, your squash lists will look a lot simpler.
313 Map all uids and gids to the anonymous user. Useful for NFS-exported
314 public FTP directories, news spool directories, etc. The opposite option
317 which is the default setting.
320 '''This option turns on dynamic uid/gid mapping. Each uid in an NFS request
321 '''will be translated to the equivalent server uid, and each uid in an
322 '''NFS reply will be mapped the other way round. This option requires that
324 '''runs on the client host. The default setting is
325 '''.IR map_identity ,
326 '''which leaves all uids untouched. The normal squash options apply regardless
327 '''of whether dynamic mapping is requested or not.
330 '''This option enables static mapping. It specifies the name of the file
331 '''that describes the uid/gid mapping, e.g.
333 '''.IR map_static=/etc/nfs/foobar.map
335 '''The file's format looks like this
339 '''# Mapping for client foobar:
341 '''uid 0-99 - # squash these
342 '''uid 100-500 1000 # map 100-500 to 1000-1400
343 '''gid 0-49 - # squash these
344 '''gid 50-100 700 # map 50-100 to 700-750
348 '''This option enables NIS-based uid/gid mapping. For instance, when
349 '''the server encounters the uid 123 on the server, it will obtain the
350 '''login name associated with it, and contact the NFS client's NIS server
351 '''to obtain the uid the client associates with the name.
353 '''In order to do this, the NFS server must know the client's NIS domain.
354 '''This is specified as an argument to the
358 '''.I map_nis=foo.com
360 '''Note that it may not be sufficient to simply specify the NIS domain
361 '''here; you may have to take additional actions before
363 '''is actually able to contact the server. If your distribution uses
364 '''the NYS library, you can specify one or more NIS servers for the
365 '''client's domain in
366 '''.IR /etc/yp.conf .
367 '''If you are using a different NIS library, you may have to obtain a
370 '''daemon that can be configured via
373 .IR anonuid " and " anongid
374 These options explicitly set the uid and gid of the anonymous account.
375 This option is primarily useful for PC/NFS clients, where you might want
376 all requests appear to be from one user. As an example, consider the
379 in the example section below, which maps all requests to uid 150 (which
380 is supposedly that of user joe).
386 # sample /etc/exports file
387 / master(rw) trusty(rw,no_root_squash)
388 /projects proj*.local.domain(rw)
389 /usr *.local.domain(ro) @trusted(rw)
390 /home/joe pc001(rw,all_squash,anonuid=150,anongid=100)
391 /pub (ro,insecure,all_squash)
392 '''/pub/private (noaccess)
395 The first line exports the entire filesystem to machines master and trusty.
396 In addition to write access, all uid squashing is turned off for host
397 trusty. The second and third entry show examples for wildcard hostnames
398 and netgroups (this is the entry `@trusted'). The fourth line shows the
399 entry for the PC/NFS client discussed above. Line 5 exports the
400 public FTP directory to every host in the world, executing all requests
401 under the nobody account. The
403 option in this entry also allows clients with NFS implementations that
404 don't use a reserved port for NFS.
405 ''' The last line denies all NFS clients
406 '''access to the private directory.
408 '''Unlike other NFS server implementations, this
410 '''allows you to export both a directory and a subdirectory thereof to
411 '''the same host, for instance
412 '''.IR /usr " and " /usr/X11R6 .
413 '''In this case, the mount options of the most specific entry apply. For
414 '''instance, when a user on the client host accesses a file in
416 '''the mount options given in the
418 '''entry apply. This is also true when the latter is a wildcard or netgroup
423 '''An error parsing the file is reported using syslogd(8) as level NOTICE from
424 '''a DAEMON whenever nfsd(8) or mountd(8) is started up. Any unknown
425 '''host is reported at that time, but often not all hosts are not yet known
426 '''to named(8) at boot time, thus as hosts are found they are reported
427 '''with the same syslogd(8) parameters.