-
Notifications
You must be signed in to change notification settings - Fork 71
/
benchmark.txt
1713 lines (1255 loc) · 58.6 KB
/
benchmark.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
Results of benchmarking cjdns on different systems:
To make your own benchmark:
./cjdroute --bench
cat /proc/cpuinfo
git log | head -n 1
Paste results to https://ezcrypt.it/ and tell us about it in the IRC channel!
Weird processors wanted :D
user@debo8:~/wrk/play/mygit/cjdns/build$ ./cjdroute --bench
These metrics are speed of encryption and decryption similar to the usage pattern
when decrypting a packet, switching it, and re-encrypting it with another key.
Test sending 1000 64 byte hello packets. packet auth enabled. Finished in 466ms. 1098 Kb/s
Test sending 1000 1500 byte hello packets. packet auth enabled. Finished in 432ms. 27776 Kb/s
Test sending 1000 64 byte key packets. packet auth enabled. Finished in 671ms. 763 Kb/s
Test sending 1000 1500 byte key packets. packet auth enabled. Finished in 683ms. 17568 Kb/s
Test sending 100000 64 byte data packets. packet auth disabled. Finished in 101ms. 506930 Kb/s
Test sending 100000 1500 byte data packets. packet auth disabled. Finished in 1021ms. 1175318 Kb/s
Test sending 100000 64 byte data packets. packet auth enabled. Finished in 360ms. 142222 Kb/s
This is the switch configuration so this indicates expected switch throughput:
Test sending 100000 1500 byte data packets. packet auth enabled. Finished in 1708ms. 702576 Kb/s
user@debo8:~/wrk/play/mygit/cjdns/build$ cat /proc/cpuinfo | head
processor : 0
vendor_id : AuthenticAMD
cpu family : 16
model : 9
model name : AMD Opteron(tm) Processor 6128
stepping : 1
microcode : 0x10000c4
cpu MHz : 800.000
cache size : 512 KB
physical id : 0
user@debo8:~/wrk/play/mygit/cjdns/build$ git log -n 1
commit c2cfff7b4ef1339942f3e98eb0d99a093d307a9b
cjdns@abacus:~/cjdns/build$ ./cjdroute --bench
These metrics are speed of encryption and decryption similar to the usage pattern
when decrypting a packet, switching it, and re-encrypting it with another key.
Test sending 1000 64 byte hello packets. packet auth enabled. Finished in 96628ms. 5 Kb/s
Test sending 1000 1500 byte hello packets. packet auth enabled. Finished in 100130ms. 119 Kb/s
Test sending 1000 64 byte key packets. packet auth enabled. Finished in 149438ms. 3 Kb/s
Test sending 1000 1500 byte key packets. packet auth enabled. Finished in 152898ms. 78 Kb/s
Test sending 100000 64 byte data packets. packet auth disabled. Finished in 2241ms. 22846 Kb/s
Test sending 100000 1500 byte data packets. packet auth disabled. Finished in 34007ms. 35286 Kb/s
Test sending 100000 64 byte data packets. packet auth enabled. Finished in 12059ms. 4245 Kb/s
This is the switch configuration so this indicates expected switch throughput:
Test sending 100000 1500 byte data packets. packet auth enabled. Finished in 151882ms. 7900 Kb/s
cjdns@abacus:~/cjdns/build$ cat /proc/cpuinfo
Processor : Feroceon 88FR131 rev 1 (v5l)
BogoMIPS : 1196.85
Features : swp half thumb fastmult edsp
CPU implementer : 0x56
CPU architecture: 5TE
CPU variant : 0x2
CPU part : 0x131
CPU revision : 1
Hardware : Marvell OpenRD Client Board
Revision : 0000
Serial : 0000000000000000
cjdns@abacus:~/cjdns/build$ git log -n 1
commit c2cfff7b4ef1339942f3e98eb0d99a093d307a9b
# after the update to nacl
cjdns@abacus:~/cjdns/build$ time ./cjdroute --bench && cat /proc/cpuinfo && git log | head -1
These metrics are speed of encryption and decryption similar to the usage pattern
when decrypting a packet, switching it, and re-encrypting it with another key.
Test sending 1000 64 byte hello packets. packet auth enabled. Finished in 12076ms. 42 Kb/s
Test sending 1000 1500 byte hello packets. packet auth enabled. Finished in 13298ms. 902 Kb/s
Test sending 1000 64 byte key packets. packet auth enabled. Finished in 12304ms. 41 Kb/s
Test sending 1000 1500 byte key packets. packet auth enabled. Finished in 12752ms. 940 Kb/s
Test sending 100000 64 byte data packets. packet auth disabled. Finished in 1034ms. 49516 Kb/s
Test sending 100000 1500 byte data packets. packet auth disabled. Finished in 20350ms. 58968 Kb/s
Test sending 100000 64 byte data packets. packet auth enabled. Finished in 3685ms. 13894 Kb/s
This is the switch configuration so this indicates expected switch throughput:
Test sending 100000 1500 byte data packets. packet auth enabled. Finished in 30179ms. 39762 Kb/s
Processor : Feroceon 88FR131 rev 1 (v5l)
BogoMIPS : 1196.85
Features : swp half thumb fastmult edsp
CPU implementer : 0x56
CPU architecture: 5TE
CPU variant : 0x2
CPU part : 0x131
CPU revision : 1
Hardware : Marvell OpenRD Client Board
Revision : 0000
Serial : 0000000000000000
real 1m43.216s
user 1m21.520s
sys 0m1.000s
cjdns@abacus:~/cjdns/build$
cjdns@ks397481:~/cjdns/build$ ./cjdroute --bench
These metrics are speed of encryption and decryption similar to the usage pattern
when decrypting a packet, switching it, and re-encrypting it with another key.
Test sending 1000 64 byte hello packets. packet auth enabled. Finished in 3420ms. 149 Kb/s
Test sending 1000 1500 byte hello packets. packet auth enabled. Finished in 3491ms. 3437 Kb/s
Test sending 1000 64 byte key packets. packet auth enabled. Finished in 3413ms. 150 Kb/s
Test sending 1000 1500 byte key packets. packet auth enabled. Finished in 3465ms. 3462 Kb/s
Test sending 100000 64 byte data packets. packet auth disabled. Finished in 103ms. 497087 Kb/s
Test sending 100000 1500 byte data packets. packet auth disabled. Finished in 1581ms. 759013 Kb/s
Test sending 100000 64 byte data packets. packet auth enabled. Finished in 724ms. 70718 Kb/s
This is the switch configuration so this indicates expected switch throughput:
Test sending 100000 1500 byte data packets. packet auth enabled. Finished in 4257ms. 281888 Kb/s
cjdns@ks397481:~/cjdns/build$ cat /proc/cpuinfo | head
processor : 0
vendor_id : GenuineIntel
cpu family : 6
model : 28
model name : Intel(R) Atom(TM) CPU D425 @ 1.80GHz
stepping : 10
cpu MHz : 1799.735
cache size : 512 KB
physical id : 0
siblings : 2
cjdns@ks397481:~/cjdns/build$ git log | head -n 1
commit fd4964634de971c888bb079d0e62b411c471803a
user@ubntfusion2:~/cjdns/build$ ./cjdroute --bench
These metrics are speed of encryption and decryption similar to the usage pattern
when decrypting a packet, switching it, and re-encrypting it with another key.
Test sending 1000 64 byte hello packets. packet auth enabled. Finished in 916ms. 558 Kb/s
Test sending 1000 1500 byte hello packets. packet auth enabled. Finished in 939ms. 12778 Kb/s
Test sending 1000 64 byte key packets. packet auth enabled. Finished in 1341ms. 381 Kb/s
Test sending 1000 1500 byte key packets. packet auth enabled. Finished in 1368ms. 8771 Kb/s
Test sending 100000 64 byte data packets. packet auth disabled. Finished in 134ms. 382089 Kb/s
Test sending 100000 1500 byte data packets. packet auth disabled. Finished in 2291ms. 523788 Kb/s
Test sending 100000 64 byte data packets. packet auth enabled. Finished in 526ms. 97338 Kb/s
This is the switch configuration so this indicates expected switch throughput:
Test sending 100000 1500 byte data packets. packet auth enabled. Finished in 3386ms. 354400 Kb/s
user@ubntfusion2:~/cjdns/build$ cat /proc/cpuinfo | head
processor : 0
vendor_id : AuthenticAMD
cpu family : 20
model : 1
model name : AMD E-350 Processor
stepping : 0
microcode : 0x5000028
cpu MHz : 800.000
cache size : 512 KB
physical id : 0
user@ubntfusion2:~/cjdns/build$ git log | head -n 1
commit 3d2ce46d3c9df964ddf37dbdb03dccbcac862d5a
user@ubntfusion2:~/cjdns/build$
These metrics are speed of encryption and decryption similar to the usage pattern
when decrypting a packet, switching it, and re-encrypting it with another key.
Test sending 1000 64 byte hello packets. packet auth enabled. Finished in 1361ms. 376 Kb/s
Test sending 1000 1500 byte hello packets. packet auth enabled. Finished in 1551ms. 7736 Kb/s
Test sending 1000 64 byte key packets. packet auth enabled. Finished in 1334ms. 383 Kb/s
Test sending 1000 1500 byte key packets. packet auth enabled. Finished in 1365ms. 8790 Kb/s
Test sending 100000 64 byte data packets. packet auth disabled. Finished in 323ms. 158513 Kb/s
Test sending 100000 1500 byte data packets. packet auth disabled. Finished in 1893ms. 633914 Kb/s
Test sending 100000 64 byte data packets. packet auth enabled. Finished in 708ms. 72316 Kb/s
This is the switch configuration so this indicates expected switch throughput:
Test sending 100000 1500 byte data packets. packet auth enabled. Finished in 2805ms. 427807 Kb/s
processor : 0
vendor_id : GenuineIntel
cpu family : 15
model : 4
model name : Intel(R) Pentium(R) 4 CPU 3.00GHz
stepping : 3
cpu MHz : 2994.307
cache size : 2048 KB
physical id : 0
siblings : 2
core id : 0
cpu cores : 1
apicid : 0
initial apicid : 0
fdiv_bug : no
hlt_bug : no
f00f_bug : no
coma_bug : no
fpu : yes
fpu_exception : yes
cpuid level : 5
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe lm constant_tsc pebs bts pni dtes64 monitor ds_cpl est cid cx16 xtpr
bogomips : 5988.61
clflush size : 64
cache_alignment : 128
address sizes : 36 bits physical, 48 bits virtual
power management:
processor : 1
vendor_id : GenuineIntel
cpu family : 15
model : 4
model name : Intel(R) Pentium(R) 4 CPU 3.00GHz
stepping : 3
.....
cjdns@xubuntu-27-120:~/cjdns$ git log | head -n 1
commit 06522239acde31a01633033d9c4229baa7fad229
These metrics are speed of encryption and decryption similar to the usage pattern
when decrypting a packet, switching it, and re-encrypting it with another key.
Test sending 1000 64 byte hello packets. packet auth enabled. Finished in 9996ms. 51 Kb/s
Test sending 1000 1500 byte hello packets. packet auth enabled. Finished in 10459ms. 1147 Kb/s
Test sending 1000 64 byte key packets. packet auth enabled. Finished in 10429ms. 49 Kb/s
Test sending 1000 1500 byte key packets. packet auth enabled. Finished in 10982ms. 1092 Kb/s
Test sending 100000 64 byte data packets. packet auth disabled. Finished in 3588ms. 14269 Kb/s
Test sending 100000 1500 byte data packets. packet auth disabled. Finished in 34265ms. 35021 Kb/s
Test sending 100000 64 byte data packets. packet auth enabled. Finished in 8723ms. 5869 Kb/s
This is the switch configuration so this indicates expected switch throughput:
Test sending 100000 1500 byte data packets. packet auth enabled. Finished in 46702ms. 25694 Kb/s
processor : 0
vendor_id : GenuineIntel
cpu family : 6
model : 5
model name : Pentium II (Deschutes)
stepping : 2
cpu MHz : 267.274
cache size : 512 KB
fdiv_bug : no
hlt_bug : no
f00f_bug : no
coma_bug : no
fpu : yes
fpu_exception : yes
cpuid level : 2
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 sep mtrr pge mca cmov pse36 mmx fxsr up
bogomips : 534.54
clflush size : 32
cache_alignment : 32
address sizes : 36 bits physical, 32 bits virtual
power management:
cjdns@wl-4-253:~/cjdns$ git log | head -n 1
commit 06522239acde31a01633033d9c4229baa7fad229
$ ./cjdroute --bench
These metrics are speed of encryption and decryption similar to the usage pattern
when decrypting a packet, switching it, and re-encrypting it with another key.
Test sending 1000 64 byte hello packets. packet auth enabled. Finished in 334ms. 1532 Kb/s
Test sending 1000 1500 byte hello packets. packet auth enabled. Finished in 342ms. 35085 Kb/s
Test sending 1000 64 byte key packets. packet auth enabled. Finished in 547ms. 936 Kb/s
Test sending 1000 1500 byte key packets. packet auth enabled. Finished in 507ms. 23667 Kb/s
Test sending 100000 64 byte data packets. packet auth disabled. Finished in 51ms. 1003921 Kb/s
Test sending 100000 1500 byte data packets. packet auth disabled. Finished in 618ms. 1941747 Kb/s
Test sending 100000 64 byte data packets. packet auth enabled. Finished in 226ms. 226548 Kb/s
This is the switch configuration so this indicates expected switch throughput:
Test sending 100000 1500 byte data packets. packet auth enabled. Finished in 1068ms. 1123595 Kb/s
$ cat /proc/cpuinfo
processor : 0
vendor_id : GenuineIntel
cpu family : 6
model : 26
model name : Intel(R) Xeon(R) CPU E5520 @ 2.27GHz
stepping : 5
microcode : 0x11
cpu MHz : 2261.000
cache size : 8192 KB
fpu : yes
fpu_exception : yes
cpuid level : 11
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts nopl xtopology tsc_reliable nonstop_tsc aperfmperf pni ssse3 cx16 sse4_1 sse4_2 popcnt hypervisor lahf_lm ida dts
bogomips : 4522.00
clflush size : 64
cache_alignment : 64
address sizes : 40 bits physical, 48 bits virtual
power management:
......
$ git log | head -n 1
commit 65204735fac8a27a1057f100b0a1285633eaf29e
[user@ps3 build]$ ./cjdroute --bench
These metrics are speed of encryption and decryption similar to the usage pattern
when decrypting a packet, switching it, and re-encrypting it with another key.
Test sending 1000 64 byte hello packets. packet auth enabled. Finished in 54330ms. 9 Kb/s
Test sending 1000 1500 byte hello packets. packet auth enabled. Finished in 54805ms. 218 Kb/s
Test sending 1000 64 byte key packets. packet auth enabled. Finished in 54304ms. 9 Kb/s
Test sending 1000 1500 byte key packets. packet auth enabled. Finished in 54792ms. 218 Kb/s
Test sending 100000 64 byte data packets. packet auth disabled. Finished in 607ms. 84349 Kb/s
Test sending 100000 1500 byte data packets. packet auth disabled. Finished in 8470ms. 141676 Kb/s
Test sending 100000 64 byte data packets. packet auth enabled. Finished in 3224ms. 15880 Kb/s
This is the switch configuration so this indicates expected switch throughput:
Test sending 100000 1500 byte data packets. packet auth enabled. Finished in 54903ms. 21856 Kb/s
[user@ps3 build]$ cat /proc/cpuinfo
processor : 0
cpu : Cell Broadband Engine, altivec supported
clock : 3192.000000MHz
revision : 5.1 (pvr 0070 0501)
processor : 1
cpu : Cell Broadband Engine, altivec supported
clock : 3192.000000MHz
revision : 5.1 (pvr 0070 0501)
timebase : 79800000
platform : PS3
[user@ps3 build]$ git log | head -n 1
commit 06522239acde31a01633033d9c4229baa7fad229
Linux 2.6.26-2-686 #1 SMP Sat Jun 11 14:54:10 UTC 2011 i686 GNU/Linux
893ac7148b76bed44c589617f0655a857b05b9e4
processor : 0
vendor_id : GenuineIntel
cpu family : 6
model : 23
model name : Intel(R) Core(TM)2 CPU E7400 @ 2.80GHz
stepping : 10
cpu MHz : 2793.090
cache size : 3072 KB
physical id : 0
siblings : 2
core id : 0
cpu cores : 2
apicid : 0
initial apicid : 0
fdiv_bug : no
hlt_bug : no
f00f_bug : no
coma_bug : no
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe nx lm constant_tsc arch_perfmon pebs bts pni monitor tm2 ssse3 lahf_lm
bogomips : 5590.46
clflush size : 64
power management:
processor : 1
vendor_id : GenuineIntel
cpu family : 6
model : 23
model name : Intel(R) Core(TM)2 CPU E7400 @ 2.80GHz
stepping : 10
cpu MHz : 2793.090
cache size : 3072 KB
physical id : 0
siblings : 2
core id : 1
cpu cores : 2
apicid : 1
initial apicid : 1
fdiv_bug : no
hlt_bug : no
f00f_bug : no
coma_bug : no
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe nx lm constant_tsc arch_perfmon pebs bts pni monitor tm2 ssse3 lahf_lm
bogomips : 5586.38
clflush size : 64
power management:
These metrics are speed of encryption and decryption similar to the usage pattern
when decrypting a packet, switching it, and re-encrypting it with another key.
Test sending 1000 64 byte hello packets. packet auth enabled. Finished in 704ms. 727 Kb/s
Test sending 1000 1500 byte hello packets. packet auth enabled. Finished in 670ms. 17909 Kb/s
Test sending 1000 64 byte key packets. packet auth enabled. Finished in 700ms. 731 Kb/s
Test sending 1000 1500 byte key packets. packet auth enabled. Finished in 709ms. 16924 Kb/s
Test sending 100000 64 byte data packets. packet auth disabled. Finished in 105ms. 487619 Kb/s
Test sending 100000 1500 byte data packets. packet auth disabled. Finished in 639ms. 1877934 Kb/s
Test sending 100000 64 byte data packets. packet auth enabled. Finished in 316ms. 162025 Kb/s
This is the switch configuration so this indicates expected switch throughput:
Test sending 100000 1500 byte data packets. packet auth enabled. Finished in 1159ms. 1035375 Kb/s
OpenWRT on Linksys WRT54GL V1.1
system type : Broadcom BCM47XX
processor : 0
cpu model : Broadcom BMIPS3300 V0.8
BogoMIPS : 198.65
wait instruction : yes
microsecond timers : yes
tlb_entries : 32
extra interrupt vector : yes
hardware watchpoint : no
ASEs implemented :
shadow register sets : 1
kscratch registers : 0
core : 0
VCED exceptions : not available
VCEI exceptions : not available
These metrics are speed of encryption and decryption similar to the usage pattern
when decrypting a packet, switching it, and re-encrypting it with another key.
Test sending 1000 64 byte hello packets. packet auth enabled. Finished in 687837ms. 0 Kb/s
Test sending 1000 1500 byte hello packets. packet auth enabled. Finished in 695086ms. 17 Kb/s
Test sending 1000 64 byte key packets. packet auth enabled. Finished in 688509ms. 0 Kb/s
Test sending 1000 1500 byte key packets. packet auth enabled. Finished in 695686ms. 17 Kb/s
Test sending 100000 64 byte data packets. packet auth disabled. Finished in 6485ms. 7895 Kb/s
Test sending 100000 1500 byte data packets. packet auth disabled. Finished in 85105ms. 14100 Kb/s
Test sending 100000 64 byte data packets. packet auth enabled. Finished in 45765ms. 1118 Kb/s
This is the switch configuration so this indicates expected switch throughput
Test sending 100000 1500 byte data packets. packet auth enabled. Finished in 764380ms. 1569 Kb/s
real 59m 43.33s
user 59m 39.59s
sys 0m 2.98s
ircerr@EFNet/#cjdns 20120506
user@debian-mips:~/cjdns/build$ time ./cjdroute --bench
These metrics are speed of encryption and decryption similar to the usage pattern
when decrypting a packet, switching it, and re-encrypting it with another key.
Test sending 1000 64 byte hello packets. packet auth enabled. Finished in 271027ms. 1 Kb/s
Test sending 1000 1500 byte hello packets. packet auth enabled. Finished in 314701ms. 38 Kb/s
Test sending 1000 64 byte key packets. packet auth enabled. Finished in 288595ms. 1 Kb/s
Test sending 1000 1500 byte key packets. packet auth enabled. Finished in 271643ms. 44 Kb/s
Test sending 100000 64 byte data packets. packet auth disabled. Finished in 8016ms. 6387 Kb/s
Test sending 100000 1500 byte data packets. packet auth disabled. Finished in 63388ms. 18931 Kb/s
Test sending 100000 64 byte data packets. packet auth enabled. Finished in 24010ms. 2132 Kb/s
This is the switch configuration so this indicates expected switch throughput:
Test sending 100000 1500 byte data packets. packet auth enabled. Finished in 332790ms. 3605 Kb/s
real 25m37.560s
user 25m4.378s
sys 0m29.726s
user@debian-mips:~/cjdns/build$ cat /proc/cpuinfo
system type : MIPS Malta
processor : 0
cpu model : MIPS 24Kc V0.0 FPU V0.0
BogoMIPS : 532.48
wait instruction : yes
microsecond timers : yes
tlb_entries : 16
extra interrupt vector : yes
hardware watchpoint : yes, count: 1, address/irw mask: [0x0ff8]
ASEs implemented : mips16
shadow register sets : 1
core : 0
VCED exceptions : not available
VCEI exceptions : not available
user@debian-mips:~/cjdns/build$ git log | head -n 1
commit 929f4785dcd62b2dc4201ceb40e7bdb0d49462e5
# after update to nacl
git log | head -1~/cjdns$ time ./build/cjdroute --bench && cat /proc/cpuinfo &&
These metrics are speed of encryption and decryption similar to the usage pattern
when decrypting a packet, switching it, and re-encrypting it with another key.
Test sending 1000 64 byte hello packets. packet auth enabled. Finished in 242437ms. 2 Kb/s
Test sending 1000 1500 byte hello packets. packet auth enabled. Finished in 298387ms. 40 Kb/s
Test sending 1000 64 byte key packets. packet auth enabled. Finished in 325285ms. 1 Kb/s
Test sending 1000 1500 byte key packets. packet auth enabled. Finished in 300940ms. 39 Kb/s
Test sending 100000 64 byte data packets. packet auth disabled. Finished in 3183ms. 16085 Kb/s
Test sending 100000 1500 byte data packets. packet auth disabled. Finished in 70822ms. 16943 Kb/s
Test sending 100000 64 byte data packets. packet auth enabled. Finished in 21674ms. 2362 Kb/s
This is the switch configuration so this indicates expected switch throughput:
Test sending 100000 1500 byte data packets. packet auth enabled. Finished in 122875ms. 9766 Kb/s
real 22m33.470s
user 22m2.123s
sys 0m28.946s
system type : MIPS Malta
processor : 0
cpu model : MIPS 24Kc V0.0 FPU V0.0
BogoMIPS : 550.91
wait instruction : yes
microsecond timers : yes
tlb_entries : 16
extra interrupt vector : yes
hardware watchpoint : yes, count: 1, address/irw mask: [0x0ff8]
ASEs implemented : mips16
shadow register sets : 1
core : 0
VCED exceptions : not available
VCEI exceptions : not available
commit 8562e4298a64a7b7aa9d05d03ab357b572940b71
user@debian-mips:~/cjdns$
commit 51c041d6b87f139e74ab31ca125cdfc9685900b4
Linux sql.bt-chat.com 2.6.26-2-686 #1 SMP Sat Jun 11 14:54:10 UTC 2011 i686 GNU/Linux
processor : 0
vendor_id : GenuineIntel
cpu family : 6
model : 23
model name : Intel(R) Core(TM)2 Duo CPU E7400 @ 2.80GHz
stepping : 10
cpu MHz : 2786.096
cache size : 3072 KB
physical id : 0
siblings : 2
core id : 0
cpu cores : 2
apicid : 0
initial apicid : 0
fdiv_bug : no
hlt_bug : no
f00f_bug : no
coma_bug : no
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe nx lm constant_tsc arch_perfmon pebs bts pni monitor ds_cpl est tm2 ssse3 cx16 xtpr sse4_1 lahf_lm
bogomips : 5576.40
clflush size : 64
power management:
processor : 1
vendor_id : GenuineIntel
cpu family : 6
model : 23
model name : Intel(R) Core(TM)2 Duo CPU E7400 @ 2.80GHz
stepping : 10
cpu MHz : 2786.096
cache size : 3072 KB
physical id : 0
siblings : 2
core id : 1
cpu cores : 2
apicid : 1
initial apicid : 1
fdiv_bug : no
hlt_bug : no
f00f_bug : no
coma_bug : no
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe nx lm constant_tsc arch_perfmon pebs bts pni monitor ds_cpl est tm2 ssse3 cx16 xtpr sse4_1 lahf_lm
bogomips : 5572.35
clflush size : 64
power management:
These metrics are speed of encryption and decryption similar to the usage pattern
when decrypting a packet, switching it, and re-encrypting it with another key.
Test sending 1000 64 byte hello packets. packet auth enabled. Finished in 650ms. 787 Kb/s
Test sending 1000 1500 byte hello packets. packet auth enabled. Finished in 706ms. 16996 Kb/s
Test sending 1000 64 byte key packets. packet auth enabled. Finished in 698ms. 733 Kb/s
Test sending 1000 1500 byte key packets. packet auth enabled. Finished in 663ms. 18098 Kb/s
Test sending 100000 64 byte data packets. packet auth disabled. Finished in 101ms. 506930 Kb/s
Test sending 100000 1500 byte data packets. packet auth disabled. Finished in 633ms. 1895734 Kb/s
Test sending 100000 64 byte data packets. packet auth enabled. Finished in 310ms. 165161 Kb/s
This is the switch configuration so this indicates expected switch throughput:
Test sending 100000 1500 byte data packets. packet auth enabled. Finished in 1155ms. 1038961 Kb/s
commit a33af261e9ddbcd314ea28190b18b4a438af3532
Linux web.bt-chat.com 2.6.32-5-686 #1 SMP Mon Mar 26 05:20:33 UTC 2012 i686 GNU/Linux
processor : 0
vendor_id : GenuineIntel
cpu family : 6
model : 23
model name : Intel(R) Core(TM)2 CPU E7400 @ 2.80GHz
stepping : 10
cpu MHz : 2793.605
cache size : 3072 KB
physical id : 0
siblings : 2
core id : 0
cpu cores : 2
apicid : 0
initial apicid : 0
fdiv_bug : no
hlt_bug : no
f00f_bug : no
coma_bug : no
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe nx lm constant_tsc arch_perfmon pebs bts aperfmperf pni monitor tm2 ssse3 lahf_lm
bogomips : 5587.21
clflush size : 64
cache_alignment : 64
address sizes : 36 bits physical, 48 bits virtual
power management:
processor : 1
vendor_id : GenuineIntel
cpu family : 6
model : 23
model name : Intel(R) Core(TM)2 CPU E7400 @ 2.80GHz
stepping : 10
cpu MHz : 2793.605
cache size : 3072 KB
physical id : 0
siblings : 2
core id : 1
cpu cores : 2
apicid : 1
initial apicid : 1
fdiv_bug : no
hlt_bug : no
f00f_bug : no
coma_bug : no
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe nx lm constant_tsc arch_perfmon pebs bts aperfmperf pni monitor tm2 ssse3 lahf_lm
bogomips : 5586.37
clflush size : 64
cache_alignment : 64
address sizes : 36 bits physical, 48 bits virtual
power management:
These metrics are speed of encryption and decryption similar to the usage pattern
when decrypting a packet, switching it, and re-encrypting it with another key.
Test sending 1000 64 byte hello packets. packet auth enabled. Finished in 701ms. 730 Kb/s
Test sending 1000 1500 byte hello packets. packet auth enabled. Finished in 660ms. 18180 Kb/s
Test sending 1000 64 byte key packets. packet auth enabled. Finished in 700ms. 731 Kb/s
Test sending 1000 1500 byte key packets. packet auth enabled. Finished in 707ms. 16972 Kb/s
Test sending 100000 64 byte data packets. packet auth disabled. Finished in 101ms. 506930 Kb/s
Test sending 100000 1500 byte data packets. packet auth disabled. Finished in 587ms. 2044293 Kb/s
Test sending 100000 64 byte data packets. packet auth enabled. Finished in 365ms. 140273 Kb/s
This is the switch configuration so this indicates expected switch throughput:
Test sending 100000 1500 byte data packets. packet auth enabled. Finished in 1156ms. 1038062 Kb/s
commit ec8d1aac3e11e98b21e0bea6ad4af2463c99b14c
Linux web2.bt-chat.com 2.6.26-2-686 #1 SMP Sat Jun 11 14:54:10 UTC 2011 i686 GNU/Linux
processor : 0
vendor_id : GenuineIntel
cpu family : 6
model : 23
model name : Intel(R) Core(TM)2 Duo CPU E7400 @ 2.80GHz
stepping : 10
cpu MHz : 2786.045
cache size : 3072 KB
physical id : 0
siblings : 2
core id : 0
cpu cores : 2
apicid : 0
initial apicid : 0
fdiv_bug : no
hlt_bug : no
f00f_bug : no
coma_bug : no
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe nx lm constant_tsc arch_perfmon pebs bts pni monitor ds_cpl est tm2 ssse3 cx16 xtpr sse4_1 lahf_lm
bogomips : 5576.37
clflush size : 64
power management:
processor : 1
vendor_id : GenuineIntel
cpu family : 6
model : 23
model name : Intel(R) Core(TM)2 Duo CPU E7400 @ 2.80GHz
stepping : 10
cpu MHz : 2786.045
cache size : 3072 KB
physical id : 0
siblings : 2
core id : 1
cpu cores : 2
apicid : 1
initial apicid : 1
fdiv_bug : no
hlt_bug : no
f00f_bug : no
coma_bug : no
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe nx lm constant_tsc arch_perfmon pebs bts pni monitor ds_cpl est tm2 ssse3 cx16 xtpr sse4_1 lahf_lm
bogomips : 5572.35
clflush size : 64
power management:
These metrics are speed of encryption and decryption similar to the usage pattern
when decrypting a packet, switching it, and re-encrypting it with another key.
Test sending 1000 64 byte hello packets. packet auth enabled. Finished in 698ms. 733 Kb/s
Test sending 1000 1500 byte hello packets. packet auth enabled. Finished in 705ms. 17020 Kb/s
Test sending 1000 64 byte key packets. packet auth enabled. Finished in 659ms. 776 Kb/s
Test sending 1000 1500 byte key packets. packet auth enabled. Finished in 706ms. 16996 Kb/s
Test sending 100000 64 byte data packets. packet auth disabled. Finished in 72ms. 711111 Kb/s
Test sending 100000 1500 byte data packets. packet auth disabled. Finished in 610ms. 1967213 Kb/s
Test sending 100000 64 byte data packets. packet auth enabled. Finished in 282ms. 181560 Kb/s
This is the switch configuration so this indicates expected switch throughput:
Test sending 100000 1500 byte data packets. packet auth enabled. Finished in 1127ms. 1064773 Kb/s
# Rasberry Pi -- Owner unknown (we would like to meet you!)
./cjdroute --bench
These metrics are speed of encryption and decryption similar to the usage pattern
when decrypting a packet, switching it, and re-encrypting it with another key.
Test sending 1000 64 byte hello packets. packet auth enabled. Finished in 97759ms. 5 Kb/s
Test sending 1000 1500 byte hello packets. packet auth enabled. Finished in 96319ms. 124 Kb/s
Test sending 1000 64 byte key packets. packet auth enabled. Finished in 143077ms. 3 Kb/s
Test sending 1000 1500 byte key packets. packet auth enabled. Finished in 148158ms. 80 Kb/s
Test sending 100000 64 byte data packets. packet auth disabled. Finished in 2172ms. 23572 Kb/s
Test sending 100000 1500 byte data packets. packet auth disabled. Finished in 33251ms. 36089 Kb/s
Test sending 100000 64 byte data packets. packet auth enabled. Finished in 14356ms. 3566 Kb/s
This is the switch configuration so this indicates expected switch throughput:
Test sending 100000 1500 byte data packets. packet auth enabled. Finished in 163744ms. 7328 Kb/s
version: bc41a54dc5d2a0ece5864671242184afbd46ba6e
# This version is just post the NACL improvements.
[root@Bifrost] ~/src/cjdns# ./cjdroute --bench
These metrics are speed of encryption and decryption similar to the usage pattern
when decrypting a packet, switching it, and re-encrypting it with another key.
Test sending 1000 64 byte hello packets. packet auth enabled. Finished in 20195ms. 25 Kb/s
Test sending 1000 1500 byte hello packets. packet auth enabled. Finished in 20389ms. 588 Kb/s
Test sending 1000 64 byte key packets. packet auth enabled. Finished in 20077ms. 25 Kb/s
Test sending 1000 1500 byte key packets. packet auth enabled. Finished in 20296ms. 591 Kb/s
Test sending 100000 64 byte data packets. packet auth disabled. Finished in 500ms. 102400 Kb/s
Test sending 100000 1500 byte data packets. packet auth disabled. Finished in 8314ms. 144334 Kb/s
Test sending 100000 64 byte data packets. packet auth enabled. Finished in 1502ms. 34087 Kb/s
This is the switch configuration so this indicates expected switch throughput:
Test sending 100000 1500 byte data packets. packet auth enabled. Finished in 17730ms. 67681 Kb/s
[root@Bifrost] ~/src/cjdns# cat /proc/cpuinfo
processor : 0
cpu : Cell Broadband Engine, altivec supported
clock : 3192.000000MHz
revision : 5.1 (pvr 0070 0501)
processor : 1
cpu : Cell Broadband Engine, altivec supported
clock : 3192.000000MHz
revision : 5.1 (pvr 0070 0501)
timebase : 79800000
platform : PS3
model : SonyPS3
[root@Bifrost] ~/src/cjdns# git log | head -n 1
commit 829f93e93c1eff81fdde62f00500f7e2c6e05c2f
[root@Bifrost] ~/src/cjdns# date
Fri Jun 22 15:48:05 CDT 2012
[dan@archbang ~]$ cjdroute --bench
These metrics are speed of encryption and decryption similar to the usage pattern
when decrypting a packet, switching it, and re-encrypting it with another key.