bird/doc
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
..
old Moved old TeX documents to old/ to make them not interfere with doc building. 2000-05-31 11:28:07 +00:00
sbase Updated the documentation building tools to work with a recent linuxdoc-tools package. 2003-04-06 19:35:50 +00:00
slides Added slides for our presentation, but don't export them to the 2000-06-26 20:02:30 +00:00
slt2001 Added paper for my talk about BIRD at SLT 2001. 2001-01-19 20:30:08 +00:00
tex Fixes for the programmer's manual. 2000-06-08 12:37:21 +00:00
bird.conf.example Implement latency tracking, internal event log and watchdog 2015-03-02 09:41:14 +01:00
bird.sgml RPKI protocol with one cache server per protocol 2016-12-07 09:35:24 +01:00
Doc Description of protocol module moved to where it belongs. If documentation 2000-06-05 09:51:24 +00:00
kernel-doc Don't print empty synopses of functions. 2000-06-05 21:01:58 +00:00
LinuxDocTools.pm Build system reworked to one global Makefile with includes and no nesting 2016-05-10 14:07:34 +02:00
Makefile Build system reworked to one global Makefile with includes and no nesting 2016-05-10 14:07:34 +02:00
prog-foot.sgml Use <chapt> for chapters, <sect> for sections and <sect1> for subsections. 2000-06-02 17:23:53 +00:00
prog-head.sgml Ondrej Zajicek add to the team. 2009-08-16 22:41:07 +02:00
prog-intro.sgml Fixes for the programmer's manual. 2000-06-08 12:37:21 +00:00
prog-spell.sed Added `progspell' target which runs ispell on the progdoc SGML file with 2000-06-07 12:27:18 +00:00
reply_codes Add the Babel routing protocol (RFC 6126) 2016-04-28 18:01:40 +02:00
sgml2html Build system reworked to one global Makefile with includes and no nesting 2016-05-10 14:07:34 +02:00
sgml2latex Build system reworked to one global Makefile with includes and no nesting 2016-05-10 14:07:34 +02:00
sgml2txt Build system reworked to one global Makefile with includes and no nesting 2016-05-10 14:07:34 +02:00