码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2019-05-09 15:22:54      阅读:119      评论:0      收藏:0      [点我收藏+]

标签:article   其他   lin   detail   htm   sys   iptables   status   命令   

转自:https://www.cnblogs.com/wliangde/p/3803891.html

转自:  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<回车>

 

 

1、查看防火墙状态

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

技术图片

2、编辑/etc/sysconfig/iptables文件。我们实例中要打开8080端口和9990端口

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

技术图片

3、依葫芦画瓢,我们添加8080端口和9990端口

技术图片

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

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

技术图片

5、从新查看防火墙状态

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

技术图片

6、这时候,服务器的8080和9990端口就可以对外提供服务了。

7、其他端口的开放模式就是类似如此开放模式。

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

标签:article   其他   lin   detail   htm   sys   iptables   status   命令   

原文地址:https://www.cnblogs.com/xcwytu/p/10838466.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!