0
0
mirror of https://gitlab.nic.cz/labs/bird.git synced 2024-12-22 17:51:53 +00:00
bird/sysdep
Pavel Tvrdík 41f4b5940f 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 or more cache servers per protocol.

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

  protocol rpki {
    table roatable;

    cache 127.0.0.1; # defaults: port 8282, preference 1, no encryption

    cache 127.0.0.1 {
      preference 1;
      port 2222;
      ssh encryption {
        bird private key "/home/birdgeek/.ssh/id_rsa";
        cache public key "/home/birdgeek/.ssh/known_hosts";
        user "birdgeek";
      };
    };

    cache "rpki-validator.realmv6.org" {
      preference 2;
    };
  }
  ...
2016-01-25 15:39:38 +01:00
..
bsd BSD: fix no-return warning 2016-01-21 15:47:04 +01:00
cf Delete ipv6 option from configure 2015-12-20 19:47:36 +01:00
linux Hidden AF_INET* inside sysdep/ 2016-01-11 09:29:51 +01:00
unix RPKI protocol with integrated RTRLib inside 2016-01-25 15:39:38 +01:00
autoconf.h.in RPKI protocol with integrated RTRLib inside 2016-01-25 15:39:38 +01:00
config.h Follow-up work on integration 2015-12-21 17:17:21 +01: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