/etc/exports file. Be careful not to add extraneous spaces when editing this file.
			/etc/exports file shares the directory /tmp/nfs/ to the host bob.example.com with read/write permissions.
			/tmp/nfs/ bob.example.com(rw)
/etc/exports file, on the other hand, shares the same directory to the host bob.example.com with read-only permissions and shares it to the world with read/write permissions due to a single space character after the hostname.
			/tmp/nfs/ bob.example.com (rw)
showmount command to verify what is being shared:
			showmount -e <hostname>