iptables防火墙的启动、停止以及开启关闭端口的操作
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、其他端口的开放模式类似。
随便看看
- 2019-04-29帝国CMS全站改造HTTPS思路步骤
- 2020-04-29Linux下软链接的创建、修改、删除
- 2021-03-16Linux下设置时区,设置时间
- 2020-04-29Linux下 Apache常用命令
- 2020-06-01linux tar打包压缩排除某个目录或文件