]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sbin/mount_nfs/mount_nfs.8
zfs: merge openzfs/zfs@e13538856
[FreeBSD/FreeBSD.git] / sbin / mount_nfs / mount_nfs.8
1 .\" Copyright (c) 1992, 1993, 1994, 1995
2 .\"     The Regents of the University of California.  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 .\" 3. Neither the name of the University nor the names of its contributors
13 .\"    may be used to endorse or promote products derived from this software
14 .\"    without specific prior written permission.
15 .\"
16 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
17 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
20 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 .\" SUCH DAMAGE.
27 .\"
28 .\"     @(#)mount_nfs.8 8.3 (Berkeley) 3/29/95
29 .\"
30 .Dd June 14, 2023
31 .Dt MOUNT_NFS 8
32 .Os
33 .Sh NAME
34 .Nm mount_nfs
35 .Nd mount NFS file systems
36 .Sh SYNOPSIS
37 .Nm
38 .Op Fl 23bcdiLlNPsTU
39 .Op Fl a Ar maxreadahead
40 .Op Fl D Ar deadthresh
41 .Op Fl g Ar maxgroups
42 .Op Fl I Ar readdirsize
43 .Op Fl o Ar options
44 .Op Fl R Ar retrycnt
45 .Op Fl r Ar readsize
46 .Op Fl t Ar timeout
47 .Op Fl w Ar writesize
48 .Op Fl x Ar retrans
49 .Ar rhost : Ns Ar path node
50 .Sh DESCRIPTION
51 The
52 .Nm
53 utility calls the
54 .Xr nmount 2
55 system call to prepare and graft a remote NFS file system
56 .Pq Ar rhost : Ns Ar path
57 on to the file system tree at the point
58 .Ar node .
59 This command is normally executed by
60 .Xr mount 8 .
61 For NFSv2 and NFSv3,
62 it implements the mount protocol as described in RFC 1094, Appendix A and
63 RFC 1813, Appendix I.
64 For NFSv4, it uses the NFSv4 protocol as described in RFC 7530, RFC 5661 and
65 RFC 7862.
66 .Pp
67 By default,
68 .Nm
69 keeps retrying until the mount succeeds.
70 This behaviour is intended for file systems listed in
71 .Xr fstab 5
72 that are critical to the boot process.
73 For non-critical file systems, the
74 .Cm bg
75 and
76 .Cm retrycnt
77 options provide mechanisms to prevent the boot process from hanging
78 if the server is unavailable.
79 .Pp
80 If the server becomes unresponsive while an NFS file system is
81 mounted, any new or outstanding file operations on that file system
82 will hang uninterruptibly until the server comes back.
83 To modify this default behaviour, see the
84 .Cm intr
85 and
86 .Cm soft
87 options.
88 .Pp
89 The options are:
90 .Bl -tag -width indent
91 .It Fl o
92 Options are specified with a
93 .Fl o
94 flag followed by a comma separated string of options.
95 See the
96 .Xr mount 8
97 man page for possible options and their meanings.
98 The following NFS specific options are also available:
99 .Bl -tag -width indent
100 .It Cm acregmin Ns = Ns Aq Ar seconds
101 .It Cm acregmax Ns = Ns Aq Ar seconds
102 .It Cm acdirmin Ns = Ns Aq Ar seconds
103 .It Cm acdirmax Ns = Ns Aq Ar seconds
104 When attributes of files are cached, a timeout calculated to determine
105 whether a given cache entry has expired.
106 These four values determine the upper and lower bounds of the timeouts for
107 .Dq directory
108 attributes and
109 .Dq regular
110 (ie: everything else).
111 The default values are 3 -> 60 seconds
112 for regular files, and 30 -> 60 seconds for directories.
113 The algorithm to calculate the timeout is based on the age of the file.
114 The older the file,
115 the longer the cache is considered valid, subject to the limits above.
116 .It Cm actimeo Ns = Ns Aq Ar seconds
117 Set four cache timeouts above to specified value.
118 .It Cm allgssname
119 This option can be used along with
120 .Fl o Cm gssname
121 to specify that all operations should use the host-based initiator
122 credential.
123 This may be used for clients that run system daemons that need to
124 access files on the NFSv4 mounted volume.
125 .It Cm bg
126 If an initial attempt to contact the server fails, fork off a child to keep
127 trying the mount in the background.
128 Useful for
129 .Xr fstab 5 ,
130 where the file system mount is not critical to multiuser operation.
131 .It Cm bgnow
132 Like
133 .Cm bg ,
134 fork off a child to keep trying the mount in the background,
135 but do not attempt to mount in the foreground first.
136 This eliminates a
137 60+ second timeout when the server is not responding.
138 Useful for speeding up the boot process of a client when the server is
139 likely to be unavailable.
140 This is often the case for interdependent servers
141 such as cross-mounted servers (each of two servers is an NFS client of
142 the other) and for cluster nodes that must boot before the file servers.
143 .It Cm deadthresh Ns = Ns Aq Ar value
144 Set the
145 .Dq "dead server threshold"
146 to the specified number of round trip timeout intervals before a
147 .Dq "server not responding"
148 message is displayed.
149 .It Cm dumbtimer
150 Turn off the dynamic retransmit timeout estimator.
151 This may be useful for UDP mounts that exhibit high retry rates,
152 since it is possible that the dynamically estimated timeout interval is too
153 short.
154 .It Cm fg
155 Same as not specifying
156 .Cm bg .
157 .It Cm gssname Ns = Ns Aq Ar service-principal-name
158 This option can be used with the KerberosV security flavors for NFSv4 mounts
159 to specify the
160 .Dq "service-principal-name"
161 of a host-based entry in the default
162 keytab file that is used for system operations.
163 It allows the mount to be performed by
164 .Dq "root"
165 and avoids problems with
166 cached credentials for the system operations expiring.
167 The
168 .Dq "service-principal-name"
169 should be specified without instance or domain and is typically
170 .Dq "host" ,
171 .Dq "nfs"
172 or
173 .Dq "root" ,
174 although the form
175 .Sm off
176 .Aq Ar service
177 @
178 .Aq Ar fqdn
179 .Sm on
180 can also be used if the local system's
181 .Xr gethostname 3
182 value does not match the host-based principal in the keytab.
183 .It Cm hard
184 Same as not specifying
185 .Cm soft .
186 .It Cm intr
187 Make the mount interruptible, which implies that file system calls that
188 are delayed due to an unresponsive server will fail with EINTR when a
189 termination signal is posted for the process.
190 To avoid leaving file locks in an indeterminate state on the NFS
191 server, it is recommended that the
192 .Cm nolockd
193 option be used with this option.
194 .It Cm maxgroups Ns = Ns Aq Ar value
195 Set the maximum size of the group list for the credentials to the
196 specified value.
197 This should be used for mounts on old servers that cannot handle a
198 group list size of 16, as specified in RFC 1057.
199 Try 8, if users in a lot of groups cannot get response from the mount
200 point.
201 .It Cm mntudp
202 Force the mount protocol to use UDP transport, even for TCP NFS mounts.
203 (Necessary for some old
204 .Bx
205 servers.)
206 .It Cm nametimeo Ns = Ns Aq Ar value
207 Override the default of NFS_DEFAULT_NAMETIMEO for the timeout (in seconds)
208 for positive name cache entries.
209 If this is set to 0 it disables positive name caching for the mount point.
210 .It Cm negnametimeo Ns = Ns Aq Ar value
211 Override the default of NFS_DEFAULT_NEGNAMETIMEO for the timeout (in seconds)
212 for negative name cache entries.
213 If this is set to 0 it disables negative name caching for the mount point.
214 .It Cm nconnect Ns = Ns Aq Ar value
215 Specify the number of TCP connections (1-16) to be used
216 for an NFS Version 4, minor version 1 or 2 mount.
217 Multiple TCP connections can provide more client to server network
218 bandwidth for certain network configurations such as:
219 .Bd -literal
220 - Multiple network interfaces that are aggregated together.
221 - A fast network interface that uses multiple queues.
222 .Ed
223 .sp
224 The first TCP connection will be used for all RPCs that consist
225 entirely of small RPC messages.
226 The RPCs that can have large RPC messages (Read/Readdir/Write) are
227 distributed over the additional TCP connections in a round robin
228 fashion.
229 This option will result in more IP port#s being used.
230 This option requires the
231 .Cm nfsv4
232 option.
233 Note that for NFS servers such as AmazonEFS, where each new TCP
234 connection can connect to a different cluster that maintains lock
235 state separately, this option cannot be used.
236 .It Cm nfsv2
237 Use the NFS Version 2 protocol (the default is to try version 3 first
238 then version 2).
239 Note that NFS version 2 has a file size limit of 2 gigabytes.
240 .It Cm nfsv3
241 Use the NFS Version 3 protocol.
242 .It Cm nfsv4
243 Use the NFS Version 4 protocol.
244 This option will force the mount to use
245 TCP transport.
246 By default, the highest minor version of NFS Version 4 that is
247 supported by the NFS Version 4 server will be used.
248 See the
249 .Cm minorversion
250 option.
251 Make sure that all your NFS Version 4 clients have unique
252 values in
253 .Pa /etc/hostid .
254 .It Cm minorversion Ns = Ns Aq Ar value
255 Use the specified minor version for a NFS Version 4 mount,
256 overriding the default.
257 The minor versions supported are 0, 1, and 2.
258 This option is only meaningful when used with the
259 .Cm nfsv4
260 option.
261 .It Cm oneopenown
262 Make a minor version 1 or 2 of the NFS Version 4 protocol mount use a single
263 OpenOwner for all Opens.
264 This may be useful for a server with a very low limit on OpenOwners, such as
265 AmazonEFS.
266 It may be required when an accumulation of NFS version 4 Opens occurs,
267 as indicated by the
268 .Dq Opens
269 count displayed by
270 .Xr nfsstat 1
271 with the
272 .Fl c
273 and
274 .Fl E
275 command-line options.
276 A common case for an accumulation of Opens is a shared library within
277 the NFS mount that is used by several
278 processes, where at least one of these processes is always running.
279 This option cannot be used for an NFS Version 4, minor version 0 mount.
280 It may not work correctly when Delegations are being issued by a server,
281 but note that the AmazonEFS server does not issued delegations at this time.
282 This option is only meaningful when used with the
283 .Cm nfsv4
284 option.
285 .It Cm pnfs
286 Enable support for parallel NFS (pNFS) for minor version 1 or 2 of the
287 NFS Version 4 protocol.
288 This option is only meaningful when used with the
289 .Cm nfsv4
290 option.
291 .It Cm noac
292 Disable attribute caching.
293 .It Cm noconn
294 For UDP mount points, do not do a
295 .Xr connect 2 .
296 This must be used if the server does not reply to requests from the standard
297 NFS port number 2049 or replies to requests using a different IP address
298 (which can occur if the server is multi-homed).
299 Setting the
300 .Va vfs.nfs.nfs_ip_paranoia
301 sysctl to 0 will make this option the default.
302 .It Cm nocto
303 Normally, NFS clients maintain the close-to-open cache coherency.
304 This works by flushing at close time and checking at open time.
305 Checking at open time is implemented by getting attributes from
306 the server and purging the data cache if they do not match
307 attributes cached by the client.
308 .Pp
309 This option disables checking at open time.
310 It may improve performance for read-only mounts,
311 but should only be used if the data on the server changes rarely.
312 Be sure to understand the consequences before enabling this option.
313 .It Cm noinet4 , noinet6
314 Disables
315 .Dv AF_INET
316 or
317 .Dv AF_INET6
318 connections.
319 Useful for hosts that have
320 both an A record and an AAAA record for the same name.
321 .It Cm nolockd
322 Do
323 .Em not
324 forward
325 .Xr fcntl 2
326 locks over the wire via the NLM protocol for NFSv3 mounts
327 or via the NFSv4 protocol for NFSv4 mounts.
328 All locks will be local and not seen by the server
329 and likewise not seen by other NFS clients for NFSv3 or NFSv4 mounts.
330 This removes the need to run the
331 .Xr rpcbind 8
332 service and the
333 .Xr rpc.statd 8
334 and
335 .Xr rpc.lockd 8
336 servers on the client for NFSv3 mounts.
337 Note that this option will only be honored when performing the
338 initial mount, it will be silently ignored if used while updating
339 the mount options.
340 Also, note that NFSv4 mounts do not use these daemons.
341 The NFSv4 protocol handles locks,
342 unless this option is specified.
343 .It Cm noncontigwr
344 This mount option allows the NFS client to
345 combine non-contiguous byte ranges being written
346 such that the dirty byte range becomes a superset of the bytes
347 that are dirty.
348 This reduces the number of writes significantly for software
349 builds.
350 The merging of byte ranges is not done if the file has been file
351 locked, since most applications modifying a file from multiple
352 clients will use file locking.
353 As such, this option could result in a corrupted file for the
354 rare case of an application modifying the file from multiple
355 clients concurrently without using file locking.
356 .It Cm principal
357 For the RPCSEC_GSS security flavors, such as krb5, krb5i and krb5p,
358 this option sets the name of the host based principal name expected
359 by the server.
360 This option overrides the default, which will be ``nfs@<server-fqdn>''
361 and should normally be sufficient.
362 .It Cm noresvport
363 Do
364 .Em not
365 use a reserved socket port number (see below).
366 .It Cm port Ns = Ns Aq Ar port_number
367 Use specified port number for NFS requests.
368 The default is to query the portmapper for the NFS port.
369 .It Cm proto Ns = Ns Aq Ar protocol
370 Specify transport protocol version to use.
371 Currently, they are:
372 .Bd -literal
373 udp -   Use UDP over IPv4
374 tcp -   Use TCP over IPv4
375 udp6 -  Use UDP over IPv6
376 tcp6 -  Use TCP over IPv6
377 .Ed
378 .It Cm rdirplus
379 Used with NFSV3 to specify that the \fBReaddirPlus\fR RPC should
380 be used.
381 For NFSV4, setting this option has a similar effect, in that it will make
382 the Readdir Operation get more attributes.
383 This option reduces RPC traffic for cases such as
384 .Dq "ls -l" ,
385 but tends to flood the attribute and name caches with prefetched entries.
386 Try this option and see whether performance improves or degrades.
387 Probably
388 most useful for client to server network interconnects with a large bandwidth
389 times delay product.
390 .It Cm readahead Ns = Ns Aq Ar value
391 Set the read-ahead count to the specified value.
392 This may be in the range of 0 - 4, and determines how many blocks
393 will be read ahead when a large file is being read sequentially.
394 Trying a value greater than 1 for this is suggested for
395 mounts with a large bandwidth * delay product.
396 .It Cm readdirsize Ns = Ns Aq Ar value
397 Set the readdir read size to the specified value.
398 The value should normally
399 be a multiple of
400 .Dv DIRBLKSIZ
401 that is <= the read size for the mount.
402 .It Cm resvport
403 Use a reserved socket port number.
404 This flag is obsolete, and only retained for compatibility reasons.
405 Reserved port numbers are used by default now.
406 (For the rare case where the client has a trusted root account
407 but untrustworthy users and the network cables are in secure areas this does
408 help, but for normal desktop clients this does not apply.)
409 .It Cm retrans Ns = Ns Aq Ar value
410 Set the retransmit timeout count for soft mounts to the specified value.
411 .It Cm retrycnt Ns = Ns Aq Ar count
412 Set the mount retry count to the specified value.
413 The default is a retry count of zero, which means to keep retrying
414 forever.
415 There is a 60 second delay between each attempt.
416 .It Cm rsize Ns = Ns Aq Ar value
417 Set the read data size to the specified value.
418 It should normally be a power of 2 greater than or equal to 1024.
419 This should be used for UDP mounts when the
420 .Dq "fragments dropped due to timeout"
421 value is getting large while actively using a mount point.
422 (Use
423 .Xr netstat 1
424 with the
425 .Fl s
426 option to see what the
427 .Dq "fragments dropped due to timeout"
428 value is.)
429 .It Cm sec Ns = Ns Aq Ar flavor
430 This option specifies what security flavor should be used for the mount.
431 Currently, they are:
432 .Bd -literal
433 krb5 -  Use KerberosV authentication
434 krb5i - Use KerberosV authentication and
435         apply integrity checksums to RPCs
436 krb5p - Use KerberosV authentication and
437         encrypt the RPC data
438 sys -   The default AUTH_SYS, which uses a
439         uid + gid list authenticator
440 .Ed
441 .It Cm soft
442 A soft mount, which implies that file system calls will fail
443 after
444 .Ar retrycnt
445 round trip timeout intervals.
446 .It Cm syskrb5
447 This option specifies that a KerberosV NFSv4 minor version 1 or 2 mount
448 uses AUTH_SYS for system operations.
449 Using this option avoids the need for a KerberosV mount to have a
450 host-based principal entry in the default keytab file
451 (no
452 .Cm gssname
453 option) or a requirement for the user doing the mount to have a
454 valid KerberosV ticket granting ticket (TGT) when the mount is done.
455 This option is intended to be used with the
456 .Cm sec Ns = Ns krb5
457 and
458 .Cm tls
459 options and can only be used for
460 NFSv4 mounts with minor version 1 or 2.
461 .It Cm tcp
462 Use TCP transport.
463 This is the default option, as it provides for increased reliability on both
464 LAN and WAN configurations compared to UDP.
465 Some old NFS servers do not support this method; UDP mounts may be required
466 for interoperability.
467 .It Cm timeout Ns = Ns Aq Ar value
468 Set the initial retransmit timeout to the specified value,
469 expressed in tenths of a second.
470 May be useful for fine tuning UDP mounts over internetworks
471 with high packet loss rates or an overloaded server.
472 Try increasing the interval if
473 .Xr nfsstat 1
474 shows high retransmit rates while the file system is active or reducing the
475 value if there is a low retransmit rate but long response delay observed.
476 (Normally, the
477 .Cm dumbtimer
478 option should be specified when using this option to manually
479 tune the timeout
480 interval.)
481 .It Cm timeo Ns = Ns Aq Ar value
482 Alias for
483 .Cm timeout .
484 .It Cm tls
485 This option specifies that the connection to the server must use TLS
486 per RFC 9289.
487 TLS is only supported for TCP connections and the
488 .Xr rpc.tlsclntd 8
489 daemon must be running for an NFS over TCP connection to use TLS.
490 .It Cm tlscertname Ns = Ns Aq Ar name
491 This option specifies the name of an alternate certificate to be
492 presented to the NFS server during TLS handshake.
493 The default certificate file names are
494 .Dq cert.pem
495 and
496 .Dq certkey.pem .
497 When this option is specified,
498 .Ar name
499 replaces
500 .Dq cert
501 in the above file names.
502 For example, if the value of
503 .Ar name
504 is specified as
505 .Dq other
506 the certificate file names to be used will be
507 .Dq other.pem
508 and
509 .Dq otherkey.pem .
510 These files are stored in
511 .Pa /etc/rpc.tlsclntd
512 by default.
513 This option is only meaningful when used with the
514 .Cm tls
515 option and the
516 .Xr rpc.tlsclntd 8
517 is running with the
518 .Fl m
519 command line flag set.
520 .It Cm udp
521 Use UDP transport.
522 .It Cm vers Ns = Ns Aq Ar vers_number
523 Use the specified version number for NFS requests.
524 See the
525 .Cm nfsv2 ,
526 .Cm nfsv3 ,
527 and
528 .Cm nfsv4
529 options for details.
530 .It Cm wcommitsize Ns = Ns Aq Ar value
531 Set the maximum pending write commit size to the specified value.
532 This determines the maximum amount of pending write data that the NFS
533 client is willing to cache for each file.
534 .It Cm wsize Ns = Ns Aq Ar value
535 Set the write data size to the specified value.
536 Ditto the comments w.r.t.\& the
537 .Cm rsize
538 option, but using the
539 .Dq "fragments dropped due to timeout"
540 value on the server instead of the client.
541 Note that both the
542 .Cm rsize
543 and
544 .Cm wsize
545 options should only be used as a last ditch effort at improving performance
546 when mounting servers that do not support TCP mounts.
547 .El
548 .El
549 .Sh IMPLEMENTATION NOTES
550 When neither the
551 .Cm rsize
552 nor
553 .Cm wsize
554 options are specified, the I/O size will be set to the largest value
555 supported by both the NFS client and server.
556 The largest value supported by the NFS client is defined by
557 the tunable
558 .Cd vfs.maxbcachebuf
559 which can be set to a power of two up to
560 .Cd kern.maxphys .
561 .Pp
562 The
563 .Xr nfsstat 1
564 command with the
565 .Ic -m
566 command line option will show what
567 .Nm
568 option settings are actually in use for the mount.
569 .Sh COMPATIBILITY
570 The following command line flags are equivalent to
571 .Fl o
572 named options and are supported for compatibility with older
573 installations.
574 .Bl -tag -width indent
575 .It Fl 2
576 Same as
577 .Fl o Cm nfsv2
578 .It Fl 3
579 Same as
580 .Fl o Cm nfsv3
581 .It Fl D
582 Same as
583 .Fl o Cm deadthresh
584 .It Fl I
585 Same as
586 .Fl o Cm readdirsize Ns = Ns Aq Ar value
587 .It Fl L
588 Same as
589 .Fl o Cm nolockd
590 .It Fl N
591 Same as
592 .Fl o Cm noresvport
593 .It Fl P
594 Use a reserved socket port number.
595 This flag is obsolete, and only retained for compatibility reasons.
596 (For the rare case where the client has a trusted root account
597 but untrustworthy users and the network cables are in secure areas this does
598 help, but for normal desktop clients this does not apply.)
599 .It Fl R
600 Same as
601 .Fl o Cm retrycnt Ns = Ns Aq Ar value
602 .It Fl T
603 Same as
604 .Fl o Cm tcp
605 .It Fl U
606 Same as
607 .Fl o Cm mntudp
608 .It Fl a
609 Same as
610 .Fl o Cm readahead Ns = Ns Aq Ar value
611 .It Fl b
612 Same as
613 .Fl o Cm bg
614 .It Fl c
615 Same as
616 .Fl o Cm noconn
617 .It Fl d
618 Same as
619 .Fl o Cm dumbtimer
620 .It Fl g
621 Same as
622 .Fl o Cm maxgroups
623 .It Fl i
624 Same as
625 .Fl o Cm intr
626 .It Fl l
627 Same as
628 .Fl o Cm rdirplus
629 .It Fl r
630 Same as
631 .Fl o Cm rsize Ns = Ns Aq Ar value
632 .It Fl s
633 Same as
634 .Fl o Cm soft
635 .It Fl t
636 Same as
637 .Fl o Cm retransmit Ns = Ns Aq Ar value
638 .It Fl w
639 Same as
640 .Fl o Cm wsize Ns = Ns Aq Ar value
641 .It Fl x
642 Same as
643 .Fl o Cm retrans Ns = Ns Aq Ar value
644 .El
645 .Pp
646 The following
647 .Fl o
648 named options are equivalent to other
649 .Fl o
650 named options and are supported for compatibility with other
651 operating systems (e.g., Linux, Solaris, and OSX) to ease usage of
652 .Xr autofs 5
653 support.
654 .Bl -tag -width indent
655 .It Fl o Cm vers Ns = Ns 2
656 Same as
657 .Fl o Cm nfsv2
658 .It Fl o Cm vers Ns = Ns 3
659 Same as
660 .Fl o Cm nfsv3
661 .It Fl o Cm vers Ns = Ns 4
662 Same as
663 .Fl o Cm nfsv4
664 .El
665 .Sh SEE ALSO
666 .Xr nfsstat 1 ,
667 .Xr nmount 2 ,
668 .Xr unmount 2 ,
669 .Xr lagg 4 ,
670 .Xr nfsv4 4 ,
671 .Xr fstab 5 ,
672 .Xr gssd 8 ,
673 .Xr mount 8 ,
674 .Xr nfsd 8 ,
675 .Xr nfsiod 8 ,
676 .Xr rpc.tlsclntd 8 ,
677 .Xr showmount 8
678 .Sh HISTORY
679 A version of the
680 .Nm
681 utility appeared in
682 .Bx 4.4 .
683 .Sh BUGS
684 Since NFSv4 performs open/lock operations that have their ordering strictly
685 enforced by the server, the options
686 .Cm intr
687 and
688 .Cm soft
689 cannot be safely used.
690 For NFSv4 minor version 1 or 2 mounts, the ordering is done
691 via session slots and the NFSv4 client now handles broken session slots
692 fairly well.
693 As such, if the
694 .Cm nolockd
695 option is used along with
696 .Cm intr
697 and/or
698 .Cm soft ,
699 an NFSv4 minor version 1 or 2 mount
700 should work fairly well, although still not completely correctly.
701 For NFSv4 minor version 0 mounts,
702 .Cm hard
703 mounts without the
704 .Cm intr
705 mount option is strongly recommended.