Awesome, bookmarked! Would it be possible to list all announced IP ranges for an AS?
Show HN: IP Guide – Info on IP addresses, Networks, and ASNs
51–60 of 105 posts
Re: Show HN: IP Guide – Info on IP addresses, Networks, and ASNs
#52From 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?
Re: Show HN: IP Guide – Info on IP addresses, Networks, and ASNs
#53Earlier 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.
Re: Show HN: IP Guide – Info on IP addresses, Networks, and ASNs
#54Re: Show HN: IP Guide – Info on IP addresses, Networks, and ASNs
#55Re: Show HN: IP Guide – Info on IP addresses, Networks, and ASNs
#56Earlier 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.
Re: Show HN: IP Guide – Info on IP addresses, Networks, and ASNs
#57Re: Show HN: IP Guide – Info on IP addresses, Networks, and ASNs
#58From 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
#59From 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?
Re: Show HN: IP Guide – Info on IP addresses, Networks, and ASNs
#60I 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.