centos 关于防火墙的命令

Posted qiaochong

tags:

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

CentOS7默认的防火墙不是iptables,而是firewalle.

安装iptable iptable-service

复制代码
#先检查是否安装了iptables
service iptables status
#安装iptables
yum install -y iptables
#升级iptables
yum update iptables 
#安装iptables-services
yum install iptables-services




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

查询防火墙状态:

[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<回车>

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

Centos 7 关于防火墙的命令

关于Centos7防火墙端口进程开机自启服务启动的常用命令

CentOS关于防火操作

关于CentOS 7的防火墙

linux系统防火墙相关问题及常用命令介绍

linux系统防火墙相关问题及常用命令介绍