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:00]
billdozor [Install the packages needed to provide the service]
linux_wiki:network_services_overview_smb [2016/10/02 21:48]
billdozor [User Based]
Line 51: Line 51:
 Check Current Service Status Check Current Service Status
 <code bash> <code bash>
-systemctl status <service-name>+systemctl status smb
 </code> </code>
   * Also displays if the service is enabled or disabled   * Also displays if the service is enabled or disabled
Line 58: Line 58:
 Enabling a service to start on boot Enabling a service to start on boot
 <code bash> <code bash>
-systemctl enable <service-name>+systemctl enable smb
 </code> </code>
  
Line 67: Line 67:
 Enable and Start the service Enable and Start the service
 <code bash> <code bash>
-systemctl enable <service-name> +systemctl enable smb 
-systemctl start <service-name>+systemctl start smb
 </code> </code>
  
Line 79: Line 79:
 Allow access through the firewall Allow access through the firewall
 <code bash> <code bash>
-firewall-cmd --permanent --add-service=<service-name>+firewall-cmd --permanent --add-service=samba
 firewall-cmd --reload firewall-cmd --reload
 </code> </code>
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
 +
 +[share]
 +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)