怎么样查看centos防火墙状态

2016-11-08

你想查看下centos防火墙的状态吗?要怎么样查看呢?你下面由小编给你做出详细的查看centos防火墙状态方法介绍!希望对你有帮助!

查看centos防火墙状态方法一:

直接使用iptables -L查看防火墙设置

service iptables stop关闭防火墙

service iptables start/restart开启或重启

查看centos防火墙状态方法二:

service iptables status可以查看到iptables服务的当前状态。

但是即使服务运行了,防火墙也不一定起作用,你还得看防火墙规则的设置 iptables -L

在此说一下关于启动和关闭防火墙的命令:

1) 重启后生效

开启: chkconfig iptables on

关闭: chkconfig iptables off

2) 即时生效,重启后失效

开启: service iptables start

关闭: service iptables stop

查看centos防火墙状态方法三:

CentOS 配置防火墙操作实例(启、停、开、闭端口):

注:防火墙的基本操作命令:

查询防火墙状态:

[root@localhost ~]# service iptables status<回车>

停止防火墙:

[root@localhost ~]# service iptables stop <回车>

启动防火墙:

[root@localhost ~]# service iptables start <回车>

重启防火墙:

[root@localhost ~]# service iptables restart <回车>

永久关闭防火墙:

[root@localhost ~]# chkconfig iptables off<回车>

永久关闭后启用:

[root@localhost ~]# chkconfig iptables on<回车>

更多相关阅读

最新发布的文章