Hi,
On Linux box foo01:
- Edit /etc/exports, for example:
/tmp *(rw,insecure,all_squash)
- Do an exportfs -av
On AIX box:
- No smit needed, just check for a directory (or create one) you want to use as a mount point do, for example mkdir /mnt/foo1:
mount -o wsize=1024,rsize=1024 foo1:/tmp /mnt/foo1
I would add those wsize and rsize options to prevent NFS retries and errors which might lower the transfer rate to a uselesness.
laters
zaxxon