0
0
mirror of https://gitlab.nic.cz/labs/bird.git synced 2025-02-03 14:50:02 +00:00
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
..
2015-06-08 02:24:08 +02:00
2015-06-08 02:24:08 +02:00
2015-06-08 02:24:08 +02:00
2015-06-08 02:24:08 +02:00
2015-06-08 02:24:08 +02:00
2014-03-20 14:07:12 +01:00
Doc
2000-06-05 12:19:12 +00:00
2015-02-21 12:30:14 +01:00
2014-07-18 18:24:12 +02:00
2012-03-18 17:32:30 +01:00
2015-06-08 02:24:08 +02:00
2015-10-05 13:18:10 +02:00
2015-10-05 13:18:10 +02:00
2000-06-08 12:37:21 +00:00
2015-06-08 02:24:08 +02:00
2011-11-07 00:31:23 +01:00
2015-10-05 13:18:10 +02:00
2015-11-24 15:21:11 +01:00