New server with Leap 15.1, Plasma, wired local network.
Server can ping client (a Raspberry Pi) but the client only see the nfs shares with firewalld disabledon server.
Nfs service is enabled on firewalld yast GUI, but the ports are not automatically open, and even when added manually the shares are still not accessible.
firewalld enabled and running:
# systemctl status firewalld
● firewalld.service - firewalld - dynamic firewall daemon
Loaded: loaded (/usr/lib/systemd/system/firewalld.service; **enabled**; vendor preset: disabled)
Active: **active** (running) since Mon 2019-10-07 13:30:15 -03; 45min ago
Docs: man:firewalld(1)
Process: 422 ExecReload=/bin/kill -HUP $MAINPID (code=exited, status=0/SUCCESS)
Main PID: 30901 (firewalld)
Tasks: 2 (limit: 4915)
CGroup: /system.slice/firewalld.service
└─30901 /usr/bin/python3 -Es /usr/sbin/firewalld --nofork --nopid
Yast firewalld GUI show device eth0 is assigned to the public zone.
All open services, before adding ports:
# firewall-cmd --list-all
public (active)
target: default
icmp-block-inversion: no
interfaces: eth0
sources:
services: **nfs nfs3 synergy syncthing**
ports:
protocols:
masquerade: no
forward-ports:
source-ports:
icmp-blocks:
rich rules:
Ports in use by NFS:
# grep nfs /etc/services
...
nfs ** 2049/tcp** # Network File System - Sun Microsystems [Brent_Callaghan]
nfs **2049/udp** # Network File System - Sun Microsystems [Brent_Callaghan]
nfs **2049/sctp** # Network File System [RFC5665]
3d-nfsd 2323/tcp # 3d-nfsd [Mike_Sherrill]
3d-nfsd 2323/udp # 3d-nfsd [Mike_Sherrill]
mediacntrlnfsd 2363/tcp # Media Central NFSD [Shivakumar_S_Govind]
mediacntrlnfsd 2363/udp # Media Central NFSD [Shivakumar_S_Govind]
winfs 5009/tcp # Microsoft Windows Filesystem [Simon_Skaria]
winfs 5009/udp # Microsoft Windows Filesystem [Simon_Skaria]
enfs 5233/tcp # Etinnae Network File Service [Chris_Peel]
nfsrdma 20049/tcp # Network File System (NFS) over RDMA [RFC5666]
nfsrdma 20049/udp # Network File System (NFS) over RDMA [RFC5666]
nfsrdma 20049/sctp # Network File System (NFS) over RDMA [RFC5666]
After adding port 2049 manually:
# firewall-cmd --list-services
nfs nfs3 synergy syncthing
# firewall-cmd --list-ports
2049/tcp 2049/udp 2049/sctp
These service and ports are allowed/open in the public zone settings of firewalld GUI, but still no connection. What am I not seeing?
Thanks,
Bruno