aboutsummaryrefslogtreecommitdiff
path: root/rpkid/doc/Operation
blob: 4c5e987f527d3b9e659f5e1522493307fe3f8079 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
Operation

   Preliminary operation instructions for rpkid et al.

   These are the production-side RPKI tools, for Internet Registries
   (RIRs, LIRs, etc). See ../rcynic/README for relying party tools.

   Warning:
          rpkid is still in development, and the code changes more often
          than the hand-maintained portions of this documentation. The
          following text was reasonably accurate at the time it was
          written but may be obsolete by the time you read it.

   At present the package is intended to be run out of the rpkid/
   directory.

   In addition to the library routines in the rpkid/rpki/ directory, the
   package includes the following programs:

     * rpkid.py: The main RPKI engine daemon.

     * pubd.py: The publication engine daemon.

     * rootd.py: A separate daemon for handling the root of an RPKI
       certificate tree. This is essentially a stripped down version of
       rpkid with no SQL database, no left-right protocol implementation,
       and only the parent side of the up-down protocol. It's separate
       because the root is a special case in several ways and it was
       simpler to keep the special cases out of the main daemon.

     * irdbd.py: A sample implementation of an IR database daemon. rpkid
       calls into this to perform lookups via the left-right protocol.

     * irbe-cli.py: A command-line client for the left-right control
       protocol.

     * irbe-setup.py: An example of a script to set up the mappings
       between the IRDB and rpkid's own database, using the left-right
       control protocol.

     * cronjob.py: A trivial HTTP client used to drive rpkid cron events.

     * testbed.py: A test tool for running a collection of rpkid and irdb
       instances under common control, driven by a unified test script.

     * testpoke.py: A simple client for the up-down protocol, mostly
       compatable with APNIC's rpki_poke.pl tool.

   Most of these programs take configuration files in a common format
   similar to that used by the OpenSSL command line tool. The test
   programs also take input in YAML format to drive the tests. Runs of the
   testbed.py test tool will generate a fairly complete set configuration
   files which may be useful as examples.

   Basic operation consists of creating the appropriate MySQL databases,
   starting rpkid, rootd, and irdbd, using the left-right control protocol
   to set up rpkid's internal state, and setting up a cron job to invoke
   rpkid's cron action at regular intervals. All other operations should
   occur either as a result of cron events or as a result of incoming
   left-right and up-down protocol requests.

   Note that the publication protocol isn't fully specified yet, much less
   implmenented. At the moment rpkid just writes its outputs to a local
   directory tree.

   Note that the full event-driven model for rpkid hasn't yet been
   implemented. The design is intended to allow an arbitrary number of
   hosted RPKI engines to run in a single rpkid instance, but without the
   event-driven tasking model one has to set up a separate rpkid instance
   for each hosted RPKI engine.

   At present the daemon programs all run in foreground, that is, if one
   wants them to run in background one must do so manually, eg, using
   Bourne shell syntax:

   $ python whatever.py &
   $ echo >whatever.pid  "$!"

   All of the daemons use syslog. At present they all set LOG_PERROR, so
   all logging also goes to stderr.

