Become superuser.
Set up a directory on the server:
Change to the /usr/aset directory.
| mars# cd /usr/aset | 
Create a rptdir directory.
| mars# mkdir rptdir | 
Change to the rptdir directory, and create a client_rpt directory.
This creates a subdirectory (client_rpt) for a client. Repeat this step for each client whose reports you need to collect.
| mars# cd rptdir mars# mkdir client_rpt | 
The following example shows the creation of the directory all_reports, and the subdirectories pluto_rpt and neptune_rpt.
| mars# cd /usr/aset mars# mkdir all_reports mars# cd all_reports mars# mkdir pluto_rpt mars# mkdir neptune_rpt | 
Add the client_rpt directories to the /etc/dfs/dfstab file.
The directories should have read and write options.
For example, the following entries in the dfstab file are shared with read and write permissions.
| share -F nfs -o rw=pluto /usr/aset/all_reports/pluto_rpt share -F nfs -o rw=neptune /usr/aset/all_reports/neptune_rpt | 
Make the resources in the dfstab file available to the clients.
| # shareall | 
On each client, mount the client subdirectory from the server at the mount point, /usr/aset/masters/reports.
| # mount server:/usr/aset/client_rpt /usr/aset/masters/reports | 
Edit the /etc/vfstab file to mount the directory automatically at boot time.
The following sample entry in /etc/vfstab on neptune lists the directory to be mounted from mars, /usr/aset/all_reports/neptune_rpt, and the mount point on neptune, /usr/aset/reports. At boot time, the directories that are listed in vfstab are automatically mounted.
| mars:/usr/aset/all_reports/neptune.rpt /usr/aset/reports nfs - yes hard |