如何在不使用API​​的情况下查找IP地址的位置?

时间:2011-04-01 17:28:50

标签: geolocation ip

更多的理论问题。是的,我知道这些类型的问题在这里不受欢迎。但是假设像MaxMind GeoIP这样的API不存在,并且您想构建一个将IP地址转换为其所在城市的服务。您会做什么?你会如何解决这个问题?

2 个答案:

答案 0 :(得分:6)

  1. 使用whois数据库找出IP分配给谁。
  2. 使用DNS对IP地址执行反向查找。
  3. 使用traceroute根据导致主机的路由器猜测位置
  4. 举个例子,让我们来看看stackoverflow.com(64.34.119.12)

    $ whois 64.34.119.12 | egrep "(OrgName)|(City)|(State)|(Country)"
    OrgName:        Peer 1 Network Inc.
    City:           New York
    StateProv:      NY
    Country:        US
    

    whois告诉我们他们可能在纽约州纽约市。

    $ host 64.34.119.12
    12.119.34.64.in-addr.arpa domain name pointer stackoverflow.com.
    

    反向DNS(PTR记录)在这里没有帮助。但是,许多ISP确实具有特定于区域的反向DNS条目,可以帮助完成此过程(特别是对于动态分配的主机)。举个例子:

    $ host 24.25.195.1
    1.195.25.24.in-addr.arpa domain name pointer sndgca-dns-cac-01.san.rr.com.
    

    该主机显然是通过它的PTR记录识别和定位的:时代华纳(Road Runner)在加利福尼亚州圣地亚哥缓存DNS服务器。

    现在,回到stackoverflow.com定位过程:

    $ traceroute stackoverflow.com
    traceroute to stackoverflow.com (64.34.119.12), 64 hops max, 40 byte packets
    ms
     (... removed the first few hops ...)
     8  ae-6-6.ebr1.Chicago1.Level3.net (4.69.140.189)  30.9 ms  28.855 ms  25.183 ms
     9  ae-2-2.ebr2.NewYork2.Level3.net (4.69.132.66)  54.373 ms  54.197 ms  48.171 ms
    10  ae-6-6.ebr2.NewYork1.Level3.net (4.69.141.21)  48.250 ms  50.712 ms  51.293 ms
    11  ae-62-62.csw1.NewYork1.Level3.net (4.69.148.34)  59.493 ms ae-82-82.csw3.NewYork1.Level3.net (4.69.148.42)  51.694 ms ae-62-62.csw1.NewYork1.Level3.net (4.69.148.34)  58.315 ms
    12  ae-3-89.edge1.NewYork1.Level3.net (4.68.16.142)  51.529 ms ae-2-79.edge1.NewYork1.Level3.net (4.68.16.78)  50.77 ms ae-3-89.edge1.NewYork1.Level3.net (4.68.16.142)  50.567 ms
    13  10ge-te-1-1.nyc-75bre-dis-2.peer1.net (216.187.115.77)  50.776 ms  51.193 ms  56.166 ms
    14  gig2-0.nyc-gsr-b.peer1.net (216.187.123.5)  54.994 ms  58.813 ms  51.794 ms
    15  gwny01.stackoverflow.com (64.34.41.58)  54.121 ms  52.65 ms  54.166 ms
    16  * * *
    (... remaining time outs removed ...)
    

    traceroute输出证实了我们怀疑stackoverflow.com是在纽约州纽约市举办的。

    这是在没有API的情况下解决地理定位问题的一种方法。

答案 1 :(得分:1)

我真的在这里猜测,但这可能会奏效。

IP范围由IANA分配给区域提供商。其中有五个。反过来,每个区域提供商为最终用户和互联网服务提供IP范围。 如果您可以从区域提供商及其ISP客户处获取/购买您的业务信息。