Linux之防火墙CentOS 7

Posted songzhixue

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux之防火墙CentOS 7相关的知识,希望对你有一定的参考价值。

CentOS 7默认使用的是firewall作为防火墙,这里改为iptables防火墙。

firewall操作:

# service firewalld status; #查看防火墙状态

技术图片

 (disabled 表明 已经禁止开启启动 enable 表示开机自启,inactive 表示防火墙关闭状态 activated(running)表示为开启状态)

# service firewalld start;  或者 #systemctl start firewalld.service;      #开启防火墙

# service firewalld stop;  或者 #systemctl stop firewalld.service;         #关闭防火墙

# service firewalld restart;  或者 #systemctl restart firewalld.service;  #重启防火墙

# systemctl disable firewalld.service    #禁止防火墙开启自启

  # systemctl enable firewalld      #设置防火墙开机启动

#yum remove firewalld      #卸载firewall

安装iptables防火墙及操作:

#yum install iptables-services              #安装iptables防火墙

#vi /etc/sysconfig/iptables                    #编辑防火墙配置文件,开放3306端口

   添加配置:-A INPUT -p tcp -m state --state NEW -m tcp --dport 3306 -j ACCEPT

#systemctl restart iptables.service               #最后重启防火墙使配置生效

#systemctl enable iptables.service               #设置防火墙开机启动

以上是关于Linux之防火墙CentOS 7的主要内容,如果未能解决你的问题,请参考以下文章

linux 开放防火墙端口命令(centos 6/7)

Linux CentOS 7防火墙常用命令汇总

linux centos 7 防火墙相关

Linux下Centos 7如何关闭防火墙?

Linux CentOS 7 关闭防火墙

Linux(CentOS 7)firewalld防火墙