linux_wiki:network_services_overview_smb

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
Next revision Both sides next revision
linux_wiki:network_services_overview_smb [2016/10/02 16:10]
billdozor [Firewall]
linux_wiki:network_services_overview_smb [2016/10/02 21:48]
billdozor [Host Based]
Line 85: Line 85:
 ===== Host Based ===== ===== Host Based =====
  
 +Main samba config
 +<code bash>
 +vim /etc/samba/smb.conf
  
 +[global]
 +hosts allow = 192.168.1.
 +</code>
 +  * Allows all hosts in the 192.168.1.x network
 +  * Allow list over rides deny lists (if any and they conflict)
 ===== User Based ===== ===== User Based =====
 +
 +Main samba config
 +<code bash>
 +vim /etc/samba/smb.conf
 +
 +valid users = dvader, yoda
 +write list = dvader
 +read list = yoda
 +</code>
 +  * valid users -> allowed to login to the service
 +  * write list -> users that can write, even if the share is set to read only
 +  * read list -> users that can read
  
 ---- ----
  
  • linux_wiki/network_services_overview_smb.txt
  • Last modified: 2019/05/25 23:50
  • (external edit)