0
0
mirror of https://gitlab.nic.cz/labs/bird.git synced 2024-10-18 09:58:43 +00:00
bird/sysdep
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
..
bsd Netlink: Allow more than 256 routing tables. 2015-11-11 11:40:49 +01:00
cf KRT: Fixes learning of preferred kernel routes. 2015-04-25 20:43:43 +02:00
linux Netlink: attribute validation before parsing 2015-11-24 14:30:20 +01:00
unix RPKI protocol with integrated RTRLib inside 2015-12-17 18:33:16 +01:00
autoconf.h.in RPKI protocol with integrated RTRLib inside 2015-12-17 18:33:16 +01:00
config.h NEWS and version update 2015-04-20 12:27:00 +02:00
Doc Documented all the sysdeps (only briefly, I admit). 2000-06-05 12:49:04 +00:00
sysdep.sgml Spelling fixes to progdoc. 2000-06-07 12:29:08 +00:00