Ask HN: [SOLVED] HN is returning a 503 to my IP. How should I debug this?
9 comments
I can access HN just fine, but I get the same result from curl:
Edit: You have to type the "GET /" <return> part, in case that wasn't clear. The rest is server response.
$ curl -I https://news.ycombinator.com/ -k
HTTP/1.1 501 Not Implemented
Server: nginx
Date: Tue, 30 Apr 2013 09:59:39 GMT
Content-Type: text/html
Content-Length: 174
Connection: close
You could try doing custom HTTP requests via telnet: $ telnet news.ycombinator.com 80
Trying 184.172.10.74...
Connected to news.ycombinator.com.
Escape character is '^]'.
GET /
<html>
<head><title>301 Moved Permanently</title></head>
<body bgcolor="white">
<center><h1>301 Moved Permanently</h1></center>
<hr><center>nginx</center>
</body>
</html>
Connection closed by foreign host.
Since HN redirect everything to HTTPS it doesn't tell you much, but it can tell you for example whether a connection to port 80 is going through.Edit: You have to type the "GET /" <return> part, in case that wasn't clear. The rest is server response.
Thanks. I get exactly the same telnet results as you.
Hmm...
Hmm...
You could try what is detailed here:
https://news.ycombinator.com/item?id=4761102
https://news.ycombinator.com/item?id=4761102
Were you by any chance spidering the site from the same IP?
No. I can't think that I was doing anything like that at all. I even subscribe to the RSS feed from a different IP and read that over IMAP!
Sometimes a browser crash and subsequent restore with a lot of HN tabs open will trigger an IP ban.
HN is finicky, hard to know for sure what caused this.
HN is finicky, hard to know for sure what caused this.
Ah, that sounds like a distinct possibility! I almost permanently have boatloads of tab open.
Do you know what I can do about it? Is the ban temporary?
Do you know what I can do about it? Is the ban temporary?
I think it times out after a while, it's been mentioned before on HN:
https://news.ycombinator.com/item?id=4761102
https://news.ycombinator.com/item?id=4761102
I found the answer: https://news.ycombinator.com/item?id=4761102
Thanks for your help!
Thanks for your help!
Accessing https://news.ycombinator.com/ from any browser on my local network returns either a 503 error or a blank page. Of course, I can access the site through a proxy (hello).
Curl looks a little strange:
I can ping it fine:
I'm reaching the limits of my network debugging talent. What can I do next?