linux-SMB文件共享

简介:

################SMB文件共享###############


用internet文件系统(CIFS)也成为服务器是使用于MicrosftWindows服务器和客户端的标准文件和打印机共享系统信息块(SMB)
Samba服务可用于将Linux文件系统作为CIFS/SMB网络文件共享进行共享,并将Linux打印机作为CIFS/SMB打印机共享进行共享
软件包:
Samba-common  Samba的支持文件
Samba-client  客户端应用程序
Samba         服务器应用程序

服务器名称:smb  nmb
服务端口:通常使用TCP/445进行所有连接。还使用UDP137、UDP138和TCP/139进行向后兼容
主配置文件:/etc/samba/smb.conf


*)安装服务####################


[root@desktop ~]# yum search samba 

[root@desktop ~]# yum install samba-client.x86_64 samba-common.x86_64 samba.x86_64 -y 安装smb服务

[root@desktop ~]# systemctl start smb   开启服务

[root@desktop ~]# netstat -antlupe | grep smb查看服务端口(两个服务)

[root@desktop ~]# netstat -antlupe | grep nmb

Screenshot from 2017-12-04 10-44-15.png

[root@station ~]# smbclient -L //172.25.12.12   查看(匿名)

Enter root's password:  回车
Anonymous login successful  匿名



Screenshot from 2017-12-04 12-21-47.png


*)创建smb用户#######################


Screenshot from 2017-12-04 19-44-37.png


创建smb用户,用户必须是系统已有的用户

[root@station ~]# pdbedit -L     查看smb用户

[root@station ~]#

[root@station ~]# smbpasswd -a student   创建smb用户 Screenshot from 2017-12-04 12-26-48.png


系统没有的用户,不能加入,如下

[root@station ~]# smbpasswd -a westos

Screenshot from 2017-12-04 12-31-42.png

[root@station ~]# smbclient -L //172.25.12.12 -U student 以用户身份查看

Screenshot from 2017-12-04 12-32-47.png


[root@station ~]# smbclient //172.25.12.12/student -U student    登录

Screenshot from 2017-12-04 12-38-32.png



*)实现挂载############################

-12主机---

[root@foundation12 yum.repos.d]# yum install samba-client -y 安装服务

[root@desktop ~]# mount -o username=student,password=123 //172.25.12.12/student /mnt/

Screenshot from 2017-12-04 16-01-25.png


*)修改名称########################

[root@station ~]# vim /etc/samba/smb.conf   编辑配置文件


Screenshot from 2017-12-04 16-12-45.png


Screenshot from 2017-12-04 16-13-04.png


[root@station ~]# systemctl restart smb.service  重启服务


Screenshot from 2017-12-04 16-11-44.png[root@station 

更改成功!如下


Screenshot from 2017-12-04 16-17-27.png


*)指定谁登录smb#########################

[root@station ~]# vim /etc/samba/smb.conf  修改配置

Screenshot from 2017-12-04 16-39-08.png


[root@station ~]# systemctl restart smb.service  重启服务


如下10主机登录,250主机不能登录


Screenshot from 2017-12-04 16-40-56.png




*)共享自己的目录#########################

情况1:

[root@station ~]# getenforce   查看火墙状态

[root@station ~]# mkdir /westos  新建目录

Screenshot from 2017-12-04 16-32-35.pngDisabled

[root@station ~]# vim /etc/samba/smb.conf   修改配置文件
Screenshot from 2017-12-04 18-09-03.png

[root@station ~]# systemctl restart smb.service 重启服务


如下,登录可看到自己的目录!

Screenshot from 2017-12-04 18-10-21.png

情况二:

[root@desktop ~]# setenforce 1
[root@desktop ~]# getenforce    
Enforcing

则需要更改安全上下文

[root@desktop ~]# ls -Zd /westos/
drwxr-xr-x. root root unconfined_u:object_r:default_t:s0 /westos/
[root@desktop ~]# semanage fcontext -a -t samba_share_t '/westos(/.*)?'
[root@desktop ~]# ls -Zd /westos/
drwxr-xr-x. root root unconfined_u:object_r:default_t:s0 /westos/
[root@desktop ~]# restorecon -FvvR /westos/
restorecon reset /westos context unconfined_u:object_r:default_t:s0->system_u:object_r:samba_share_t:s0
restorecon reset /westos/file1 context unconfined_u:object_r:default_t:s0->system_u:object_r:samba_share_t:s0
restorecon reset /westos/file2 context unconfined_u:object_r:default_t:s0->system_u:object_r:samba_share_t:s0
restorecon reset /westos/file3 context unconfined_u:object_r:default_t:s0->system_u:object_r:samba_share_t:s0


