Live data from Hacker News

Show HN: IP Guide – Info on IP addresses, Networks, and ASNs

ip.guide

51–60 of 105 posts

Re: Show HN: IP Guide – Info on IP addresses, Networks, and ASNs

#52

From where do you get your geolocation information? I've been using the free MaxMind GeoLite2 databases and the GeoIP2 Python API for this kind of thing, but for a lot of IP addresses that I'd like to map, I can only get down to the country (and even some of those seem suspect). Is there any rate limit for queries?

How big is the MaxMind database ?

Re: Show HN: IP Guide – Info on IP addresses, Networks, and ASNs

#53

Earlier quoted context omitted.

> I dig that idea, I'll have to think of the best way to pull that data while keeping the app stateless and fast. Reverse DNS lookups are usually pretty quick: ```shell > time dig +short -x 2600:dead::beef customer.my-isp.net. dig +short -x 2600:dead::beef 0.00s user 0.01s system 1% cpu 0.882 total ```

Reverse DNS does not give you all the hostnames that can point to a particular IP address though.

Other than brute forcing, I don't think anything does — that's the beauty and the curse of a proper federated system :)

Re: Show HN: IP Guide – Info on IP addresses, Networks, and ASNs

#56

Earlier quoted context omitted.

> I dig that idea, I'll have to think of the best way to pull that data while keeping the app stateless and fast. Reverse DNS lookups are usually pretty quick: ```shell > time dig +short -x 2600:dead::beef customer.my-isp.net. dig +short -x 2600:dead::beef 0.00s user 0.01s system 1% cpu 0.882 total ```

Reverse DNS does not give you all the hostnames that can point to a particular IP address though.

In fact, it might not even give you any names that point to an IP address, since it might be out of sync with the forward system, especially if the records are built by hand.

Re: Show HN: IP Guide – Info on IP addresses, Networks, and ASNs

#58

From where do you get your geolocation information? I've been using the free MaxMind GeoLite2 databases and the GeoIP2 Python API for this kind of thing, but for a lot of IP addresses that I'd like to map, I can only get down to the country (and even some of those seem suspect). Is there any rate limit for queries?

How big is the MaxMind database ?

A few MBs

Re: Show HN: IP Guide – Info on IP addresses, Networks, and ASNs

#59

From where do you get your geolocation information? I've been using the free MaxMind GeoLite2 databases and the GeoIP2 Python API for this kind of thing, but for a lot of IP addresses that I'd like to map, I can only get down to the country (and even some of those seem suspect). Is there any rate limit for queries?

I have yet to see a geo-ip address for my IP that shows me even on the correct side of the country. I wouldn't trust this information as far as you can throw it ... and I've had this IP address for nearly 6 years now.

Re: Show HN: IP Guide – Info on IP addresses, Networks, and ASNs

#60
Nice,

I currently do "curl ipinfo.io" which returns json, and seems to use a more accurate geo lookup (based on the hotel wifi I'm currently on). It doesn't report the network though, and the ASN is a string of asn and name, no org or country, so that's a bonus.

However

  curl ip.guide
just returns blank (there's a redirect). If you follow the redirect with -L the json isn't pretty-printed.
Post reply on HN