Remount ONTAP volumes or data shares for NFS trunking
-
PDF of this doc site
-
Cluster administration
-
Volume administration
-
Logical storage management with the CLI
-
-
NAS storage management
-
Configure NFS with the CLI
-
Manage NFS with the CLI
-
Manage SMB with the CLI
-
Manage file access using SMB
-
-
-
Security and data encryption
-
Data protection and disaster recovery
-

Collection of separate PDF docs
Creating your file...
To convert non-trunked client connections to trunked connections, existing mounts on Linux and VMware clients must be unmounted and remounted using information about LIFs.
Learn about supported clients.
|
Unmounting VMware clients is disruptive for any VMs on the datastore. An alternative would be to create a new datastore enabled for trunking, and use storage vmotion to move your VMs from the old datastore to the new one. See your VMware documentation for details. |
If you are using ONTAP 9.16.1 or later and Red Hat Enterprise Linux version 8.7 or later (for RHEL 8) or 9.2 or later (for RHEL 9) as your Linux client, only one mount point is required for the trunking group. Mount the exported volumes with this command, using the trunkdiscovery
option:
mount <lif_ip>:<volume_name> </mount_path> -o trunkdiscovery,vers=4.1
Otherwise, a separate mount point is required for each connection in the trunking group. Mount the exported volumes with commands similar to the following, using the max_connect
option:
mount <lif1_ip>:<volume_name> </mount_path1> -o vers=4.1,max_connect=16
mount <lif2_ip>:<volume_name> </mount_path2> -o vers=4.1,max_connect=16
The version (vers
) value should be 4.1
or later.
The max_connect
value corresponds to the number of connections in the trunking group.
A mount statement is required that includes an IP address for each connection in the trunking group.
Mount the exported datastore with a command similar to the following:
#esxcli storage nfs41 -H lif1_ip, lif2_ip -s /mnt/sh are1 -v nfs41share
The -H
values should correspond to the connections in the trunking group.