Enabling SMB encryption of data in transit
By default, when you create an SVM, SMB encryption is turned off. You can either enable SMB encryption required on individual shares, or on an SVM, which turns it on for all shares on that SVM.
Note
When SMB encryption required is enabled on an SVM or share, SMB clients that do not support encryption cannot connect to that SVM or share.
To require SMB encryption for incoming SMB traffic on an SVM
Use the following procedure to require SMB encryption on a SVM using the NetApp ONTAP CLI.
To connect to the SVM management endpoint with SSH, use user name
vsadminand the vsadmin password that you set when you created the SVM. If you did not set a vsadmin password, use user namefsxadminand the fsxadmin password. You can SSH into the SVM from a client that is in the same VPC as the file system, using the management endpoint IP address or DNS name.ssh vsadmin@svm-management-endpoint-ip-addressThe command with sample values:
ssh vsadmin@198.51.100.10The SSH command using the management endpoint DNS name:
ssh vsadmin@svm-management-endpoint-dns-nameThe SSH command using a sample DNS name:
ssh vsadmin@management.svm-abcdef01234567892fs-08fc3405e03933af0.fsx.us-east-2.aws.comPassword:vsadmin-passwordThis is your first recorded login. FsxIdabcdef01234567892::>Use the
vserver cifs security modifyNetApp ONTAP CLI command to require SMB encryption for incoming SMB traffic to the SVM. vserver cifs security modify -vservervserver_name-is-smb-encryption-required trueTo stop requiring SMB encryption for incoming SMB traffic, use the following command.
vserver cifs security modify -vservervserver_name-is-smb-encryption-required falseTo see the current
is-smb-encryption-requiredsetting on an SVM, use thevserver cifs security showNetApp ONTAP CLI command: vserver cifs security show -vservervs1-fields is-smb-encryption-requiredvserver is-smb-encryption-required -------- ------------------------- vs1 true
For more information about managing SMB encryption on an SVM, see
Configuring required SMB encryption on SMB servers for data transfers over SMB
To enable SMB encryption on a volume
Use the following procedure to enable SMB encryption on a share using the NetApp ONTAP CLI.
Establish a secure shell (SSH) connection to the SVM's management endpoint as described in Managing SVMs with the ONTAP CLI.
Use the following NetApp ONTAP CLI command to create a new SMB share and require SMB encryption when accessing this share.
vserver cifs share create -vservervserver_name-share-nameshare_name-pathshare_path-share-properties encrypt-dataFor more information, see
vserver cifs share createin the NetApp ONTAP CLI Command man pages. To require SMB encryption on an existing SMB share, use the following command.
vserver cifs share properties add -vservervserver_name-share-nameshare_name-share-properties encrypt-dataFor more information, see
vserver cifs share createin the NetApp ONTAP CLI Command man pages. To turn off SMB encryption on an existing SMB share, use the following command.
vserver cifs share properties remove -vservervserver_name-share-nameshare_name-share-properties encrypt-dataFor more information, see
vserver cifs share properties removein the NetApp ONTAP CLI Command man pages. To see the current
is-smb-encryption-requiredsetting on an SMB share, use the following NetApp ONTAP CLI command:vserver cifs share properties show -vservervserver_name-share-nameshare_name-fields share-propertiesIf one of the properties returned by the command is the
encrypt-dataproperty, then that property specifies that SMB encryption must be used when accessing this share.For more information, see
vserver cifs share properties showin the NetApp ONTAP CLI Command man pages.