├── .coveragerc ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── TODO.md ├── appconfig.cfg.dist ├── data ├── rfc-managed.txt ├── ripe-managed-space.txt └── schema.sql ├── db ├── README ├── bootstrap ├── create_bgp ├── create_irr_as_sets ├── create_irr_routes ├── create_managed ├── create_serials ├── create_source ├── fetch ├── refresh ├── refresh_ripe_managed └── sources.py ├── docs └── irrexplorer-logo.png ├── exabgp.conf ├── fetch_ripe_managed.py ├── irrexplorer ├── __init__.py ├── bgpupdate.py ├── irrparser.py ├── irrtest.data ├── irrupdate.py ├── nrtm.py ├── report.py ├── sqldb.py ├── utils.py └── www.py ├── irrexplorer_config.yml.dist ├── irrexwww ├── query ├── requirements.txt ├── setup.cfg ├── setup.py ├── static ├── img │ ├── false.png │ ├── loading.gif │ └── true.png ├── js │ └── table.js └── robots.txt ├── templates ├── index.html └── search.html ├── tests ├── REGRESSION.CURRENTSERIAL ├── irrtest.data ├── nrtm_server.py ├── nrtm_test.yml ├── test_nrtmclient.py ├── test_regression.py └── test_utils.py └── worker /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/job/irrexplorer/HEAD/.coveragerc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | .eggs/ 3 | irrexplorer.egg-info/ 4 | .coverage 5 | .venv/ 6 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/job/irrexplorer/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/job/irrexplorer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/job/irrexplorer/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/job/irrexplorer/HEAD/TODO.md -------------------------------------------------------------------------------- /appconfig.cfg.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/job/irrexplorer/HEAD/appconfig.cfg.dist -------------------------------------------------------------------------------- /data/rfc-managed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/job/irrexplorer/HEAD/data/rfc-managed.txt -------------------------------------------------------------------------------- /data/ripe-managed-space.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/job/irrexplorer/HEAD/data/ripe-managed-space.txt -------------------------------------------------------------------------------- /data/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/job/irrexplorer/HEAD/data/schema.sql -------------------------------------------------------------------------------- /db/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/job/irrexplorer/HEAD/db/README -------------------------------------------------------------------------------- /db/bootstrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/job/irrexplorer/HEAD/db/bootstrap -------------------------------------------------------------------------------- /db/create_bgp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/job/irrexplorer/HEAD/db/create_bgp -------------------------------------------------------------------------------- /db/create_irr_as_sets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/job/irrexplorer/HEAD/db/create_irr_as_sets -------------------------------------------------------------------------------- /db/create_irr_routes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/job/irrexplorer/HEAD/db/create_irr_routes -------------------------------------------------------------------------------- /db/create_managed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/job/irrexplorer/HEAD/db/create_managed -------------------------------------------------------------------------------- /db/create_serials: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/job/irrexplorer/HEAD/db/create_serials -------------------------------------------------------------------------------- /db/create_source: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/job/irrexplorer/HEAD/db/create_source -------------------------------------------------------------------------------- /db/fetch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/job/irrexplorer/HEAD/db/fetch -------------------------------------------------------------------------------- /db/refresh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/job/irrexplorer/HEAD/db/refresh -------------------------------------------------------------------------------- /db/refresh_ripe_managed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/job/irrexplorer/HEAD/db/refresh_ripe_managed -------------------------------------------------------------------------------- /db/sources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/job/irrexplorer/HEAD/db/sources.py -------------------------------------------------------------------------------- /docs/irrexplorer-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/job/irrexplorer/HEAD/docs/irrexplorer-logo.png -------------------------------------------------------------------------------- /exabgp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/job/irrexplorer/HEAD/exabgp.conf -------------------------------------------------------------------------------- /fetch_ripe_managed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/job/irrexplorer/HEAD/fetch_ripe_managed.py -------------------------------------------------------------------------------- /irrexplorer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/job/irrexplorer/HEAD/irrexplorer/__init__.py -------------------------------------------------------------------------------- /irrexplorer/bgpupdate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/job/irrexplorer/HEAD/irrexplorer/bgpupdate.py -------------------------------------------------------------------------------- /irrexplorer/irrparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/job/irrexplorer/HEAD/irrexplorer/irrparser.py -------------------------------------------------------------------------------- /irrexplorer/irrtest.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/job/irrexplorer/HEAD/irrexplorer/irrtest.data -------------------------------------------------------------------------------- /irrexplorer/irrupdate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/job/irrexplorer/HEAD/irrexplorer/irrupdate.py -------------------------------------------------------------------------------- /irrexplorer/nrtm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/job/irrexplorer/HEAD/irrexplorer/nrtm.py -------------------------------------------------------------------------------- /irrexplorer/report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/job/irrexplorer/HEAD/irrexplorer/report.py -------------------------------------------------------------------------------- /irrexplorer/sqldb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/job/irrexplorer/HEAD/irrexplorer/sqldb.py -------------------------------------------------------------------------------- /irrexplorer/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/job/irrexplorer/HEAD/irrexplorer/utils.py -------------------------------------------------------------------------------- /irrexplorer/www.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/job/irrexplorer/HEAD/irrexplorer/www.py -------------------------------------------------------------------------------- /irrexplorer_config.yml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/job/irrexplorer/HEAD/irrexplorer_config.yml.dist -------------------------------------------------------------------------------- /irrexwww: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/job/irrexplorer/HEAD/irrexwww -------------------------------------------------------------------------------- /query: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/job/irrexplorer/HEAD/query -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/job/irrexplorer/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/job/irrexplorer/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/job/irrexplorer/HEAD/setup.py -------------------------------------------------------------------------------- /static/img/false.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/job/irrexplorer/HEAD/static/img/false.png -------------------------------------------------------------------------------- /static/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/job/irrexplorer/HEAD/static/img/loading.gif -------------------------------------------------------------------------------- /static/img/true.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/job/irrexplorer/HEAD/static/img/true.png -------------------------------------------------------------------------------- /static/js/table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/job/irrexplorer/HEAD/static/js/table.js -------------------------------------------------------------------------------- /static/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/job/irrexplorer/HEAD/static/robots.txt -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/job/irrexplorer/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/job/irrexplorer/HEAD/templates/search.html -------------------------------------------------------------------------------- /tests/REGRESSION.CURRENTSERIAL: -------------------------------------------------------------------------------- 1 | 1983028 -------------------------------------------------------------------------------- /tests/irrtest.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/job/irrexplorer/HEAD/tests/irrtest.data -------------------------------------------------------------------------------- /tests/nrtm_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/job/irrexplorer/HEAD/tests/nrtm_server.py -------------------------------------------------------------------------------- /tests/nrtm_test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/job/irrexplorer/HEAD/tests/nrtm_test.yml -------------------------------------------------------------------------------- /tests/test_nrtmclient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/job/irrexplorer/HEAD/tests/test_nrtmclient.py -------------------------------------------------------------------------------- /tests/test_regression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/job/irrexplorer/HEAD/tests/test_regression.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/job/irrexplorer/HEAD/tests/test_utils.py -------------------------------------------------------------------------------- /worker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/job/irrexplorer/HEAD/worker --------------------------------------------------------------------------------