2018年7月19日 星期四

aws EC1 設定 samba 備忘

最近又在搬家了,從自建機房->Azure->Jcloud到現在的AWS,貌似GCP, alibabacloud評估中~這~ =.= 工程師是無敵的吧? 每個環境都有些小眉角,放在這邊貌似比存在硬碟來的方便,所以就備忘一下。

安裝服務
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 smbgrp
passwd smb_account
smbpasswd -a smb_account

測試連線
本地: smbclient //localhost/smb_folder -U smb_account
遠端: smbclient //smb-server-ip/smb_folder -U smb_account


沒有留言: