0
0
mirror of https://gitlab.nic.cz/labs/bird.git synced 2024-12-23 18:21:54 +00:00
Commit Graph

2 Commits

Author SHA1 Message Date
Pavel Tvrdík
df2caa8b1d RPKI: refactore and improve
Takes into account a preferences of caches.
Fixes many bugs.

Configuration example:

    roa table roatable;

    protocol rpki {
      debug all;
      roa table roatable;

      cache "rpki-validator.realmv6.org" {
          port 3233;
          preference 1;
      };
      cache 127.0.0.1 {
          preference 2;
      };
      cache "rpki-validator.realmv6.org";
    }
2015-10-07 15:54:20 +02:00
Pavel Tvrdík
804684663b RPKI: load RTRLib dynamically with dlopen()
In configuration bird.conf you can specify a path to the RTRlib:

  protocol rpki {
    rtrlib "/usr/lib/librtr.so";
    ...
  }
2015-10-05 16:52:15 +02:00