Questions tagged [geoip]

GeoIP is a web service that provides IP Address Lookup and GeoTargeting information.

19 questions
13
votes
2 answers

What are the methods used by GeoIP services besides WHOIS info?

I was just wondering how GeoIP services collect data about IPs geo location besides checking IP address WHOIS information. For example I stumbled upon this website, that says that IP 74.207.244.221 is being located in Fremont, California:…
Learner
  • 337
8
votes
4 answers

Is it possible to correct my GeoIP location

Numerous services and advertising do GeoIP lookups. They get the country correct, but often the city is wrong. Are there places where I can go and correct this, letting people know the actual location of my IP address. I have a static IP, so it's…
brianegge
  • 1,739
2
votes
2 answers

IP GeoLocator. Need included script to take source of IPs from txt document

Below is a shell script I would really like to be able to feed a txt document of IP addresses to determine countries accessing my website. Inside the text document, lets call it "IPlist.txt" might look something…
James
  • 23
2
votes
2 answers

Can I get IP addresses for the US or a certain state?

How can I easily get the IP address blocks for a particular state or city within the US? I was thinking that I could plug that into my iptables firewall to restrict traffic.
Walter
  • 1,039
2
votes
2 answers

How often are IP addresses blocks for countries updated?

I have a website where I want to find out visitor's country from his IP address. There are some databases of country's IPs range that can be used. when I download them to my database, should I be woried about some changes made in future? How often…
2
votes
1 answer

Set fall back or default geolocation in Google Chrome?

For some reason my home broadband isn't resolving a geolocation inside Chrome, this isn't a problem at work. Is it possible to set a default or a fall back location in Chrome if the lookup fails? Happy to hack this in somehow, as its making my…
johnwards
  • 121
2
votes
2 answers

Linux GeoIP CLI app

I'm looking for a Linux CLI app that can accept a list of IP addresses and draw dots on the world map. All I want is to get an image file containing the world map and dots pointing to IP locations. A webservice won't do it, because I might need to…
vtest
  • 5,358
1
vote
1 answer

How do I set up a GeoIP CName?

I'm looking for a way to set up my DNS so that global traffic hits different servers. At the moment, we have servers in one data-center and users from remote areas are complaining about slow speeds. So we'd like to set up servers closer to those…
None
  • 1
1
vote
2 answers

How can I access websites that block foreign IPs?

How can I access websites that blocks IPs that aren't from a given country? It doesn't necessarily have to be free, as long as its secure and can't (easily) be sniffed (i.e. not those free php proxies but something reliable that won't be sniffed)
Ziv
  • 516
1
vote
3 answers

Is there a way to install GeoIP from source code on Mac OS X?

I want to install the MaxMind GeoIP C library, so that I can use GeoIP as part of Django. I’m working on Mac OS X. I’ve downloaded GeoIP-1.4.8.tar.gz from here and run: ./configure make make check make install Without any problems. I’ve also…
Richard
  • 1,015
1
vote
1 answer

How to block all requests from some undesired countries just to one location (nginx)

I am using nginx and I have installed geoip-database-contrib package to block access to /wp-admin location from all countries except some preferred. location /wp-admin { if ($allowed_country = no) { return 403; } } It works fine when trying…
1
vote
3 answers

What geolocation information can be gleaned from first 3 parts of the IP address?

I am working on a non-security related research project where we have a list of anonymized IP addresses with the last 3 digits (the last block) masked. The project is about tracking attention to the publicly available data online. The addresses come…
0
votes
2 answers

Where in the world is 206.132.169.217?

I'm guessing some sort of location registration (at least specifying the country) is required for any public numeric IP address and tried ARIN since I believe this router is in Seattle. ARIN only showed me that the router belongs to a company in…
bobuhito
  • 653
0
votes
1 answer

Rerouting international traffic based on GeoIP

My home connection is slow internationally but fast locally. My private remote server is fast both locally and internationally, but it does not pay off to use it locally due to proxy/VPN overhead. Is it a feasible idea to reroute just the…
slikts
  • 63
0
votes
0 answers

How can I perform geoip-based routing on Ubuntu without kernel modules?

I have a container-based VPS (Ubuntu 22.04, kernel 4.4.0), and I want to add some geoip-based rules to its routing table. Unfortunately, every tutorial I can find relies on xtables-addons, which requires a kernel module xt_geoip. I can't update…
Vindicar
  • 101
1
2