Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
added readme file
- Loading branch information
Showing
1 changed file
with
17 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
RPKI ROA Sanity Checker | ||
|
||
This Python app checks the information for a proposed RPKI-ROA, provided by the user via a web form, against exiting routes seen on the Internet and reported by RIPEstat. The response will include a row for the route matching the proposed ROA's prefix, and additional rows for any more specific routes seen on the Internet. | ||
|
||
Each row contains four columns: | ||
|
||
1. The prefix being evaluated. | ||
2. The result of the proposed ROA applied to the prefix. | ||
3. The origin ASN seen via RIPEstat for the prefix. | ||
4. The status of any existing ROA that covers this prefix. | ||
|
||
The app is designed to be invoked as a docker command: | ||
``` | ||
docker run -dp 8000:8000 stevenisfine/roa_checker:latest | ||
``` | ||
|
||
|