Summary
VAST SMB supports traversing NFS-created symbolic links. However, by default, most Windows clients do not have the remote SMB symbolic links capability enabled.
Enabling Local Windows Client
You will need local Administrator privileges on a Windows client to perform this change.
Open a CMD prompt (start -> run -> cmd.exe)
Type the following to verify what is enabled:
c:\fsutil behavior query symlinkevaluation
Local to local symbolic links are enabled.
Local to remote symbolic links are enabled.
Remote to local symbolic links are disabled.
Remote to remote symbolic links are disabledIn the above output, you can see that both types of remote symbolic links are disabled. to enable:
c:\fsutil behavior set SymlinkEvaluation R2R:1 R2L:1Then re-run the query command, and all will show as enabled. You can now successfully traverse NFS symbolic links from this SMB client!
You can enable this through GPO (Group Policy Objects), domain-wide.
To enable symbolic link evaluations via the Group Policy Management Console/MMC
Open the Group Policy Management console on any domain controller in the target domain: navigate to Start → Windows Administrative Tools (Windows Server 2016) or Administrative Tools (Windows 2012 R2 and below) → Group Policy Management.
In the left pane, navigate to Forest: <forest_name> → Domains → <domain_name> → Domain Controllers. Right-click the effective domain controllers policy (by default, it is the Default Domain Controllers Policy), and select Edit from the pop-up menu.

Group Policy MGMT
In the Group Policy Management Editor, navigate to Computer Configuration → Policies→ Administrative Templates: Policy definitions → System → Filesystem.
In the Filesystem configuration, double-click the Selectively allow the evaluation of a symbolic link setting.

Group Policy, edit symbolic link
In the dialog that opens, select Enabled, then check all types of symbolic link evaluation under Options.

Selectively allow the evaluation of a symbolic link
Navigate to Start → Run and type "cmd". Input the
gpupdate /forcecommand and press Enter. The group policy will be updated.

Force GPupate