Hallo zusammen,

ich habe seit einiger Zeit Probleme mit dem Zugriff von meinen Windows 10 Rechnern auf meinen Samba Server.

Nach etwas googlen bin ich auf das Thema mit der SAMBA Protocol Version gestoßen. Das habe ich nachgeschaut und an meinem Windows Rechner ist Version 1 deaktiviert. Wenn ich ‘Get-SmbServerConfiguration’ in der PowerSHELL aufrufe, dann kommt EnableSMBProtocol1 = false.

Hier mal meine Konfiguration vom Samba:
Code:
#======================= Global Settings =======================

[global]

   workgroup = WORKGROUP
   server string = debian
   interfaces = 192.168.2.4/255.255.255.0
   bind interfaces only = yes
   log file = /var/log/samba/log.%m
   max log size = 1000
   syslog = 0
   security = user
   encrypt passwords = true
   passdb backend = tdbsam
   log level = 1
   os level = 64
   guest account = freehawk


#======================= Share Definitions =======================

[zeugs]
   comment = Zeugs Ordner
   browseable = no
   read only = no
   create mask = 0640
   directory mask = 0750
   path = /server_a/zeugs
   guest ok = yes

[vhost]
   comment = Vhost Ordner
   browseable = no
   read only = no
   create mask = 0640
   directory mask = 0750
   path = /server_a/vhost
   guest ok = yes

[logon]
   comment = Logon Ordner
   browseable = no
   read only = no
   create mask = 0640
   directory mask = 0750
   path = /server_a/logon
   guest ok = yes

[dpsg]
   comment = DPSG Ordner
   browseable = no
   read only = no
   create mask = 0640
   directory mask = 0750
   path = /server_a/dpsg
   guest ok = yes
Fehlermeldung beim Windows ist immer Fehlercode: 0x80070035 "Netzwerkpfad wurde nicht gefunden"

unter /var/log/samba/log.smbd kommen folgende Meldung beim Loginversuch:
Code:
[2019/06/15 11:50:34.097352,  5] ../lib/util/util_net.c:1057(print_socket_options)
  Socket options:
        SO_KEEPALIVE = 1
        SO_REUSEADDR = 1
        SO_BROADCAST = 0
        TCP_NODELAY = 1
        TCP_KEEPCNT = 9
        TCP_KEEPIDLE = 7200
        TCP_KEEPINTVL = 75
        IPTOS_LOWDELAY = 0
        IPTOS_THROUGHPUT = 0
        SO_REUSEPORT = 1
        SO_SNDBUF = 87040
        SO_RCVBUF = 374400
        SO_SNDLOWAT = 1
        SO_RCVLOWAT = 1
        SO_SNDTIMEO = 0
        SO_RCVTIMEO = 0
        TCP_QUICKACK = 1
        TCP_DEFER_ACCEPT = 0
[2019/06/15 11:50:34.097404,  5] ../lib/util/util_net.c:1057(print_socket_options)
  Socket options:
        SO_KEEPALIVE = 1
        SO_REUSEADDR = 1
        SO_BROADCAST = 0
        TCP_NODELAY = 1
        TCP_KEEPCNT = 9
        TCP_KEEPIDLE = 7200
        TCP_KEEPINTVL = 75
        IPTOS_LOWDELAY = 0
        IPTOS_THROUGHPUT = 0
        SO_REUSEPORT = 1
        SO_SNDBUF = 87040
        SO_RCVBUF = 374400
        SO_SNDLOWAT = 1
        SO_RCVLOWAT = 1
        SO_SNDTIMEO = 0
        SO_RCVTIMEO = 0
        TCP_QUICKACK = 1
        TCP_DEFER_ACCEPT = 0
[2019/06/15 11:50:34.097483,  3] ../source3/lib/access.c:338(allow_access)
  Allowed connection from 192.168.2.242 (192.168.2.242)
Hat mir jemand einen Heißen Tipp?

Vielen Dank!

Gruß
Markus