公司服务器是centos 7.0,在服务器上搭建samba使得windows和linux(centos系统)进行通信遇到点小问题。
原因是:centos 7的firewall防火墙没有关闭,导致windows端无法访问到。
CentOS 7.0 关闭防火墙
CentOS 7.0默认使用的是firewall作为防火墙,使用iptables必须重新设置一下
1、直接关闭防火墙
systemctl stop firewalld.service #停止firewall
systemctl disable firewalld.service #禁止firewall开机启动
2、设置 iptables service
systemctl stop iptables.service #停止iptables
3.关闭selinux安全系统
用 root 用户运行下面的命令
vim /etc/sysconfig/selinux
打开 selinux 文件后,修改
SELINUX=enforcing 为 SELINUX=disabled