Hi comunity, i have implemented in my company a small samba server only use for sharing proposes. Mi problem is simple, in the config i set the directives "client min protocol = SMB2" and "client max protocol = SMB3_11". Acording to this 2 directives a client with Windows XP can't connect to my server, but i have 2 clientes using that OS and conncect without problems. I let my config here, any sugestions will be apreceated. [global] ## local master = no load printers = no printing = bsd printcap name = /dev/null disable spoolss = yes ## netbios name = data1 workgroup = MY security = ADS realm = MY.COMPANY.CU encrypt passwords = yes client min protocol = SMB2 client max protocol = SMB3_11 idmap config *:backend = rid idmap config *:range = 100000-200000 winbind use default domain = yes winbind enum users = yes winbind enum groups = yes vfs objects = acl_xattr map acl inherit = Yes store dos attributes = Yes log level = 1 log file = /var/log/samba/samba.log [y] comment=Data_1 path = /home/samba/data1 browseable = Yes read only = No force create mode = 0660 force directory mode = 0660 vfs objects = acl_xattr full_audit full_audit:prefix = %u|%I|%S full_audit:facility = local7 full_audit:success = mkdir rename unlink rmdir pwrite open full_audit:failure = none full_audit:priority = NOTICE PD: English it's not my native language. Thanks in advance -- Saludos Cordiales Lic. Alex Gutiérrez Martínez Tel. +53 7 2710327
On Fri, 9 Mar 2018 09:51:55 -0500 Alex Gutiérrez Martínez via samba <samba at lists.samba.org> wrote:> Hi comunity, i have implemented in my company a small samba server > only use for sharing proposes. Mi problem is simple, in the config i > set the directives "client min protocol = SMB2" and "client max > protocol = SMB3_11". Acording to this 2 directives a client with > Windows XP can't connect to my server, but i have 2 clientes using > that OS and conncect without problems. I let my config here, any > sugestions will be apreceated. >You need to get the XP clients to use NTLMv2, see here: https://www.imss.caltech.edu/node/396 Rowland
On Fri, Mar 9, 2018 at 3:51 PM, Alex Gutiérrez Martínez via samba <samba at lists.samba.org> wrote:> for sharing proposes. Mi problem is simple, in the config i set the > directives "client min protocol = SMB2" and "client max protocol = SMB3_11". > Acording to this 2 directives a client with Windows XP can't connect to my > server, but i have 2 clientes using that OS and conncect without problems. I > let my config here, any sugestions will be apreceated.Parameters of the type "client something" are for when samba acts as a client (ie: smbclient), not for samba's clients. To do what you want, you need to use "max protocol = ..." "min protocol = ..", without "client". Recents samba versions support "max server protocol" as an alternative (same meaning) of "max protocol".
On Fri, 9 Mar 2018 17:55:15 +0100 Giulio via samba <samba at lists.samba.org> wrote:> On Fri, Mar 9, 2018 at 3:51 PM, Alex Gutiérrez Martínez via samba > <samba at lists.samba.org> wrote: > > Recents samba versions support "max server protocol" as an alternative > (same meaning) of "max protocol". >I think you mean 'max protocol' is a synonym for 'server max protocol' Rowland