public inbox for development@lists.ipfire.org
 help / color / mirror / Atom feed
* [PATCH] samba: allow to configure server protocol version
@ 2020-11-01 16:38 Arne Fitzenreiter
  2020-11-02 10:31 ` Michael Tremer
  0 siblings, 1 reply; 2+ messages in thread
From: Arne Fitzenreiter @ 2020-11-01 16:38 UTC (permalink / raw)
  To: development

[-- Attachment #1: Type: text/plain, Size: 972 bytes --]

add entries for server min/max protocol in /var/ipfire/samba/settings.
This settings may be dangerous but sometimes they are needed so it will
not showed in the cgi.

Signed-off-by: Arne Fitzenreiter <arne_f(a)ipfire.org>
---
 html/cgi-bin/samba.cgi | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/html/cgi-bin/samba.cgi b/html/cgi-bin/samba.cgi
index ec41adc5d..4b57c1add 100644
--- a/html/cgi-bin/samba.cgi
+++ b/html/cgi-bin/samba.cgi
@@ -835,7 +835,16 @@ if ($sambasettings{'ENCRYPTION'} =~ m/(desired|required)/) {
 	print FILE "smb encrypt = $1\n";
 }
 
+if ($sambasettings{'SERVER_MIN_PROTOCOL'} ne "" ) {
+	print FILE "server min protocol = $sambasettings{'SERVER_MIN_PROTOCOL'}\n";
+}
+
+if ($sambasettings{'SERVER_MAX_PROTOCOL'} ne "" ) {
+	print FILE "server max protocol = $sambasettings{'SERVER_MAX_PROTOCOL'}\n";
+}
+
 print FILE <<END;
+
 # Export all printers
 [printers]
 path = /var/spool/samba/
-- 
2.17.1


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2020-11-02 10:31 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-11-01 16:38 [PATCH] samba: allow to configure server protocol version Arne Fitzenreiter
2020-11-02 10:31 ` Michael Tremer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox