11

我尝试使用 wget 从我们的 Web 服务器访问 www.indeed.com,但它会引发“对等连接重置”错误。

wget www.indeed.com

--2013-02-05 03:03:12--  (try: 3)  http://www.indeed.com/
Connecting to www.indeed.com|208.43.224.140|:80... connected.
HTTP request sent, awaiting response... Read error (Connection reset by peer) in headers.
Retrying.

它以前可以工作,因为我使用他们的 API 有一段时间了,但现在我什至无法访问他们的公共网站。

可能是什么问题?确实可以将服务器的 IP 添加到他们的黑名单中,还是这与我的防火墙等有关?

有没有办法调试/跟踪问题出在哪里?

4

1 回答 1

5

您应该使用用户代理,如以下示例

wget "http://www.indeed.com/" --user-agent="Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.6) Gecko/20070725 Firefox/2.0.0.6"
于 2015-01-06T10:02:29.603 回答