Splunk Search

"Unknown country" returned by iplocation? bug?

boris
Path Finder

iplocation bug?

"UNKNOWN COUNTRY" is returned for ip addresses that actually have a known country?

USA
208.65.40.98
89.68.157.6 
112.199.36.74 
173.8.207.161

UK
94.193.166.5

Brazil
189.68.157.6
189.28.128.241

Tags (1)
0 Karma
1 Solution

Damien_Dallimor
Ultra Champion

Not a direct bug with the iplocation command per say , but the service that the command's script ($SPLUNK_HOME/etc/apps/search/bin/iplocation.py) uses does not return any results.

http://www.hostip.info most probably need to update their database.

Using the 208.65.40.98 IP as an example :

REQUEST

http://api.hostip.info/get_html.php?ip=208.65.40.98

RESPONSE

Country: (Unknown Country?) (XX)
City: (Unknown City?)
IP: 208.65.40.98

Alternatively , I tried performing geolocation on that IP using the MAXMIND GeoLite City database that comes with the Splunk Google Maps App, and it resolves "United States" just fine.

Hacky little test command :

... | eval ip="208.65.40.98" | lookup geo ip | table ip_country_name

or

... | eval ip="208.65.40.98" | geoip ip | table ip_country_name

View solution in original post

Jason
Motivator

Note that this is pre-6.x iplocation. There is no more iplocation.py as of 6, as it is replaced by a built-in command that has a databased updated with maintenance releases http://answers.splunk.com/answers/123430/how-to-update-geoip-database-for-iplocation-command

0 Karma

Damien_Dallimor
Ultra Champion

Not a direct bug with the iplocation command per say , but the service that the command's script ($SPLUNK_HOME/etc/apps/search/bin/iplocation.py) uses does not return any results.

http://www.hostip.info most probably need to update their database.

Using the 208.65.40.98 IP as an example :

REQUEST

http://api.hostip.info/get_html.php?ip=208.65.40.98

RESPONSE

Country: (Unknown Country?) (XX)
City: (Unknown City?)
IP: 208.65.40.98

Alternatively , I tried performing geolocation on that IP using the MAXMIND GeoLite City database that comes with the Splunk Google Maps App, and it resolves "United States" just fine.

Hacky little test command :

... | eval ip="208.65.40.98" | lookup geo ip | table ip_country_name

or

... | eval ip="208.65.40.98" | geoip ip | table ip_country_name

Damien_Dallimor
Ultra Champion

You could use either the geoip command or the lookup command against the geo lookup.

0 Karma

boris
Path Finder

Damiean's intended test:

| eval some_ip="208.65.40.98" | geoip some_ip | table some_ip_country_name
0 Karma
Get Updates on the Splunk Community!

Enter the Dashboard Challenge and Watch the .conf24 Global Broadcast!

The Splunk Community Dashboard Challenge is still happening, and it's not too late to enter for the week of ...

Join Us at the Builder Bar at .conf24 – Empowering Innovation and Collaboration

What is the Builder Bar? The Builder Bar is more than just a place; it's a hub of creativity, collaboration, ...

Combine Multiline Logs into a Single Event with SOCK - a Guide for Advanced Users

This article is the continuation of the “Combine multiline logs into a single event with SOCK - a step-by-step ...