安裝服務
yum install samba samba-client
chkconfig smb
service smb start/restart/stop
得在AWS的儀表版Security Group 設定Inbound PORT
open TCP 139 如果有windows設備要連線,則加開445
open UDP 137-138
設定分享資料夾位置
vim /etc/samba/smb.conf
---------------------------------------------------------------
security = user #使用者驗證
[smb_folder]
valid users = @smbgrp #群組授權
...
---------------------------------------------------------------測試設定檔
testparm
新增使用者,將該使用者群組設定到smbgrp
useradd smb_account -G smbgrppasswd smb_account
smbpasswd -a smb_account
測試連線
本地: smbclient //localhost/smb_folder -U smb_account
遠端: smbclient //smb-server-ip/smb_folder -U smb_account