挂载


Screenshot from 2017-12-04 18-15-14.png


永久挂载

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

Screenshot from 2017-12-04 18-17-38.png


mount -a 使策略生效


*)匿名用户登陆#######################

[root@station ~]# vim /etc/samba/smb.conf   修改配置文件


Screenshot from 2017-12-04 18-33-42.png


[root@station ~]# systemctl restart smb.service  重启服务

挂载:

[root@desktop ~]# mount //172.25.12.12/DATA /mnt/ -o username=guest,password="" 

   出现错误,由于版本不一样

如下挂载:

[root@desktop ~]# mount //172.25.12.12/DATA /mnt/ -o username=guest  挂载


[root@desktop ~]# smbclient -L /172.25.12.12  匿名登录上


Screenshot from 2017-12-04 18-38-24.png

永久挂载

Screenshot from 2017-12-04 18-41-35.png

*)用户可写########################


Screenshot from 2017-12-04 18-43-22.png


如上不可写!


[root@station ~]# vim /etc/samba/smb.conf 
[root@station ~]# systemctl restart smb.service 


Screenshot from 2017-12-04 18-45-23.png

[root@station ~]# ls -ld /westos/
drwxr-xr-x 2 root root 42 Dec  4 16:18 /westos/   查看权限
[root@station ~]# setfacl -m u:student:rwx /westos/  给用户赋予读写执行权限

Screenshot from 2017-12-04 18-46-54.png

如下,用户可写了

Screenshot from 2017-12-04 18-50-15.png

[root@station ~]# useradd westos  新建用户
[root@station ~]# smbpasswd -a westos  建立smb用户


Screenshot from 2017-12-04 18-52-47.png

[root@station ~]# usermod -G student westos  将用户机入S组
[root@station ~]# setfacl -m g:student:rwx /westos/  赋予组权限


Screenshot from 2017-12-04 18-59-30.png

326         write list = @student   @ / + 为该组


Screenshot from 2017-12-04 19-01-02.png

[root@station ~]# useradd admin  新建用户名字为管理员 可不是真正的管理员 没有管理员的权力

Screenshot from 2017-12-04 19-07-12.png


如下赋予他超户身份


Screenshot from 2017-12-04 19-20-25.png

如下admin可写了!


Screenshot from 2017-12-04 19-22-49.png

*)隐藏共享目录######################


Screenshot from 2017-12-04 19-27-39.png

 browseable = no    默认为yes 隐藏此共享目录(看不到,能用)


Screenshot from 2017-12-04 19-28-46.png


*)指定使用smb用户#########################



Screenshot from 2017-12-04 19-35-03.png

                   vaild users = +student  只有student 组用smb
 

                   vaild users = student   只有student用户用smb


[root@desktop  ~]# mount //172.25.12.12/DATA /mnt/ -o username=admin,password=123
mount error(13): Permission denied                              adimin不能实现挂载了
Refer to the mount.cifs(8) manual page (e.g. man mount.cifs)


--smb用户改密码------

[root@station ~]# smbpasswd student   
New SMB password:                 输入新密码
Retype new SMB password:      确认新密码


*)认证##################################


Screenshot from 2017-12-04 19-49-15.png


[root@desktop mnt]# su - kiosk   非smb用户
[kiosk@desktop ~]$ cd /mnt
[kiosk@desktop mnt]$ ls          可看到不安全
file  file1  file2  file3


SMB多用户挂载

(客户机)


Screenshot from 2017-12-04 19-44-45.png

[root@desktop ~]# yum install cifs-utils -y  安装服务

[root@desktop ~]# vim /root/smbfile   编辑文件

Screenshot from 2017-12-04 19-52-12.png


SMB多用户认证

[root@desktop ~]# mount -o credentials=/root/smbfile,multiuser,sec=ntlmssp //172.25.12.12/DATA /mnt


[kiosk@desktop mnt]$ cifscreds add -u westos 172.25.12.12   以smb用户身份查看

Password: 
[kiosk@desktop mnt]$ ls
file  file1  file2  file3  liu
[kiosk@desktop mnt]$ mkdir huan  建立目录


