Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Optionally import RIPE routes #23

Open
wants to merge 7 commits into
base: master
Choose a base branch
from

Commits on May 10, 2021

  1. ripe-import: optionally import RIPE route data

    The ripe importer can now optionally import RIPE route data. In the
    context of IntelMQ, this information is useful to e.g. map IP addresses
    to ASNs which in turn can be mapped to contact information for
    notifications.
    
    This commit contains the changes for main part of this:
    
     * The download script also downloads the ripe.db.route.gz
       and ripe.db.route6.gz files
    
     * The database schema has a new table and index for the route
       information
    
     * The import code optionally loads these files and saves it into the
       database
    
    Notably missing is the database upgrade.
    
    Related to Intevation#15
    bernhard-herzog committed May 10, 2021
    Configuration menu
    Copy the full SHA
    9d98a6b View commit details
    Browse the repository at this point in the history

Commits on May 20, 2021

  1. ripe-import: Add DB update script for route_automatic

    This adds an update script for the new route_automatic table. The name
    script file does not include a version number like the other update
    scripts because it's not clear yet which version this file will be
    included in.
    
    Related to Intevation#15
    bernhard-herzog committed May 20, 2021
    Configuration menu
    Copy the full SHA
    8d4c4f6 View commit details
    Browse the repository at this point in the history

Commits on Jun 14, 2021

  1. ripe-import: Add --before-commit-command option

    The RIPE importer has a new command line option,
    --before-commit-command, whose argument is an SQL statement that is
    executed by the importer before the transaction that updates the RIPE
    data is committed. This command can be used to e.g. cleanup data that
    depends on the RIPE data, but which cannot be automatically updated with
    'ON DELETE CASCADE' for foreign keys or similar mechanisms.
    bernhard-herzog committed Jun 14, 2021
    Configuration menu
    Copy the full SHA
    4f5b665 View commit details
    Browse the repository at this point in the history

Commits on Feb 27, 2024

  1. Bulk insert RIPE data

    kamil-certat committed Feb 27, 2024
    Configuration menu
    Copy the full SHA
    4571064 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    4c1d0b4 View commit details
    Browse the repository at this point in the history
  3. Fix syntax

    kamil-certat committed Feb 27, 2024
    Configuration menu
    Copy the full SHA
    a76ce29 View commit details
    Browse the repository at this point in the history

Commits on Mar 7, 2024

  1. Configuration menu
    Copy the full SHA
    1a2a6f2 View commit details
    Browse the repository at this point in the history