アクセス権付の共有フォルダ作成2008/08/16 |
ユーザー認証が必要なアクセス権付の共有フォルダを作ります。
小規模なグループでフォルダ共有する場合は前項 (2) の設定でよいでしょうが、
大規模になると、いくら内部とはいえ誰が何をするか分からないためアクセス権を付けます。 以下の例では 'security' というグループを作成し、 共有フォルダへはそのグループに属するユーザーのみがアクセスできるようにしています。 |
|
[1] | Samba の設定をします。 |
# groupadd security # mkdir /home/security # chgrp security /home/security # chmod 2770 /home/security # vi /etc/sfw/smb.conf # 35行目:変更 security = user # 最終行に以下7行追記 [Security] # テキトーに好きな名前指定 path = /home/security writable = yes create mode = 0770 directory mode = 0770 share modes = yes guest ok = no # ゲストは不許可 valid users = @security # security グループのみ許可 # smbpasswd -a solaris New SMB password: # パスワード設定 Retype new SMB password: Added user solaris. # vi /etc/group security:x:102: solaris # 追記 # /etc/init.d/samba stop # /etc/init.d/samba start
|
[2] | クライアントのWindows側での設定です。まずは以下のように 「マイコンピュータ」-「ネットワークドライブの割り当て」をクリックします。 |
[3] | 「\\サーバーのホスト名\共有フォルダ名」と指定します。 |
[4] | パスワードの入力を求められます。[1] で設定した Samba 用のパスワードを入力します。 |
[5] | アクセスできました。 |
Sponsored Link |