rpkid.py

   rpkid is the main RPKI engine daemon. Configuration of rpkid is a two
   step process: a config file to bootstrap rpkid to the point where it
   can speak using the left-right protocol, followed by dynamic
   configuration via the left-right protocol. In production use the latter
   stage would be handled by the IRBE stub; for test and develoment
   purposes it's handled by the irbe-cli.py command line interface or by
   the testbed.py test framework.

   rpkid stores dynamic data in an SQL database, which must have been
   created for it, as explained in the installation guide.

   The default config file is rpkid.conf, start rpkid with "-c filename"
   to choose a different config file. All options are in the section
   "[rpkid]". Certificates, keys, and trust anchors may be in either DER
   or PEM format.

   Config file options:

     * startup-message: String to log on startup, useful when debugging a
       collection of rpkid instances at once.

     * sql-username: Username to hand to MySQL when connecting to rpkid's
       database.

     * sql-database: MySQL's database name for rpkid's database.

     * sql-password: Password to hand to MySQL when connecting to rpkid's
       database.

     * cms-ta-irdb: Name of file containing CMS trust anchor to use when
       authenticating messages from irdbd.

     * cms-ta-irbe: Name of file containing CMS trust anchor to use when
       authenticating control messages from IRBE.

     * cms-key: Name of file containing RSA key to use when signing CMS
       messages to IRBE or irdbd.

     * cms-cert: Name(s) of file(s) containing certificate(s) to include
       in CMS wrapper when signing messages to IRBE or irdbd. You can
       specify more than one certificate using OpenSSL-style subscripts:
       cms-cert.0, cms-cert.1, etc.

     * https-key: Name of file containing RSA key to use, both in the
       HTTPS server role (for both up-down and left-right protocols) and
       in the HTTPS client role (left-right protocol only).

     * https-cert: Name(s) of file(s) containing certificate(s) to use in
       same contexts where https-key is used. You can specify more than
       one certificate using OpenSSL-style subscripts: https-cert.0,
       https-cert.1, etc.

     * https-ta: Name of file containing trust anchor to use when
       verifying irdbd's HTTPS server certificate.

     * irdb-url: Service URL for irdbd. Must be a https:// URL.

     * https-server-host: Hostname or IP address on which to listen for
       HTTPS connections. Current default is INADDR_ANY (IPv4 0.0.0.0);
       this will need to be hacked to support IPv6 for production.

     * https-server-port: TCP port on which to listen for HTTPS
       connections.

pubd.py

   pubd is the publication daemon. It implements the server side of the
   publication protocol, and is used by rpkid to publish the certificates
   and other objects that rpkid generates.

   pubd is separate from rpkid for two reasons:

     * The hosting model allows entities which choose to run their own
       copies of rpkid to publish their output under a common publication
       point. In general, encouraging shared publication services where
       practical is a good thing for relying parties, as it will speed up
       rcynic synchronization time.

     * The publication server has to run on (or at least close to) the
       publication point itself, which in turn must be on a publically
       reachable server to be useful. rpkid, on the other hand, need only
       be reachable by the IRBE and its children in the RPKI tree. rpkid
       is a much more complex piece of software than pubd, so in some
       situations it might make sense to wrap tighter firewall constraints
       around rpkid than would be practical if rpkid and pubd were a
       single program.

   pubd stores dynamic data in an SQL database, which must have been
   created for it, as explained in the installation guide. pubd also
   stores the published objects themselves as disk files in a configurable
   location which should correspond to an appropriate module definition in
   rsync.conf.

   The default config file is pubd.conf, start pubd with "-c filename" to
   choose a different config file. ALl options are in the section
   "[pubd]". Certifiates, keys, and trust anchors may be either DER or PEM
   format.

   Config file options:

     * sql-username: Username to hand to MySQL when connecting to pubd's
       database.

     * sql-database: MySQL's database name for pubd's database.

     * sql-password: Password to hand to MySQL when connecting to pubd's
       database.

     * bpki-ta: Name of file containing master BPKI trust anchor for pubd.
       All BPKI validation in pubd traces back to this trust anchor.

     * irbe-cert: Name of file containing BPKI certificate used by IRBE
       when talking to pubd.

     * pubd-cert: Name of file containing BPKI certificate used by pubd.

     * pubd-key: Name of file containing RSA key corresponding to
       pubd-cert.

     * server-host: Hostname or IP address on which to listen for HTTPS
       connections. Current default is INADDR_ANY (IPv4 0.0.0.0); this
       will need to be hacked to support IPv6 for production.

     * server-port: TCP port on which to listen for HTTPS connections.

     * publication-base: Path to base of filesystem tree where pubd should
       store publishable objects. Default is "publication/".

