-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathiPerf.log
1083 lines (854 loc) · 31.6 KB
/
iPerf.log
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
**********************
Windows PowerShell transcript start
Start time: 20241112153849
Username: RA-SLO\nagios
RunAs User: RA-SLO\nagios
Configuration Name:
Machine: ITRT (Microsoft Windows NT 10.0.19045.0)
Host Application: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe -Command if((Get-ExecutionPolicy ) -ne 'AllSigned') { Set-ExecutionPolicy -Scope Process Bypass }; & 'C:\Users\nagios\Desktop\Speed Tests\NetworkTestRaslo.ps1'
Process ID: 16344
PSVersion: 5.1.19041.3031
PSEdition: Desktop
PSCompatibleVersions: 1.0, 2.0, 3.0, 4.0, 5.0, 5.1.19041.3031
BuildVersion: 10.0.19041.3031
CLRVersion: 4.0.30319.42000
WSManStackVersion: 3.0
PSRemotingProtocolVersion: 2.3
SerializationVersion: 1.1.0.1
**********************
Transcript started, output file is C:\speedtest\NetworkSpeedTestLog-internal.log
==========Starting Test==========
Tuesday, November 12, 2024 3:38:49 PM
==========Beginning test to Raslo Database==========
Beginning test 20mb over 4 files.
Environment:
DRS_HTTPSERVER: 172.17.200.90/DRPacs
DRSYSCFG: C:\DRS\Guest\Guest490.ini
Running arguments:
C:\DRS\Sys\Sysx86\CopyServerFileTest.exe
images.rasloimaging.com/drpacs
Setting up...
Logging in...
DRHttpClientSetup completes setup
Application Login Success
Creating files....
Files in directory: 2
Directory size: 10.00 MB, 80.00 Mbits
Posting directory files to DRS_HTTPSERVER: images.rasloimaging.com DIRECTORY: DRS\TEMP\CpyTestPOST\
from LOCAL: C:\DRS\TEMP\
..
Posting Files Succeeded
Seconds to Post File: 0.5614s
Post Directory rate: 3.562 files/sec
17.812 MB/sec, 142.497 Mbits/sec
Downloading directory files from DRS_HTTPSERVER: images.rasloimaging.com DIRECTORY: DRS\TEMP\CpyTestPOST\
to LOCAL: C:\DRS\TEMP\CpyTestDOWNLOAD\
..
Downloading Files Succeeded
Seconds to Download File: 0.4328s
Download Directory rate: 4.621 files/sec
23.104 MB/sec, 184.835 Mbits/sec
Total seconds to Post and Download: 0.9953s
Clean up:
Deleted 2 files
Conducting 5 ping test to Image Server
Pinging images.rasloimaging.com [172.17.200.90] with 32 bytes of data:
Reply from 172.17.200.90: bytes=32 time=1ms TTL=127
Reply from 172.17.200.90: bytes=32 time=1ms TTL=127
Reply from 172.17.200.90: bytes=32 time=1ms TTL=127
Reply from 172.17.200.90: bytes=32 time=1ms TTL=127
Reply from 172.17.200.90: bytes=32 time=1ms TTL=127
Ping statistics for 172.17.200.90:
Packets: Sent = 5, Received = 5, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 1ms, Maximum = 1ms, Average = 1ms
Beginning test 20mb over 4 files.
Environment:
DRS_HTTPSERVER: 172.17.200.90/DRPacs
DRSYSCFG: C:\DRS\Guest\Guest490.ini
Running arguments:
C:\DRS\Sys\Sysx86\CopyServerFileTest.exe
172.17.200.30/drpacs
Setting up...
Logging in...
DRHttpClientSetup completes setup
Application Login Success
Creating files....
Files in directory: 2
Directory size: 10.00 MB, 80.00 Mbits
Posting directory files to DRS_HTTPSERVER: 172.17.200.30 DIRECTORY: DRS\TEMP\CpyTestPOST\
from LOCAL: C:\DRS\TEMP\
..
Posting Files Succeeded
Seconds to Post File: 1.0997s
Post Directory rate: 1.819 files/sec
9.094 MB/sec, 72.748 Mbits/sec
Downloading directory files from DRS_HTTPSERVER: 172.17.200.30 DIRECTORY: DRS\TEMP\CpyTestPOST\
to LOCAL: C:\DRS\TEMP\CpyTestDOWNLOAD\
..
Downloading Files Succeeded
Seconds to Download File: 0.4584s
Download Directory rate: 4.363 files/sec
21.816 MB/sec, 174.530 Mbits/sec
Total seconds to Post and Download: 1.5669s
Clean up:
Deleted 2 files
Conducting 5 ping test to Image Server
Pinging 172.17.200.30 with 32 bytes of data:
Reply from 172.17.200.30: bytes=32 time=1ms TTL=127
Reply from 172.17.200.30: bytes=32 time=1ms TTL=127
Reply from 172.17.200.30: bytes=32 time=1ms TTL=127
Reply from 172.17.200.30: bytes=32 time=1ms TTL=127
Reply from 172.17.200.30: bytes=32 time=1ms TTL=127
Ping statistics for 172.17.200.30:
Packets: Sent = 5, Received = 5, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 1ms, Maximum = 1ms, Average = 1ms
Beginning test 20mb over 4 files.
Environment:
DRS_HTTPSERVER: 172.17.200.90/DRPacs
DRSYSCFG: C:\DRS\Guest\Guest490.ini
Running arguments:
C:\DRS\Sys\Sysx86\CopyServerFileTest.exe
172.17.200.90/DRPacs
Setting up...
Logging in...
DRHttpClientSetup completes setup
Application Login Success
Creating files....
Files in directory: 4
Directory size: 20.00 MB, 160.00 Mbits
Posting directory files to DRS_HTTPSERVER: 172.17.200.90 DIRECTORY: DRS\TEMP\CpyTestPOST\
from LOCAL: C:\DRS\TEMP\
....
Posting Files Succeeded
Seconds to Post File: 13.0706s
Post Directory rate: 0.306 files/sec
1.530 MB/sec, 12.241 Mbits/sec
Downloading directory files from DRS_HTTPSERVER: 172.17.200.90 DIRECTORY: DRS\TEMP\CpyTestPOST\
to LOCAL: C:\DRS\TEMP\CpyTestDOWNLOAD\
....
Downloading Files Succeeded
Seconds to Download File: 0.8127s
Download Directory rate: 4.922 files/sec
24.608 MB/sec, 196.864 Mbits/sec
Total seconds to Post and Download: 13.8866s
Clean up:
Deleted 4 files
Conducting 5 ping test to Image Server
Pinging 172.17.200.90 with 32 bytes of data:
Reply from 172.17.200.90: bytes=32 time=1ms TTL=127
Reply from 172.17.200.90: bytes=32 time=1ms TTL=127
Reply from 172.17.200.90: bytes=32 time=1ms TTL=127
Reply from 172.17.200.90: bytes=32 time=1ms TTL=127
Reply from 172.17.200.90: bytes=32 time=1ms TTL=127
Ping statistics for 172.17.200.90:
Packets: Sent = 5, Received = 5, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 1ms, Maximum = 1ms, Average = 1ms
==========Tenet Health Section==========
==========Beginning test to Sierra Vista Database==========
Beginning test 20mb over 4 files.
Environment:
DRS_HTTPSERVER: 172.17.200.90/DRPacs
DRSYSCFG: C:\DRS\Guest\Guest490.ini
Running arguments:
C:\DRS\Sys\Sysx86\CopyServerFileTest.exe
imaging.sierravistaregional.com/drpacs
Setting up...
Logging in...
DRHttpClientSetup completes setup
Application Login Success
Creating files....
Files in directory: 2
Directory size: 10.00 MB, 80.00 Mbits
Posting directory files to DRS_HTTPSERVER: imaging.sierravistaregional.com DIRECTORY: DRS\TEMP\CpyTestPOST\
from LOCAL: C:\DRS\TEMP\
..
Posting Files Succeeded
Seconds to Post File: 0.9300s
Post Directory rate: 2.151 files/sec
10.753 MB/sec, 86.025 Mbits/sec
Downloading directory files from DRS_HTTPSERVER: imaging.sierravistaregional.com DIRECTORY: DRS\TEMP\CpyTestPOST\
to LOCAL: C:\DRS\TEMP\CpyTestDOWNLOAD\
..
Downloading Files Succeeded
Seconds to Download File: 1.3590s
Download Directory rate: 1.472 files/sec
7.358 MB/sec, 58.865 Mbits/sec
Total seconds to Post and Download: 2.2923s
Clean up:
Deleted 2 files
Conducting 5 ping test to Image Server
Pinging imaging.sierravistaregional.com [10.102.109.40] with 32 bytes of data:
Reply from 10.102.109.40: bytes=32 time=2ms TTL=126
Reply from 10.102.109.40: bytes=32 time=2ms TTL=126
Reply from 10.102.109.40: bytes=32 time=2ms TTL=126
Reply from 10.102.109.40: bytes=32 time=2ms TTL=126
Reply from 10.102.109.40: bytes=32 time=2ms TTL=126
Ping statistics for 10.102.109.40:
Packets: Sent = 5, Received = 5, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 2ms, Maximum = 2ms, Average = 2ms
Beginning test 20mb over 4 files.
Environment:
DRS_HTTPSERVER: 172.17.200.90/DRPacs
DRSYSCFG: C:\DRS\Guest\Guest490.ini
Running arguments:
C:\DRS\Sys\Sysx86\CopyServerFileTest.exe
10.102.109.12/drpacs
Setting up...
Logging in...
DRHttpClientSetup completes setup
Application Login Success
Creating files....
Files in directory: 2
Directory size: 10.00 MB, 80.00 Mbits
Posting directory files to DRS_HTTPSERVER: 10.102.109.12 DIRECTORY: DRS\TEMP\CpyTestPOST\
from LOCAL: C:\DRS\TEMP\
..
Posting Files Succeeded
Seconds to Post File: 0.9812s
Post Directory rate: 2.038 files/sec
10.191 MB/sec, 81.530 Mbits/sec
Downloading directory files from DRS_HTTPSERVER: 10.102.109.12 DIRECTORY: DRS\TEMP\CpyTestPOST\
to LOCAL: C:\DRS\TEMP\CpyTestDOWNLOAD\
..
Downloading Files Succeeded
Seconds to Download File: 0.5011s
Download Directory rate: 3.991 files/sec
19.956 MB/sec, 159.645 Mbits/sec
Total seconds to Post and Download: 1.4853s
Clean up:
Deleted 2 files
Conducting 5 ping test to Image Server
Pinging 10.102.109.12 with 32 bytes of data:
Reply from 10.102.109.12: bytes=32 time=4ms TTL=125
Reply from 10.102.109.12: bytes=32 time=6ms TTL=125
Reply from 10.102.109.12: bytes=32 time=3ms TTL=125
Reply from 10.102.109.12: bytes=32 time=3ms TTL=125
Reply from 10.102.109.12: bytes=32 time=3ms TTL=125
Ping statistics for 10.102.109.12:
Packets: Sent = 5, Received = 5, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 3ms, Maximum = 6ms, Average = 3ms
Beginning test 20mb over 4 files.
Environment:
DRS_HTTPSERVER: 172.17.200.90/DRPacs
DRSYSCFG: C:\DRS\Guest\Guest490.ini
Running arguments:
C:\DRS\Sys\Sysx86\CopyServerFileTest.exe
10.102.109.40/DRPacs
Setting up...
Logging in...
DRHttpClientSetup completes setup
Application Login Success
Creating files....
Files in directory: 4
Directory size: 20.00 MB, 160.00 Mbits
Posting directory files to DRS_HTTPSERVER: 10.102.109.40 DIRECTORY: DRS\TEMP\CpyTestPOST\
from LOCAL: C:\DRS\TEMP\
....
Posting Files Succeeded
Seconds to Post File: 1.4136s
Post Directory rate: 2.830 files/sec
14.148 MB/sec, 113.188 Mbits/sec
Downloading directory files from DRS_HTTPSERVER: 10.102.109.40 DIRECTORY: DRS\TEMP\CpyTestPOST\
to LOCAL: C:\DRS\TEMP\CpyTestDOWNLOAD\
....
Downloading Files Succeeded
Seconds to Download File: 1.1991s
Download Directory rate: 3.336 files/sec
16.679 MB/sec, 133.434 Mbits/sec
Total seconds to Post and Download: 2.6187s
Clean up:
Deleted 4 files
Conducting 5 ping test to Image Server
Pinging 10.102.109.40 with 32 bytes of data:
Reply from 10.102.109.40: bytes=32 time=3ms TTL=126
Reply from 10.102.109.40: bytes=32 time=4ms TTL=126
Reply from 10.102.109.40: bytes=32 time=2ms TTL=126
Reply from 10.102.109.40: bytes=32 time=2ms TTL=126
Reply from 10.102.109.40: bytes=32 time=2ms TTL=126
Ping statistics for 10.102.109.40:
Packets: Sent = 5, Received = 5, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 2ms, Maximum = 4ms, Average = 2ms
==========Beginning test to Selma Carlson Database==========
Beginning test 20mb over 4 files.
Environment:
DRS_HTTPSERVER: 172.17.200.90/DRPacs
DRSYSCFG: C:\DRS\Guest\Guest490.ini
Running arguments:
C:\DRS\Sys\Sysx86\CopyServerFileTest.exe
imaging.selmacarlson.com/drpacs
Setting up...
Logging in...
DRHttpClientSetup completes setup
Application Login Success
Creating files....
Files in directory: 2
Directory size: 10.00 MB, 80.00 Mbits
Posting directory files to DRS_HTTPSERVER: imaging.selmacarlson.com DIRECTORY: DRS\TEMP\CpyTestPOST\
from LOCAL: C:\DRS\TEMP\
..
Posting Files Succeeded
Seconds to Post File: 0.4224s
Post Directory rate: 4.735 files/sec
23.674 MB/sec, 189.391 Mbits/sec
Downloading directory files from DRS_HTTPSERVER: imaging.selmacarlson.com DIRECTORY: DRS\TEMP\CpyTestPOST\
to LOCAL: C:\DRS\TEMP\CpyTestDOWNLOAD\
..
Downloading Files Succeeded
Seconds to Download File: 0.7527s
Download Directory rate: 2.657 files/sec
13.286 MB/sec, 106.290 Mbits/sec
Total seconds to Post and Download: 1.1780s
Clean up:
Deleted 2 files
Conducting 5 ping test to Image Server
Pinging imaging.selmacarlson.com [10.102.109.23] with 32 bytes of data:
Reply from 10.102.109.23: bytes=32 time=2ms TTL=126
Reply from 10.102.109.23: bytes=32 time=2ms TTL=126
Reply from 10.102.109.23: bytes=32 time=3ms TTL=126
Reply from 10.102.109.23: bytes=32 time=2ms TTL=126
Reply from 10.102.109.23: bytes=32 time=2ms TTL=126
Ping statistics for 10.102.109.23:
Packets: Sent = 5, Received = 5, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 2ms, Maximum = 3ms, Average = 2ms
Beginning test 20mb over 4 files.
Environment:
DRS_HTTPSERVER: 172.17.200.90/DRPacs
DRSYSCFG: C:\DRS\Guest\Guest490.ini
Running arguments:
C:\DRS\Sys\Sysx86\CopyServerFileTest.exe
10.102.109.14/drpacs
Setting up...
Logging in...
DRHttpClientSetup completes setup
Application Login Success
Creating files....
Files in directory: 2
Directory size: 10.00 MB, 80.00 Mbits
Posting directory files to DRS_HTTPSERVER: 10.102.109.14 DIRECTORY: DRS\TEMP\CpyTestPOST\
from LOCAL: C:\DRS\TEMP\
..
Posting Files Succeeded
Seconds to Post File: 2.6188s
Post Directory rate: 0.764 files/sec
3.819 MB/sec, 30.549 Mbits/sec
Downloading directory files from DRS_HTTPSERVER: 10.102.109.14 DIRECTORY: DRS\TEMP\CpyTestPOST\
to LOCAL: C:\DRS\TEMP\CpyTestDOWNLOAD\
..
Downloading Files Succeeded
Seconds to Download File: 2.3897s
Download Directory rate: 0.837 files/sec
4.185 MB/sec, 33.477 Mbits/sec
Total seconds to Post and Download: 5.0141s
Clean up:
Deleted 2 files
Conducting 5 ping test to Image Server
Pinging 10.102.109.14 with 32 bytes of data:
Reply from 10.102.109.14: bytes=32 time=18ms TTL=125
Reply from 10.102.109.14: bytes=32 time=3ms TTL=125
Reply from 10.102.109.14: bytes=32 time=3ms TTL=125
Reply from 10.102.109.14: bytes=32 time=3ms TTL=125
Reply from 10.102.109.14: bytes=32 time=3ms TTL=125
Ping statistics for 10.102.109.14:
Packets: Sent = 5, Received = 5, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 3ms, Maximum = 18ms, Average = 6ms
Beginning test 20mb over 4 files.
Environment:
DRS_HTTPSERVER: 172.17.200.90/DRPacs
DRSYSCFG: C:\DRS\Guest\Guest490.ini
Running arguments:
C:\DRS\Sys\Sysx86\CopyServerFileTest.exe
10.102.109.23/DRPacs
Setting up...
Logging in...
DRHttpClientSetup completes setup
Application Login Success
Creating files....
Files in directory: 4
Directory size: 20.00 MB, 160.00 Mbits
Posting directory files to DRS_HTTPSERVER: 10.102.109.23 DIRECTORY: DRS\TEMP\CpyTestPOST\
from LOCAL: C:\DRS\TEMP\
....
Posting Files Succeeded
Seconds to Post File: 0.8014s
Post Directory rate: 4.991 files/sec
24.955 MB/sec, 199.644 Mbits/sec
Downloading directory files from DRS_HTTPSERVER: 10.102.109.23 DIRECTORY: DRS\TEMP\CpyTestPOST\
to LOCAL: C:\DRS\TEMP\CpyTestDOWNLOAD\
....
Downloading Files Succeeded
Seconds to Download File: 0.8277s
Download Directory rate: 4.833 files/sec
24.164 MB/sec, 193.311 Mbits/sec
Total seconds to Post and Download: 1.6322s
Clean up:
Deleted 4 files
Conducting 5 ping test to Image Server
Pinging 10.102.109.23 with 32 bytes of data:
Reply from 10.102.109.23: bytes=32 time=2ms TTL=126
Reply from 10.102.109.23: bytes=32 time=2ms TTL=126
Reply from 10.102.109.23: bytes=32 time=2ms TTL=126
Reply from 10.102.109.23: bytes=32 time=2ms TTL=126
Reply from 10.102.109.23: bytes=32 time=3ms TTL=126
Ping statistics for 10.102.109.23:
Packets: Sent = 5, Received = 5, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 2ms, Maximum = 3ms, Average = 2ms
==========Beginning test to Twin Cities Database==========
Beginning test 20mb over 4 files.
Environment:
DRS_HTTPSERVER: 172.17.200.90/DRPacs
DRSYSCFG: C:\DRS\Guest\Guest490.ini
Running arguments:
C:\DRS\Sys\Sysx86\CopyServerFileTest.exe
imaging.twincitieshospital.com/drpacs
Setting up...
Logging in...
DRHttpClientSetup completes setup
Application Login Success
Creating files....
Files in directory: 2
Directory size: 10.00 MB, 80.00 Mbits
Posting directory files to DRS_HTTPSERVER: imaging.twincitieshospital.com DIRECTORY: DRS\TEMP\CpyTestPOST\
from LOCAL: C:\DRS\TEMP\
..
Posting Files Succeeded
Seconds to Post File: 0.8156s
Post Directory rate: 2.452 files/sec
12.261 MB/sec, 98.090 Mbits/sec
Downloading directory files from DRS_HTTPSERVER: imaging.twincitieshospital.com DIRECTORY: DRS\TEMP\CpyTestPOST\
to LOCAL: C:\DRS\TEMP\CpyTestDOWNLOAD\
..
Downloading Files Succeeded
Seconds to Download File: 0.6239s
Download Directory rate: 3.206 files/sec
16.028 MB/sec, 128.228 Mbits/sec
Total seconds to Post and Download: 1.4424s
Clean up:
Deleted 2 files
Conducting 5 ping test to Image Server
Pinging imaging.twincitieshospital.com [10.102.109.80] with 32 bytes of data:
Reply from 10.102.109.80: bytes=32 time=4ms TTL=125
Reply from 10.102.109.80: bytes=32 time=4ms TTL=125
Reply from 10.102.109.80: bytes=32 time=4ms TTL=125
Reply from 10.102.109.80: bytes=32 time=4ms TTL=125
Reply from 10.102.109.80: bytes=32 time=4ms TTL=125
Ping statistics for 10.102.109.80:
Packets: Sent = 5, Received = 5, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 4ms, Maximum = 4ms, Average = 4ms
Beginning test 20mb over 4 files.
Environment:
DRS_HTTPSERVER: 172.17.200.90/DRPacs
DRSYSCFG: C:\DRS\Guest\Guest490.ini
Running arguments:
C:\DRS\Sys\Sysx86\CopyServerFileTest.exe
10.102.109.81/drpacs
Setting up...
Logging in...
DRHttpClientSetup completes setup
Application Login Success
Creating files....
Files in directory: 2
Directory size: 10.00 MB, 80.00 Mbits
Posting directory files to DRS_HTTPSERVER: 10.102.109.81 DIRECTORY: DRS\TEMP\CpyTestPOST\
from LOCAL: C:\DRS\TEMP\
..
Posting Files Succeeded
Seconds to Post File: 0.7342s
Post Directory rate: 2.724 files/sec
13.621 MB/sec, 108.969 Mbits/sec
Downloading directory files from DRS_HTTPSERVER: 10.102.109.81 DIRECTORY: DRS\TEMP\CpyTestPOST\
to LOCAL: C:\DRS\TEMP\CpyTestDOWNLOAD\
..
Downloading Files Succeeded
Seconds to Download File: 0.7042s
Download Directory rate: 2.840 files/sec
14.200 MB/sec, 113.602 Mbits/sec
Total seconds to Post and Download: 1.4414s
Clean up:
Deleted 2 files
Conducting 5 ping test to Image Server
Pinging 10.102.109.81 with 32 bytes of data:
Reply from 10.102.109.81: bytes=32 time=4ms TTL=125
Reply from 10.102.109.81: bytes=32 time=4ms TTL=125
Reply from 10.102.109.81: bytes=32 time=4ms TTL=125
Reply from 10.102.109.81: bytes=32 time=4ms TTL=125
Reply from 10.102.109.81: bytes=32 time=4ms TTL=125
Ping statistics for 10.102.109.81:
Packets: Sent = 5, Received = 5, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 4ms, Maximum = 4ms, Average = 4ms
Beginning test 20mb over 4 files.
Environment:
DRS_HTTPSERVER: 172.17.200.90/DRPacs
DRSYSCFG: C:\DRS\Guest\Guest490.ini
Running arguments:
C:\DRS\Sys\Sysx86\CopyServerFileTest.exe
10.102.109.80/drpacs
Setting up...
Logging in...
DRHttpClientSetup completes setup
Application Login Success
Creating files....
Files in directory: 2
Directory size: 10.00 MB, 80.00 Mbits
Posting directory files to DRS_HTTPSERVER: 10.102.109.80 DIRECTORY: DRS\TEMP\CpyTestPOST\
from LOCAL: C:\DRS\TEMP\
..
Posting Files Succeeded
Seconds to Post File: 0.8151s
Post Directory rate: 2.454 files/sec
12.268 MB/sec, 98.145 Mbits/sec
Downloading directory files from DRS_HTTPSERVER: 10.102.109.80 DIRECTORY: DRS\TEMP\CpyTestPOST\
to LOCAL: C:\DRS\TEMP\CpyTestDOWNLOAD\
..
Downloading Files Succeeded
Seconds to Download File: 0.5517s
Download Directory rate: 3.625 files/sec
18.127 MB/sec, 145.016 Mbits/sec
Total seconds to Post and Download: 1.3700s
Clean up:
Deleted 2 files
Conducting 5 ping test to Image Server
Pinging 10.102.109.80 with 32 bytes of data:
Reply from 10.102.109.80: bytes=32 time=4ms TTL=125
Reply from 10.102.109.80: bytes=32 time=4ms TTL=125
Reply from 10.102.109.80: bytes=32 time=5ms TTL=125
Reply from 10.102.109.80: bytes=32 time=4ms TTL=125
Reply from 10.102.109.80: bytes=32 time=4ms TTL=125
Ping statistics for 10.102.109.80:
Packets: Sent = 5, Received = 5, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 4ms, Maximum = 5ms, Average = 4ms
==========Beginning test to French Database==========
Beginning test 20mb over 4 files.
Environment:
DRS_HTTPSERVER: 172.17.200.90/DRPacs
DRSYSCFG: C:\DRS\Guest\Guest490.ini
Running arguments:
C:\DRS\Sys\Sysx86\CopyServerFileTest.exe
fhmczda.dignityhealth.org/drpacs
Setting up...
Logging in...
DRHttpClientSetup completes setup
Application Login Success
Creating files....
Files in directory: 2
Directory size: 10.00 MB, 80.00 Mbits
Posting directory files to DRS_HTTPSERVER: fhmczda.dignityhealth.org DIRECTORY: DRS\TEMP\CpyTestPOST\
from LOCAL: C:\DRS\TEMP\
..
Posting Files Succeeded
Seconds to Post File: 0.4579s
Post Directory rate: 4.368 files/sec
21.840 MB/sec, 174.718 Mbits/sec
Downloading directory files from DRS_HTTPSERVER: fhmczda.dignityhealth.org DIRECTORY: DRS\TEMP\CpyTestPOST\
to LOCAL: C:\DRS\TEMP\CpyTestDOWNLOAD\
..
Downloading Files Succeeded
Seconds to Download File: 0.5401s
Download Directory rate: 3.703 files/sec
18.516 MB/sec, 148.131 Mbits/sec
Total seconds to Post and Download: 1.0006s
Clean up:
Deleted 2 files
Conducting 5 ping test to Image Server
Pinging fhmczda.dignityhealth.org [10.208.200.116] with 32 bytes of data:
Reply from 10.208.200.116: bytes=32 time=5ms TTL=122
Reply from 10.208.200.116: bytes=32 time=5ms TTL=122
Reply from 10.208.200.116: bytes=32 time=5ms TTL=122
Reply from 10.208.200.116: bytes=32 time=5ms TTL=122
Reply from 10.208.200.116: bytes=32 time=5ms TTL=122
Ping statistics for 10.208.200.116:
Packets: Sent = 5, Received = 5, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 5ms, Maximum = 5ms, Average = 5ms
Beginning test 20mb over 4 files.
Environment:
DRS_HTTPSERVER: 172.17.200.90/DRPacs
DRSYSCFG: C:\DRS\Guest\Guest490.ini
Running arguments:
C:\DRS\Sys\Sysx86\CopyServerFileTest.exe
10.208.200.119/drpacs
Setting up...
Logging in...
DRHttpClientSetup completes setup
Conducting 5 ping test to Image Server
Pinging 10.208.200.119 with 32 bytes of data:
Reply from 10.208.200.119: bytes=32 time=5ms TTL=122
Reply from 10.208.200.119: bytes=32 time=5ms TTL=122
Reply from 10.208.200.119: bytes=32 time=5ms TTL=122
Reply from 10.208.200.119: bytes=32 time=5ms TTL=122
Reply from 10.208.200.119: bytes=32 time=5ms TTL=122
Ping statistics for 10.208.200.119:
Packets: Sent = 5, Received = 5, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 5ms, Maximum = 5ms, Average = 5ms
Beginning test 20mb over 4 files.
Environment:
DRS_HTTPSERVER: 172.17.200.90/DRPacs
DRSYSCFG: C:\DRS\Guest\Guest490.ini
Running arguments:
C:\DRS\Sys\Sysx86\CopyServerFileTest.exe
10.208.200.116/DRPacs
Setting up...
Logging in...
DRHttpClientSetup completes setup
Application Login Success
Creating files....
Files in directory: 4
Directory size: 20.00 MB, 160.00 Mbits
Posting directory files to DRS_HTTPSERVER: 10.208.200.116 DIRECTORY: DRS\TEMP\CpyTestPOST\
from LOCAL: C:\DRS\TEMP\
....
Posting Files Succeeded
Seconds to Post File: 0.8445s
Post Directory rate: 4.736 files/sec
23.682 MB/sec, 189.456 Mbits/sec
Downloading directory files from DRS_HTTPSERVER: 10.208.200.116 DIRECTORY: DRS\TEMP\CpyTestPOST\
to LOCAL: C:\DRS\TEMP\CpyTestDOWNLOAD\
....
Downloading Files Succeeded
Seconds to Download File: 0.9564s
Download Directory rate: 4.182 files/sec
20.911 MB/sec, 167.287 Mbits/sec
Total seconds to Post and Download: 1.8037s
Clean up:
Deleted 4 files
Conducting 5 ping test to Image Server
Pinging 10.208.200.116 with 32 bytes of data:
Reply from 10.208.200.116: bytes=32 time=5ms TTL=122
Reply from 10.208.200.116: bytes=32 time=4ms TTL=122
Reply from 10.208.200.116: bytes=32 time=5ms TTL=122
Reply from 10.208.200.116: bytes=32 time=5ms TTL=122
Reply from 10.208.200.116: bytes=32 time=5ms TTL=122
Ping statistics for 10.208.200.116:
Packets: Sent = 5, Received = 5, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 4ms, Maximum = 5ms, Average = 4ms
==========Beginning test to Arroyo Grande Database==========
Beginning test 20mb over 4 files.
Environment:
DRS_HTTPSERVER: 172.17.200.90/DRPacs
DRSYSCFG: C:\DRS\Guest\Guest490.ini
Running arguments:
C:\DRS\Sys\Sysx86\CopyServerFileTest.exe
agchzda.dignityhealth.org/drpacs
Setting up...
Logging in...
DRHttpClientSetup completes setup
Application Login Success
Creating files....
Files in directory: 2
Directory size: 10.00 MB, 80.00 Mbits
Posting directory files to DRS_HTTPSERVER: agchzda.dignityhealth.org DIRECTORY: DRS\TEMP\CpyTestPOST\
from LOCAL: C:\DRS\TEMP\
..
Posting Files Succeeded
Seconds to Post File: 0.5201s
Post Directory rate: 3.846 files/sec
19.228 MB/sec, 153.820 Mbits/sec
Downloading directory files from DRS_HTTPSERVER: agchzda.dignityhealth.org DIRECTORY: DRS\TEMP\CpyTestPOST\
to LOCAL: C:\DRS\TEMP\CpyTestDOWNLOAD\
..
Downloading Files Succeeded
Seconds to Download File: 0.8234s
Download Directory rate: 2.429 files/sec
12.145 MB/sec, 97.163 Mbits/sec
Total seconds to Post and Download: 1.3477s
Clean up:
Deleted 2 files
Conducting 5 ping test to Image Server
Pinging agchzda.dignityhealth.org [10.208.200.27] with 32 bytes of data:
Reply from 10.208.200.27: bytes=32 time=5ms TTL=122
Reply from 10.208.200.27: bytes=32 time=5ms TTL=122
Reply from 10.208.200.27: bytes=32 time=33ms TTL=122
Reply from 10.208.200.27: bytes=32 time=5ms TTL=122
Reply from 10.208.200.27: bytes=32 time=5ms TTL=122
Ping statistics for 10.208.200.27:
Packets: Sent = 5, Received = 5, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 5ms, Maximum = 33ms, Average = 10ms
Beginning test 20mb over 4 files.
Environment:
DRS_HTTPSERVER: 172.17.200.90/DRPacs
DRSYSCFG: C:\DRS\Guest\Guest490.ini
Running arguments:
C:\DRS\Sys\Sysx86\CopyServerFileTest.exe
10.208.200.42/drpacs
Setting up...
Logging in...
DRHttpClientSetup completes setup
Conducting 5 ping test to Image Server
Pinging 10.208.200.42 with 32 bytes of data:
Reply from 10.208.200.42: bytes=32 time=5ms TTL=122
Reply from 10.208.200.42: bytes=32 time=5ms TTL=122
Reply from 10.208.200.42: bytes=32 time=5ms TTL=122
Reply from 10.208.200.42: bytes=32 time=5ms TTL=122
Reply from 10.208.200.42: bytes=32 time=5ms TTL=122
Ping statistics for 10.208.200.42:
Packets: Sent = 5, Received = 5, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 5ms, Maximum = 5ms, Average = 5ms
Beginning test 20mb over 4 files.
Environment:
DRS_HTTPSERVER: 172.17.200.90/DRPacs
DRSYSCFG: C:\DRS\Guest\Guest490.ini
Running arguments:
C:\DRS\Sys\Sysx86\CopyServerFileTest.exe
10.208.200.27/drpacs
Setting up...
Logging in...
DRHttpClientSetup completes setup
Application Login Success
Creating files....
Files in directory: 2
Directory size: 10.00 MB, 80.00 Mbits
Posting directory files to DRS_HTTPSERVER: 10.208.200.27 DIRECTORY: DRS\TEMP\CpyTestPOST\
from LOCAL: C:\DRS\TEMP\
..
Posting Files Succeeded
Seconds to Post File: 0.4625s
Post Directory rate: 4.324 files/sec
21.620 MB/sec, 172.964 Mbits/sec
Downloading directory files from DRS_HTTPSERVER: 10.208.200.27 DIRECTORY: DRS\TEMP\CpyTestPOST\
to LOCAL: C:\DRS\TEMP\CpyTestDOWNLOAD\
..
Downloading Files Succeeded
Seconds to Download File: 0.4239s
Download Directory rate: 4.718 files/sec
23.590 MB/sec, 188.719 Mbits/sec
Total seconds to Post and Download: 0.8931s
Clean up:
Deleted 2 files
Conducting 5 ping test to Image Server
Pinging 10.208.200.27 with 32 bytes of data:
Reply from 10.208.200.27: bytes=32 time=13ms TTL=122
Reply from 10.208.200.27: bytes=32 time=9ms TTL=122
Reply from 10.208.200.27: bytes=32 time=5ms TTL=122
Reply from 10.208.200.27: bytes=32 time=6ms TTL=122
Reply from 10.208.200.27: bytes=32 time=5ms TTL=122
Ping statistics for 10.208.200.27:
Packets: Sent = 5, Received = 5, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 5ms, Maximum = 13ms, Average = 7ms
==========Beginning test Marian Database==========
Beginning test 20mb over 4 files.
Environment:
DRS_HTTPSERVER: 172.17.200.90/DRPacs
DRSYSCFG: C:\DRS\Guest\Guest490.ini
Running arguments:
C:\DRS\Sys\Sysx86\CopyServerFileTest.exe
mrmczda.dignityhealth.org/drpacs
Setting up...
Logging in...
DRHttpClientSetup completes setup
Application Login Success
Creating files....
Files in directory: 2
Directory size: 10.00 MB, 80.00 Mbits
Posting directory files to DRS_HTTPSERVER: mrmczda.dignityhealth.org DIRECTORY: DRS\TEMP\CpyTestPOST\
from LOCAL: C:\DRS\TEMP\
..
Posting Files Succeeded
Seconds to Post File: 1.3528s
Post Directory rate: 1.478 files/sec
7.392 MB/sec, 59.138 Mbits/sec
Downloading directory files from DRS_HTTPSERVER: mrmczda.dignityhealth.org DIRECTORY: DRS\TEMP\CpyTestPOST\
to LOCAL: C:\DRS\TEMP\CpyTestDOWNLOAD\
..
Downloading Files Succeeded
Seconds to Download File: 0.9548s
Download Directory rate: 2.095 files/sec
10.473 MB/sec, 83.786 Mbits/sec
Total seconds to Post and Download: 2.3108s
Clean up:
Deleted 2 files
Conducting 5 ping test to Image Server
Pinging mrmczda.dignityhealth.org [10.212.200.80] with 32 bytes of data:
Reply from 10.212.200.80: bytes=32 time=6ms TTL=122
Reply from 10.212.200.80: bytes=32 time=5ms TTL=122
Reply from 10.212.200.80: bytes=32 time=5ms TTL=122
Reply from 10.212.200.80: bytes=32 time=5ms TTL=122
Reply from 10.212.200.80: bytes=32 time=5ms TTL=122
Ping statistics for 10.212.200.80:
Packets: Sent = 5, Received = 5, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 5ms, Maximum = 6ms, Average = 5ms
Beginning test 20mb over 4 files.
Environment: