Copy data from Linux to TrueNas with ACL problem

I wanted to copy data from an old Linux SMB server to TrueNAS while keeping the permissions.
I tried through rsync:
rsync -av -AX -e ‘ssh’ / home / Wspólne root@192.168.0.2: / mnt / poolBack1 / dsSmb
message appears:
rsync error: error in rsync protocol data stream (code 12) at io.c (226)
When trying to tar
tar --xattrs -czvp -C / home / common -. | ssh root@192.168.0.2 “tar -C / mnt / poolBack1 / dsSmb -xzvf -”
the data is copying but with each file I have the following message:
“Cannot restore extended attributes: system.posix_acl_access security.NTACL”
Do you have any way to copy data from Linux to TrueNAS with ACL?

There may be a way to do it, but I am not aware of how.