0
0
mirror of https://gitlab.nic.cz/labs/bird.git synced 2025-01-24 18:01:54 +00:00
bird/proto
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
..
bfd Hidden AF_INET* inside sysdep/ 2016-01-11 09:29:51 +01:00
bgp BGP: Extended messages support 2015-07-18 13:38:21 +02:00
ospf Hidden AF_INET* inside sysdep/ 2016-01-11 09:29:51 +01:00
pipe Initial commit on integrated BIRD 2015-11-05 12:48:52 +01:00
radv Hidden AF_INET* inside sysdep/ 2016-01-11 09:29:51 +01:00
rip RIPng: fixed misrejection of host routes 2016-01-25 10:29:06 +01:00
rpki RPKI protocol with integrated RTRLib inside 2016-01-25 15:39:38 +01:00
static Integrated address print lengths 2015-12-20 13:47:39 +01:00
Doc RPKI protocol with integrated RTRLib inside 2016-01-25 15:39:38 +01:00