summaryrefslogtreecommitdiff
path: root/WHATSNEW.txt
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2022-04-05 10:32:20 -0700
committerJeremy Allison <jra@samba.org>2022-04-07 18:33:31 +0000
commitefcaeff2c333496a52ee5b74d03a6daf962ce665 (patch)
tree10800d9681b3e52285a23db2e4c4a1d822558823 /WHATSNEW.txt
parent8d62b7aca71fc20017e950ac4ec372324b907803 (diff)
downloadsamba-efcaeff2c333496a52ee5b74d03a6daf962ce665.tar.gz
WHATSNEW.txt: Add explaination of --without-smb1-server and --with-smb1-server configure options.
Signed-off-by: Jeremy Allison <jra@samba.org> Reviewed-by: David Mulder <dmulder@suse.com> Autobuild-User(master): Jeremy Allison <jra@samba.org> Autobuild-Date(master): Thu Apr 7 18:33:31 UTC 2022 on sn-devel-184
Diffstat (limited to 'WHATSNEW.txt')
-rw-r--r--WHATSNEW.txt31
1 files changed, 31 insertions, 0 deletions
diff --git a/WHATSNEW.txt b/WHATSNEW.txt
index 48f3fcfb090..a0cffa6d75b 100644
--- a/WHATSNEW.txt
+++ b/WHATSNEW.txt
@@ -16,6 +16,37 @@ UPGRADING
NEW FEATURES/CHANGES
====================
+Configure without the SMB1 Server
+---------------------------------
+
+It is now possible to configure Samba without support for
+the SMB1 protocol in smbd. This can be selected at configure
+time with either of the options:
+
+--with-smb1-server
+--without-smb1-server
+
+By default (without either of these options set) Samba
+is configured to include SMB1 support (i.e. --with-smb1-server
+is the default). When Samba is configured without SMB1 support,
+none of the SMB1 code is included inside smbd except the minimal
+stub code needed to allow a client to connect as SMB1 and immediately
+negotiate the selected protocol into SMB2 (as a Windows server also
+allows).
+
+None of the SMB1-only smb.conf parameters are removed when
+configured without SMB1, but these parameters are ignored by
+the smbd server. This allows deployment without having to change
+an existing smb.conf file.
+
+This option allows sites, OEMs and integrators to configure Samba
+to remove the old and insecure SMB1 protocol from their products.
+
+Note that the Samba client libraries still support SMB1 connections
+even when Samba is configured as --without-smb1-server. This is
+to ensure maximum compatibility with environments containing old
+SMB1 servers.
+
Bronze bit and S4U support with MIT Kerberos 1.20
-------------------------------------------------