Upgrading FreeNAS breaks FreeBSD clients

Just found out last week that upgrading FreeNAS to the latest version breaks any FreeBSD clients which have SMB shares on the server. This is due to FreeNAS no longer supporting SMB v1.

( Note to Mods: I know I mentioned FreeNAS, but I think it is relevant to FreeBSD)
 
There seems to be a simple solution...- https://www.ixsystems.com/community/threads/changes-in-smb-for-11-1u5-to-11-1u6.69442/#post-477577

Go into your SMB configuration and try pasting the following into the "Auxiliary Parameters" field. Doing so will add that parameter to the SMB.conf.

Code:
min protocol = SMB1

I haven't tried it myself yet.

I don't think changing numerous clients to comply with some arbitrary change to a server is particularly good practice if things had been working fairly reasonably up to this point.
 

There seems to be a simple solution...- https://www.ixsystems.com/community/threads/changes-in-smb-for-11-1u5-to-11-1u6.69442/#post-477577

Go into your SMB configuration and try pasting the following into the "Auxiliary Parameters" field. Doing so will add that parameter to the SMB.conf.

Code:
min protocol = SMB1

I haven't tried it myself yet.

I don't think changing numerous clients to comply with some arbitrary change to a server is particularly good practice if things had been working fairly reasonably up to this point.

I think that is the solution but you should check the right syntax for your smb.conf because in the second link I shared you they told about client min protocol

Anyway I know is frustrating that upgrading a server the clients goes down, but remember that smb1 as protocol has some security problems so clients should upgrade to v2 almost. Remember that ransomware and forks of it uses samba (or windows shares) to infect another machines so is very important to upgrade your version .

Regards.
 
Just found out last week that upgrading FreeNAS to the latest version breaks any FreeBSD clients which have SMB shares on the server. This is due to FreeNAS no longer supporting SMB v1.

Add the following to the Auxiliary Parameters section on the Services / SMB page:

Code:
ntlm auth = yes
min protocol = NT1

I needed it to get my Sonos equipment working again. It's kind of sad that's required:
 
Back
Top