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
..
2004-05-31 17:27:21 +00:00
2015-11-24 13:47:28 +01:00
2015-06-08 02:24:08 +02:00
2015-06-08 02:24:08 +02:00
2013-09-10 12:09:36 +02:00
2015-06-08 02:24:08 +02:00
2015-06-08 02:24:08 +02:00
2014-11-03 10:42:55 +01:00
2015-05-01 14:40:56 +02:00
2013-12-01 13:49:42 +01:00
2013-09-16 23:57:40 +02:00
2015-11-24 15:21:11 +01:00
2015-11-24 15:21:11 +01:00
2013-09-16 23:57:40 +02:00
2015-02-21 20:07:17 +01:00
2015-11-24 16:01:48 +01:00
2015-11-24 16:01:48 +01:00
2015-06-08 02:24:08 +02:00
2015-11-24 13:52:26 +01:00
2015-06-08 02:24:08 +02:00
2013-09-16 23:57:40 +02:00
2015-11-24 13:47:28 +01:00
2015-11-24 13:47:28 +01:00
2015-11-24 13:47:28 +01:00
2015-11-24 13:47:28 +01:00
2015-11-24 13:47:28 +01:00
2015-11-24 13:47:28 +01:00
2015-06-08 02:24:08 +02:00
2009-01-12 14:40:21 +01:00
2014-06-26 11:58:57 +02:00
2015-11-24 13:52:26 +01:00
2015-11-24 13:52:26 +01:00
2015-06-08 02:24:08 +02:00