-
Notifications
You must be signed in to change notification settings - Fork 2
/
current-results.txt
11414 lines (11252 loc) · 571 KB
/
current-results.txt
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
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
manifest-number-reuse (fort v1.5.3)
writing RSA key
TAL path: /data/repo/7JGpcbAvlJxlGyAEWJqDFzBH0aGg.tal
TAL path written to /last-tal-path
Initial validator run:
Oct 22 13:04:48 INF: Disabling validation logging on syslog.
Oct 22 13:04:48 INF: Disabling validation logging on standard streams.
Oct 22 13:04:48 INF: Console log output configured; disabling operation logging on syslog.
Oct 22 13:04:48 INF: (Operation Logs will be sent to the standard streams only.)
Oct 22 13:04:48 WRN: The validation has begun.
Oct 22 13:04:48 WRN: The validation has successfully ended.
End validator run
writing RSA key
Issued ROA with ASN 1729602289
Validator run (reused manifest number 1):
Oct 22 13:04:50 INF: Disabling validation logging on syslog.
Oct 22 13:04:50 INF: Disabling validation logging on standard streams.
Oct 22 13:04:50 INF: Console log output configured; disabling operation logging on syslog.
Oct 22 13:04:50 INF: (Operation Logs will be sent to the standard streams only.)
Oct 22 13:04:50 WRN: The validation has begun.
Oct 22 13:04:50 WRN: The validation has successfully ended.
End validator run
Got expected number of ROAs (1)
Found ROA matching ASN (1729602289)
---
manifest-number-reuse (fort v1.5.4)
writing RSA key
TAL path: /data/repo/gyrMVqVmahdXR8aHTuWkSLAGj_qg.tal
TAL path written to /last-tal-path
Initial validator run:
Oct 22 13:04:51 INF: Disabling validation logging on syslog.
Oct 22 13:04:51 INF: Disabling validation logging on standard streams.
Oct 22 13:04:51 INF: Console log output configured; disabling operation logging on syslog.
Oct 22 13:04:51 INF: (Operation Logs will be sent to the standard streams only.)
Oct 22 13:04:51 WRN: The validation has begun.
Oct 22 13:04:51 WRN: The validation has successfully ended.
End validator run
writing RSA key
Issued ROA with ASN 1729602292
Validator run (reused manifest number 1):
Oct 22 13:04:53 INF: Disabling validation logging on syslog.
Oct 22 13:04:53 INF: Disabling validation logging on standard streams.
Oct 22 13:04:53 INF: Console log output configured; disabling operation logging on syslog.
Oct 22 13:04:53 INF: (Operation Logs will be sent to the standard streams only.)
Oct 22 13:04:53 WRN: The validation has begun.
Oct 22 13:04:53 WRN: The validation has successfully ended.
End validator run
Got expected number of ROAs (1)
Found ROA matching ASN (1729602292)
---
manifest-number-reuse (fort v1.6.1)
writing RSA key
TAL path: /data/repo/FTl_ou3LecLIaQyA3grS0LCm-lqg.tal
TAL path written to /last-tal-path
Initial validator run:
End validator run
writing RSA key
Issued ROA with ASN 1729602295
Validator run (reused manifest number 1):
End validator run
Got expected number of ROAs (1)
Found ROA matching ASN (1729602295)
---
manifest-number-reuse (fort v1.6.4)
writing RSA key
TAL path: /data/repo/nj8yT8eLrDTx75eacILHsGK-UDyg.tal
TAL path written to /last-tal-path
Initial validator run:
End validator run
writing RSA key
Issued ROA with ASN 1729602298
Validator run (reused manifest number 1):
End validator run
Got expected number of ROAs (1)
Found ROA matching ASN (1729602298)
---
manifest-number-reuse (octorpki v1.4.3)
writing RSA key
TAL path: /data/repo/ybZunH5xF_LP9bsMaJ4kHltuoEOg.tal
TAL path written to /last-tal-path
receiving incremental file list
ybZunH5xF_LP9bsMaJ4kHltuoEOg.cer
sent 43 bytes received 1,174 bytes 2,434.00 bytes/sec
total size is 1,058 speedup is 0.87
Initial validator run:
time="2024-10-22T13:05:00Z" level=info msg="Validator started"
time="2024-10-22T13:05:00Z" level=info msg="Still exploring. Revalidating now"
time="2024-10-22T13:05:00Z" level=info msg="RRDP sync https://localhost/kj64oijg/notification.xml"
time="2024-10-22T13:05:00Z" level=info msg="RRDP: Downloading root notification https://localhost/kj64oijg/notification.xml"
time="2024-10-22T13:05:00Z" level=info msg="RRDP: https://localhost/kj64oijg/notification.xml downloading snapshot at: https://localhost/kj64oijg/snapshot.xml"
time="2024-10-22T13:05:00Z" level=info msg="Stable, terminating"
End validator run
writing RSA key
Issued ROA with ASN 1729602301
Validator run (reused manifest number 1):
time="2024-10-22T13:05:02Z" level=info msg="Validator started"
time="2024-10-22T13:05:02Z" level=info msg="Still exploring. Revalidating now"
time="2024-10-22T13:05:02Z" level=info msg="RRDP sync https://localhost/kj64oijg/notification.xml"
time="2024-10-22T13:05:02Z" level=info msg="RRDP: Downloading root notification https://localhost/kj64oijg/notification.xml"
time="2024-10-22T13:05:02Z" level=info msg="RRDP: https://localhost/kj64oijg/notification.xml downloading snapshot at: https://localhost/kj64oijg/snapshot.xml"
time="2024-10-22T13:05:02Z" level=info msg="Stable, terminating"
End validator run
Got expected number of ROAs (1)
Found ROA matching ASN (1729602301)
---
manifest-number-reuse (octorpki v1.4.4)
writing RSA key
TAL path: /data/repo/rNNM32goWp_0anRqs9XwER6rXrGg.tal
TAL path written to /last-tal-path
receiving incremental file list
rNNM32goWp_0anRqs9XwER6rXrGg.cer
sent 43 bytes received 1,175 bytes 2,436.00 bytes/sec
total size is 1,058 speedup is 0.87
Initial validator run:
time="2024-10-22T13:05:03Z" level=info msg="Validator started"
time="2024-10-22T13:05:03Z" level=info msg="Still exploring. Revalidating now"
time="2024-10-22T13:05:03Z" level=info msg="RRDP sync https://localhost/w9j7v0pn/notification.xml"
time="2024-10-22T13:05:03Z" level=info msg="RRDP: Downloading root notification https://localhost/w9j7v0pn/notification.xml"
time="2024-10-22T13:05:03Z" level=info msg="RRDP: https://localhost/w9j7v0pn/notification.xml downloading snapshot at: https://localhost/w9j7v0pn/snapshot.xml"
time="2024-10-22T13:05:03Z" level=info msg="Stable, terminating"
End validator run
writing RSA key
Issued ROA with ASN 1729602304
Validator run (reused manifest number 1):
time="2024-10-22T13:05:05Z" level=info msg="Validator started"
time="2024-10-22T13:05:05Z" level=info msg="Still exploring. Revalidating now"
time="2024-10-22T13:05:05Z" level=info msg="RRDP sync https://localhost/w9j7v0pn/notification.xml"
time="2024-10-22T13:05:05Z" level=info msg="RRDP: Downloading root notification https://localhost/w9j7v0pn/notification.xml"
time="2024-10-22T13:05:05Z" level=info msg="RRDP: https://localhost/w9j7v0pn/notification.xml downloading snapshot at: https://localhost/w9j7v0pn/snapshot.xml"
time="2024-10-22T13:05:05Z" level=info msg="Stable, terminating"
End validator run
Got expected number of ROAs (1)
Found ROA matching ASN (1729602304)
---
manifest-number-reuse (octorpki v1.5.10)
writing RSA key
TAL path: /data/repo/Lgh07HWekjT5xCK85sPRdoAJU42g.tal
TAL path written to /last-tal-path
receiving incremental file list
Lgh07HWekjT5xCK85sPRdoAJU42g.cer
sent 43 bytes received 1,175 bytes 2,436.00 bytes/sec
total size is 1,058 speedup is 0.87
Initial validator run:
time="2024-10-22T13:05:05Z" level=info msg="Validator started"
time="2024-10-22T13:05:06Z" level=info msg="Still exploring. Revalidating now"
time="2024-10-22T13:05:06Z" level=info msg="RRDP sync https://localhost/7jdcr7xi/notification.xml"
time="2024-10-22T13:05:06Z" level=info msg="RRDP: Downloading root notification https://localhost/7jdcr7xi/notification.xml"
time="2024-10-22T13:05:06Z" level=info msg="RRDP: https://localhost/7jdcr7xi/notification.xml downloading snapshot at: https://localhost/7jdcr7xi/snapshot.xml"
time="2024-10-22T13:05:06Z" level=info msg="Stable, terminating"
End validator run
writing RSA key
Issued ROA with ASN 1729602307
Validator run (reused manifest number 1):
time="2024-10-22T13:05:08Z" level=info msg="Validator started"
time="2024-10-22T13:05:08Z" level=info msg="Still exploring. Revalidating now"
time="2024-10-22T13:05:08Z" level=info msg="RRDP sync https://localhost/7jdcr7xi/notification.xml"
time="2024-10-22T13:05:08Z" level=info msg="RRDP: Downloading root notification https://localhost/7jdcr7xi/notification.xml"
time="2024-10-22T13:05:08Z" level=info msg="RRDP: https://localhost/7jdcr7xi/notification.xml downloading snapshot at: https://localhost/7jdcr7xi/snapshot.xml"
time="2024-10-22T13:05:08Z" level=info msg="Stable, terminating"
End validator run
Got expected number of ROAs (1)
Found ROA matching ASN (1729602307)
---
manifest-number-reuse (ripe-validator v2.24)
writing RSA key
TAL path: /data/repo/NUVJFkb_vLkSGXT55unwouK0MV6g.tal
TAL path written to /last-tal-path
Initial validator run:
13:05:09.613 [main] DEBUG net.ripe.rpki.validator.fetchers.RsyncRpkiRepositoryObjectFetcher - rsync cache hit for URI rsync://localhost/repo/tyz98d62/NUVJFkb_vLkSGXT55unwouK0MV6g.mft
13:05:09.659 [main] DEBUG net.ripe.rpki.validator.fetchers.RsyncRpkiRepositoryObjectFetcher - rsync cache hit for URI rsync://localhost/repo/tyz98d62/NUVJFkb_vLkSGXT55unwouK0MV6g.crl
13:05:09.667 [main] DEBUG net.ripe.rpki.validator.fetchers.RsyncRpkiRepositoryObjectFetcher - rsync cache hit for URI rsync://localhost/repo/tyz98d62/NUVJFkb_vLkSGXT55unwouK0MV6g.mft
# Statistics Summary (see README for detail):
# date certs roas roa-asn roa-v4 roa-v4u roa-v6 roa-v6u cert-X roa-X
2024-10-22 0 0 0 0 0 0 0 0 0
End validator run
writing RSA key
Issued ROA with ASN 1729602310
Validator run (reused manifest number 1):
13:05:12.103 [main] DEBUG net.ripe.rpki.validator.fetchers.RsyncRpkiRepositoryObjectFetcher - rsync cache hit for URI rsync://localhost/repo/tyz98d62/NUVJFkb_vLkSGXT55unwouK0MV6g.mft
13:05:12.152 [main] DEBUG net.ripe.rpki.validator.fetchers.RsyncRpkiRepositoryObjectFetcher - rsync cache hit for URI rsync://localhost/repo/tyz98d62/NUVJFkb_vLkSGXT55unwouK0MV6g.crl
13:05:12.161 [main] DEBUG net.ripe.rpki.validator.fetchers.RsyncRpkiRepositoryObjectFetcher - rsync cache hit for URI rsync://localhost/repo/tyz98d62/NUVJFkb_vLkSGXT55unwouK0MV6g.mft
13:05:12.177 [main] DEBUG net.ripe.rpki.validator.fetchers.RsyncRpkiRepositoryObjectFetcher - rsync cache hit for URI rsync://localhost/repo/tyz98d62/3gbWI6fuKfeP-XE8ayYKZ0iqK3mg.roa
# Statistics Summary (see README for detail):
# date certs roas roa-asn roa-v4 roa-v4u roa-v6 roa-v6u cert-X roa-X
2024-10-22 0 1 1 1 1 0 0 0 0
End validator run
Got expected number of ROAs (1)
Found ROA matching ASN (1729602310)
---
manifest-number-reuse (ripe-validator-3 v3.2-2021.04.07.12.55)
writing RSA key
TAL path: /data/repo/m3SlfsNELBDS1PE99-fM97wAbZ-g.tal
TAL path written to /last-tal-path
Initial validator run:
2024-10-22 13:05:16,767 INFO pool-1-thread-1 n.r.r.v.d.v.CertificateTreeValidationService Starting tree validation for tal.tal
2024-10-22 13:05:16,815 INFO pool-1-thread-1 n.r.r.v.d.v.CertificateTreeValidationService Tree validation succeeded for tal.tal in 48ms
2024-10-22 13:05:17,423 INFO pool-1-thread-1 n.r.r.v.d.v.CertificateTreeValidationService Starting tree validation for tal.tal
2024-10-22 13:05:17,461 INFO pool-1-thread-1 n.r.r.v.d.v.CertificateTreeValidationService Tree validation succeeded for tal.tal in 38ms
End validator run
writing RSA key
Issued ROA with ASN 1729602324
Validator run (reused manifest number 1):
2024-10-22 13:05:28,893 INFO pool-1-thread-1 n.r.r.v.d.v.CertificateTreeValidationService Starting tree validation for tal.tal
2024-10-22 13:05:28,939 INFO pool-1-thread-1 n.r.r.v.d.v.CertificateTreeValidationService Tree validation succeeded for tal.tal in 46ms
2024-10-22 13:05:29,412 INFO pool-1-thread-1 n.r.r.v.d.v.CertificateTreeValidationService Starting tree validation for tal.tal
2024-10-22 13:05:29,441 INFO pool-1-thread-1 n.r.r.v.d.v.CertificateTreeValidationService Tree validation succeeded for tal.tal in 29ms
End validator run
Did not get expected number of ROAs (1): got 0 instead
Did not find ROA matching ASN (1729602324)
---
manifest-number-reuse (routinator v0.11.0)
writing RSA key
TAL path: /data/repo/XXdM6pruNFQbhjoRoW2fV9PdHGGg.tal
TAL path written to /last-tal-path
Initial validator run:
End validator run
writing RSA key
Issued ROA with ASN 1729602337
Validator run (reused manifest number 1):
End validator run
Got expected number of ROAs (1)
Found ROA matching ASN (1729602337)
---
manifest-number-reuse (routinator v0.12.0)
writing RSA key
TAL path: /data/repo/wMWTaAoQmLEvjSXaZ7pZYKYEBC2g.tal
TAL path written to /last-tal-path
Initial validator run:
End validator run
writing RSA key
Issued ROA with ASN 1729602340
Validator run (reused manifest number 1):
End validator run
Got expected number of ROAs (1)
Found ROA matching ASN (1729602340)
---
manifest-number-reuse (routinator v0.14.0)
writing RSA key
TAL path: /data/repo/2BmmSZvQzXj747mcIbHW4DgU6i-g.tal
TAL path written to /last-tal-path
Initial validator run:
[2024-10-22T13:05:41] [WARN] Using config file /var/lib/rpki-client/.routinator.conf.
End validator run
writing RSA key
Issued ROA with ASN 1729602343
Validator run (reused manifest number 1):
[2024-10-22T13:05:43] [WARN] Using config file /var/lib/rpki-client/.routinator.conf.
[2024-10-22T13:05:44] [WARN] rsync://localhost/repo/fvcvxgni/2BmmSZvQzXj747mcIbHW4DgU6i-g.mft: manifest number is not greater than in stored version. Using stored publication point.
End validator run
Did not get expected number of ROAs (1): got 0 instead
Did not find ROA matching ASN (1729602343)
---
manifest-number-reuse (routinator main)
writing RSA key
TAL path: /data/repo/x5j-DnVXgZ8lqCw8AzgVWoPnqKCg.tal
TAL path written to /last-tal-path
Initial validator run:
[2024-10-22T13:05:44] [WARN] Using config file /var/lib/rpki-client/.routinator.conf.
End validator run
writing RSA key
Issued ROA with ASN 1729602346
Validator run (reused manifest number 1):
[2024-10-22T13:05:46] [WARN] Using config file /var/lib/rpki-client/.routinator.conf.
[2024-10-22T13:05:46] [WARN] rsync://localhost/repo/fd6srhys/x5j-DnVXgZ8lqCw8AzgVWoPnqKCg.mft: manifest number is not greater than in stored version. Using stored publication point.
End validator run
Did not get expected number of ROAs (1): got 0 instead
Did not find ROA matching ASN (1729602346)
---
manifest-number-reuse (rpki-client v7.0)
writing RSA key
TAL path: /data/repo/3ZfQERtNk4-iB7UHT_EU0D1c_Aqg.tal
TAL path written to /last-tal-path
Initial validator run:
End validator run
writing RSA key
Issued ROA with ASN 1729602348
Validator run (reused manifest number 1):
End validator run
Got expected number of ROAs (1)
Found ROA matching ASN (1729602348)
---
manifest-number-reuse (rpki-client v8.7)
writing RSA key
TAL path: /data/repo/tuAfVZvFfaE0BVMBBEClmpUW8nCg.tal
TAL path written to /last-tal-path
Initial validator run:
End validator run
writing RSA key
Issued ROA with ASN 1729602352
Validator run (reused manifest number 1):
rpki-client: .rrdp/AB94DF8FA06F02D5F4A08F9EB5E502C5F4AE6E1E680AF3F037D27E158509E956/localhost/repo/4t5w2za9/tuAfVZvFfaE0BVMBBEClmpUW8nCg.mft: manifest misissuance, #01 was recycled
End validator run
Did not get expected number of ROAs (1): got 0 instead
Did not find ROA matching ASN (1729602352)
---
manifest-number-reuse (rpki-client v9.0)
writing RSA key
TAL path: /data/repo/6-r_bLiVWy58ym-tDdQngz672PGg.tal
TAL path written to /last-tal-path
Initial validator run:
End validator run
writing RSA key
Issued ROA with ASN 1729602355
Validator run (reused manifest number 1):
rpki-client: .rrdp/F224EC7903FCB64D1AF6EE90F1CD7CBDE8D37F325EFED1E64614FDC35D2438BF/localhost/repo/o16eur7u/6-r_bLiVWy58ym-tDdQngz672PGg.mft: manifest issued at 1729602356 and 1729602354 with same manifest number #01
End validator run
Did not get expected number of ROAs (1): got 0 instead
Did not find ROA matching ASN (1729602355)
---
manifest-number-reuse (rpki-client v9.3)
writing RSA key
TAL path: /data/repo/8DYIf7OneWLG0dON4MUyKJmItQ-g.tal
TAL path written to /last-tal-path
Initial validator run:
End validator run
writing RSA key
Issued ROA with ASN 1729602359
Validator run (reused manifest number 1):
rpki-client: .rrdp/B5E678B64D0C7BB45DCF7FFC7A44EF9E0051E81DC55E0A1255E168015B751D48/localhost/repo/46xn8h9u/8DYIf7OneWLG0dON4MUyKJmItQ-g.mft: manifest issued at 1729602360 and 1729602357 with same manifest number #01
End validator run
Did not get expected number of ROAs (1): got 0 instead
Did not find ROA matching ASN (1729602359)
---
manifest-number-reuse (rpki-client master)
writing RSA key
TAL path: /data/repo/kPRsJC1ivTrVwtNgFyeAbqDC6Img.tal
TAL path written to /last-tal-path
Initial validator run:
End validator run
writing RSA key
Issued ROA with ASN 1729602364
Validator run (reused manifest number 1):
rpki-client: .rrdp/25F6A27C60042F6951ACAD5DE1FD7AA6359161899223218D298045F024D84CCA/localhost/repo/xn8r4y2n/kPRsJC1ivTrVwtNgFyeAbqDC6Img.mft: manifest issued at 1729602365 and 1729602362 with same manifest number #01
End validator run
Did not get expected number of ROAs (1): got 0 instead
Did not find ROA matching ASN (1729602364)
---
manifest-number-reuse-new-fn (fort v1.5.3)
writing RSA key
TAL path: /data/repo/ZUENXZc6ebcii2nR0JsuyZYzbq-g.tal
TAL path written to /last-tal-path
Initial validator run:
Oct 22 13:06:07 INF: Disabling validation logging on syslog.
Oct 22 13:06:07 INF: Disabling validation logging on standard streams.
Oct 22 13:06:07 INF: Console log output configured; disabling operation logging on syslog.
Oct 22 13:06:07 INF: (Operation Logs will be sent to the standard streams only.)
Oct 22 13:06:07 WRN: The validation has begun.
Oct 22 13:06:07 WRN: The validation has successfully ended.
End validator run
Validator run (reused manifest number 1):
Oct 22 13:06:09 INF: Disabling validation logging on syslog.
Oct 22 13:06:09 INF: Disabling validation logging on standard streams.
Oct 22 13:06:09 INF: Console log output configured; disabling operation logging on syslog.
Oct 22 13:06:09 INF: (Operation Logs will be sent to the standard streams only.)
Oct 22 13:06:09 WRN: The validation has begun.
Oct 22 13:06:09 WRN: The validation has successfully ended.
End validator run
writing RSA key
Issued ROA with ASN 1729602370
Validator run (reused manifest number 1, new filename):
Oct 22 13:06:11 INF: Disabling validation logging on syslog.
Oct 22 13:06:11 INF: Disabling validation logging on standard streams.
Oct 22 13:06:11 INF: Console log output configured; disabling operation logging on syslog.
Oct 22 13:06:11 INF: (Operation Logs will be sent to the standard streams only.)
Oct 22 13:06:11 WRN: The validation has begun.
Oct 22 13:06:11 WRN: The validation has successfully ended.
End validator run
Got expected number of ROAs (1)
Found ROA matching ASN (1729602370)
---
manifest-number-reuse-new-fn (fort v1.5.4)
writing RSA key
TAL path: /data/repo/s0tV-mg7zfU3cD5SHu3ECjlT0Yug.tal
TAL path written to /last-tal-path
Initial validator run:
Oct 22 13:06:12 INF: Disabling validation logging on syslog.
Oct 22 13:06:12 INF: Disabling validation logging on standard streams.
Oct 22 13:06:12 INF: Console log output configured; disabling operation logging on syslog.
Oct 22 13:06:12 INF: (Operation Logs will be sent to the standard streams only.)
Oct 22 13:06:12 WRN: The validation has begun.
Oct 22 13:06:12 WRN: The validation has successfully ended.
End validator run
Validator run (reused manifest number 1):
Oct 22 13:06:13 INF: Disabling validation logging on syslog.
Oct 22 13:06:13 INF: Disabling validation logging on standard streams.
Oct 22 13:06:13 INF: Console log output configured; disabling operation logging on syslog.
Oct 22 13:06:13 INF: (Operation Logs will be sent to the standard streams only.)
Oct 22 13:06:13 WRN: The validation has begun.
Oct 22 13:06:13 WRN: The validation has successfully ended.
End validator run
writing RSA key
Issued ROA with ASN 1729602374
Validator run (reused manifest number 1, new filename):
Oct 22 13:06:15 INF: Disabling validation logging on syslog.
Oct 22 13:06:15 INF: Disabling validation logging on standard streams.
Oct 22 13:06:15 INF: Console log output configured; disabling operation logging on syslog.
Oct 22 13:06:15 INF: (Operation Logs will be sent to the standard streams only.)
Oct 22 13:06:15 WRN: The validation has begun.
Oct 22 13:06:15 WRN: The validation has successfully ended.
End validator run
Got expected number of ROAs (1)
Found ROA matching ASN (1729602374)
---
manifest-number-reuse-new-fn (fort v1.6.1)
writing RSA key
TAL path: /data/repo/hF4aafDwQp8DmfbqWOQ8C4ZBbqWg.tal
TAL path written to /last-tal-path
Initial validator run:
End validator run
Validator run (reused manifest number 1):
End validator run
writing RSA key
Issued ROA with ASN 1729602379
Validator run (reused manifest number 1, new filename):
End validator run
Got expected number of ROAs (1)
Found ROA matching ASN (1729602379)
---
manifest-number-reuse-new-fn (fort v1.6.4)
writing RSA key
TAL path: /data/repo/q1rVfjYc7PZ3V3dxzvp5OgbKEaGg.tal
TAL path written to /last-tal-path
Initial validator run:
End validator run
Validator run (reused manifest number 1):
End validator run
writing RSA key
Issued ROA with ASN 1729602384
Validator run (reused manifest number 1, new filename):
End validator run
Got expected number of ROAs (1)
Found ROA matching ASN (1729602384)
---
manifest-number-reuse-new-fn (octorpki v1.4.3)
writing RSA key
TAL path: /data/repo/TOzyVBWotAnPBcIElsC5sf4MIrqg.tal
TAL path written to /last-tal-path
receiving incremental file list
TOzyVBWotAnPBcIElsC5sf4MIrqg.cer
sent 43 bytes received 1,175 bytes 2,436.00 bytes/sec
total size is 1,058 speedup is 0.87
Initial validator run:
time="2024-10-22T13:06:26Z" level=info msg="Validator started"
time="2024-10-22T13:06:26Z" level=info msg="Still exploring. Revalidating now"
time="2024-10-22T13:06:26Z" level=info msg="RRDP sync https://localhost/6s7i2tn5/notification.xml"
time="2024-10-22T13:06:26Z" level=info msg="RRDP: Downloading root notification https://localhost/6s7i2tn5/notification.xml"
time="2024-10-22T13:06:26Z" level=info msg="RRDP: https://localhost/6s7i2tn5/notification.xml downloading snapshot at: https://localhost/6s7i2tn5/snapshot.xml"
time="2024-10-22T13:06:26Z" level=info msg="Stable, terminating"
End validator run
Validator run (reused manifest number 1):
time="2024-10-22T13:06:28Z" level=info msg="Validator started"
time="2024-10-22T13:06:28Z" level=info msg="Still exploring. Revalidating now"
time="2024-10-22T13:06:28Z" level=info msg="RRDP sync https://localhost/6s7i2tn5/notification.xml"
time="2024-10-22T13:06:28Z" level=info msg="RRDP: Downloading root notification https://localhost/6s7i2tn5/notification.xml"
time="2024-10-22T13:06:28Z" level=info msg="RRDP: https://localhost/6s7i2tn5/notification.xml downloading snapshot at: https://localhost/6s7i2tn5/snapshot.xml"
time="2024-10-22T13:06:28Z" level=info msg="Stable, terminating"
End validator run
writing RSA key
Issued ROA with ASN 1729602389
Validator run (reused manifest number 1, new filename):
time="2024-10-22T13:06:30Z" level=info msg="Validator started"
time="2024-10-22T13:06:30Z" level=info msg="Still exploring. Revalidating now"
time="2024-10-22T13:06:30Z" level=info msg="RRDP sync https://localhost/6s7i2tn5/notification.xml"
time="2024-10-22T13:06:30Z" level=info msg="RRDP: Downloading root notification https://localhost/6s7i2tn5/notification.xml"
time="2024-10-22T13:06:30Z" level=info msg="RRDP: https://localhost/6s7i2tn5/notification.xml has 1 deltas to parse (cur: 3, last: 2)"
time="2024-10-22T13:06:30Z" level=info msg="RRDP: finished processing notifications (1). Last serial 3"
time="2024-10-22T13:06:30Z" level=info msg="Stable, terminating"
End validator run
Did not get expected number of ROAs (1): got 0 instead
Did not find ROA matching ASN (1729602389)
---
manifest-number-reuse-new-fn (octorpki v1.4.4)
writing RSA key
TAL path: /data/repo/9bzRUGDxcnXH6vcDI3Ooo3rBCCeg.tal
TAL path written to /last-tal-path
receiving incremental file list
9bzRUGDxcnXH6vcDI3Ooo3rBCCeg.cer
sent 43 bytes received 1,175 bytes 2,436.00 bytes/sec
total size is 1,058 speedup is 0.87
Initial validator run:
time="2024-10-22T13:06:31Z" level=info msg="Validator started"
time="2024-10-22T13:06:31Z" level=info msg="Still exploring. Revalidating now"
time="2024-10-22T13:06:31Z" level=info msg="RRDP sync https://localhost/49upsabz/notification.xml"
time="2024-10-22T13:06:31Z" level=info msg="RRDP: Downloading root notification https://localhost/49upsabz/notification.xml"
time="2024-10-22T13:06:31Z" level=info msg="RRDP: https://localhost/49upsabz/notification.xml downloading snapshot at: https://localhost/49upsabz/snapshot.xml"
time="2024-10-22T13:06:31Z" level=info msg="Stable, terminating"
End validator run
Validator run (reused manifest number 1):
time="2024-10-22T13:06:32Z" level=info msg="Validator started"
time="2024-10-22T13:06:32Z" level=info msg="Still exploring. Revalidating now"
time="2024-10-22T13:06:32Z" level=info msg="RRDP sync https://localhost/49upsabz/notification.xml"
time="2024-10-22T13:06:32Z" level=info msg="RRDP: Downloading root notification https://localhost/49upsabz/notification.xml"
time="2024-10-22T13:06:32Z" level=info msg="RRDP: https://localhost/49upsabz/notification.xml downloading snapshot at: https://localhost/49upsabz/snapshot.xml"
time="2024-10-22T13:06:32Z" level=info msg="Stable, terminating"
End validator run
writing RSA key
Issued ROA with ASN 1729602393
Validator run (reused manifest number 1, new filename):
time="2024-10-22T13:06:34Z" level=info msg="Validator started"
time="2024-10-22T13:06:34Z" level=info msg="Still exploring. Revalidating now"
time="2024-10-22T13:06:34Z" level=info msg="RRDP sync https://localhost/49upsabz/notification.xml"
time="2024-10-22T13:06:34Z" level=info msg="RRDP: Downloading root notification https://localhost/49upsabz/notification.xml"
time="2024-10-22T13:06:34Z" level=info msg="RRDP: https://localhost/49upsabz/notification.xml has 1 deltas to parse (cur: 3, last: 2)"
time="2024-10-22T13:06:34Z" level=info msg="RRDP: finished processing notifications (1). Last serial 3"
time="2024-10-22T13:06:34Z" level=error msg="file error for certificate: librpki.BER2DER failed: ber2der: input ber is empty"
time="2024-10-22T13:06:34Z" level=info msg="Stable, terminating"
End validator run
Did not get expected number of ROAs (1): got 0 instead
Did not find ROA matching ASN (1729602393)
---
manifest-number-reuse-new-fn (octorpki v1.5.10)
writing RSA key
TAL path: /data/repo/hXBDRemI28I8_NpZC6tR4TzlCmeg.tal
TAL path written to /last-tal-path
receiving incremental file list
hXBDRemI28I8_NpZC6tR4TzlCmeg.cer
sent 43 bytes received 1,174 bytes 2,434.00 bytes/sec
total size is 1,058 speedup is 0.87
Initial validator run:
time="2024-10-22T13:06:35Z" level=info msg="Validator started"
time="2024-10-22T13:06:35Z" level=info msg="Still exploring. Revalidating now"
time="2024-10-22T13:06:35Z" level=info msg="RRDP sync https://localhost/iiu7evf8/notification.xml"
time="2024-10-22T13:06:35Z" level=info msg="RRDP: Downloading root notification https://localhost/iiu7evf8/notification.xml"
time="2024-10-22T13:06:35Z" level=info msg="RRDP: https://localhost/iiu7evf8/notification.xml downloading snapshot at: https://localhost/iiu7evf8/snapshot.xml"
time="2024-10-22T13:06:35Z" level=info msg="Stable, terminating"
End validator run
Validator run (reused manifest number 1):
time="2024-10-22T13:06:37Z" level=info msg="Validator started"
time="2024-10-22T13:06:37Z" level=info msg="Still exploring. Revalidating now"
time="2024-10-22T13:06:37Z" level=info msg="RRDP sync https://localhost/iiu7evf8/notification.xml"
time="2024-10-22T13:06:37Z" level=info msg="RRDP: Downloading root notification https://localhost/iiu7evf8/notification.xml"
time="2024-10-22T13:06:37Z" level=info msg="RRDP: https://localhost/iiu7evf8/notification.xml downloading snapshot at: https://localhost/iiu7evf8/snapshot.xml"
time="2024-10-22T13:06:37Z" level=info msg="Stable, terminating"
End validator run
writing RSA key
Issued ROA with ASN 1729602398
Validator run (reused manifest number 1, new filename):
time="2024-10-22T13:06:39Z" level=info msg="Validator started"
time="2024-10-22T13:06:39Z" level=info msg="Still exploring. Revalidating now"
time="2024-10-22T13:06:39Z" level=info msg="RRDP sync https://localhost/iiu7evf8/notification.xml"
time="2024-10-22T13:06:39Z" level=info msg="RRDP: Downloading root notification https://localhost/iiu7evf8/notification.xml"
time="2024-10-22T13:06:39Z" level=info msg="RRDP: https://localhost/iiu7evf8/notification.xml has 1 deltas to parse (cur: 3, last: 2)"
time="2024-10-22T13:06:39Z" level=info msg="RRDP: finished processing notifications (1). Last serial 3"
time="2024-10-22T13:06:39Z" level=error msg="file error for certificate: librpki.BER2DER failed: ber2der: input ber is empty"
time="2024-10-22T13:06:39Z" level=info msg="Stable, terminating"
End validator run
Did not get expected number of ROAs (1): got 0 instead
Did not find ROA matching ASN (1729602398)
---
manifest-number-reuse-new-fn (ripe-validator v2.24)
writing RSA key
TAL path: /data/repo/b6kOHFhn1_L2DVqntle4NeIY1zyg.tal
TAL path written to /last-tal-path
Initial validator run:
13:06:40.735 [main] DEBUG net.ripe.rpki.validator.fetchers.RsyncRpkiRepositoryObjectFetcher - rsync cache hit for URI rsync://localhost/repo/gp27kwzz/b6kOHFhn1_L2DVqntle4NeIY1zyg.mft
13:06:40.779 [main] DEBUG net.ripe.rpki.validator.fetchers.RsyncRpkiRepositoryObjectFetcher - rsync cache hit for URI rsync://localhost/repo/gp27kwzz/b6kOHFhn1_L2DVqntle4NeIY1zyg.crl
13:06:40.787 [main] DEBUG net.ripe.rpki.validator.fetchers.RsyncRpkiRepositoryObjectFetcher - rsync cache hit for URI rsync://localhost/repo/gp27kwzz/b6kOHFhn1_L2DVqntle4NeIY1zyg.mft
# Statistics Summary (see README for detail):
# date certs roas roa-asn roa-v4 roa-v4u roa-v6 roa-v6u cert-X roa-X
2024-10-22 0 0 0 0 0 0 0 0 0
End validator run
Validator run (reused manifest number 1):
13:06:42.723 [main] DEBUG net.ripe.rpki.validator.fetchers.RsyncRpkiRepositoryObjectFetcher - rsync cache hit for URI rsync://localhost/repo/gp27kwzz/b6kOHFhn1_L2DVqntle4NeIY1zyg.mft
13:06:42.767 [main] DEBUG net.ripe.rpki.validator.fetchers.RsyncRpkiRepositoryObjectFetcher - rsync cache hit for URI rsync://localhost/repo/gp27kwzz/b6kOHFhn1_L2DVqntle4NeIY1zyg.crl
13:06:42.775 [main] DEBUG net.ripe.rpki.validator.fetchers.RsyncRpkiRepositoryObjectFetcher - rsync cache hit for URI rsync://localhost/repo/gp27kwzz/b6kOHFhn1_L2DVqntle4NeIY1zyg.mft
# Statistics Summary (see README for detail):
# date certs roas roa-asn roa-v4 roa-v4u roa-v6 roa-v6u cert-X roa-X
2024-10-22 0 0 0 0 0 0 0 0 0
End validator run
writing RSA key
Issued ROA with ASN 1729602403
Validator run (reused manifest number 1, new filename):
13:06:45.032 [main] DEBUG net.ripe.rpki.validator.fetchers.RsyncRpkiRepositoryObjectFetcher - rsync cache hit for URI rsync://localhost/repo/gp27kwzz/new.mft
13:06:45.074 [main] DEBUG net.ripe.rpki.validator.fetchers.RsyncRpkiRepositoryObjectFetcher - rsync cache hit for URI rsync://localhost/repo/gp27kwzz/b6kOHFhn1_L2DVqntle4NeIY1zyg.crl
13:06:45.083 [main] DEBUG net.ripe.rpki.validator.fetchers.RsyncRpkiRepositoryObjectFetcher - rsync cache hit for URI rsync://localhost/repo/gp27kwzz/new.mft
13:06:45.099 [main] DEBUG net.ripe.rpki.validator.fetchers.RsyncRpkiRepositoryObjectFetcher - rsync cache hit for URI rsync://localhost/repo/gp27kwzz/3PEllRAw9UzUSLA2btcaKD-km2ag.roa
# Statistics Summary (see README for detail):
# date certs roas roa-asn roa-v4 roa-v4u roa-v6 roa-v6u cert-X roa-X
2024-10-22 0 1 1 1 1 0 0 0 0
End validator run
Got expected number of ROAs (1)
Found ROA matching ASN (1729602403)
---
manifest-number-reuse-new-fn (ripe-validator-3 v3.2-2021.04.07.12.55)
writing RSA key
TAL path: /data/repo/gNwsDi0Kd79a3StbBMEzQf9ZJZWg.tal
TAL path written to /last-tal-path
Initial validator run:
2024-10-22 13:06:49,454 INFO pool-1-thread-1 n.r.r.v.d.v.CertificateTreeValidationService Starting tree validation for tal.tal
2024-10-22 13:06:49,503 INFO pool-1-thread-1 n.r.r.v.d.v.CertificateTreeValidationService Tree validation succeeded for tal.tal in 49ms
2024-10-22 13:06:50,118 INFO pool-1-thread-1 n.r.r.v.d.v.CertificateTreeValidationService Starting tree validation for tal.tal
2024-10-22 13:06:50,152 INFO pool-1-thread-1 n.r.r.v.d.v.CertificateTreeValidationService Tree validation succeeded for tal.tal in 34ms
End validator run
Validator run (reused manifest number 1):
2024-10-22 13:07:00,892 INFO pool-1-thread-1 n.r.r.v.d.v.CertificateTreeValidationService Starting tree validation for tal.tal
2024-10-22 13:07:00,934 INFO pool-1-thread-1 n.r.r.v.d.v.CertificateTreeValidationService Tree validation succeeded for tal.tal in 41ms
2024-10-22 13:07:01,425 INFO pool-1-thread-1 n.r.r.v.d.v.CertificateTreeValidationService Starting tree validation for tal.tal
2024-10-22 13:07:01,452 INFO pool-1-thread-1 n.r.r.v.d.v.CertificateTreeValidationService Tree validation succeeded for tal.tal in 27ms
End validator run
writing RSA key
Issued ROA with ASN 1729602428
Validator run (reused manifest number 1, new filename):
2024-10-22 13:07:13,140 INFO pool-1-thread-1 n.r.r.v.d.v.CertificateTreeValidationService Starting tree validation for tal.tal
2024-10-22 13:07:13,183 INFO pool-1-thread-1 n.r.r.v.d.v.CertificateTreeValidationService Tree validation succeeded for tal.tal in 43ms
2024-10-22 13:07:13,381 INFO pool-1-thread-1 n.r.r.v.d.v.CertificateTreeValidationService Starting tree validation for tal.tal
2024-10-22 13:07:13,394 INFO pool-1-thread-1 n.r.r.v.d.v.CertificateTreeValidationService Tree validation succeeded for tal.tal in 11ms
2024-10-22 13:07:15,015 INFO pool-1-thread-2 n.r.r.v.d.v.CertificateTreeValidationService Starting tree validation for tal.tal
2024-10-22 13:07:15,051 INFO pool-1-thread-2 n.r.r.v.d.v.CertificateTreeValidationService Tree validation succeeded for tal.tal in 36ms
End validator run
Got expected number of ROAs (1)
Found ROA matching ASN (1729602428)
---
manifest-number-reuse-new-fn (routinator v0.11.0)
writing RSA key
TAL path: /data/repo/z7mSrEzI2LTApK9-Jnr-iUsBQ3Sg.tal
TAL path written to /last-tal-path
Initial validator run:
End validator run
Validator run (reused manifest number 1):
End validator run
writing RSA key
Issued ROA with ASN 1729602443
Validator run (reused manifest number 1, new filename):
End validator run
Got expected number of ROAs (1)
Found ROA matching ASN (1729602443)
---
manifest-number-reuse-new-fn (routinator v0.12.0)
writing RSA key
TAL path: /data/repo/FqhsmUh2I9sYoNWbbzA8kWeci6ug.tal
TAL path written to /last-tal-path
Initial validator run:
End validator run
Validator run (reused manifest number 1):
End validator run
writing RSA key
Issued ROA with ASN 1729602447
Validator run (reused manifest number 1, new filename):
End validator run
Got expected number of ROAs (1)
Found ROA matching ASN (1729602447)
---
manifest-number-reuse-new-fn (routinator v0.14.0)
writing RSA key
TAL path: /data/repo/AZCmXuf2hbj31e42G-r8x4cgo6-g.tal
TAL path written to /last-tal-path
Initial validator run:
[2024-10-22T13:07:29] [WARN] Using config file /var/lib/rpki-client/.routinator.conf.
End validator run
Validator run (reused manifest number 1):
[2024-10-22T13:07:31] [WARN] Using config file /var/lib/rpki-client/.routinator.conf.
[2024-10-22T13:07:31] [WARN] rsync://localhost/repo/q893ttdx/AZCmXuf2hbj31e42G-r8x4cgo6-g.mft: manifest number is not greater than in stored version. Using stored publication point.
End validator run
writing RSA key
Issued ROA with ASN 1729602452
Validator run (reused manifest number 1, new filename):
[2024-10-22T13:07:33] [WARN] Using config file /var/lib/rpki-client/.routinator.conf.
End validator run
Got expected number of ROAs (1)
Found ROA matching ASN (1729602452)
---
manifest-number-reuse-new-fn (routinator main)
writing RSA key
TAL path: /data/repo/fcq9KQaRLaQu5E_M2iFPrJ_QCpCg.tal
TAL path written to /last-tal-path
Initial validator run:
[2024-10-22T13:07:34] [WARN] Using config file /var/lib/rpki-client/.routinator.conf.
End validator run
Validator run (reused manifest number 1):
[2024-10-22T13:07:35] [WARN] Using config file /var/lib/rpki-client/.routinator.conf.
[2024-10-22T13:07:36] [WARN] rsync://localhost/repo/z5wp3rq1/fcq9KQaRLaQu5E_M2iFPrJ_QCpCg.mft: manifest number is not greater than in stored version. Using stored publication point.
End validator run
writing RSA key
Issued ROA with ASN 1729602457
Validator run (reused manifest number 1, new filename):
[2024-10-22T13:07:38] [WARN] Using config file /var/lib/rpki-client/.routinator.conf.
End validator run
Got expected number of ROAs (1)
Found ROA matching ASN (1729602457)
---
manifest-number-reuse-new-fn (rpki-client v7.0)
writing RSA key
TAL path: /data/repo/nm5F1261UPy4fn8SWwCoeBE7J8ug.tal
TAL path written to /last-tal-path
Initial validator run:
End validator run
Validator run (reused manifest number 1):
End validator run
writing RSA key
Issued ROA with ASN 1729602462
Validator run (reused manifest number 1, new filename):
End validator run
Got expected number of ROAs (1)
Found ROA matching ASN (1729602462)
---
manifest-number-reuse-new-fn (rpki-client v8.7)
writing RSA key
TAL path: /data/repo/kiceg2hg69_vCWO9lT7t_hVTP4Sg.tal
TAL path written to /last-tal-path
Initial validator run:
End validator run
Validator run (reused manifest number 1):
rpki-client: .rrdp/A4744B46924A759B2E9AE505A2BC8EE9E1702135CD548B9646B66715852148BF/localhost/repo/c06egri4/kiceg2hg69_vCWO9lT7t_hVTP4Sg.mft: manifest misissuance, #01 was recycled
End validator run
writing RSA key
Issued ROA with ASN 1729602467
Validator run (reused manifest number 1, new filename):
End validator run
Got expected number of ROAs (1)
Found ROA matching ASN (1729602467)
---
manifest-number-reuse-new-fn (rpki-client v9.0)
writing RSA key
TAL path: /data/repo/Qa-8W0GNlCmJZrZ5m7bfm3ev_YGg.tal
TAL path written to /last-tal-path
Initial validator run:
End validator run
Validator run (reused manifest number 1):
rpki-client: .rrdp/A50F8C25569824EF609310ABDA1721A7E25D0FCBD1433EADD86C51E12145154B/localhost/repo/dwtgnygd/Qa-8W0GNlCmJZrZ5m7bfm3ev_YGg.mft: manifest issued at 1729602470 and 1729602468 with same manifest number #01
End validator run
writing RSA key
Issued ROA with ASN 1729602471
Validator run (reused manifest number 1, new filename):
End validator run
Got expected number of ROAs (1)
Found ROA matching ASN (1729602471)
---
manifest-number-reuse-new-fn (rpki-client v9.3)
writing RSA key
TAL path: /data/repo/v-OVaE8TckltPk4lk4auzJK5zgOg.tal
TAL path written to /last-tal-path
Initial validator run:
End validator run
Validator run (reused manifest number 1):
rpki-client: .rrdp/A4851CEB2939F6C9E0A9582644A602CE2AFD2A4251402F42848CDE077BD048E9/localhost/repo/8nouip56/v-OVaE8TckltPk4lk4auzJK5zgOg.mft: manifest issued at 1729602476 and 1729602473 with same manifest number #01
End validator run
writing RSA key
Issued ROA with ASN 1729602478
Validator run (reused manifest number 1, new filename):
End validator run
Got expected number of ROAs (1)
Found ROA matching ASN (1729602478)
---
manifest-number-reuse-new-fn (rpki-client master)
writing RSA key
TAL path: /data/repo/opiKQEWLKuofF96NTthX7FFUOa2g.tal
TAL path written to /last-tal-path
Initial validator run:
End validator run
Validator run (reused manifest number 1):
rpki-client: .rrdp/00C6CA1EA1C3172CED7FF0C02AD15DF5AFB7942932D90A773ACD83B94E082271/localhost/repo/8p77srhk/opiKQEWLKuofF96NTthX7FFUOa2g.mft: manifest issued at 1729602484 and 1729602481 with same manifest number #01
End validator run
writing RSA key
Issued ROA with ASN 1729602486
Validator run (reused manifest number 1, new filename):
End validator run
Got expected number of ROAs (1)
Found ROA matching ASN (1729602486)
---
manifest-number-regression (fort v1.5.3)
writing RSA key
TAL path: /data/repo/0yjoktwdnMHHGZMS2yU1bMvPV5eg.tal
TAL path written to /last-tal-path
Initial validator run:
Oct 22 13:08:09 INF: Disabling validation logging on syslog.
Oct 22 13:08:09 INF: Disabling validation logging on standard streams.
Oct 22 13:08:09 INF: Console log output configured; disabling operation logging on syslog.
Oct 22 13:08:09 INF: (Operation Logs will be sent to the standard streams only.)
Oct 22 13:08:09 WRN: The validation has begun.
Oct 22 13:08:09 WRN: The validation has successfully ended.
End validator run
Validator run (manifest number 3):
Oct 22 13:08:11 INF: Disabling validation logging on syslog.
Oct 22 13:08:11 INF: Disabling validation logging on standard streams.
Oct 22 13:08:11 INF: Console log output configured; disabling operation logging on syslog.
Oct 22 13:08:11 INF: (Operation Logs will be sent to the standard streams only.)
Oct 22 13:08:11 WRN: The validation has begun.
Oct 22 13:08:11 WRN: The validation has successfully ended.
End validator run
writing RSA key
Issued ROA with ASN 1729602492
Validator run (manifest number 2):
Oct 22 13:08:13 INF: Disabling validation logging on syslog.
Oct 22 13:08:13 INF: Disabling validation logging on standard streams.
Oct 22 13:08:13 INF: Console log output configured; disabling operation logging on syslog.
Oct 22 13:08:13 INF: (Operation Logs will be sent to the standard streams only.)
Oct 22 13:08:13 WRN: The validation has begun.
Oct 22 13:08:13 WRN: The validation has successfully ended.
End validator run
Got expected number of ROAs (1)
Found ROA matching ASN (1729602492)
---
manifest-number-regression (fort v1.5.4)
writing RSA key
TAL path: /data/repo/_76-sLim5aeL4EUSg__Gz2zyUWqg.tal
TAL path written to /last-tal-path
Initial validator run:
Oct 22 13:08:14 INF: Disabling validation logging on syslog.
Oct 22 13:08:14 INF: Disabling validation logging on standard streams.
Oct 22 13:08:14 INF: Console log output configured; disabling operation logging on syslog.
Oct 22 13:08:14 INF: (Operation Logs will be sent to the standard streams only.)
Oct 22 13:08:14 WRN: The validation has begun.
Oct 22 13:08:14 WRN: The validation has successfully ended.
End validator run
Validator run (manifest number 3):
Oct 22 13:08:15 INF: Disabling validation logging on syslog.
Oct 22 13:08:15 INF: Disabling validation logging on standard streams.
Oct 22 13:08:15 INF: Console log output configured; disabling operation logging on syslog.
Oct 22 13:08:15 INF: (Operation Logs will be sent to the standard streams only.)
Oct 22 13:08:15 WRN: The validation has begun.
Oct 22 13:08:16 WRN: The validation has successfully ended.
End validator run
writing RSA key
Issued ROA with ASN 1729602497
Validator run (manifest number 2):
Oct 22 13:08:18 INF: Disabling validation logging on syslog.
Oct 22 13:08:18 INF: Disabling validation logging on standard streams.
Oct 22 13:08:18 INF: Console log output configured; disabling operation logging on syslog.
Oct 22 13:08:18 INF: (Operation Logs will be sent to the standard streams only.)
Oct 22 13:08:18 WRN: The validation has begun.
Oct 22 13:08:18 WRN: The validation has successfully ended.
End validator run
Got expected number of ROAs (1)
Found ROA matching ASN (1729602497)
---
manifest-number-regression (fort v1.6.1)
writing RSA key
TAL path: /data/repo/gJ3hO3F5QAAvgUhcKujkdkrr4Pyg.tal
TAL path written to /last-tal-path
Initial validator run:
End validator run
Validator run (manifest number 3):
End validator run
writing RSA key
Issued ROA with ASN 1729602501
Validator run (manifest number 2):
End validator run
Got expected number of ROAs (1)
Found ROA matching ASN (1729602501)
---
manifest-number-regression (fort v1.6.4)
writing RSA key
TAL path: /data/repo/uMWoynvKMEGtwo23da4Xi-1ywteg.tal
TAL path written to /last-tal-path
Initial validator run:
End validator run
Validator run (manifest number 3):
End validator run
writing RSA key
Issued ROA with ASN 1729602506
Validator run (manifest number 2):
End validator run
Got expected number of ROAs (1)
Found ROA matching ASN (1729602506)
---
manifest-number-regression (octorpki v1.4.3)
writing RSA key
TAL path: /data/repo/5qcyg1N_Q8yeh9k0HzahG5BCMCmg.tal
TAL path written to /last-tal-path
receiving incremental file list
5qcyg1N_Q8yeh9k0HzahG5BCMCmg.cer
sent 43 bytes received 1,174 bytes 2,434.00 bytes/sec
total size is 1,058 speedup is 0.87
Initial validator run:
time="2024-10-22T13:08:28Z" level=info msg="Validator started"
time="2024-10-22T13:08:28Z" level=info msg="Still exploring. Revalidating now"
time="2024-10-22T13:08:28Z" level=info msg="RRDP sync https://localhost/bfs307n0/notification.xml"
time="2024-10-22T13:08:28Z" level=info msg="RRDP: Downloading root notification https://localhost/bfs307n0/notification.xml"
time="2024-10-22T13:08:28Z" level=info msg="RRDP: https://localhost/bfs307n0/notification.xml downloading snapshot at: https://localhost/bfs307n0/snapshot.xml"
time="2024-10-22T13:08:28Z" level=info msg="Stable, terminating"
End validator run
Validator run (manifest number 3):
time="2024-10-22T13:08:30Z" level=info msg="Validator started"
time="2024-10-22T13:08:30Z" level=info msg="Still exploring. Revalidating now"
time="2024-10-22T13:08:30Z" level=info msg="RRDP sync https://localhost/bfs307n0/notification.xml"
time="2024-10-22T13:08:30Z" level=info msg="RRDP: Downloading root notification https://localhost/bfs307n0/notification.xml"
time="2024-10-22T13:08:30Z" level=info msg="RRDP: https://localhost/bfs307n0/notification.xml downloading snapshot at: https://localhost/bfs307n0/snapshot.xml"
time="2024-10-22T13:08:30Z" level=info msg="Stable, terminating"
End validator run
writing RSA key
Issued ROA with ASN 1729602511
Validator run (manifest number 2):
time="2024-10-22T13:08:32Z" level=info msg="Validator started"
time="2024-10-22T13:08:32Z" level=info msg="Still exploring. Revalidating now"
time="2024-10-22T13:08:32Z" level=info msg="RRDP sync https://localhost/bfs307n0/notification.xml"
time="2024-10-22T13:08:32Z" level=info msg="RRDP: Downloading root notification https://localhost/bfs307n0/notification.xml"
time="2024-10-22T13:08:32Z" level=info msg="RRDP: https://localhost/bfs307n0/notification.xml has 1 deltas to parse (cur: 3, last: 2)"
time="2024-10-22T13:08:32Z" level=info msg="RRDP: finished processing notifications (1). Last serial 3"
time="2024-10-22T13:08:32Z" level=info msg="Stable, terminating"
End validator run
Got expected number of ROAs (1)
Found ROA matching ASN (1729602511)
---
manifest-number-regression (octorpki v1.4.4)
writing RSA key
TAL path: /data/repo/BaMm8JOmxf5Jmko15fO0ecoss52g.tal
TAL path written to /last-tal-path
receiving incremental file list
BaMm8JOmxf5Jmko15fO0ecoss52g.cer
sent 43 bytes received 1,175 bytes 2,436.00 bytes/sec
total size is 1,058 speedup is 0.87
Initial validator run:
time="2024-10-22T13:08:33Z" level=info msg="Validator started"
time="2024-10-22T13:08:33Z" level=info msg="Still exploring. Revalidating now"
time="2024-10-22T13:08:33Z" level=info msg="RRDP sync https://localhost/lienxq57/notification.xml"
time="2024-10-22T13:08:33Z" level=info msg="RRDP: Downloading root notification https://localhost/lienxq57/notification.xml"
time="2024-10-22T13:08:33Z" level=info msg="RRDP: https://localhost/lienxq57/notification.xml downloading snapshot at: https://localhost/lienxq57/snapshot.xml"
time="2024-10-22T13:08:33Z" level=info msg="Stable, terminating"
End validator run
Validator run (manifest number 3):
time="2024-10-22T13:08:34Z" level=info msg="Validator started"
time="2024-10-22T13:08:34Z" level=info msg="Still exploring. Revalidating now"
time="2024-10-22T13:08:34Z" level=info msg="RRDP sync https://localhost/lienxq57/notification.xml"
time="2024-10-22T13:08:34Z" level=info msg="RRDP: Downloading root notification https://localhost/lienxq57/notification.xml"
time="2024-10-22T13:08:34Z" level=info msg="RRDP: https://localhost/lienxq57/notification.xml downloading snapshot at: https://localhost/lienxq57/snapshot.xml"
time="2024-10-22T13:08:34Z" level=info msg="Stable, terminating"
End validator run
writing RSA key
Issued ROA with ASN 1729602515
Validator run (manifest number 2):
time="2024-10-22T13:08:36Z" level=info msg="Validator started"
time="2024-10-22T13:08:36Z" level=info msg="Still exploring. Revalidating now"
time="2024-10-22T13:08:36Z" level=info msg="RRDP sync https://localhost/lienxq57/notification.xml"
time="2024-10-22T13:08:36Z" level=info msg="RRDP: Downloading root notification https://localhost/lienxq57/notification.xml"
time="2024-10-22T13:08:36Z" level=info msg="RRDP: https://localhost/lienxq57/notification.xml has 1 deltas to parse (cur: 3, last: 2)"
time="2024-10-22T13:08:36Z" level=info msg="RRDP: finished processing notifications (1). Last serial 3"
time="2024-10-22T13:08:36Z" level=info msg="Stable, terminating"
End validator run
Got expected number of ROAs (1)
Found ROA matching ASN (1729602515)
---
manifest-number-regression (octorpki v1.5.10)
writing RSA key
TAL path: /data/repo/yr8oecbZoLcyJ74IXuVUbFbMk3Gg.tal
TAL path written to /last-tal-path
receiving incremental file list
yr8oecbZoLcyJ74IXuVUbFbMk3Gg.cer
sent 43 bytes received 1,174 bytes 2,434.00 bytes/sec
total size is 1,058 speedup is 0.87
Initial validator run:
time="2024-10-22T13:08:37Z" level=info msg="Validator started"
time="2024-10-22T13:08:37Z" level=info msg="Still exploring. Revalidating now"
time="2024-10-22T13:08:37Z" level=info msg="RRDP sync https://localhost/cu70hr4o/notification.xml"
time="2024-10-22T13:08:37Z" level=info msg="RRDP: Downloading root notification https://localhost/cu70hr4o/notification.xml"
time="2024-10-22T13:08:37Z" level=info msg="RRDP: https://localhost/cu70hr4o/notification.xml downloading snapshot at: https://localhost/cu70hr4o/snapshot.xml"
time="2024-10-22T13:08:37Z" level=info msg="Stable, terminating"
End validator run
Validator run (manifest number 3):
time="2024-10-22T13:08:39Z" level=info msg="Validator started"
time="2024-10-22T13:08:39Z" level=info msg="Still exploring. Revalidating now"
time="2024-10-22T13:08:39Z" level=info msg="RRDP sync https://localhost/cu70hr4o/notification.xml"
time="2024-10-22T13:08:39Z" level=info msg="RRDP: Downloading root notification https://localhost/cu70hr4o/notification.xml"
time="2024-10-22T13:08:39Z" level=info msg="RRDP: https://localhost/cu70hr4o/notification.xml downloading snapshot at: https://localhost/cu70hr4o/snapshot.xml"
time="2024-10-22T13:08:39Z" level=info msg="Stable, terminating"
End validator run
writing RSA key
Issued ROA with ASN 1729602520
Validator run (manifest number 2):
time="2024-10-22T13:08:41Z" level=info msg="Validator started"
time="2024-10-22T13:08:41Z" level=info msg="Still exploring. Revalidating now"
time="2024-10-22T13:08:41Z" level=info msg="RRDP sync https://localhost/cu70hr4o/notification.xml"
time="2024-10-22T13:08:41Z" level=info msg="RRDP: Downloading root notification https://localhost/cu70hr4o/notification.xml"
time="2024-10-22T13:08:41Z" level=info msg="RRDP: https://localhost/cu70hr4o/notification.xml has 1 deltas to parse (cur: 3, last: 2)"
time="2024-10-22T13:08:41Z" level=info msg="RRDP: finished processing notifications (1). Last serial 3"
time="2024-10-22T13:08:41Z" level=info msg="Stable, terminating"
End validator run
Got expected number of ROAs (1)
Found ROA matching ASN (1729602520)
---
manifest-number-regression (ripe-validator v2.24)
writing RSA key
TAL path: /data/repo/lLihy_mvPdcfcYtFh-jL7edwKsWg.tal
TAL path written to /last-tal-path
Initial validator run:
13:08:42.332 [main] DEBUG net.ripe.rpki.validator.fetchers.RsyncRpkiRepositoryObjectFetcher - rsync cache hit for URI rsync://localhost/repo/e4w6km8s/lLihy_mvPdcfcYtFh-jL7edwKsWg.mft
13:08:42.376 [main] DEBUG net.ripe.rpki.validator.fetchers.RsyncRpkiRepositoryObjectFetcher - rsync cache hit for URI rsync://localhost/repo/e4w6km8s/lLihy_mvPdcfcYtFh-jL7edwKsWg.crl
13:08:42.384 [main] DEBUG net.ripe.rpki.validator.fetchers.RsyncRpkiRepositoryObjectFetcher - rsync cache hit for URI rsync://localhost/repo/e4w6km8s/lLihy_mvPdcfcYtFh-jL7edwKsWg.mft
# Statistics Summary (see README for detail):
# date certs roas roa-asn roa-v4 roa-v4u roa-v6 roa-v6u cert-X roa-X
2024-10-22 0 0 0 0 0 0 0 0 0
End validator run
Validator run (manifest number 3):
13:08:44.430 [main] DEBUG net.ripe.rpki.validator.fetchers.RsyncRpkiRepositoryObjectFetcher - rsync cache hit for URI rsync://localhost/repo/e4w6km8s/lLihy_mvPdcfcYtFh-jL7edwKsWg.mft
13:08:44.483 [main] DEBUG net.ripe.rpki.validator.fetchers.RsyncRpkiRepositoryObjectFetcher - rsync cache hit for URI rsync://localhost/repo/e4w6km8s/lLihy_mvPdcfcYtFh-jL7edwKsWg.crl
13:08:44.491 [main] DEBUG net.ripe.rpki.validator.fetchers.RsyncRpkiRepositoryObjectFetcher - rsync cache hit for URI rsync://localhost/repo/e4w6km8s/lLihy_mvPdcfcYtFh-jL7edwKsWg.mft