centos 7 关闭防火墙

前端之家收集整理的这篇文章主要介绍了centos 7 关闭防火墙前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

公司服务器是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

修改后,可以使用getenforce获取selinux的状态信息。

原文链接:https://www.f2er.com/centos/377104.html

猜你在找的CentOS相关文章