I am struggling with the behaviour of a second NFS share from a NAS I am trying to set up on my workstation without success.
I have two NAS boxes both QNap one slightly older and running different firmware. However as far as I can see I have set up the shares on each in the same way with ssh required and the same parameters on both. I have been able to create NFS shares on my system using Yast. Here is my fstab:-
alastair@ibmserver2:~> cat /etc/fstab
UUID=46f191b6-7472-49c0-bd98-75824020d947 swap swap defaults 0 0
UUID=a5a2612d-d0cb-4b05-a3cf-cc95ecd0235b / btrfs defaults 0 0
UUID=a5a2612d-d0cb-4b05-a3cf-cc95ecd0235b /boot/grub2/i386-pc btrfs subvol=boot/grub2/i386-pc 0 0
UUID=a5a2612d-d0cb-4b05-a3cf-cc95ecd0235b /boot/grub2/x86_64-efi btrfs subvol=boot/grub2/x86_64-efi 0 0
UUID=a5a2612d-d0cb-4b05-a3cf-cc95ecd0235b /opt btrfs subvol=opt 0 0
UUID=a5a2612d-d0cb-4b05-a3cf-cc95ecd0235b /srv btrfs subvol=srv 0 0
UUID=a5a2612d-d0cb-4b05-a3cf-cc95ecd0235b /tmp btrfs subvol=tmp 0 0
UUID=a5a2612d-d0cb-4b05-a3cf-cc95ecd0235b /usr/local btrfs subvol=usr/local 0 0
UUID=a5a2612d-d0cb-4b05-a3cf-cc95ecd0235b /var/crash btrfs subvol=var/crash 0 0
UUID=a5a2612d-d0cb-4b05-a3cf-cc95ecd0235b /var/lib/mailman btrfs subvol=var/lib/mailman 0 0
UUID=a5a2612d-d0cb-4b05-a3cf-cc95ecd0235b /var/lib/named btrfs subvol=var/lib/named 0 0
UUID=a5a2612d-d0cb-4b05-a3cf-cc95ecd0235b /var/lib/pgsql btrfs subvol=var/lib/pgsql 0 0
UUID=a5a2612d-d0cb-4b05-a3cf-cc95ecd0235b /var/log btrfs subvol=var/log 0 0
UUID=a5a2612d-d0cb-4b05-a3cf-cc95ecd0235b /var/opt btrfs subvol=var/opt 0 0
UUID=a5a2612d-d0cb-4b05-a3cf-cc95ecd0235b /var/spool btrfs subvol=var/spool 0 0
UUID=a5a2612d-d0cb-4b05-a3cf-cc95ecd0235b /var/tmp btrfs subvol=var/tmp 0 0
UUID=B738-D576 /boot/efi vfat umask=0002,utf8=true 0 0
UUID=4ceac2e7-6bdc-40d2-9dff-da7a2099bf45 /home xfs defaults 1 2
UUID=a5a2612d-d0cb-4b05-a3cf-cc95ecd0235b /.snapshots btrfs subvol=.snapshots 0 0
UUID=4272b75a-ea72-4068-8826-e2dfc5611fd5 /data xfs defaults 1 2
UUID=3ff724cf-7265-4bff-a3f6-343af8dcb7d2 /mnt/external ext4 acl,user_xattr,nofail 1 2
192.168.xxx.xx0:/Multimedia /home/alastair/Nas_Multimedia_NFS nfs defaults 0 0
192.168.xxx.xx1:/ibmserver2 /home/alastair/NAS_Backup_NFS nfs defaults 0 0
alastair@ibmserver2:~> ^C
Both local files have the same ownership and permissions except for a + (what is that?). Here is an excerpt from running ls -l on my home directory:-
drwxr-xr-x 2 alastair users 6 Mar 30 2017 Music
drwxrwxrwx 3 root 101 40 Dec 23 13:01 NAS_Backup_NFS
drwxrwxrwx+ 10 root 101 4096 Mar 18 2017 Nas_Multimedia_NFS
drwxr-xr-x 5 alastair users 39 Feb 19 2016 perl5
drwxr-xr-x 14 alastair users 4096 Nov 15 20:04 Pictures
I interpret this to mean that both are seen correctly by my system and mounted on my home directory but there the similarities end.
The original share works as required. If I open its folder in my home directory (Multimedia) I can read but not write.
The second directory, intended for backups, I can create and open a directory on it but that does not appear on the NAS.
What other info should I look at to diagnose this problem?