centos6.8 防火墙简单操作
Posted cheflone
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了centos6.8 防火墙简单操作相关的知识,希望对你有一定的参考价值。
1.基本操作
# 查看防火墙状态
service iptables status
# 停止防火墙
service iptables stop
# 启动防火墙
service iptables start
# 重启防火墙
service iptables restart
# 永久关闭防火墙
chkconfig iptables off
# 永久关闭后重启
chkconfig iptables
on
2.状态
#查看
service iptables status
#开启
vim /etc/sysconfig/iptables
# 加入如下代码以作例子
-A INPUT -m state --state NEW -m tcp -p tcp --dport 80 -j ACCEPT
#重启
service iptables restart
以上是关于centos6.8 防火墙简单操作的主要内容,如果未能解决你的问题,请参考以下文章