Hello,
I would really appreciate it if someone please help me with fixing the rights because I’m out of inspiration.
relevant structure:
- pool1 - shares - data Permissions Owner: root Group:root Click an item to view NFSv4 permissions person owner@ - root: Allow | Full Control people group@ - root: Allow | Modify people Group - gr_media_a: Allow | Traverse people Group - gr_media_c: Allow | Traverse - a (for the 14+) Permissions Owner: root Group: root Click an item to view NFSv4 permissions people Group - gr_media_a: Allow | Traverse person owner@ - root: Allow | Full Control - c (for the children) Permissions Owner: root Group: root Click an item to view NFSv4 permissions people Group - gr_media_c: Allow | Traverse person owner@ - root: Allow | Full Control
Alle datasets were created with the Preset: Multiprotocol and have an ACL Type SMB/NFSv4, ACL Type Inherit and ACL Mode Inherit
The dataset /pool1/share/data is shared as an SMB share with default share parameter. User @Everyone and the group gr_media_a and the group gr_media_c have FULL .CONTROL.
The user testuser had SMB access and is member of the group gr_media_a.
On a Ubuntu client:
smbclient -L 10.10.10.10 -U testuser
results in
Password for [WORKGROUP\testuser]:
Sharename Type Comment --------- ---- ------- IPC$ IPC IPC Service (TrueNAS Server) private Disk docker Disk Docker data data Disk Data share
SMB1 disabled – no workgroup available
Mounting a share with
sudo mount -v -t cifs -o username=testuser,password= //10.14.10.10/data /mnt/data
results in
mount: /mnt/data: cannot mount //10.10.10.10/data read-only.
dmesg(1) may have more information after failed mount system call.
The relevant dmesg says
[ 4857.065533] CIFS: Attempting to mount //10.10.10.10/data
[ 4857.081055] CIFS: Status code returned 0xc000006d STATUS_LOGON_FAILURE
[ 4857.081069] CIFS: VFS: \10.10.10.10 Send error in SessSetup = -13
[ 4857.081086] CIFS: VFS: cifs_mount failed w/return code = -13
What am I doing wrong?