]> git.decadent.org.uk Git - nfs-utils.git/blob - utils/exportfs/exports.man
nfs-utils: remove possibly false statement from exports.man
[nfs-utils.git] / utils / exportfs / exports.man
1 .\"@(#)exports.5"
2 .\"
3 .TH exports 5 "31 December 2009"
4 .SH NAME
5 exports \- NFS server export table
6 .SH DESCRIPTION
7 The file
8 .I /etc/exports
9 contains a table of local physical file systems on an NFS server
10 that are accessible to NFS clients.
11 The contents of the file are maintained by the server's system
12 administrator.
13 .PP
14 Each file system in this table has a list of options and an
15 access control list.
16 The table is used by
17 .BR exportfs (8)
18 to give information to
19 .BR mountd (8).
20 .PP
21 The file format is similar to the SunOS
22 .I exports
23 file. Each line contains an export point and a whitespace-separated list
24 of clients allowed to mount the file system at that point. Each listed
25 client may be immediately followed by a parenthesized, comma-separated
26 list of export options for that client. No whitespace is permitted
27 between a client and its option list.
28 .PP
29 Also, each line may have one or more specifications for default options
30 after the path name, in the form of a dash ("\-") followed by an option
31 list. The option list is used for all subsequent exports on that line
32 only.
33 .PP
34 Blank lines are ignored.  A pound sign ("#") introduces a comment to the
35 end of the line. Entries may be continued across newlines using a
36 backslash. If an export name contains spaces it should be quoted using
37 double quotes. You can also specify spaces or other unusual character in
38 the export name using a backslash followed by the character code as three
39 octal digits.
40 .PP
41 To apply changes to this file, run
42 .BR exportfs \-ra
43 or restart the NFS server.
44 .PP
45 .SS Machine Name Formats
46 NFS clients may be specified in a number of ways:
47 .IP "single host
48 You may specify a host either by an
49 abbreviated name recognized be the resolver, the fully qualified domain
50 name, an IPv4 address, or an IPv6 address.
51 .IP "IP networks
52 You can also export directories to all hosts on an IP (sub-) network
53 simultaneously. This is done by specifying an IP address and netmask pair
54 as
55 .IR address/netmask
56 where the netmask can be specified in dotted-decimal format, or as a
57 contiguous mask length.
58 For example, either `/255.255.252.0' or `/22' appended
59 to the network base IPv4 address results in identical subnetworks with 10 bits
60 of host. IPv6 addresses must use a contiguous mask length. Wildcard characters
61 generally do not work on IP addresses, though they
62 may work by accident when reverse DNS lookups fail.
63 .IP "wildcards
64 Machine names may contain the wildcard characters \fI*\fR and \fI?\fR.
65 This can be used to make the \fIexports\fR file more compact; for instance,
66 \fI*.cs.foo.edu\fR matches all hosts in the domain
67 \fIcs.foo.edu\fR.  As these characters also match the dots in a domain
68 name, the given pattern will also match all hosts within any subdomain
69 of \fIcs.foo.edu\fR.
70 .IP "netgroups
71 NIS netgroups may be given as
72 .IR @group .
73 Only the host part of each
74 netgroup members is consider in checking for membership.  Empty host
75 parts or those containing a single dash (\-) are ignored.
76 .IP "anonymous
77 This is specified by a single
78 .I *
79 character (not to be confused with the
80 .I wildcard
81 entry above) and will match all clients.
82 '''.TP
83 '''.B =public
84 '''This is a special ``hostname'' that identifies the given directory name
85 '''as the public root directory (see the section on WebNFS in
86 '''.BR nfsd (8)
87 '''for a discussion of WebNFS and the public root handle). When using this
88 '''convention,
89 '''.B =public
90 '''must be the only entry on this line, and must have no export options
91 '''associated with it. Note that this does
92 '''.I not
93 '''actually export the named directory; you still have to set the exports
94 '''options in a separate entry.
95 '''.PP
96 '''The public root path can also be specified by invoking
97 '''.I nfsd
98 '''with the
99 '''.B \-\-public\-root
100 '''option. Multiple specifications of a public root will be ignored.
101 .PP
102 If a client matches more than one of the specifications above, then
103 the first match from the above list order takes precedence - regardless of
104 the order they appear on the export line. However, if a client matches
105 more than one of the same type of specification (e.g. two netgroups),
106 then the first match from the order they appear on the export line takes
107 precedence.
108 .SS RPCSEC_GSS security
109 You may use the special strings "gss/krb5", "gss/krb5i", or "gss/krb5p"
110 to restrict access to clients using rpcsec_gss security.  However, this
111 syntax is deprecated; on linux kernels since 2.6.23, you should instead
112 use the "sec=" export option:
113 .TP
114 .IR sec=
115 The sec= option, followed by a colon-delimited list of security flavors,
116 restricts the export to clients using those flavors.  Available security
117 flavors include sys (the default--no cryptographic security), krb5
118 (authentication only), krb5i (integrity protection), and krb5p (privacy
119 protection).  For the purposes of security flavor negotiation, order
120 counts: preferred flavors should be listed first.  The order of the sec=
121 option with respect to the other options does not matter, unless you
122 want some options to be enforced differently depending on flavor.
123 In that case you may include multiple sec= options, and following options
124 will be enforced only for access using flavors listed in the immediately
125 preceding sec= option.  The only options that are permitted to vary in
126 this way are ro, rw, no_root_squash, root_squash, and all_squash.
127 .PP
128 .SS General Options
129 .BR exportfs
130 understands the following export options:
131 .TP
132 .IR secure "\*d
133 This option requires that requests originate on an Internet port less
134 than IPPORT_RESERVED (1024). This option is on by default. To turn it
135 off, specify
136 .IR insecure .
137 .TP
138 .IR rw
139 Allow both read and write requests on this NFS volume. The
140 default is to disallow any request which changes the filesystem.
141 This can also be made explicit by using
142 the
143 .IR ro " option.
144 .TP
145 .IR async
146 This option allows the NFS server to violate the NFS protocol and
147 reply to requests before any changes made by that request have been
148 committed to stable storage (e.g. disc drive).
149
150 Using this option usually improves performance, but at the cost that
151 an unclean server restart (i.e. a crash) can cause data to be lost or
152 corrupted.
153
154 .TP
155 .IR sync
156 Reply to requests only after the changes have been committed to stable
157 storage (see
158 .IR async
159 above).
160
161 In releases of nfs-utils up to and including 1.0.0, the
162 .I async 
163 option was the
164 default.  In all releases after 1.0.0,
165 .I sync
166 is the default, and
167 .I async
168 must be explicitly requested if needed.
169 To help make system administrators aware of this change,
170 .B exportfs
171 will issue a warning if neither
172 .I sync
173 nor
174 .I async
175 is specified.
176 .TP
177 .IR no_wdelay
178 This option has no effect if
179 .I async
180 is also set.  The NFS server will normally delay committing a write request
181 to disc slightly if it suspects that another related write request may be in
182 progress or may arrive soon.  This allows multiple write requests to
183 be committed to disc with the one operation which can improve
184 performance.  If an NFS server received mainly small unrelated
185 requests, this behaviour could actually reduce performance, so
186 .IR no_wdelay
187 is available to turn it off.
188 The default can be explicitly requested with the
189 .IR wdelay " option.
190 .TP
191 .IR nohide
192 This option is based on the option of the same name provided in IRIX
193 NFS.  Normally, if a server exports two filesystems one of which is
194 mounted on the other, then the client will have to mount both
195 filesystems explicitly to get access to them.  If it just mounts the
196 parent, it will see an empty directory at the place where the other
197 filesystem is mounted.  That filesystem is "hidden".
198
199 Setting the
200 .I nohide
201 option on a filesystem causes it not to be hidden, and an
202 appropriately authorised client will be able to move from the parent to
203 that filesystem without noticing the change.
204
205 However, some NFS clients do not cope well with this situation as, for
206 instance, it is then possible for two files in the one apparent
207 filesystem to have the same inode number.
208
209 The
210 .I nohide
211 option is currently only effective on
212 .I "single host
213 exports.  It does not work reliably with netgroup, subnet, or wildcard
214 exports.
215
216 This option can be very useful in some situations, but it should be
217 used with due care, and only after confirming that the client system
218 copes with the situation effectively.
219
220 The option can be explicitly disabled with
221 .IR hide .
222 .TP
223 .IR crossmnt
224 This option is similar to
225 .I nohide
226 but it makes it possible for clients to move from the filesystem marked
227 with crossmnt to exported filesystems mounted on it.  Thus when a child
228 filesystem "B" is mounted on a parent "A", setting crossmnt on "A" has
229 the same effect as setting "nohide" on B.
230 .TP
231 .IR no_subtree_check
232 This option disables subtree checking, which has mild security
233 implications, but can improve reliability in some circumstances.
234
235 If a subdirectory of a filesystem is exported, but the whole
236 filesystem isn't then whenever a NFS request arrives, the server must
237 check not only that the accessed file is in the appropriate filesystem
238 (which is easy) but also that it is in the exported tree (which is
239 harder). This check is called the
240 .IR subtree_check .
241
242 In order to perform this check, the server must include some
243 information about the location of the file in the "filehandle" that is
244 given to the client.  This can cause problems with accessing files that
245 are renamed while a client has them open (though in many simple cases
246 it will still work).
247
248 subtree checking is also used to make sure that files inside
249 directories to which only root has access can only be accessed if the
250 filesystem is exported with
251 .I no_root_squash
252 (see below), even if the file itself allows more general access.
253
254 As a general guide, a home directory filesystem, which is normally
255 exported at the root and may see lots of file renames, should be
256 exported with subtree checking disabled.  A filesystem which is mostly
257 readonly, and at least doesn't see many file renames (e.g. /usr or
258 /var) and for which subdirectories may be exported, should probably be
259 exported with subtree checks enabled.
260
261 The default of having subtree checks enabled, can be explicitly
262 requested with
263 .IR subtree_check .
264
265 From release 1.1.0 of nfs-utils onwards, the default will be
266 .I no_subtree_check
267 as subtree_checking tends to cause more problems than it is worth.
268 If you genuinely require subtree checking, you should explicitly put
269 that option in the
270 .B exports
271 file.  If you put neither option,
272 .B exportfs
273 will warn you that the change is pending.
274
275 .TP
276 .IR insecure_locks
277 .TP
278 .IR no_auth_nlm
279 This option (the two names are synonymous) tells the NFS server not to require authentication of
280 locking requests (i.e. requests which use the NLM protocol).  Normally
281 the NFS server will require a lock request to hold a credential for a
282 user who has read access to the file.  With this flag no access checks
283 will be performed.
284
285 Early NFS client implementations did not send credentials with lock
286 requests, and many current NFS clients still exist which are based on
287 the old implementations.  Use this flag if you find that you can only
288 lock files which are world readable.
289
290 The default behaviour of requiring authentication for NLM requests can
291 be explicitly requested with either of the synonymous
292 .IR auth_nlm ,
293 or
294 .IR secure_locks .
295 .TP
296 .IR no_acl
297 On some specially patched kernels, and when exporting filesystems that
298 support ACLs, this option tells
299 .B nfsd
300 not to reveal ACLs to clients, so
301 they will see only a subset of actual permissions on the given file
302 system.  This option is safe for filesystems used by NFSv2 clients and
303 old NFSv3 clients that perform access decisions locally.  Current
304 NFSv3 clients use the ACCESS RPC to perform all access decisions on
305 the server.  Note that the
306 .I no_acl
307 option only has effect on kernels specially patched to support it, and
308 when exporting filesystems with ACL support.  The default is to export
309 with ACL support (i.e. by default,
310 .I no_acl
311 is off).
312
313 '''.TP
314 '''.I noaccess
315 '''This makes everything below the directory inaccessible for the named
316 '''client.  This is useful when you want to export a directory hierarchy to
317 '''a client, but exclude certain subdirectories. The client's view of a
318 '''directory flagged with noaccess is very limited; it is allowed to read
319 '''its attributes, and lookup `.' and `..'. These are also the only entries
320 '''returned by a readdir.
321 '''.TP
322 '''.IR link_relative
323 '''Convert absolute symbolic links (where the link contents start with a
324 '''slash) into relative links by prepending the necessary number of ../'s
325 '''to get from the directory containing the link to the root on the
326 '''server.  This has subtle, perhaps questionable, semantics when the file
327 '''hierarchy is not mounted at its root.
328 '''.TP
329 '''.IR link_absolute
330 '''Leave all symbolic link as they are. This is the default operation.
331
332 .TP
333 .IR mountpoint= path
334 .TP
335 .I mp
336 This option makes it possible to only export a directory if it has
337 successfully been mounted.
338 If no path is given (e.g.
339 .IR mountpoint " or " mp )
340 then the export point must also be a mount point.  If it isn't then
341 the export point is not exported.  This allows you to be sure that the
342 directory underneath a mountpoint will never be exported by accident
343 if, for example, the filesystem failed to mount due to a disc error.
344
345 If a path is given (e.g.
346 .IR mountpoint= "/path or " mp= /path)
347 then the nominated path must be a mountpoint for the exportpoint to be
348 exported.
349
350 .TP
351 .IR fsid= num|root|uuid
352 NFS needs to be able to identify each filesystem that it exports.
353 Normally it will use a UUID for the filesystem (if the filesystem has
354 such a thing) or the device number of the device holding the
355 filesystem (if the filesystem is stored on the device).
356
357 As not all filesystems are stored on devices, and not all filesystems
358 have UUIDs, it is sometimes necessary to explicitly tell NFS how to
359 identify a filesystem.  This is done with the
360 .I fsid=
361 option.
362
363 For NFSv4, there is a distinguished filesystem which is the root of
364 all exported filesystem.  This is specified with
365 .I fsid=root
366 or
367 .I fsid=0
368 both of which mean exactly the same thing.
369
370 Other filesystems can be identified with a small integer, or a UUID
371 which should contain 32 hex digits and arbitrary punctuation.
372
373 Linux kernels version 2.6.20 and earlier do not understand the UUID
374 setting so a small integer must be used if an fsid option needs to be
375 set for such kernels.  Setting both a small number and a UUID is
376 supported so the same configuration can be made to work on old and new
377 kernels alike.
378
379 .TP
380 .IR refer= path@host[+host][:path@host[+host]]
381 A client referencing the export point will be directed to choose from
382 the given list an alternative location for the filesystem.
383 (Note that the server must have a mountpoint here, though a different
384 filesystem is not required; so, for example,
385 .IR "mount --bind" " /path /path"
386 is sufficient.)
387 .TP
388 .IR replicas= path@host[+host][:path@host[+host]]
389 If the client asks for alternative locations for the export point, it
390 will be given this list of alternatives. (Note that actual replication
391 of the filesystem must be handled elsewhere.)
392
393 .SS User ID Mapping
394 .PP
395 .B nfsd
396 bases its access control to files on the server machine on the uid and
397 gid provided in each NFS RPC request. The normal behavior a user would
398 expect is that she can access her files on the server just as she would
399 on a normal file system. This requires that the same uids and gids are
400 used on the client and the server machine. This is not always true, nor
401 is it always desirable.
402 .PP
403 Very often, it is not desirable that the root user on a client machine
404 is also treated as root when accessing files on the NFS server. To this
405 end, uid 0 is normally mapped to a different id: the so-called
406 anonymous or
407 .I nobody
408 uid. This mode of operation (called `root squashing') is the default,
409 and can be turned off with
410 .IR no_root_squash .
411 .PP
412 By default,
413 '''.B nfsd
414 '''tries to obtain the anonymous uid and gid by looking up user
415 '''.I nobody
416 '''in the password file at startup time. If it isn't found, a uid and gid
417 .B exportfs
418 chooses a uid and gid
419 of 65534 for squashed access. These values can also be overridden by
420 the
421 .IR anonuid " and " anongid
422 options.
423 '''.PP
424 '''In addition to this,
425 '''.B nfsd
426 '''lets you specify arbitrary uids and gids that should be mapped to user
427 '''nobody as well.
428 Finally, you can map all user requests to the
429 anonymous uid by specifying the
430 .IR all_squash " option.
431 .PP
432 Here's the complete list of mapping options:
433 .TP
434 .IR root_squash
435 Map requests from uid/gid 0 to the anonymous uid/gid. Note that this does
436 not apply to any other uids or gids that might be equally sensitive, such as
437 user
438 .IR bin
439 or group
440 .IR staff .
441 .TP
442 .IR no_root_squash
443 Turn off root squashing. This option is mainly useful for diskless clients.
444 .TP
445 .IR all_squash
446 Map all uids and gids to the anonymous user. Useful for NFS-exported
447 public FTP directories, news spool directories, etc. The opposite option
448 is
449 .IR no_all_squash ,
450 which is the default setting.
451 .TP
452 .IR anonuid " and " anongid
453 These options explicitly set the uid and gid of the anonymous account.
454 This option is primarily useful for PC/NFS clients, where you might want
455 all requests appear to be from one user. As an example, consider the
456 export entry for
457 .B /home/joe
458 in the example section below, which maps all requests to uid 150 (which
459 is supposedly that of user joe).
460 .SS Extra Export Tables
461 After reading 
462 .I /etc/exports 
463 .B exportfs
464 reads files under 
465 .I /etc/exports.d. 
466 directory as extra export tables.
467 .B exportfs
468 regards only a file which name is ended with 
469 .I .exports
470 and
471 not started with 
472 .I . 
473 as an extra export file. A file which name
474 is not met this condition is just ignored.
475 The format for extra export tables is the same as 
476 .I /etc/exports
477 .
478 .IP
479 .SH EXAMPLE
480 .PP
481 .nf
482 .ta +3i
483 # sample /etc/exports file
484 /               master(rw) trusty(rw,no_root_squash)
485 /projects       proj*.local.domain(rw)
486 /usr            *.local.domain(ro) @trusted(rw)
487 /home/joe       pc001(rw,all_squash,anonuid=150,anongid=100)
488 /pub            *(ro,insecure,all_squash)
489 /srv/www        \-sync,rw server @trusted @external(ro)
490 /foo            2001:db8:9:e54::/64(rw) 192.0.2.0/24(rw)
491 '''/pub/private    (noaccess)
492 .fi
493 .PP
494 The first line exports the entire filesystem to machines master and trusty.
495 In addition to write access, all uid squashing is turned off for host
496 trusty. The second and third entry show examples for wildcard hostnames
497 and netgroups (this is the entry `@trusted'). The fourth line shows the
498 entry for the PC/NFS client discussed above. Line 5 exports the
499 public FTP directory to every host in the world, executing all requests
500 under the nobody account. The
501 .I insecure
502 option in this entry also allows clients with NFS implementations that
503 don't use a reserved port for NFS.
504 The sixth line exports a directory read-write to the machine 'server'
505 as well as the `@trusted' netgroup, and read-only to netgroup `@external',
506 all three mounts with the `sync' option enabled. The seventh line exports
507 a directory to both an IPv6 and an IPv4 subnet.
508 ''' The last line denies all NFS clients
509 '''access to the private directory.
510 '''.SH CAVEATS
511 '''Unlike other NFS server implementations, this
512 '''.B nfsd
513 '''allows you to export both a directory and a subdirectory thereof to
514 '''the same host, for instance
515 '''.IR /usr " and " /usr/X11R6 .
516 '''In this case, the mount options of the most specific entry apply. For
517 '''instance, when a user on the client host accesses a file in
518 '''.IR /usr/X11R6 ,
519 '''the mount options given in the
520 '''.I /usr/X11R6
521 '''entry apply. This is also true when the latter is a wildcard or netgroup
522 '''entry.
523 .SH FILES
524 /etc/exports
525 /etc/exports.d
526 .SH SEE ALSO
527 .BR exportfs (8),
528 .BR netgroup (5),
529 .BR mountd (8),
530 .BR nfsd (8),
531 .BR showmount (8).
532 '''.SH DIAGNOSTICS
533 '''An error parsing the file is reported using syslogd(8) as level NOTICE from
534 '''a DAEMON whenever
535 '''.BR nfsd (8)
536 '''or
537 '''.BR mountd (8)
538 '''is started up.  Any unknown
539 '''host is reported at that time, but often not all hosts are not yet known
540 '''to
541 '''.BR named (8)
542 '''at boot time, thus as hosts are found they are reported
543 '''with the same
544 '''.BR syslogd (8)
545 '''parameters.