Skip to content

Latest commit

 

History

History
52 lines (39 loc) · 1.28 KB

2016-09-25-destination-host-prohibited.md

File metadata and controls

52 lines (39 loc) · 1.28 KB
title images authors categories tags draft slug summary date lastmod
Destination Host Prohibited
/assets/images/og/destination-host-prohibited.png
eallion
代码
Ubuntu
ssl
iptables
ufw
Destination
false
destination-host-prohibited
这篇文章介绍了如何解决“Destination Host Prohibited”的问题。问题出现的原因是由于服务器上的iptables配置导致的。文章给出的解决方法是检查filter表中的FORWARD链,查看是否包含有相关的行,如果有则删除该行。作者提供了删除该行的命令示例。
2016-09-25 00:19:00
2016-09-25 00:19:00
ping 1.1.1.1
From 1.1.1.1 icmp_seq=1 Destination Host Prohibited

出现这个问题原因是因为服务器上 iptables 配置原因造成的。

干脆点的话,直接

sudo apt remove iptablels

其他解决方法: 检查 filter 表中的 FORWARD 链

iptables -t filter --list

看看结果中是否有这一句

REJECT all -- anywhere anywhere reject-with icmp-host-prohibited

如果有,就删除它

iptables -L INPUT --line-numbers 

找到这一行的行号,我的主机上显示为 11 行

执行删除命令,删除第 11 行

iptables -D INPUT 11 #-D是删除参数