bird/filter
Pavel Tvrdík 65d2a88dd2 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-12-07 09:35:24 +01:00
..
config.Y Merge branch 'master' into int-new-channels 2016-04-08 12:28:33 +02:00
Doc Reimplementation of prefix sets. 2009-03-31 12:55:57 +02:00
f-util.c Rewrite roa_check() for integrated BIRD 2016-01-20 16:46:58 +01:00
filter.c RPKI protocol with one cache server per protocol 2016-12-07 09:35:24 +01:00
filter.h Rewrite roa_check() for integrated BIRD 2016-01-20 16:46:58 +01:00
Makefile Build system reworked to one global Makefile with includes and no nesting 2016-05-10 14:07:34 +02:00
test.conf Follow-up work on integration 2015-12-24 15:56:04 +01:00
test.conf.inc Implements wildcard matching in config file include. 2012-07-18 19:29:33 +02:00
test.conf2 Allow matching on enums: 2000-06-01 08:32:49 +00:00
test6.conf Reimplementation of prefix sets. 2009-03-31 12:55:57 +02:00
tree.c Merge commit 'origin/bfd' 2013-11-22 02:48:44 +01:00
trie.c Add NET ROA4/6 structures 2016-01-07 18:21:31 +01:00