mirror of
https://github.com/samba-team/samba.git
synced 2024-12-23 17:34:34 +03:00
docs-xml: change "client min protocol" to SMB2_02
It's time to disable SMB1 by default... Signed-off-by: Stefan Metzmacher <metze@samba.org> Reviewed-by: Ralph Boehme <slow@samba.org>
This commit is contained in:
parent
d216db5cd5
commit
3264b1f317
@ -9,13 +9,17 @@
|
||||
|
||||
<para>Normally this option should not be set as the automatic
|
||||
negotiation phase in the SMB protocol takes care of choosing
|
||||
the appropriate protocol.</para>
|
||||
the appropriate protocol unless you connect to a legacy SMB1-only server.</para>
|
||||
|
||||
<para>See <related>client max protocol</related> for a full list
|
||||
of available protocols.</para>
|
||||
|
||||
<para>IPC$ connections for DCERPC e.g. in winbindd, are handled by the
|
||||
<smbconfoption name="client ipc min protocol"/> option.</para>
|
||||
|
||||
<para>Note that most command line tools support
|
||||
--option='client min protocol=NT1', so it may not be required to
|
||||
enable SMB1 protocols globally in smb.conf.</para>
|
||||
</description>
|
||||
|
||||
<related>client max protocol</related>
|
||||
@ -23,6 +27,6 @@
|
||||
<related>client ipc min protocol</related>
|
||||
<related>client ipc max protocol</related>
|
||||
|
||||
<value type="default">CORE</value>
|
||||
<value type="default">SMB2_02</value>
|
||||
<value type="example">NT1</value>
|
||||
</samba:parameter>
|
||||
|
@ -2713,7 +2713,7 @@ struct loadparm_context *loadparm_init(TALLOC_CTX *mem_ctx)
|
||||
lpcfg_do_global_parameter(lp_ctx, "LargeReadwrite", "True");
|
||||
lpcfg_do_global_parameter(lp_ctx, "server min protocol", "SMB2_02");
|
||||
lpcfg_do_global_parameter(lp_ctx, "server max protocol", "SMB3");
|
||||
lpcfg_do_global_parameter(lp_ctx, "client min protocol", "CORE");
|
||||
lpcfg_do_global_parameter(lp_ctx, "client min protocol", "SMB2_02");
|
||||
lpcfg_do_global_parameter(lp_ctx, "client max protocol", "default");
|
||||
lpcfg_do_global_parameter(lp_ctx, "client ipc min protocol", "default");
|
||||
lpcfg_do_global_parameter(lp_ctx, "client ipc max protocol", "default");
|
||||
|
@ -648,7 +648,7 @@ static void init_globals(struct loadparm_context *lp_ctx, bool reinit_globals)
|
||||
Globals.server_max_protocol = PROTOCOL_SMB3_11;
|
||||
Globals.server_min_protocol = PROTOCOL_SMB2_02;
|
||||
Globals._client_max_protocol = PROTOCOL_DEFAULT;
|
||||
Globals.client_min_protocol = PROTOCOL_CORE;
|
||||
Globals.client_min_protocol = PROTOCOL_SMB2_02;
|
||||
Globals._client_ipc_max_protocol = PROTOCOL_DEFAULT;
|
||||
Globals._client_ipc_min_protocol = PROTOCOL_DEFAULT;
|
||||
Globals._security = SEC_AUTO;
|
||||
|
Loading…
Reference in New Issue
Block a user