The first version of IRR explorer was written by Job Snijders to make it easier to debug data in the IRR system. An example is to verify whether you would be impacted by deployment of filtering strategies such as "IRR Lockdown".
The original project has several issues, and this IRR explorer v2 project is an improved reimplementation on top of IRRd for Stichting NLNOG by DashCare BV.
Queried from an IRRd 4.2+ instance:
- IRR objects and relations (route(6) and as-sets)
- RPKI ROAs and the validation status of route(6) objects
Loaded into a local PostgreSQL database periodically:
- BGP origins for prefixes in the DFZ
- RIRstats
IRR explorer consists of a Python backend, based on Uvicorn and Starlette. This backend provides a JSON API. The frontend is ReactJS.
By default, the backend also serves the static files of the frontend. These static files are built during installation. Therefore, you only need to start one Python HTTP process. Technically, it might be more efficient to serve the frontend separately from a CDN, or at least to skip the path through the Python backend. However, the frontend is small and entirely cacheable, which is why this readme uses the simplest option.
The Python backend is async, which means a single Python worker can serve multiple clients at the same time, while waiting on results from backends.
To run IRR explorer you need a Linux, BSD or MacOS install with:
- Python 3.7 or newer
- Poetry (package manager for Python)
- node (tested on version 15 and 16)
- yarn
You also need access to a PostgreSQL server, and an IRRd 4.2+ deployment.
There are two ways to configure IRRexplorer:
- Set the config in environment variables. You should ensure these environment
variables are set every time you run a command through
poetry
. - Create a
.env
file in the git checkout created during the install step, and store the settings in this file.
The required settings are:
DATABASE_URL
: the URL of the PostgreSQL database, e.g.postgresql://localhost/irrexplorer
to connect to the local databaseirrexplorer
over a unix socket. Only PostgreSQL is supported.IRRD_ENDPOINT
: the URL of the IRRd 4.2+ GraphQL endpoint, e.g.https://irrd.example.net/graphql/
.
You can optionally set:
HTTP_PORT
: the local HTTP port to bind to. Only used by thepoetry run http
command. Default: 8000.HTTP_WORKERS
: the number of HTTP workers to start. Only used by thepoetry run http
command. Default: 4.DEBUG
: enables debug mode in the web server. defaults toFalse
. Do not enable in production.BGP_SOURCE
: the source of BGP origin information. Default:https://bgp.tools/table.jsonl
.BGP_SOURCE_MINIMUM_HITS
: the minimum number of hits aBGP_SOURCE
record needs to be included. Default: 250.RIRSTATS_URL_ARIN
,RIRSTATS_URL_AFRINIC
, etc. URL for the RIR stats file for each RIR (supports basic and extended format).REGISTROBR_URL
: URL for the Registro.BR asn-blk file.BGP_IPV4_LENGTH_CUTOFF
/BGP_IPV6_LENGTH_CUTOFF
: BGP prefixes of this length or longer are dropped when importing BGP origin data. Default: 29 and 124.MINIMUM_PREFIX_SIZE_IPV4
/MINIMUM_PREFIX_SIZE_IPV6
: minimum prefix length for queries. Prefixes shorter than this are rejected, to limit database load. Default: 9 and 29.
If you choose to create a .env
file, it should look similar to:
DATABASE_URL=postgresql://localhost/irrexplorer
IRRD_ENDPOINT=https://irrd.example.net/graphql/
- As a non-privileged user, check out the git repository
- In the checkout, run
poetry install
, to install Python dependenciespoetry run frontend-install
, to install javascript dependenciespoetry run frontend-build
, to make a local production build of the frontendpoetry run alembic upgrade head
, to create the database schema
Poetry is a Python package manager that automatically creates and manages a
virtual environment. You can get more details about the virtual environment
poetry is using with poetry env info
.
To update a local install, update your local checkout, then run the installation steps again - they are aware of existing state and safe to execute multiple times.
To run IRR explorer, you need to run the periodic data importer and an HTTP server.
The periodic data importer is run as poetry run import-data
. This updates the local
BGP and RIR stats data. You should schedule this to run regularly, e.g. in a cronjob.
It can take around 15-20 minutes to complete.
The simplest way to run the HTTP server is with poetry run http
. This starts the
HTTP listener in the foreground. It will always bind to localhost, and you can set
the local port and number of workers with the HTTP_PORT
and HTTP_WORKERS
settings.
For more advanced deployments, see the
Uvicorn deployment documentation.
The app name for IRR explorer is irrexplorer.app:app
.
For development, it can be helpful to run the uvicorn and react apps separately. This also allow auto reloading.
- Activate the virtualenv, and run uvicorn with
uvicorn --reload irrexplorer.app:app
. This will listen on port 8000 by default and read settings from the.env
file or environment as in production. - Run the frontend from the frontend directory with
yarn start
. This will start a small webserver on port 3000. You need to setREACT_APP_BACKEND
in the.env
file to your local API URL.
To run tests, run yarn build
(or poetry run frontend-build
) at least once
(that build is used for static serving tests), activate the virtualenv,
then run pytest
.