I am setting up an NFS sevrer on ubuntu 12.04 LTS server.
Running
nmap SERVER-IP
on the sever gives me:
PORT STATE SERVICE
22/tcp open ssh
111/tcp open rpcbind
2049/tcp open nfs
which seems to indicate the NFS server runs
But on the client, doing the same gives me
PORT STATE SERVICE
22/tcp open ssh
5631/tcp filtered pcanywheredata
The firewall (ufw) is disabled on the server and client.
Because of this I can't mount my exported folders on the client.
Any idea what prevents my client from seeing port 111 open?
traceroute SERVER-IP
and, if the list is short, try scanning each machine. That could get time consuming though – jackweirdy Jun 12 '13 at 23:23netstat
instead ofnmap
, since it will show what address each thing is listening on. Output of these commands will be useful: server:sudo netstat -utlnp
; client:sudo nmap -v --reason -p 111,2049 $server
; client:rpcinfo -p $server
– bonsaiviking Jun 28 '13 at 14:49