0
0
mirror of https://gitlab.nic.cz/labs/bird.git synced 2024-10-18 09:58:43 +00:00
bird/conf
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
..
cf-lex.l Conf: Fixes bug in symbol lookup during reconfiguration 2015-11-09 00:42:02 +01:00
conf.c Conf: Fixes bug in symbol lookup during reconfiguration 2015-11-09 00:42:02 +01:00
conf.h Conf: Fixes bug in symbol lookup during reconfiguration 2015-11-09 00:42:02 +01:00
confbase.Y RPKI protocol with integrated RTRLib inside 2015-12-17 18:33:16 +01:00
Doc Moved parser docs to cf-lex.l, so that the parser compiles. 2000-06-04 15:22:20 +00:00
gen_commands.m4 Implements undo command and optional timeout for configuration 2012-12-26 12:40:48 +01:00
gen_keywords.m4 Fix configure to enable warnings and fix most of them. 2010-02-21 14:34:53 +01:00
gen_parser.m4 Implements undo command and optional timeout for configuration 2012-12-26 12:40:48 +01:00
Makefile Flex does not need the output of Bison. 2009-08-10 14:36:30 +02:00