CentOS 配置防火墙操作实例(启停开闭port)

Posted gccbuaa

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CentOS 配置防火墙操作实例(启停开闭port)相关的知识,希望对你有一定的参考价值。

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

 

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

查询防火墙状态:

[[email protected] ~]# service   iptables status<回车>

 

停止防火墙:

[[email protected] ~]# service   iptables stop <回车>

 

启动防火墙:

[[email protected] ~]# service   iptables start <回车>

 

重新启动防火墙:

[[email protected] ~]# service   iptables restart <回车>

 

永久关闭防火墙:

[[email protected] ~]# chkconfig   iptables off<回车>

 

永久关闭后启用:

[[email protected] ~]# chkconfig   iptables on<回车>

 

 

1、查看防火墙状态

[[email protected] ~]# service iptables status<回车> 

技术分享

2、编辑/etc/sysconfig/iptables文件。

我们实例中要打开8080port和9990port

用编辑器打开/etc/sysconfig/iptables 

技术分享

4、保存/etc/sysconfig/iptables文件,并在终端运行

[[email protected] ~]# service iptables restart <回车>

技术分享

5、从新查看防火墙状态

[[email protected] ~]# service iptables status<回车>

技术分享

6、这时候,server的8080和9990port就能够对外提供服务了。

7、其它port的开放模式就是类似如此开放模式。







以上是关于CentOS 配置防火墙操作实例(启停开闭port)的主要内容,如果未能解决你的问题,请参考以下文章

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

Centos7 Firewall 防火墙配置应用实例参考(转)

CentOS配置防火墙操作实例

设置CentOS防火墙开放port

Centos7防火墙配置

CentOS firewalld 防火墙操作