Previous installers enabled remote root user access through /etc/exports for remote workflows. This changes in 2022 and 2022.1.
Remote workflows (also known as workgroup configurations) require network access to /opt/Autodesk. This folder is exported and made accessible to remote workstations through /etc/exports.
Older Flame Family product installers (pre-2022) edited /etc/exports to enable access to /opt/Autodesk but enabled remote root user access, something that should be avoided.
The following sections explain how to disable remote root user access while preserving remote workflows.
Before Flame Family 2022, the Flame Family installers for macOS configured the file /etc/exports to enable workgroup configuration (remote workflow), but with remote root user access (-maproot=root). The 2022 version of the installers no longer export /opt/Autodesk, and this can create an issue with remote workflows.
Follow the steps below to disable remote root user access from /opt/Autodesk while preserving the remote workflow.
To disable remote root user access to /opt/Autodesk:
Only keep -maproot=root if you absolutely need remote root user access.
sudo nfsd restart
Before and after example:
/opt/Autodesk -network -maproot=root
/opt/Autodesk
On macOS, the 2022 and 2022.1 versions of the Flame Family products no longer create or edit /etc/exports. If you plan on using remote workflows, create the file /etc/exports and add the following line:
/opt/Autodesk
Both DKU 16 and the Flame Family 2022 installer for CentOS configure the file /etc/exports to enable workgroup configuration (remote workflow), but with remote root user access (no_root_squash). Follow the steps below to disable remote root user access from /opt/Autodesk while preserving the remote workflow.
To disable remote root user access to /opt/Autodesk:
Only keep no_root_squash if you absolutely need remote root user access.
sudo exportfs -va
Before and after example:
/opt/Autodesk *(rw,sync,no_root_squash)
/opt/Autodesk *(rw,sync)