mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-03-17 20:54:10 +00:00
smb3.1.1: enable negotiating stronger encryption by default
Now that stronger encryption (gcm256) has been more broadly tested, and confirmed to work with multiple servers (Windows and Azure for example), enable it by default. Although gcm256 is the second choice we offer (after gcm128 which should be faster), this change allows mounts to server which are configured to require the strongest encryption to work (without changing a module load parameter). Signed-off-by: Steve French <stfrench@microsoft.com> Suggested-by: Ronnie Sahlberg <lsahlber@redhat.com> Reviewed-by: Ronnie Sahlberg <lsahlber@redhat.com>
This commit is contained in:
parent
a8a6082d4a
commit
fee742b502
1 changed files with 1 additions and 1 deletions
|
@ -75,7 +75,7 @@ bool enable_oplocks = true;
|
|||
bool linuxExtEnabled = true;
|
||||
bool lookupCacheEnabled = true;
|
||||
bool disable_legacy_dialects; /* false by default */
|
||||
bool enable_gcm_256; /* false by default, change when more servers support it */
|
||||
bool enable_gcm_256 = true;
|
||||
bool require_gcm_256; /* false by default */
|
||||
unsigned int global_secflags = CIFSSEC_DEF;
|
||||
/* unsigned int ntlmv2_support = 0; */
|
||||
|
|
Loading…
Add table
Reference in a new issue