![]() |
Loss off network shares on 8.2 - Printable Version +- Moode Forum (https://moodeaudio.org/forum) +-- Forum: moOde audio player (https://moodeaudio.org/forum/forumdisplay.php?fid=3) +--- Forum: Support (https://moodeaudio.org/forum/forumdisplay.php?fid=7) +--- Thread: Loss off network shares on 8.2 (/showthread.php?tid=5080) |
RE: Loss off network shares on 8.2 - R2ots - 09-20-2022 (09-20-2022, 02:32 PM)TheOldPresbyope Wrote:(09-20-2022, 01:17 PM)Tim Curtis Wrote: I don't have a Windows box but no issues from my Mac using Finder which is similar to Windows File explorer. I tried to reboot but it did not help. @TheOldPresbyope this is a good point: I am running Windows 11, maybe it makes a difference ? RE: Loss off network shares on 8.2 - didier573 - 09-21-2022 (09-20-2022, 06:25 PM)didier573 Wrote: I face exactly the same issue. Hello, Just to clarify what I did. On the NAS side I turned on SMB and NFS. I also specified the subnet allowed to access to ressources (192.168.1.0/24 in my case). On the endpoint side, when I launch a scan for SMB path I get answers. Nothing when I do the same scan with NFS. No one using NFS or interested in using it ? RE: Loss off network shares on 8.2 - Tim Curtis - 09-21-2022 From the SCAN button ( i ) help Code: NOTE: For NFS the scanner only scans for NFSv4 hosts (port 2049 open). If your NAS is running < v4 NFS the SCAN won't find it. Also the NAS has to be on the same subnet as the host(s). RE: Loss off network shares on 8.2 - didier573 - 09-21-2022 (09-21-2022, 10:34 AM)Tim Curtis Wrote: From the SCAN button ( i ) help Thank you Tim for your answer but not sure to understand in details. My NAS is composed by a raspberry Pi4 running moOde and with a SSD attached via USB => soes it mean that it runs < v4 NFS ? The NAS and my endpoint (another rasp with moode) are connected in WiFi to the same router => I guess that they are on the same subnet, right ? RE: Loss off network shares on 8.2 - TheOldPresbyope - 09-21-2022 NFSv4 was adopted 19 years ago (think Windows XP era). Prior versions are archaic! Note that the moOde NFS service is configured to export only USB mounts. Regards, Kent RE: Loss off network shares on 8.2 - didier573 - 09-21-2022 (09-21-2022, 12:19 PM)TheOldPresbyope Wrote: NFSv4 was adopted 19 years ago (think Windows XP era). Prior versions are archaic! That's why I think that NFSv4 is probably not an issue. I stil don't understand where the problem remains. RE: Loss off network shares on 8.2 - Tim Curtis - 09-21-2022 (09-21-2022, 12:01 PM)didier573 Wrote:(09-21-2022, 10:34 AM)Tim Curtis Wrote: From the SCAN button ( i ) help Yes NFS server on the Pi would be v4 and since both host and server are on same subnet I would expect the SCAN to find the NFS export. Post the following command output (on the pi running NFS server) to see if the configuration is correct. Code: # Commands RE: Loss off network shares on 8.2 - didier573 - 09-21-2022 (09-21-2022, 01:11 PM)Tim Curtis Wrote:(09-21-2022, 12:01 PM)didier573 Wrote:(09-21-2022, 10:34 AM)Tim Curtis Wrote: From the SCAN button ( i ) help Here is what I get on the pi running NFS (the NAS side) : pi@moodeNAS:~ $ moodeutl -l | grep NFS 20220921 095441 worker: NFS file sharing (On) pi@moodeNAS:~ $ cat /etc/exports {# /etc/exports: the access control list for filesystems which may be exported # to NFS clients. See exports(5). # # Example for NFSv2 and NFSv3: # /srv/homes hostname1(rw,sync,no_subtree_check) hostname2(ro,sync,no_subtree_check) # # Example for NFSv4: # /srv/nfs4 gss/krb5i(rw,sync,fsid=0,crossmnt,no_subtree_check) # /srv/nfs4/homes gss/krb5i(rw,sync,no_subtree_check) # /srv/nfs/MUSIQUE 192.168.1.0/24(rw,sync,no_subtree_check,no_root_squash) pi@moodeNAS:~ $ ls /media MUSIQUE pi@moodeNAS:~ $ ls -l /srv total 0 lrwxrwxrwx 1 root root 6 Sep 17 01:18 nfs -> /media Everything seems normal, am I wrong ? RE: Loss off network shares on 8.2 - Tim Curtis - 09-21-2022 Correct, thats how the config should look. Could be some sort of network issue. The command below performs the equivalent of a SCAN. Code: moodeutl -N Also, since NFS mounts are by IP address the NFS server pi has to have a persistent IP address. If the address changes the NFS mounts will break. Typically you would assign a DHCP address reservation in your Router for that pi. RE: Loss off network shares on 8.2 - didier573 - 09-21-2022 (09-21-2022, 03:57 PM)Tim Curtis Wrote: Correct, thats how the config should look. Here is the result : pi@moodeNAS:~ $ moodeutl -N Scanning network for NFSv4 hosts... pi@moodeNAS:~ $ Same result on the endpoint side : pi@moodeEND:~ $ moodeutl -N Scanning network for NFSv4 hosts... pi@moodeEND:~ $ I've already assigned static IP for the both pi on my router ![]() And I've also opened the 2049 port (not sure that it helps, but...) |