centos防火墙基本操作
Posted LZHL
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了centos防火墙基本操作相关的知识,希望对你有一定的参考价值。
CentOS防火墙的基本操作
查看防火墙状态:
[root@centos ~]# service iptables status
开放8080访问端口:
[root@centos ~]# vi /etc/sysconfig/iptables
重启防火墙后查看
停止防火墙:
[root@centos ~]# service iptables stop
启动防火墙:
[root@centos ~]# service iptables start
重启防火墙:
[root@centos ~]# service iptables restart
查看防火墙的开机自启动状态
[root@centos ~]# chkconfig –list
永久关闭防火墙(也可以直接删除开机启动#chkconfig --del iptables):
[root@centos ~]# chkconfig iptables off
永久关闭后启用:
[root@centos ~]# chkconfig iptables on
以上是关于centos防火墙基本操作的主要内容,如果未能解决你的问题,请参考以下文章