1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
| 设置共享:
1.创建需要共享的目录 /var/zxoapublicfiles/share 修改该目录权限: chmod 777 share
2.vi /etc/samba/smb.conf 搜索security=user 加入 security = user username map = /etc/samba/sambausers 文件最后加入:允许访问用户为 zxsoftoa 共享目录/var/zxoapublicfiles/share [zxsoftoa] comment = Share Folder with username and password path = /var/zxoapublicfiles/share public = yes writable = yes vaild users = zxsoftoa create mask = 0700 directory mask = 0700 ;force user = nobody ;force group = nogroup available = yes browerable = yes global workgroup = MSHOME 改为 WORKGROUP
3.增加网络访问用户 zxsoftoa sudo useradd zxsoftoa 删除用户:sudo userdel -r zxsoftoa
4.新增网络使用者的帐号 vi /etc/samba/smbusers 新增一行: zxsoftoa = network username
5.更改zxsoftoa的网络访问密码 sudo smbpasswd -a zxsoftoa 删除网络使用者的帐号的命令把上面的 -a 改成 -x
6.配置防火墙策略 vi /etc/sysconfig/iptables 加入samba的端口 -A INPUT -m state --state NEW -m tcp -p tcp --dport 139 -j ACCEPT -A INPUT -m state --state NEW -m tcp -p tcp --dport 445 -j ACCEPT 重启防火墙服务 service iptables restart
6.重启 /etc/init.d/smb restart
7. 然后在window运行\\172.16.10.18 访问share 用户名为zxsoftoa 密码输入已设置的密码。
|