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 15:55]
billdozor [Network Services Overview SMB]
linux_wiki:network_services_overview_smb [2016/10/02 21:40]
billdozor [User Based]
Line 17: Line 17:
 ====== Install the packages needed to provide the service ====== ====== Install the packages needed to provide the service ======
  
-Install the service+Install the service (server)
 <code bash> <code bash>
-yum install <service-name>+yum install samba samba-client
 </code> </code>
 +  * samba -> samba server
 +  * samba-client -> samba client utilities
 +
 +Install the service (client)
 +<code bash>
 +yum install samba-client cifs-utils
 +</code>
 +  * samba-client -> samba client utilities
 +  * cifs-utils -> includes command needed to mount remote SMB shares
  
 ---- ----
Line 42: 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 49: 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 58: 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 70: 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 76: Line 85:
 ===== Host Based ===== ===== Host Based =====
  
 +Main samba config
 +<code bash>
 +vim /etc/samba/smb.conf
  
 +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)