Samba SMBv2 installieren

bywizard

Lieutenant
Registriert
Okt. 2018
Beiträge
537
Hey ich hab da mal eine Frage.
Wie aktiviere ich Samba SMBv2 und höher?

[Linux]
path = /
writeable = yes
public = yes

[sdb]
path = /data/sdb
writeable = yes
public = yes

[sdc]
path = /data/sdc
writeable = yes
public = yes

[saves]
path = /data/sdb/saves
writeable = yes
public = yes

[programs]
path = /data/sdb/programs
writeable = yes
public = yes

das ist meine config und ja ich weiß, sie ist sehr simpel
 
normalerweise handeln server und client das aus. du kannst aber konfigurieren, was clients mindestens können müssen bzw. was der server mindestens anbietet.

Code:
[global]
  server min protocol = SMB2
  client min protocol = SMB2
 
Außer simpel auch offen wie ein Scheunentor - da kann buchstäblich jeder, der Interesse hat, auf alles zugreifen. Aber das nur nebenher.

Schau Dir mal die Ausgabe von

Bash:
 testparm -sv | grep -iE '(client|server) (min|max) proto'
an, und wirf einen Blick in man 5 smb.conf.
 
Zurück
Oben