Investigating Netlify Server Location and Region

Tadashi Shigeoka ·  Sat, July 20, 2019

I investigated the location, region, and other details of servers hosting on Netlify, so I’ll introduce the procedure.

Netlify

*.netlify.com Server IP Address Investigation

First, I’ll investigate the IP address of the server hosting *.netlify.com.

As an example, the results of executing nslookup and traceroute commands for nuxtjs-spa-sandbox.netlify.com that I use are as follows:

Usage Example nslookup

$ nslookup nuxtjs-spa-sandbox.netlify.com
Server:    192.168.100.1
Address:  192.168.100.1#53

Non-authoritative answer:
Name:  nuxtjs-spa-sandbox.netlify.com
Address: 206.189.89.118

Usage Example traceroute

$ traceroute nuxtjs-spa-sandbox.netlify.com
traceroute to nuxtjs-spa-sandbox.netlify.com (206.189.89.118), 64 hops max, 52 byte packets
 1  speedwifi-next.home (192.168.100.1)  3.653 ms  4.270 ms  3.767 ms
 2  * * *
 3  172.25.157.154 (172.25.157.154)  36.799 ms
    172.25.157.150 (172.25.157.150)  36.325 ms  41.730 ms
 4  172.25.157.125 (172.25.157.125)  39.487 ms  42.499 ms  42.806 ms
 5  172.25.157.177 (172.25.157.177)  40.216 ms
    172.25.157.169 (172.25.157.169)  33.638 ms  36.452 ms
 6  chyisn003.bb.kddi.ne.jp (27.86.13.97)  31.792 ms  33.305 ms  26.571 ms
 7  27.86.44.241 (27.86.44.241)  34.636 ms  45.068 ms
    27.85.231.133 (27.85.231.133)  32.109 ms
 8  27.86.45.89 (27.86.45.89)  56.769 ms  68.820 ms  48.477 ms
 9  27.85.229.190 (27.85.229.190)  59.214 ms  49.060 ms  58.632 ms
10  ix-et-20.hcore1.ovc-tokyo.as6453.net (116.0.90.85)  59.760 ms  58.325 ms  58.389 ms
11  if-ae-15-2.tcore2.tv2-tokyo.as6453.net (120.29.217.9)  116.667 ms  123.921 ms  112.260 ms
12  if-ae-2-2.tcore1.tv2-tokyo.as6453.net (180.87.180.1)  119.906 ms  141.941 ms  126.147 ms
13  if-ae-36-2.tcore1.svw-singapore.as6453.net (120.29.217.13)  129.017 ms  126.832 ms  116.604 ms
14  if-ae-11-2.thar1.svq-singapore.as6453.net (180.87.98.37)  114.188 ms  119.509 ms  123.325 ms
15  120.29.214.142 (120.29.214.142)  128.728 ms  126.494 ms  106.582 ms
16  * 138.197.245.9 (138.197.245.9)  110.846 ms  118.986 ms
17  * * *
18  206.189.89.118 (206.189.89.118)  126.395 ms !Z  126.366 ms !Z  117.336 ms !Z

I found that the IP address is 206.189.89.118.

Investigating with ip2location Based on IP Address

According to ip2location.com, the server location for IP Address 206.189.89.118 appears to be Singapore.

That’s all from the Gemba on wanting to understand at least the location country of the servers we use.