So I've looked as much as I can and I can't find the solution to this.
I can't mount the NFS exports of my Fedora 19 machine on my laptop. The client is 192.168.1.101 and the server is 192.168.1.100
This are the outputs of the following commands
This is mount -v
Code:
$ mount -v 192.168.1.100:/home/user/Documents
mount.nfs: timeout set for Sat Aug 10 01:10:42 2013
mount.nfs: trying text-based options 'vers=4,addr=192.168.1.100,clientaddr=192.168.1.101'
mount.nfs: mount(2): Permission denied
mount.nfs: access denied by server while mounting dhaval:/home/dhaval/Documents
This is rpcinfo from the client:
Code:
$ sudo rpcinfo -p 192.168.1.100
rpcinfo: can't contact portmapper: RPC: Remote system error - No route to host
This is my exports file
Code:
$ sudo cat /etc/exports
/home/dhaval/Documents 192.168.1.101(rw,sync,nohide)
This is /etc/sysconfig/nfs
Code:
#
# Optinal options passed to rquotad
RPCRQUOTADOPTS=""
#
# Optional arguments passed to in-kernel lockd
#LOCKDARG=
# TCP port rpc.lockd should listen on.
LOCKD_TCPPORT=32803
# UDP port rpc.lockd should listen on.
LOCKD_UDPPORT=32769
#
# Optional arguments passed to rpc.nfsd. See rpc.nfsd(8)
RPCNFSDARGS=""
# Number of nfs server processes to be started.
# The default is 8.
RPCNFSDCOUNT=8
# Set V4 grace period in seconds
#NFSD_V4_GRACE=90
#
# Optional arguments passed to rpc.mountd. See rpc.mountd(8)
RPCMOUNTDOPTS=""
#
# Optional arguments passed to rpc.statd. See rpc.statd(8)
STATDARG=""
#
# Optional arguments passed to rpc.idmapd. See rpc.idmapd(8)
RPCIDMAPDARGS=""
#
# Optional arguments passed to rpc.gssd. See rpc.gssd(8)
RPCGSSDARGS=""
# Enable usage of gssproxy. See gssproxy-mech(8).
GSS_USE_PROXY="no"
#
# Optional arguments passed to rpc.svcgssd. See rpc.svcgssd(8)
RPCSVCGSSDARGS=""
#
# To enable RDMA support on the server by setting this to
# the port the server should listen on
#RDMA_PORT=20049
#
# Optional arguments passed to blkmapd. See blkmapd(8)
BLKMAPDARGS=""
MOUNTD_PORT=892
STARTD_PORT=662
Firewall is disabled and I've done 'setsebool nfs_use_home_dirs 1'
I don't know what else to do honestly. Could someone please help me? Am I missing something? What am I doing wrong?