iptables防火墙 关闭 查看

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了iptables防火墙 关闭 查看相关的知识,希望对你有一定的参考价值。

# 查看防火墙状态

service iptables status

**# 停止防火墙

service iptables stop

# 启动防火墙

service iptables start

# 重启防火墙

service iptables restart
# 永久关闭防火墙

chkconfig iptables off

# 永久关闭后重启

chkconfig iptables on

2、开启80端口

vim /etc/sysconfig/iptables
# 加入如下代码
-A INPUT -m state --state NEW -m tcp -p tcp --dport 80 -j ACCEPT

保存退出后重启防火墙
service iptables restart

firewall防火墙
1、查看firewall服务状态
systemctl status firewalld

# 开启
service firewalld start
# 重启
service firewalld restart
# 关闭
service firewalld stop

# 查询端口是否开放
firewall-cmd --query-port=8080/tcp
# 开放80端口
firewall-cmd --permanent --add-port=80/tcp
# 移除端口
firewall-cmd --permanent --remove-port=8080/tcp

以上是关于iptables防火墙 关闭 查看的主要内容,如果未能解决你的问题,请参考以下文章

Centos中iptables和firewall防火墙开启关闭查看状态基本设置等

Centos中iptables和firewall防火墙开启关闭查看状态基本设置等(转)

linux下如何关闭防火墙?如何查看防火墙当前的状态

linux怎么关闭iptables linux如何关闭防火墙

linux查看防火墙规则的命令

CentOS 7.0关闭默认防火墙启用iptables防火墙