Screenshot from 2017-12-04 20-05-05.png


 本文转自 huanzi2017 51CTO博客,原文链接:http://blog.51cto.com/13362895/2047569


相关文章
|
2月前
|
Linux 数据安全/隐私保护 Windows
命令方式:window向linux传文件
【10月更文挑战第6天】本文介绍了如何在Linux系统中通过命令`ip a`获取IP地址,并在Windows系统下使用CMD命令行工具和SCP命令实现文件传输。示例展示了如何将D盘中的`mm.jar`文件上传至IP地址为192.168.163.122的Linux系统的/up/目录下,最后在Linux系统中确认文件传输结果。
285 65
|
2月前
|
运维 安全 Linux
Linux中传输文件文件夹的10个scp命令
【10月更文挑战第18天】本文详细介绍了10种利用scp命令在Linux系统中进行文件传输的方法,涵盖基础文件传输、使用密钥认证、复制整个目录、从远程主机复制文件、同时传输多个文件和目录、保持文件权限、跨多台远程主机传输、指定端口及显示传输进度等场景,旨在帮助用户在不同情况下高效安全地完成文件传输任务。
347 5
|
2月前
|
Linux Shell 数据库
Linux文件查找新姿势:总有一种你没见过
【10月更文挑战第18天】文件查找是Linux用户提升工作效率的重要技能。本文介绍了几种实用的文件查找方法,包括基础的`find`命令、快速的`locate`和`mlocate`、高效的`fd`工具、以及结合`grep`和`rg`进行内容搜索。此外,还提供了编写Shell脚本和使用图形界面工具的建议,帮助你更灵活地管理文件。
85 3
|
2月前
|
Linux Shell
Linux系统文件默认权限
Linux系统文件默认权限
59 2
|
12天前
|
Linux Shell 网络安全
Kali Linux系统Metasploit框架利用 HTA 文件进行渗透测试实验
本指南介绍如何利用 HTA 文件和 Metasploit 框架进行渗透测试。通过创建反向 shell、生成 HTA 文件、设置 HTTP 服务器和发送文件,最终实现对目标系统的控制。适用于教育目的,需合法授权。
47 9
Kali Linux系统Metasploit框架利用 HTA 文件进行渗透测试实验
|
1月前
|
Linux 开发工具 Perl
在Linux中,有一个文件,如何删除包含“www“字样的字符?
在Linux中,如果你想删除一个文件中包含特定字样(如“www”)的所有字符或行,你可以使用多种文本处理工具来实现。以下是一些常见的方法:
41 5
|
1月前
|
安全 Linux 数据安全/隐私保护
在 Linux 系统中,查找文件所有者是系统管理和安全审计的重要技能。
在 Linux 系统中,查找文件所有者是系统管理和安全审计的重要技能。本文介绍了使用 `ls -l` 和 `stat` 命令查找文件所有者的基本方法,以及通过文件路径、通配符和结合其他命令的高级技巧。还提供了实际案例分析和注意事项,帮助读者更好地掌握这一操作。
53 6
|
1月前
|
Linux
在 Linux 系统中,`find` 命令是一个强大的文件查找工具
在 Linux 系统中,`find` 命令是一个强大的文件查找工具。本文详细介绍了 `find` 命令的基本语法、常用选项和具体应用示例,帮助用户快速掌握如何根据文件名、类型、大小、修改时间等条件查找文件,并展示了如何结合逻辑运算符、正则表达式和排除特定目录等高级用法。
102 6
|
1月前
|
监控 Linux Perl
Linux 命令小技巧:显示文件指定行的内容
在 Linux 系统中,处理文本文件是一项常见任务。本文介绍了如何使用 head、tail、sed 和 awk 等命令快速显示文件中的指定行内容,帮助你高效处理文本文件。通过实际应用场景和案例分析,展示了这些命令在代码审查、日志分析和文本处理中的具体用途。同时,还提供了注意事项和技巧,帮助你更好地掌握这些命令。
108 4
|
2月前
|
Linux 开发工具 数据安全/隐私保护
linux异常一:feng 不在 sudoers 文件中,此事将被报告。yum提示Another app is currently holding the yum lock; waiting for
这篇文章介绍了在CentOS 7系统中安装Docker时遇到的两个常见问题及其解决方法:用户不在sudoers文件中导致权限不足,以及yum被锁定的问题。
48 2
linux异常一:feng 不在 sudoers 文件中,此事将被报告。yum提示Another app is currently holding the yum lock; waiting for