码迷,mamicode.com
首页 > 系统相关 > 详细

Linux与云计算——第二阶段 第十章:Samba服务器架设—SMB共享目录及多用户SMB挂载

时间:2016-08-10 23:13:29      阅读:629      评论:0      收藏:0      [点我收藏+]

标签:通过smb共享目录   配置多用户smb挂载   

Linux与云计算——第二阶段Linux服务器架设

第十章:Samba服务器架设—SMB共享目录及多用户SMB挂载

通过SMB共享目录

Server上配置SMB服务

您的SMB服务器必须是STAFF工作组的一个成员

共享/common目录 共享名必须为common

只有example.com域内的客户端可以访问common共享

common必须是可以浏览的

用户andy必须能够读取共享中的内容,如果需要的话,验证密码是redhat

[1] 安装配置Samba.

[root@server ~]#yum install samba -y

[root@server ~]#firewall-cmd --add-service=samba

[root@server ~]#firewall-cmd --add-service=samba --permanent

[root@server ~]#firewall-cmd --add-service=mountd

[root@server ~]#firewall-cmd --add-service=mountd --permanent

[root@server ~]#cd /etc/samba/

[root@server ~]#vim smb.conf

workgroup = STAFF

[root@server ~]#mkdir /common

[root@server ~]#chcon -R -t samba_share_t /common/

[root@server ~]#vim smb.conf

[common]

  path = /common

hosts allow = 192.168.96.

browseable = yes

[root@server ~]#yum install samba-client -y

[root@server ~]#smbpasswd -a andy    

[root@server ~]#systemctl start smb

[root@server ~]#systemctl enable smb

[2] 客户机上

[root@client ~]#yum install samba-client cifs-* -y

[root@client ~]#smbclient -L /system1/ -U andy

[root@client ~]#smbclient //system1/common -U andy

配置多用户SMB挂载

Server共享通过SMB目录/mis满足以下要求:

共享名为mis

共享目录mis只能被example.com域中的客户端使用

共享目录mis 必须可以被浏览

 用户silene必须能以读的方式访问共享,访问密码是redhat

用户akira必须能以读写的方式访问此共享,访问密码是redhat

此共享永久挂载在client.example.com上的/mnt/multi目录。并使用用户silene作为认证 任何用户可以通过用户akira来临时获取写的权限

[1] 服务器端配置

[root@server ~]#mkdir /mis

[root@server ~]#vim smb.conf

[mis]

path = /mis

hosts allow = 192.168.96.

browseable = yes

writable = no

write list = akira

[root@server ~]#chmod o+w /mis

[root@server ~]#smbpasswd -a silene

[root@server ~]#smbpasswd -a akira

[root@server ~]#chcon -R -t samba_share_t /mis

[root@server ~]#systemctl restart smb

[2] 客户端配置

[root@client ~]#mkdir /mnt/multi

[root@client ~]#smbclient -L /server.example.com/ -U silene

[root@client ~]#vim /etc/fstab

//server.example.com/mis/mnt/multicifsdefaults,multiuser,username=silene,password=redhat,sec=ntlmssp 0 0

[root@client ~]#mount -a

可以尝试切换到其它用户

[root@client ~]#cifscreds add system1 -u akira

然后尝试对/mnt/multi目录进行写操作


本文出自 “11830455” 博客,请务必保留此出处http://11840455.blog.51cto.com/11830455/1836524

Linux与云计算——第二阶段 第十章:Samba服务器架设—SMB共享目录及多用户SMB挂载

标签:通过smb共享目录   配置多用户smb挂载   

原文地址:http://11840455.blog.51cto.com/11830455/1836524

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!