0
0
mirror of https://gitlab.nic.cz/labs/bird.git synced 2024-12-22 17:51:53 +00:00
bird/proto
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
..
bfd BFD: Fixes crash after socket error 2015-07-19 11:39:24 +02:00
bgp BGP: Extended messages support 2015-07-18 13:38:21 +02:00
ospf MD5: Mormalize naming style 2015-11-24 16:01:48 +01:00
pipe Store protocol config size inside protocol structure 2015-02-21 21:08:23 +01:00
radv Store protocol config size inside protocol structure 2015-02-21 21:08:23 +01:00
rip MD5: Mormalize naming style 2015-11-24 16:01:48 +01:00
rpki RPKI protocol with integrated RTRLib inside 2015-12-17 18:33:16 +01:00
static Static: Support for BFD controlled static routes 2015-07-24 18:02:07 +02:00
Doc RPKI protocol with integrated RTRLib inside 2015-12-17 18:33:16 +01:00