rootd.py

   rootd is a stripped down implmenetation of (only) the server side of
   the up-down protocol. It's a separate program because the root
   certificate of an RPKI certificate tree requires special handling and
   may also require a special handling policy. rootd is a simple
   implementation intended for test use, it's not suitable for use in a
   production system. All configuration comes via the config file.

   The default config file is rootd.conf, start rootd with "-c filename"
   to choose a different config file. All options are in the section
   "[rootd]". Certificates, keys, and trust anchors may be in either DER
   or PEM format.

   Config file options:

     * cms-ta: Name of file containing trust anchor to use when verifying
       CMS up-down queries.

     * cms-key: Name of file containing RSA key to use when signing CMS
       up-down replies.

     * cms-cert: Name(s) of file(s) containing certificate(s) to include
       in CMS wrapper when signing up-down replies. You can specify more
       than one certificate using OpenSSL-style subscripts: cms-cert.0,
       cms-cert.1, etc.

     * https-key: Name of file containing RSA key to use in the HTTPS
       server role for the up-down protocol.

     * https-cert: Name(s) of file(s) containing certificate(s) to use in
       the HTTPS server role for the up-down protocol. You can specify
       more than one certificate using OpenSSL-style subscripts:
       https-cert.0, https-cert.1, etc.

     * https-server-host: Hostname or IP address on which to listen for
       HTTPS connections. Default is localhost.

     * https-server-port: TCP port on which to listen for HTTPS
       connections.

     * rpki-key: Name of file containing RSA key to use in signing
       resource certificates.

     * rpki-issuer: Name of file containing self-signed root resource
       certificate corresponding to rpki-key.

     * rpki-subject-filename: Name of file that rootd should use to save
       the one and only certificate it issues.

     * rpki-pkcs10-filename: Name of file that rootd should use when
       saving a copy of the received PKCS #10 request for a resource
       certificate. This is only used for debugging. Default is not to
       save the PKCS #10 request.

