Pipeline for producing a consolidated sqlite3 file containing:
- an imported version of all five RIRs "delegated-extended" files
- an imported version of a current snapshot of a RIPE RPKI validator
- an imported version of a current RIPE "riswhois" dump
All imported data is enriched in different ways, adding convenience fields to make querying easier.
Author(s): Carlos M. Martinez ([email protected]) Date: July 19, 2017
- CSV import of all "delegated-extended" files
Schema:
CREATE TABLE numres (id INTEGER PRIMARY KEY, rir text, cc text, type text, block text, length integer, date integer, status text, orgid integer, istart INTEGER, iend INTEGER, prefix VARCHAR(80), equiv INTEGER);
- CSV import of a RIPE RPKI validator instance output
CREATE TABLE roadata (id INTEGER PRIMARY KEY, origin_as text, prefix text, maxlen integer, ta text, origin_as2 VARCHAR(10), istart UNSIGNED BIG INT, iend UNSIGNED BIG INT, type VARCHAR(5), pfxlen INTEGER, equiv INTEGER, cc CHAR(2), origin_as_cc CHAR(2));
- CSV import of a current RIPE "riswhois" dump
CREATE TABLE riswhois (id INTEGER PRIMARY KEY, origin_as text, prefix text, viewed_by integer, istart UNSIGNED BIG INT, iend UNSIGNED BIG INT, type VARCHAR(5), pfxlen INTEGER);
The following script creates a virtual environment using pipenv:
# abort on error
set -e
HOME=$(pwd)
ls -l $HOME
pip install pipenv
PIPENV=$(which pipenv)
mkdir -p src
cd src
rm -rf rir-netdata || /bin/true
git clone https://github.com/cm2c-internet-measurements/rir-netdata.git rir-netdata
cd rir-netdata
$PIPENV install -r requirements.txt
$PIPENV run ./bin/netdata.py get
exit 0
- Install either the images python:2.7 or python:2.7-slim
- Run manually as follows:
$ docker run -ti -v $(pwd):/opt/rir-netdata python:2.7 /bin/bash
$ cd /opt/rir-netdata
$ pip install -r requirements.txt
$ ./bin/netdata.py get
docker build . -t opendata/rir-netdata:v2
The resulting image can be run as follows:
docker run -ti -v $(pwd)/var:/opt/rir-netdata/var get