Will "NAS-120530 Remove Auxiliary Params from SMB Service and SMB Shares" affect me?

KokomiCat

Cadet
Joined
Oct 19, 2021
Messages
4
I was doing the upgrading, and see that the Auxiliary Parameters has been removed since https://ixsystems.atlassian.net/browse/NAS-120530.

Any clues why this is happening?

I have my previous SMB settings here.

Code:
smb encrypt = desired
server min protocol = SMB2_10
aio max threads = 1200
aio read size = 1
aio write size = 1
unicode = yes
recycle:versions = yes


So the it does require for encrypted connection, and show the recycle. Does that already being integrated into the default settings?
 

anodos

Sambassador
iXsystems
Joined
Mar 6, 2014
Messages
9,553
I was doing the upgrading, and see that the Auxiliary Parameters has been removed since https://ixsystems.atlassian.net/browse/NAS-120530.

Any clues why this is happening?

I have my previous SMB settings here.

Code:
smb encrypt = desired
server min protocol = SMB2_10
aio max threads = 1200
aio read size = 1
aio write size = 1
unicode = yes
recycle:versions = yes


So the it does require for encrypted connection, and show the recycle. Does that already being integrated into the default settings?
It's removed from webui, but available through the TrueNAS CLI. It does not delete the field from config database or alter share configuration.

That said:
Code:
server min protocol = SMB2_10
aio read size = 1
aio write size = 1
unicode = yes

These are all default values

Code:
aio max threads = 1200

We don't use aio_pthread
 
Last edited:
Joined
Oct 22, 2019
Messages
3,641
but available through CLI
"CLI" as in the TrueNAS-specific tool named "CLI"? In which you have to use this tool to make changes to your SMB share's auxiliary parameters?

Or "CLI" as in the shorthand abbreviation of "command-line interface" in general? In which you have to manually modify config files?
 

KokomiCat

Cadet
Joined
Oct 19, 2021
Messages
4
These are all default values
Yeah, it would be great to tell which command to use to modify these settings. I'd prefer to remove the default settings since they are already default.

We don't use aio_pthread
Actually I would just assume your default settings are the best. As my customized Samba configuration has been years.
 

anodos

Sambassador
iXsystems
Joined
Mar 6, 2014
Messages
9,553
"CLI" as in the TrueNAS-specific tool named "CLI"? In which you have to use this tool to make changes to your SMB share's auxiliary parameters?

Or "CLI" as in the shorthand abbreviation of "command-line interface" in general? In which you have to manually modify config files?
Right, that was ambiguous. The TrueNAS CLI.
 
Joined
Oct 22, 2019
Messages
3,641
Should have called it "TrueTool" or "TrueTerm" or "TrueLine" or "TLI" or "TCLI" or anything else other than "CLI". :tongue:

It's like calling a new web browser "Web Browser".
 

probain

Patron
Joined
Feb 25, 2023
Messages
211
Should have called it "TrueTool" or "TrueTerm" or "TrueLine" or "TLI" or "TCLI" or anything else other than "CLI". :tongue:

It's like calling a new web browser "Web Browser".
Trueterm has a nice ring to it
 

Cellobita

Contributor
Joined
Jul 15, 2011
Messages
107
I'm using auxiliary parameters to set up auditing for my shares, and those are needed in Core, both at the SMB service,

Code:
full_audit:prefix =%u|%I|%m|%S
full_audit:failure =connect
full_audit:success =unlinkat renameat mkdirat
full_audit:facility =LOCAL5
full_audit:priority =NOTICE

and Share,
Code:
vfs objects = (...) full_audit

Unfortunately, I won't be able to migrate to SCALE COBIA until I can get this working reliably.
 
Top