I have been unable to successfully share files via nfs on my kubuntu 20.04 computer. I have years of experience sharing in ubuntu via nfs but my first time from kubuntu. It appears rpc requests from clients are being rejected. rpc-bind is running. I've opened up all relavent ports with ufw, I've tried disabling ufw, tried about everything. I haven't been able to find an answer. Clients get the message "RPC: Unable to receive". rpcbind is running on the kubuntu serving machine, as well as nfs-server, etc..
It does appear neither port 111 nor port 2049 are open on the server machine to clients. From a client machine (server is 192.168.0.3):
client:$ nmap 192.168.0.3
Nmap scan report for 192.168.0.3
Host is up (0.0071s latency).
Not shown: 994 closed ports
PORT STATE SERVICE
80/tcp open http
443/tcp open https
631/tcp open ipp
8080/tcp open http-proxy
9100/tcp open jetdirect
9220/tcp open unknown
On the server ports 111 and 2049 seem open:
server:$ nmap localhost
Starting Nmap 7.80 ( https://nmap.org ) at 2020-12-17 19:05 PST
Nmap scan report for localhost (127.0.0.1)
Host is up (0.00012s latency).
Not shown: 995 closed ports
PORT STATE SERVICE
111/tcp open rpcbind
139/tcp open netbios-ssn
445/tcp open microsoft-ds
631/tcp open ipp
2049/tcp open nfs
also:
server:$ sudo ufw status
Status: active
To Action From
-- ------ ----
111 ALLOW Anywhere
2049 ALLOW Anywhere
111 (v6) ALLOW Anywhere (v6)
2049 (v6) ALLOW Anywhere (v6)
Anyone having the same issues or anyone sucessful sharing over nfs in kubuntu 20.*?
Thanks,
George
It does appear neither port 111 nor port 2049 are open on the server machine to clients. From a client machine (server is 192.168.0.3):
client:$ nmap 192.168.0.3
Nmap scan report for 192.168.0.3
Host is up (0.0071s latency).
Not shown: 994 closed ports
PORT STATE SERVICE
80/tcp open http
443/tcp open https
631/tcp open ipp
8080/tcp open http-proxy
9100/tcp open jetdirect
9220/tcp open unknown
On the server ports 111 and 2049 seem open:
server:$ nmap localhost
Starting Nmap 7.80 ( https://nmap.org ) at 2020-12-17 19:05 PST
Nmap scan report for localhost (127.0.0.1)
Host is up (0.00012s latency).
Not shown: 995 closed ports
PORT STATE SERVICE
111/tcp open rpcbind
139/tcp open netbios-ssn
445/tcp open microsoft-ds
631/tcp open ipp
2049/tcp open nfs
also:
server:$ sudo ufw status
Status: active
To Action From
-- ------ ----
111 ALLOW Anywhere
2049 ALLOW Anywhere
111 (v6) ALLOW Anywhere (v6)
2049 (v6) ALLOW Anywhere (v6)
Anyone having the same issues or anyone sucessful sharing over nfs in kubuntu 20.*?
Thanks,
George
Comment