宝塔面板开启系统防火墙后无法访问

1.开启系统防火墙之前,正常访问没有什么问题

2.打开系统防火墙,刷新页面就进不去了

3.这大概是因为宝塔的系统防火墙会屏蔽腾讯的一些域名,所以导致无法访问,这时候需要使用其他工具连接服务器的终端,关掉防火墙

4.CentOS7版本的防火墙默认使用firewall,与之前的版本使用iptables不一样,在终端中输入以下命令控制防火墙:

1
2
# 关闭防火墙:
sudo systemctl stop firewalld.service

1
2
# 关闭开机启动:
sudo systemctl disable firewalld.service

CentOS6

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# 关闭防火墙:
service iptables stop

# 启动防火墙
service iptables start

# 重启防火墙
service iptables restart

# 查看防火墙状态
service iptables status

# 永久关闭防火墙
chkconfig iptables off

# 永久关闭后启用
chkconfig iptables on

5.关掉防火墙

6.刷新宝塔面板