0
0
mirror of https://gitlab.nic.cz/labs/bird.git synced 2025-01-26 19:00:02 +00:00
Pavel Tvrdík 4661035431 RPKI protocol with one cache server per protocol
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

Example configuration of bird.conf:
  ...
  roa4 table r4;
  roa6 table r6;

  protocol rpki {
    debug all;

    # Import both IPv4 and IPv6 ROAs
    roa4 { table r4; };
    roa6 { table r6; };

    # Set cache server (validator) address,
    # overwrite default port 323
    remote "rpki-validator.realmv6.org" port 8282;

    # Overwrite default time intervals
    retry   10;         # Default 600 seconds
    refresh 60;         # Default 3600 seconds
    expire 600;         # Default 7200 seconds
  }

  protocol rpki {
    debug all;

    # Import only IPv4 routes
    roa4 { table r4; };

    # Set cache server address to localhost,
    # use default ports tcp => 323 or ssh => 22
    remote 127.0.0.1;

    # Use SSH transport instead of unprotected transport over TCP
    ssh encryption {
      bird private key "/home/birdgeek/.ssh/id_rsa";
      remote public key "/home/birdgeek/.ssh/known_hosts";
      user "birdgeek";
    };
  }
  ...
2016-05-26 13:57:19 +02:00
..
2004-05-31 17:27:21 +00:00
2015-11-05 12:48:52 +01:00
2015-11-05 12:48:52 +01: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
2016-02-19 16:33:07 +01:00
2013-09-16 23:57:40 +02:00
2015-12-24 15:56:04 +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-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-06-08 02:24:08 +02:00