Configure Samba for Windows 3.1: Difference between revisions

From Computers Wiki
Jump to navigationJump to search
(Create page)
 
(Fix typo (again -> begin))
Line 1: Line 1:
Before you again, you should know that SMB1 is '''very insecure'''. Only do this on a Samba server that is only accessible locally and not accessible from the internet. Also, an SMB account should already be set up in Samba using <code>smbpasswd</code>.
Before you begin, you should know that SMB1 is '''very insecure'''. Only do this on a Samba server that is only accessible locally and not accessible from the internet. Also, an SMB account should already be set up in Samba using <code>smbpasswd</code>.


Edit <code>/etc/samba/smb.conf</code> and make sure the following lines exist:
Edit <code>/etc/samba/smb.conf</code> and make sure the following lines exist:

Revision as of 03:45, 25 December 2021

Before you begin, you should know that SMB1 is very insecure. Only do this on a Samba server that is only accessible locally and not accessible from the internet. Also, an SMB account should already be set up in Samba using smbpasswd.

Edit /etc/samba/smb.conf and make sure the following lines exist:

[global]
  client min protocol = CORE
  server min protocol = CORE
  client plaintext auth = yes

Then, systemctl reload smbd.service.