Code Monkey home page Code Monkey logo

handbook's Introduction

Build Status GitHub release License API docs Wiki Read the Docs Help wanted

Introduction

The RTRlib implements the client-side of the RPKI-RTR protocol (RFC 6810), (RFC 8210) and BGP Prefix Origin Validation (RFC 6811). This also enables the maintenance of router keys. Router keys are required to deploy BGPSEC.

The software was successfully tested on Linux and FreeBSD.

This package contains also the rtrclient program. It connects to an RTR-Server over TCP or SSH and shows on STDOUT prefix origin data and router keys that have been received from the RTR server. The program can be found in the bin/ directory.

Requirements

To build the RTRlib, the CMake build system must be installed.

To establish an SSH connection between RTR-Client and RTR-Server, the libssh 0.6.x or higher library must also be installed.

To enable BGPsec support for validating and signing AS paths, libssl 1.0 or higher needs to be installed.

cmocka (optional) is required for unit tests Doxygen (optional) is required to create the HTML documentation.

Compilation

  • Generate Makefile:

    Without debugging options

    cmake -D CMAKE_BUILD_TYPE=Release .
    

    With debug symbols and debug messages:

    cmake -D CMAKE_BUILD_TYPE=Debug .
    

    If the libssh isn't installed within the systems include and library directories you can run cmake with the following parameters:

    -D LIBSSH_LIBRARIES=<path-to-libssh.so>
    -D LIBSSH_INCLUDE_DIRS=<include-directory>
    

    If libssh is installed but you do not want to build rtrlib with ssh support, you can disable it with the following parameter:

    -D RTRLIB_TRANSPORT_SSH=No
    

    Or to enforce ssh support:

    -D RTRLIB_TRANSPORT_SSH=Yes
    

    To specify another directory where the RTRlib will be installed, you can pass the following argument to cmake:

    -D CMAKE_INSTALL_PREFIX=<path>
    

    BGPsec support is enabled by default. If dependencies cannot be resolved, rtrlib builds without BGPsec.

    To explicitly disable BGPsec:

    -D WITH_BGPSEC=No
    

    To explicitly enable BGPsec and fail the build if dependencies cannot be resolved:

    -D WITH_BGPSEC=Yes
    
  • Build library, tests, and tools

    make
    

Installation

To copy libraries and headers to system directories, run (optional):

make install

Linking to RTRlib

The name of the shared library is rtr. To link programs to the RTRlib, pass the following parameter to gcc:

-lrtr

In case an error such as

-/usr/bin/ld: cannot find -lrtr
-collect2: error: ld returned 1 exit status

occurs, the location of the library can be passed explicitly as a parameter

-L<path_to_librtr.so>

e.g.,

-L/usr/local/lib64/

API Documentation

The RTRlib includes a HTML documentation of the API. To build them, doxygen must be installed. The documentation will be located in the docs/ directory after the execution of:

make doc

Test RTR-Server Connection

The following command establishes a plain TCP connection to an RTR-Server using the rtrclient command line tool:

bin/rtrclient tcp rpki-validator.realmv6.org 8282

rpki-cache.netd.cs.tu-dresden.de is an open RTR-Server instance for testing purposes, which runs the RIPE Validator. It listens on port 3323 and validates ROAs from the following trust anchors: AfriNIC, APNIC, ARIN, LACNIC, RIPE.

Directories

  • cmake/ - CMake modules
  • doxygen/ - Example code and graphics used in the Doxygen documentation
  • rtrlib/ - Header and source code files of the RTRlib
  • tests/ - Unit tests
  • tools/ - Contains the rtrclient

CONTRIBUTE

To contribute something to RTRlib, please refer to our contributing document.

Contact

Website: http://rtrlib.realmv6.org/

Mailing List: [email protected]

handbook's People

Contributors

colinbs avatar mroethke avatar smlng avatar tcschmidt avatar waehlisch avatar

Stargazers

 avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

handbook's Issues

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.