SMB not working after upgrade from FreeNAS 11.3 to TrueNAS 13.0

101110101101

Cadet
Joined
Oct 25, 2022
Messages
2
Hello there,

I hope your guys can shine a light for me. my FreeNAS 11.3 was working fine at home for the past few years, last week decided to upgrade it to the newest TrueNAS 13.0 and now I can't access my SMB shares using my computers at home.
I spent the past few days reading all different threads in the forum, trying different approaches and testing, no success.
Here is what I figured out so far.

- Originally I was using the root user to access the shares, which isnt allowed anymore so I created a new user "Lu" and added to the "workgroup".
- On dataset /mnt/NAStorage/NAStorage I changed the ACL permissions including now the new user with full control.
- I restarted the SMB service and still the Windows 10 can't map the share. it keeps telling me "wrong password"

Based in some of the topics in the forum I collected the following data, I hope it helps you to assist me:

Code:
root@freenas[~]# getfacl /mnt/NAStorage/NAStorage
# file: /mnt/NAStorage/NAStorage
# owner: Lu
# group: WORKGROUP
            owner@:rwxpDdaARWcCos:-------:allow
            group@:rwxpDdaARWcCos:-------:allow
           user:Lu:rwxpDdaARWcCos:fd-----:allow
         everyone@:--------------:fd-----:allow



Code:
root@freenas[~]# smbclient -L //10.0.0.50 -U lu
lpcfg_do_global_parameter: WARNING: The "client ntlmv2 auth" option is deprecated
Password for [WORKGROUP\lu]:

        Sharename       Type      Comment
        ---------             ----      -------
        IPC$                   IPC       IPC Service (FreeNAS Server)
        NAStorage        Disk
        Test                   Disk
SMB1 disabled -- no workgroup available
root@freenas[~]#



The midclt call smb.status AUTH_LOG | jq show

Code:
 {
    "timestamp": "2022-10-25T23:33:18.956133-0700",
    "type": "Authentication",
    "Authentication": {
      "version": {
        "major": 1,
        "minor": 2
      },
      "eventId": 4624,
      "logonId": "0",
      "logonType": 3,
      "status": "NT_STATUS_OK",
      "localAddress": "ipv4:10.0.0.50:445",
      "remoteAddress": "ipv4:10.0.0.43:62468",
      "serviceDescription": "SMB2",
      "authDescription": null,
      "clientDomain": "APOLLO",
      "clientAccount": "lu",
      "workstation": "APOLLO",
      "becameAccount": "Lu",
      "becameDomain": "FREENAS",
      "becameSid": "S-1-5-21-1875233345-3524883122-2039843641-20035",
      "mappedAccount": "lu",
      "mappedDomain": "APOLLO",
      "netlogonComputer": null,
      "netlogonTrustAccount": null,
      "netlogonNegotiateFlags": "0x00000000",
      "netlogonSecureChannelType": 0,
      "netlogonTrustAccountSid": null,
      "passwordType": "NTLMv2",
      "duration": 6648
    },
    "timestamp_tval": {
      "tv_sec": 1666765998,
      "tv_usec": 956133
    }



But the Windows explorer still not accepting the user and password to login, if you have any suggestion I would more than happy to try.
 
Top