Skip to content

Instantly share code, notes, and snippets.

@tingham
Created December 13, 2011 17:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tingham/1473032 to your computer and use it in GitHub Desktop.
Save tingham/1473032 to your computer and use it in GitHub Desktop.
npm Error 110 Debugging
// outbound nodejs test.
var http = require("http");
var options = {
host: "107.20.159.167",
port: 80,
path: "/",
method: "GET"
};
console.log("Opening connection.");
http.get( options, function(res){
console.log( res.statusCode );
});
console.log("Connection passed.");
//
tingham@mwp01 ~]$ node outbound.js
node.js:201
throw e; // process.nextTick error, or 'error' event on first tick
^
Error: getaddrinfo ENOENT
at errnoException (dns.js:31:11)
at Object.onanswer [as oncomplete] (dns.js:140:16)
@tingham
Copy link
Author

tingham commented Dec 13, 2011

[tingham@mwp01 ~]$ traceroute 107.20.159.167
traceroute to 107.20.159.167 (107.20.159.167), 30 hops max, 40 byte packets
1 194-035.baymountain.com (74.84.194.35) 2.261 ms 2.230 ms 2.223 ms
2 74.84.192.10 (74.84.192.10) 3.144 ms 3.121 ms 3.084 ms
3 ge-6-21.car2.Richmond1.Level3.net (4.26.66.5) 2.132 ms 2.122 ms 2.113 ms
4 ae-7-7.ebr1.Washington1.Level3.net (4.69.142.250) 4.017 ms 4.596 ms 5.037 ms
5 ae-81-81.csw3.Washington1.Level3.net (4.69.134.138) 5.003 ms ae-71-71.csw2.Washington1.Level3.net (4.69.134.134) 5.000 ms ae-61-61.csw1.Washington1.Level3.net (4.69.134.130) 4.926 ms
6 ae-1-60.edge2.Washington1.Level3.net (4.69.149.14) 4.920 ms ae-4-90.edge2.Washington1.Level3.net (4.69.149.206) 30.485 ms ae-1-60.edge2.washington1.level3.net (4.69.149.14) 2.831 ms
7 AMAZON.COM.edge2.Washington1.Level3.net (4.79.22.74) 4.263 ms AMAZON.COM.edge2.Washington1.Level3.net (4.79.22.86) 5.498 ms amazon.com.edge2.washington1.level3.net (4.79.22.74) 5.493 ms
8 72.21.220.155 (72.21.220.155) 6.529 ms 72.21.220.157 (72.21.220.157) 6.514 ms 72.21.220.153 (72.21.220.153) 7.463 ms
9 205.251.245.41 (205.251.245.41) 5.857 ms 72.21.222.139 (72.21.222.139) 6.431 ms 72.21.222.143 (72.21.222.143) 6.427 ms
10 216.182.224.65 (216.182.224.65) 6.473 ms 6.462 ms 216.182.224.49 (216.182.224.49) 7.392 ms
11 * * *
12 * * *
13 * * *
14 * * *
15 * * *
16 * * *
17 * * *
18 * * *
19 * * *
20 * * *
21 * * *
22 * * *
23 * * *
24 * * *
25 * * *
26 * * *
27 * * *
28 * * *
29 * * *
30 * * *

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment