centos7防火墙的简单配置介绍

Posted yuanchaoyong

tags:

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

centos7版本

1.查看已开放的端口(默认不开放任何端口) firewall-cmd --list-ports

2.开启80端口 firewall-cmd --zone=public(作用域) --add-port=80/tcp(端口和访问类型) --permanent(永久生效)

3.重启防火墙 firewall-cmd --reload

4.停止防火墙 systemctl stop firewalld.service

5.禁止防火墙开机启动 systemctl disable firewalld.service

6.删除 firewall-cmd --zone= public --remove-port=80/tcp --permanent

centos7以下版本

1.开放80,22,8080 端口

/sbin/iptables -I INPUT -p tcp --dport 80 -j ACCEPT

/sbin/iptables -I INPUT -p tcp --dport 22 -j ACCEPT

/sbin/iptables -I INPUT -p tcp --dport 8080 -j ACCEPT

2.保存 /etc/rc.d/init.d/iptables save

3.查看打开的端口 /etc/init.d/iptables status

4.关闭防火墙

    1) 永久性生效,重启后不会复原

                    开启: chkconfig iptables on

                    关闭: chkconfig iptables off

    2) 即时生效,重启后复原

                      开启: service iptables start

                     关闭: service iptables stop

 



以上是关于centos7防火墙的简单配置介绍的主要内容,如果未能解决你的问题,请参考以下文章

最小化安装centos7后的简单配置

CentOS7 firewalld

CentOS6和CentOS7中简单web站点的配置步骤

centos7防火墙简单说明

CentOS 7.X 防火墙简单配置

防火墙的简单介绍以及安全区域的配置