防火墙的基本操作命令: 
查询防火墙状态: 
[[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 
防火墙centos、禁用端口、开启端口

2、编辑/etc/sysconfig/iptables文件。我们实例中要打开8080端口和9990端口 
用编辑器打开/etc/sysconfig/iptables 
防火墙centos、禁用端口、开启端口

3、依葫芦画瓢,我们添加8080端口和9990端口 
防火墙centos、禁用端口、开启端口 

4、保存/etc/sysconfig/iptables文件,并在终端执行 
[[email protected] ~]# service iptables restart 
防火墙centos、禁用端口、开启端口

5、从新查看防火墙状态 
[[email protected] ~]# service iptables status 
防火墙centos、禁用端口、开启端口

6、这时候,服务器的8080和9990端口就可以对外提供服务了。 
7、其他端口的开放模式就是类似如此开放模式。 

相关文章:

  • 2022-12-23
  • 2021-11-28
  • 2021-04-12
  • 2022-01-23
  • 2022-01-31
  • 2022-02-04
  • 2021-11-14
猜你喜欢
  • 2022-01-07
  • 2021-05-31
  • 2022-01-11
  • 2022-01-21
  • 2021-12-09
  • 2022-01-21
相关资源
相似解决方案