- hosts.allow
#
# Only allow local machines to mount
#
portmap : localhost 192.168.1.0/255.255.255.0
rpc.mountd : localhost 192.168.1.0/255.255.255.0
#
# end
- hosts.deny
#
# Deny everything
#
ALL : ALL
#
# end
- exports
#
# Allow only those ( 3 ) machines ( *.1, *.2, *.3 ) can rw, others are readonly
#
/opt/home 192.168.1.0/30 (rw,no_root_squash)
/opt/home 192.168.1.0 (ro)
#
# if you're lazy, a common/shared area
# /tmp 192.168.1.0 (rw)
#
# end
|