snmp Setup#
dnf -y install samba
groupadd smbgroup
mkdir /home/share
chgrp smbgroup /home/share
chmod 770 /home/share
vi /etc/samba/smb.conf
/etc/samba/smb.conf
[global]
# 11行目 : 文字コードの設定を追記
unix charset = UTF-8
dos charset = CP932
workgroup = SAMBA
security = user
# アクセス許可するネットワーク設定を追記
hosts allow = 127. 10.0.0.
<<< snip >>>
[Share]
# 共有フォルダーを指定
path = /home/share
# 書き込みを許可する
writable = yes
# ゲストユーザー (nobody) を許可しない
guest ok = no
# [smbgroup01] グループのみアクセス許可する
valid users = @smbgroup01
# ファイル作成時のグループを [smbgroup01] とする
force group = smbgroup01
# ファイル作成時のパーミッションを [770] とする
force create mode = 770
# フォルダー作成時のパーミッションを [770] とする
force directory mode = 770
# 上位フォルダーのパーミッションを継承する
inherit permissions = yes