TrueNAS Scale ACLs Not Showing on SAMBA Mount Inside Linux Client

willowen100

Cadet
Joined
Feb 19, 2022
Messages
4
I have TrueNAS VM and a Ubuntu VM both running on Proxmox and I've created a SAMBA share on TrueNAS called docker_share with a dataset called docker_dataset. Below are my currently set ACLs:

TrueNAS ACLs​

Code:
root@FS-Home[~]# getfacl /mnt/pool0/docker_dataset
getfacl: Removing leading '/' from absolute path names
# file: mnt/pool0/docker_dataset
# owner: docker
# group: docker
user::rwx
group::rwx
group:builtin_administrators:rwx
mask::rwx
other::---
default:user::rwx
default:user:docker:rwx
default:group::rwx
default:group:builtin_administrators:rwx
default:mask::rwx
default:other::---


As you can see above I have assigned the builtin_administators group and this group includes my TrueNAS local account. I've also assigned full permissions as well as defining default ACLs. On my Ubuntu headless server I am able to mount the SAMBA from CLI using the following command:
Code:
mount -vt smb3 //fs-home/Docker_Share /mnt/Docker -o cifsacl,vers=3.0,seal,rw,nobrl,credentials=/etc/samba/smb_credentials.d/fs-home


However, I'm not seeing the same ACLs that were defined and seen on TrueNAS:

Ubuntu ACLs​

Code:
root@docker:~# getfacl /mnt/Docker/
getfacl: Removing leading '/' from absolute path names
# file: mnt/Docker/
# owner: root
# group: root
user::rwx
group::rwx
other::---


I know the ACLs are working because Windows 11 sees them perfectly fine:

TrueNAS ACLs from Windows 11.png


What am I missing?
 
Last edited:

willowen100

Cadet
Joined
Feb 19, 2022
Messages
4
Bump
 
Top