0
0
mirror of https://gitlab.nic.cz/labs/bird.git synced 2024-10-18 18:08:45 +00:00
bird/tools
Pavel Tvrdík 4cf229a0b5 RPKI protocol with integrated RTRLib inside
Add the RPKI protocol (RFC 6810) using the RTRLib
(http://rpki.realmv6.org/) that is integrated inside
the BIRD's code.

Implemeted transports are:
 - unprotected transport over TCP
 - secure transport over SSHv2

The code should work properly with one cache server per protocol.

A compilation has to be hacked with:
  $ ./configure LIBS='-lssh' ...

Example configuration of bird.conf:
  ...
  roa table roatable;

  protocol rpki {
      roa table roatable;
      cache "rpki-validator.realmv6.org";
  }

  protocol rpki {
    roa table roatable;
    cache "localhost" {
      port 2222;
      ssh encryption {
        bird private key "/home/birdgeek/.ssh/id_rsa";
        cache public key "/home/birdgeek/.ssh/known_hosts";
        user "birdgeek";
      };
    };
  }
  ...

TODO list:
 - load libssh2 using dlopen
 - support more cache servers per protocol
2015-12-17 18:33:16 +01:00
..
config.guess Update of config.sub & config.guess 2009-09-06 21:26:46 +02:00
config.sub Update of config.sub & config.guess 2009-09-06 21:26:46 +02:00
cvslog Added a simple utility for converting CVS log messages to a reasonable 2004-05-31 22:16:54 +00:00
gendist Typo in gendist script. 2009-04-28 11:56:33 +02:00
install-sh First step of "autoconfization". Created a configure script which 1999-01-09 15:02:11 +00:00
Makefile-top.in Delete autom4te.cache in 'make distclean'. 2004-05-31 15:13:56 +00:00
Makefile.in RPKI protocol with integrated RTRLib inside 2015-12-17 18:33:16 +01:00
mergedirs Better Clang compatibility 2015-02-21 20:07:17 +01:00
progdoc Description of protocol module moved to where it belongs. If documentation 2000-06-05 09:51:24 +00:00
Rules.in RPKI protocol with integrated RTRLib inside 2015-12-17 18:33:16 +01:00