irdbd.py

   irdbd is a sample implemntation of the server side of the IRDB callback
   subset of the left-right protocol. In production use this service is a
   function of the IRBE stub; irdbd may be suitable for production use in
   simple cases, but an IR with a complex IRDB may need to extend or
   rewrite irdbd.

   irdbd requires a pre-populated database to represent the IR's
   customers. irdbd expects this database to use the SQL schema defined in
   rpkid/irdbd.sql. Once this database has been populated, the IRBE stub
   needs to create the appropriate objects in rpkid's database via the
   control subset of the left-right protocol, and store the linkage IDs
   (foreign keys into rpkid's database, basicly) in the IRDB. The
   irbe-setup.py program shows an example of how to do this.

   irdbd's default config file is irdbd.conf, start irdbd with "-c
   filename" to choose a different config file. All options are in the
   section "[irdbd]". Certificates, keys, and trust anchors may be in
   either DER or PEM format.

   Config file options:

     * startup-message: String to log on startup, useful when debugging a
       collection of irdbd instances at once.

     * sql-username: Username to hand to MySQL when connecting to irdbd's
       database.

     * sql-database: MySQL's database name for irdbd's database.

     * sql-password: Password to hand to MySQL when connecting to irdbd's
       database.

     * cms-ta: Name of file containing CMS trust anchor to use when
       authenticating messages from rpkid.

     * cms-key: Name of file containing RSA key to use when signing CMS
       messages to rpkid.

     * cms-cert: Name(s) of file(s) containing certificate(s) to include
       in CMS wrapper when signing messages to rpkid. You can specify more
       than one certificate using OpenSSL-style subscripts: cms-cert.0,
       cms-cert.1, etc.

     * https-key: Name of file containing RSA key to use in the HTTPS
       server role when listening for connections from rpkid.

     * https-cert: Name(s) of file(s) containing certificate(s) to use in
       the HTTPS server role when listening for connections from rpkid.
       You can specify more than one certificate using OpenSSL-style
       subscripts: https-cert.0, https-cert.1, etc.

     * https-url: Service URL for irdbd. Must be a https:// URL.

irbe-cli.py

   irbe-cli is a simple command line client for the control subset of the
   left-right protocol. In production use this functionality would be part
   of the IRBE stub.

   Basic configuration of irbe-cli is handled via a config file. The
   specific action or actions to be performed are specified on the command
   line, and map closely to the left-right protocol itself.

   At present the user is assumed to be able to read the (XML) left-right
   protocol messages, and with one exception, no attempt is made to
   interpret the responses other than to check for errors. The one
   exception is that, if the --pem_out option is specified on the command
   line, any PKCS #10 requests received from rpkid will be written in PEM
   format to that file; this makes it easier to hand these requests off to
   the business PKI in order to issue signing certs corresponding to newly
   generated business keys.

      Command line IR back-end control program for rpkid and pubd.

      Usage:

      # Top-level options:
      --config= --help --pem_out= --verbose

      # left-right protocol:
      parent --action= --tag= --self_id= --parent_id= --bsc_id=
          --repository_id= --peer_contact_uri= --sia_base= --sender_name=
          --recipient_name= --bpki_cms_cert= --bpki_cms_glue=
          --bpki_https_cert= --bpki_https_glue= --rekey --reissue --revoke
      repository --action= --tag= --self_id= --repository_id= --bsc_id=
          --peer_contact_uri= --bpki_cms_cert= --bpki_cms_glue=
          --bpki_https_cert= --bpki_https_glue=
      self --action= --tag= --self_id= --crl_interval= --regen_margin=
          --bpki_cert= --bpki_glue= --rekey --reissue --revoke --run_now
          --publish_world_now
      child --action= --tag= --self_id= --child_id= --bsc_id= --bpki_cert=
          --bpki_glue= --reissue
      route_origin --action= --tag= --self_id= --route_origin_id=
          --as_number= --ipv4= --ipv6= --suppress_publication
      bsc --action= --tag= --self_id= --bsc_id= --key_type= --hash_alg=
          --key_length= --signing_cert= --signing_cert_crl=
          --generate_keypair

      # publication protocol:
      certificate --action= --tag= --client_id= --uri=
      roa --action= --tag= --client_id= --uri=
      manifest --action= --tag= --client_id= --uri=
      client --action= --tag= --client_id= --base_uri= --bpki_cert=
          --bpki_glue=
      config --action= --tag= --bpki_crl=
      crl --action= --tag= --client_id= --uri=

   Global options (--config, --help, --pem_out) come first, then zero or
   more commands (parent, repository, self, child, route_origin, bsc),
   each followed by its own set of options. The commands map to elements
   in the left-right protocol, and the command-specific options map to
   attributes or subelements for those commands.

   --action is one of create, set, get, list, or destroy; exactly one of
   these must be specified for each command.

   --type is query or reply; since irbe-cli is a client, query is the
   default.

   --tag is an optional arbitrary tag (think IMAP) to simplify matching up
   replies with batched queries.

   --*_id options refer to the primary keys of previously created objects.

   The remaining options are specific to the particular commands, and
   follow directly from the left-right protocol specification.

   A trailing "=" in the above option summary indicates that an option
   takes a value, eg, "--action create" or "--action=create". Options
   without a trailing "=" correspond to boolean control attributes.

   The default config file for irbe-cli is irbe.conf, start rpkid with "-c
   filename" (or "--config filename") to choose a different config file.
   All options are in the section "[irbe-cli]". Certificates, keys, and
   trust anchors may be in either DER or PEM format.

   Config file options:

     * cms-ta: Name of file containing CMS trust anchor to use when
       authenticating messages from rpkid.

     * cms-key: Name of file containing RSA key to use when signing CMS
       messages to rpkid.

     * cms-cert: Name(s) of file(s) containing certificate(s) to include
       in CMS wrapper when signing messages to rpkid. You can specify more
       than one certificate using OpenSSL-style subscripts: cms-cert.0,
       cms-cert.1, etc.

     * https-key: Name of file containing RSA key to use in the HTTPS
       client role when contacting rpkid.

     * https-cert: Name(s) of file(s) containing certificate(s) to use in
       the HTTPS client role when contacting rpkid. You can specify more
       than one certificate using OpenSSL-style subscripts: https-cert.0,
       https-cert.1, etc.

     * https-ta: Name of file containing trust anchor to use when
       verifying rpkid's HTTPS server certificate.

     * https-url: Service URL for rpkid. Must be a https:// URL.

irbe-setup.py config file

   The default config file is irbe.conf, start rpkid with "-c filename" to
   choose a different config file. Most options are in the section
   "[irbe-cli]", but a few are in the section "[irdbd]". Certificates,
   keys, and trust anchors may be in either DER or PEM format.

   Options in the "[irbe-cli]" section:

     * cms-ta: Name of file containing CMS trust anchor to use when
       authenticating messages from rpkid.

     * cms-key: Name of file containing RSA key to use when signing CMS
       messages to rpkid.

     * cms-cert: Name(s) of file(s) containing certificate(s) to include
       in CMS wrapper when signing messages to rpkid. You can specify more
       than one certificate using OpenSSL-style subscripts: cms-cert.0,
       cms-cert.1, etc.

     * https-key: Name of file containing RSA key to use in the HTTPS
       client role when contacting rpkid.

     * https-cert: Name(s) of file(s) containing certificate(s) to use in
       the HTTPS client role when contacting rpkid. You can specify more
       than one certificate using OpenSSL-style subscripts: https-cert.0,
       https-cert.1, etc.

     * https-ta: Name of file containing trust anchor to use when
       verifying rpkid's HTTPS server certificate.

     * https-url: Service URL for rpkid. Must be a https:// URL.

   Options in the "[irdbd]" section:

     * sql-username: Username to hand to MySQL when connecting to irdbd's
       database.

     * sql-database: MySQL's database name for irdbd's database.

     * sql-password: Password to hand to MySQL when connecting to irdbd's
       database.

cronjob.py

   This is a trivial program to trigger a cron run within rpkid. Once
   rpkid has been converted to the planned event-driven model, this
   function will be handled internally, but for now it has to be triggered
   by an external program. For pseudo-production use one would run this
   program under the system cron daemon. For scripted testing it happens
   to be useful to be able to control when cron cycles occur, so at the
   current stage of code development use of an external trigger is a
   useful feature.

   The default config file is cronjob.conf, start cronjob with "-c
   filename" to choose a different config file. All options are in the
   section "[cronjob]". Certificates, keys, and trust anchors may be in
   either DER or PEM format.

   Config file options:

     * https-key: Name of file containing RSA key to use in the HTTPS
       client role when contacting rpkid.

     * https-cert: Name(s) of file(s) containing certificate(s) to use in
       the HTTPS client role when contacting rpkid. You can specify more
       than one certificate using OpenSSL-style subscripts: https-cert.0,
       https-cert.1, etc.

     * https-ta: Name of file containing trust anchor to use when
       verifying rpkid's HTTPS server certificate.

     * https-url: Service URL for rpkid. Must be a https:// URL.

testbed.py:

   testbed is a test harness to set up and run a collection of rpkid and
   irdbd instances under scripted control. testbed is a very recent
   addition to the toolset and is still evolving rapidly.

   Unlike the programs described above, testbed takes two configuration
   files in different languages. The first configuration file uses the
   same syntax as the above configuration files but is completely
   optional. The second configuration file is the test script, which is
   encoded using the YAML serialization language (see http://www.yaml.org/
   for more information on YAML). The YAML script is not optional, as it
   describes the test layout. testbed is designed to support running a
   fairly wide set of test configurations as canned scripts without
   writing any new control code. The intent is to make it possible to
   write meaningful regression tests.

   All of the options in in the first (optional) configuration file are
   just overrides for wired-in default values. In most cases the defaults
   will suffice, and the set of options is still in flux, so only a few of
   the options are described here. The default name for this configuration
   file is testbed.conf, run testbed with "-c filename" to change it.

   testbed.conf options:

     * testbed_dir: Working directory into which testbed should write the
       (many) files it generates. Default is "testbed.dir".

     * irdb_db_pass: MySQL password for the "irdb" user. Default is
       "fnord". You may want to override this.

     * rpki_db_pass: MySQL password for the "rpki" user. Default is
       "fnord". You may want to override this.

     * rootd_sia: rsync URI naming a (perhaps fictious) directory to use
       as the id-ad-caRepository SIA value in the generated root resource
       certificate. Default is "rsync://wombat.invalid/". You may want to
       override this if you intend to run an rsync server and test against
       the generated results using rcynic. This default will likely change
       if and when testbed learns how to run rcynic itself as part of the
       test suite.

   The second configuration file is named testbed.yaml by default, run
   testbed with "-y filename" to change it. The YAML file contains
   multiple YAML "documents". The first document describes the initial
   test layout and resource allocations, subsequent documents describe
   modifications to the initial allocations and other parameters.
   Resources listed in the initial layout are aggregated automatically, so
   that a node in the resource hierarchy automatically receives the
   resources it needs to issue whatever its children are listed as
   holding. Actions in the subsequent documents are modifications to the
   current resource set, modifications to validity dates or other
   non-resource parameters, or special commands like "sleep". The details
   are still evolving, but here's an example of current usage:

     name:           RIR
     valid_for:      2d
     sia_base:       "rsync://wombat.invalid/"
     kids:
       - name: LIR0
      kids:
        - name: Alice
          ipv4: 192.0.2.1-192.0.2.33
          asn:  64533
     ---
     - name: Alice
       valid_add:   10
     ---
     - name: Alice
       add_as: 33
       valid_add:   2d
     ---
     - name: Alice
       valid_sub:   2d
     ---
     - name: Alice
       valid_for:   10d

   This specifies an initial layout consisting of an RPKI engine named
   "RIR", with one child "LIR0", which in turn has one child "Alice".
   Alice has a set of assigned resources, and all resources in the system
   are initially set to be valid for two days from the time at which the
   test is started. The first subsequent document adds ten seconds to the
   validity interval for Alice's resources and makes no other
   modifications. The second subsequent document grants Alice additional
   resources and adds another two days to the validity interval for
   Alice's resources. The next document subtracts two days from the
   validity interval for Alice's resources. The final document sets the
   validity interval for Alice's resources to ten days.

   Operators in subsequent (update) documents:

     * add_as, add_v4, add_v6: These add ASN, IPv4, or IPv6 resources,
       respectively.

     * sub_as, sub_v4, sub_v6: These subtract resources.

     * valid_until: Set an absolute expiration date.

     * valid_for: Set a relative expiration date.

     * valid_add, valid_sub: Add to or subtract from validity interval.

     * sleep [interval]: Sleep for specified interval, or until testbed
       receives a SIGALRM signal.

   Absolute timestamps should be in the form shown (UTC timestamp format
   as used in XML).

   Intervals (valid_add, valid_sub, valid_for, sleep) are either integers,
   in which case they're interpreted as seconds, or are a string of the
   form "wD xH yM zS" where w, x, y, and z are integers and D, H, M, and S
   indicate days, hours, minutes, and seconds. In the latter case all of
   the fields are optional, but at least one must be specified. For
   example, "3D4H" means "three days plus four hours".

testpoke.py

   This is a command-line client for the up-down protocol. Unlike all of
   the above programs, testpoke does not accept a config file in
   OpenSSL-compatable format at all. Instead, it is configured exclusively
   by a YAML script. testpoke's design was constrained by a desire to have
   it be compatable with APNIC's rpki_poke.pl tool, so that the two tools
   could use a common configuration language to simplify scripted testing.
   There are minor variations due to slightly different feature sets, but
   YAML files intended for one program will usually work with the other.

   README for APNIC's tool describing the input language can be found at
   http://mirin.apnic.net/svn/rpki_engine/branches/gary-poker/client/poke/
   README

   testpoke.py takes a simplified command line and uses only one YAML
   input file.

 Usage: python testpoke.py [ { -y | --yaml }    configfile ]
                           [ { -r | --request } requestname ]
                           [ { -h | --help } ]

   Default configuration file is testpoke.yaml, override with --yaml
   option.

   The --request option specifies the specific command within the YAML
   file to execute.

   Sample configuration file:

     ---
     # Sample YAML configuration file for testpoke.py

     version: 1
     posturl: https://localhost:4433/up-down/1
     recipient-id: wombat
     sender-id: "1"

     cms-cert-file: biz-certs/Frank-EE.cer
     cms-key-file: biz-certs/Frank-EE.key
     cms-ca-cert-file: biz-certs/Bob-Root.cer
     cms-cert-chain-file: [ biz-certs/Frank-CA.cer ]

     ssl-cert-file: biz-certs/Frank-EE.cer
     ssl-key-file: biz-certs/Frank-EE.key
     ssl-ca-cert-file: biz-certs/Bob-Root.cer

     requests:
       list:
      type: list
       issue:
      type: issue
      class: 1
      sia: [ "rsync://bandicoot.invalid/some/where/" ]
       revoke:
      type: revoke
      class: 1
      ski: "CB5K6APY-4KcGAW9jaK_cVPXKX0"

   testpoke adds one extension to the language described in APNIC's
   README: the cms-cert-chain-* and ssl-cert-chain-* options, which allow
   one to specify a chain of intermediate certificates to be presented in
   the CMS or TLS protocol. APNIC's initial implementation required direct
   knowledge of the issuing certificate (ie, it supported a maximum chain
   length of one); subsequent APNIC code changes have probably relaxed
   this restriction, and with luck APNIC has copied testpoke's syntax to
   express chains of intermediate certificates.
     __________________________________________________________________


    Generated on Thu Jun 12 18:21:05 2008 for RPKI Engine by  doxygen
    1.5.5