Code: Select all
# /etc/init.d/nfs start
* Starting NFS statd... [ ok ]
* Exporting NFS directories...
/sbin/runscript.sh: line 527: 28139 Killed $exportfs -r 1>&2 [ ok ]
* Starting NFS daemon... [ ok ]
* Starting NFS mountd... [ ok ]
# mount -t nfs 192.168.0.100:/home/eno/share /mnt/test/
mount: RPC: Timed out
Code: Select all
/home/eno/share 192.168.0.101(rw,sync) 192.168.0.100(rw,sync)
Code: Select all
Jun 23 14:41:28 [rpc.mountd] refused mount request from 192.168.0.100 for /home/eno/share (/): no export entry_
EDIT: Also forgot to mention my /etc/hosts.allow and /etc/hosts.deny, here they are
Code: Select all
# cat /etc/hosts.allow
portmap: 192.168.0.100 , 192.168.0.101 , 127.0.0.1
lockd: 192.168.0.100 , 192.168.0.101 , 127.0.0.1
rquotad: 192.168.0.100 , 192.168.0.101 , 127.0.0.1
mountd: 192.168.0.100 , 192.168.0.101 , 127.0.0.1
statd: 192.168.0.100 , 192.168.0.101 , 127.0.0.1
# cat /etc/hosts.deny
portmap:ALL
lockd:ALL
mountd:ALL
rquotad:ALL
statd:ALL

