Adding a geolocation database to SiLK

Adding a geolocation database to SiLK

Very quickly I've decided that having this is a good thing™. SiLK is great, but if you need to quickly discover where your traffic is coming from being able to do it without an extra lookup step is useful. This step wasn't covered in the Now we have SiLK, let's get it set up.. post, as a result, you have this post to peruse.

So here's how to get one. You'll need to download the legacy GeoIP file for and from Maxmind. MaxMind is in the process of trying to persuade everyone to use the new GeoIP2 format files, so it's sometimes a little difficult to find the legacy files. The current download page is here: https://dev.maxmind.com/geoip/legacy/geolite/.

gunzip GeoIP.dat.gz
gunzip GeoIPv6.dat.gz
cat GeoIPv6.dat GeoIP.dat | rwgeoip2ccmap --mode=binary > country_codes.pmap
sudo mv country_codes.pmap /usr/share/

You can then use the SiLK commands and filters to extract the country codes of the data you've collected. So if you're looking to see where your data is coming from (or rather, not), then this command consequently is useful.

rwstats --fields=scc --bottom --count=3 input-file
INPUT: 55456 Records for 24 Bins and 55456 Total Records
OUTPUT: Bottom 10 Bins by Records
scc|   Records|  %Records|   cumul_%|
 dk|         1|  0.001803|  0.001803|
 tr|         1|  0.001803|  0.003606|
 pk|         1|  0.001803|  0.005410|

In conclusion, Denmark, Turkey and are not great senders of information to the system I'm . (And it doesn't matter if these are IPv4 or IPv6 connections, but I could find out).

John Dixon

John Dixon is the Principal Consultant of thirteen-ten nanometre networks Ltd, based in Wiltshire, United Kingdom. He has a wide range of experience, (including, but not limited to) operating, designing and optimizing systems and networks for customers from global to domestic in scale. He has worked with many international brands to implement both data centres and wide-area networks across a range of industries. He is currently supporting a major SD-WAN vendor on the implementation of an environment supporting a major global fast-food chain.

Comments are closed.