Batch processing to achieve LAN speed test / network upload and download speed test
It is used to detect the transmission speed of WIFI module / wired network card / RJ45 or LAN
---
Iperf is a network performance testing tool. Iperf can test the maximum TCP and UDP bandwidth performance. Iperf has a variety of parameters and UDP characteristics, which can be adjusted as needed. Iperf can report bandwidth, delay jitter and packet loss. It comes from abroad and uses BAT to simplify the software. It has no technical content, just to share it and facilitate everyone's use. After the network is completed, test it, Prevent unnecessary trouble.
---
At the end of the article, you can download the full version of the source code file for free
usage method
After copying the following code, save it as a *. bat batch file for execution; Or create a new notepad file, paste the copied code, change the file name suffix to *. bat, and double-click to execute;
Test ideas
1. The server and the equipment to be tested need to be under the same LAN, that is, connected to the same router;
2. The server is set to PC, and the client is Android device, which can test the download speed;
3. The server is set as Android device and the client is PC, which can test the upload speed;
test method
1. Prepare a router without connecting to the external network;
2. Both the PC and the android device to be tested are connected to the LAN port of the router or the same WIFI AP to ensure that both devices recognize the network and record the IP address of the server (you can enter: ipconfig /all in CMD);
3. Command to open the server: iperf -s
4. Command to open the client: iperf - C%ip% - I 1 - W 1m - t 60 (60 for 60 seconds)
5. Test the download rate of Android device: start the server on the PC side, and input the instructions of the client on the Android device side;
6. Test the upload rate of Android device: start the server at the Android device end, and input the client instruction at the PC end;
Test download speed steps
01. Turn on the iperf server on the computer side_ V1.0_20180321.bat
@echo off :start if not exist .\iperf.exe goto noIperf set str=Computer side on iperf The server_V1.0_20180321 By HRD COLOR 1F title %str% echo. echo ====================================================================== echo. echo %str% echo. echo ====================================================================== echo. echo Starting service,please wait a moment... echo. iperf.exe -s pause goto :eof :noIperf color cf echo. echo Not found iperf.exe File, please confirm and try again... echo. pause goto start
Running screenshot
02. Start Android device as client
Test equipment installation iperf_206.apk, and enter iperf - C% IP% - I 1 - W 1m - t 60 (60 represents 60 seconds of test),% IP% enter the IP address of the PC, such as:
iperf -c 192.168.1.101 -i 1 -w 1M -t 60
If you want to test multiple times to obtain the average value, you can execute multiple times;
Test upload speed steps
01. Running server on Android device
Execute iperf -s on the Android iperf interface, and then click the open button (close button) to take effect;
02. Running client on PC
After ipconfig /all obtains the local IP address, run 04. Download the computer-side test data after the Android side starts the service_ V1.1_20180428.bat, input the IP address according to the interface prompt. If the IP address is 192.168.1.53, only 1.53 will be input;
@ECHO off set str=Download the test data on the computer after the service is started on the Android terminal_V1.0_20180321 By HRD title %str% :start cls ECHO. ECHO ====================================================================== ECHO. ECHO %str% ECHO. ECHO ====================================================================== ECHO. color 1f ECHO. ECHO Please enter an Android terminal IP Address, e.g. 192.168.1.101(Enter the Android device about status to view IP) ECHO Or in Iperf View on the interface of IP address ECHO. ECHO Please enter IP Address, e.g. 192.168.[XXX].[XXX]= ECHO. ECHO (Remarks: 192.168.1.100 Enter only the last [XXX].[XXX] Content of [1].[100] ,The front will be filled automatically) ECHO. ECHO Please enter the last two digits with.separate: ECHO For example: 1.101 set /p IP0= ECHO. ECHO IP=192.168.%IP0% ECHO. echo. echo Start of the first test... iperf -c 192.168.%IP0% -i 1 -w 1M -t 60 timeout 15 echo. echo Start of the second test... iperf -c 192.168.%IP0% -i 1 -w 1M -t 60 timeout 15 echo. echo Start of the 3rd Test... iperf -c 192.168.%IP0% -i 1 -w 1M -t 60 timeout 15 echo. echo Start of the 4th test... iperf -c 192.168.%IP0% -i 1 -w 1M -t 60 timeout 15 echo. echo Start of the 5th test... iperf -c 192.168.%IP0% -i 1 -w 1M -t 60 ECHO. ECHO The test is completed. Please view the test results... color 2f pause goto start
Run log
====================================================================== Download the test data on the computer after the service is started on the Android terminal_V1.0_20180321 By HRD ====================================================================== Please enter an Android terminal IP Address, e.g. 192.168.1.101(Enter the Android device about status to view IP) Or in Iperf View on the interface of IP address Please enter IP Address, e.g. 192.168.[XXX].[XXX]= (Remarks: 192.168.1.100 Enter only the last [XXX].[XXX] Content of [1].[100] ,front Please enter the last two digits with.separate: For example: 1.101 1.53 IP=192.168.1.53 Start of the first test... ------------------------------------------------------------ Client connecting to 192.168.1.53, TCP port 5001 TCP window size: 1.00 MByte ------------------------------------------------------------ [332] local 192.168.1.53 port 54884 connected with 192.168.1.53 port 5001 [ ID] Interval Transfer Bandwidth [332] 0.0- 1.0 sec 400 MBytes 3.35 Gbits/sec [332] 1.0- 2.0 sec 403 MBytes 3.38 Gbits/sec [332] 2.0- 3.0 sec 405 MBytes 3.40 Gbits/sec [332] 3.0- 4.0 sec 409 MBytes 3.43 Gbits/sec [332] 4.0- 5.0 sec 395 MBytes 3.31 Gbits/sec [332] 5.0- 6.0 sec 405 MBytes 3.40 Gbits/sec [332] 6.0- 7.0 sec 404 MBytes 3.39 Gbits/sec [332] 7.0- 8.0 sec 400 MBytes 3.36 Gbits/sec [332] 8.0- 9.0 sec 382 MBytes 3.20 Gbits/sec [332] 9.0-10.0 sec 373 MBytes 3.13 Gbits/sec [332] 10.0-11.0 sec 385 MBytes 3.23 Gbits/sec [332] 11.0-12.0 sec 367 MBytes 3.08 Gbits/sec [332] 12.0-13.0 sec 351 MBytes 2.95 Gbits/sec [332] 13.0-14.0 sec 387 MBytes 3.25 Gbits/sec [332] 14.0-15.0 sec 386 MBytes 3.24 Gbits/sec [332] 15.0-16.0 sec 349 MBytes 2.93 Gbits/sec [332] 16.0-17.0 sec 374 MBytes 3.14 Gbits/sec [332] 17.0-18.0 sec 389 MBytes 3.26 Gbits/sec [332] 18.0-19.0 sec 392 MBytes 3.29 Gbits/sec [332] 19.0-20.0 sec 396 MBytes 3.32 Gbits/sec [ ID] Interval Transfer Bandwidth [332] 20.0-21.0 sec 387 MBytes 3.25 Gbits/sec [332] 21.0-22.0 sec 391 MBytes 3.28 Gbits/sec [332] 22.0-23.0 sec 396 MBytes 3.32 Gbits/sec [332] 23.0-24.0 sec 395 MBytes 3.31 Gbits/sec [332] 24.0-25.0 sec 401 MBytes 3.36 Gbits/sec [332] 25.0-26.0 sec 403 MBytes 3.38 Gbits/sec [332] 26.0-27.0 sec 387 MBytes 3.25 Gbits/sec [332] 27.0-28.0 sec 393 MBytes 3.30 Gbits/sec [332] 28.0-29.0 sec 396 MBytes 3.32 Gbits/sec [332] 29.0-30.0 sec 399 MBytes 3.34 Gbits/sec [332] 30.0-31.0 sec 399 MBytes 3.35 Gbits/sec [332] 31.0-32.0 sec 373 MBytes 3.13 Gbits/sec [332] 32.0-33.0 sec 394 MBytes 3.31 Gbits/sec [332] 33.0-34.0 sec 396 MBytes 3.32 Gbits/sec [332] 34.0-35.0 sec 395 MBytes 3.31 Gbits/sec [332] 35.0-36.0 sec 402 MBytes 3.38 Gbits/sec [332] 36.0-37.0 sec 406 MBytes 3.41 Gbits/sec [332] 37.0-38.0 sec 390 MBytes 3.27 Gbits/sec [332] 38.0-39.0 sec 383 MBytes 3.21 Gbits/sec [332] 39.0-40.0 sec 390 MBytes 3.27 Gbits/sec [ ID] Interval Transfer Bandwidth [332] 40.0-41.0 sec 385 MBytes 3.23 Gbits/sec [332] 41.0-42.0 sec 384 MBytes 3.22 Gbits/sec [332] 42.0-43.0 sec 384 MBytes 3.22 Gbits/sec [332] 43.0-44.0 sec 389 MBytes 3.27 Gbits/sec [332] 44.0-45.0 sec 382 MBytes 3.20 Gbits/sec [332] 45.0-46.0 sec 389 MBytes 3.27 Gbits/sec [332] 46.0-47.0 sec 388 MBytes 3.25 Gbits/sec [332] 47.0-48.0 sec 387 MBytes 3.25 Gbits/sec [332] 48.0-49.0 sec 396 MBytes 3.32 Gbits/sec [332] 49.0-50.0 sec 361 MBytes 3.03 Gbits/sec [332] 50.0-51.0 sec 382 MBytes 3.20 Gbits/sec [332] 51.0-52.0 sec 386 MBytes 3.23 Gbits/sec [332] 52.0-53.0 sec 378 MBytes 3.17 Gbits/sec [332] 53.0-54.0 sec 394 MBytes 3.30 Gbits/sec [332] 54.0-55.0 sec 386 MBytes 3.24 Gbits/sec [332] 55.0-56.0 sec 392 MBytes 3.28 Gbits/sec [332] 56.0-57.0 sec 391 MBytes 3.28 Gbits/sec [332] 57.0-58.0 sec 384 MBytes 3.22 Gbits/sec [332] 58.0-59.0 sec 382 MBytes 3.20 Gbits/sec [332] 59.0-60.0 sec 383 MBytes 3.21 Gbits/sec [ ID] Interval Transfer Bandwidth [332] 0.0-60.0 sec 22.8 GBytes 3.26 Gbits/sec Wait 0 seconds and press a key to continue ... Start of the second test... ------------------------------------------------------------ Client connecting to 192.168.1.53, TCP port 5001 TCP window size: 1.00 MByte ------------------------------------------------------------ [332] local 192.168.1.53 port 54980 connected with 192.168.1.53 port 5001 [ ID] Interval Transfer Bandwidth [332] 0.0- 1.0 sec 389 MBytes 3.26 Gbits/sec [332] 1.0- 2.0 sec 379 MBytes 3.18 Gbits/sec [332] 2.0- 3.0 sec 388 MBytes 3.26 Gbits/sec [332] 3.0- 4.0 sec 385 MBytes 3.23 Gbits/sec [332] 4.0- 5.0 sec 394 MBytes 3.31 Gbits/sec [332] 5.0- 6.0 sec 395 MBytes 3.32 Gbits/sec [332] 6.0- 7.0 sec 393 MBytes 3.30 Gbits/sec [332] 7.0- 8.0 sec 388 MBytes 3.25 Gbits/sec [332] 8.0- 9.0 sec 400 MBytes 3.35 Gbits/sec [332] 9.0-10.0 sec 400 MBytes 3.35 Gbits/sec [332] 10.0-11.0 sec 383 MBytes 3.22 Gbits/sec [332] 11.0-12.0 sec 396 MBytes 3.32 Gbits/sec [332] 12.0-13.0 sec 395 MBytes 3.31 Gbits/sec [332] 13.0-14.0 sec 392 MBytes 3.29 Gbits/sec [332] 14.0-15.0 sec 389 MBytes 3.26 Gbits/sec [332] 15.0-16.0 sec 390 MBytes 3.27 Gbits/sec [332] 16.0-17.0 sec 393 MBytes 3.30 Gbits/sec [332] 17.0-18.0 sec 397 MBytes 3.33 Gbits/sec [332] 18.0-19.0 sec 409 MBytes 3.43 Gbits/sec [332] 19.0-20.0 sec 401 MBytes 3.37 Gbits/sec [ ID] Interval Transfer Bandwidth [332] 20.0-21.0 sec 398 MBytes 3.34 Gbits/sec [332] 21.0-22.0 sec 393 MBytes 3.30 Gbits/sec [332] 22.0-23.0 sec 401 MBytes 3.37 Gbits/sec [332] 23.0-24.0 sec 390 MBytes 3.27 Gbits/sec [332] 24.0-25.0 sec 398 MBytes 3.34 Gbits/sec [332] 25.0-26.0 sec 390 MBytes 3.27 Gbits/sec [332] 26.0-27.0 sec 403 MBytes 3.38 Gbits/sec [332] 27.0-28.0 sec 372 MBytes 3.12 Gbits/sec [332] 28.0-29.0 sec 406 MBytes 3.41 Gbits/sec [332] 29.0-30.0 sec 368 MBytes 3.09 Gbits/sec [332] 30.0-31.0 sec 393 MBytes 3.30 Gbits/sec [332] 31.0-32.0 sec 385 MBytes 3.23 Gbits/sec [332] 32.0-33.0 sec 384 MBytes 3.22 Gbits/sec [332] 33.0-34.0 sec 388 MBytes 3.25 Gbits/sec [332] 34.0-35.0 sec 389 MBytes 3.26 Gbits/sec [332] 35.0-36.0 sec 395 MBytes 3.32 Gbits/sec [332] 36.0-37.0 sec 395 MBytes 3.31 Gbits/sec [332] 37.0-38.0 sec 397 MBytes 3.33 Gbits/sec [332] 38.0-39.0 sec 393 MBytes 3.29 Gbits/sec [332] 39.0-40.0 sec 362 MBytes 3.04 Gbits/sec [ ID] Interval Transfer Bandwidth [332] 40.0-41.0 sec 400 MBytes 3.35 Gbits/sec [332] 41.0-42.0 sec 402 MBytes 3.37 Gbits/sec [332] 42.0-43.0 sec 395 MBytes 3.32 Gbits/sec [332] 43.0-44.0 sec 399 MBytes 3.35 Gbits/sec [332] 44.0-45.0 sec 398 MBytes 3.34 Gbits/sec [332] 45.0-46.0 sec 377 MBytes 3.17 Gbits/sec [332] 46.0-47.0 sec 401 MBytes 3.36 Gbits/sec [332] 47.0-48.0 sec 405 MBytes 3.40 Gbits/sec [332] 48.0-49.0 sec 406 MBytes 3.40 Gbits/sec [332] 49.0-50.0 sec 397 MBytes 3.33 Gbits/sec [332] 50.0-51.0 sec 409 MBytes 3.43 Gbits/sec [332] 51.0-52.0 sec 407 MBytes 3.41 Gbits/sec [332] 52.0-53.0 sec 403 MBytes 3.38 Gbits/sec [332] 53.0-54.0 sec 408 MBytes 3.42 Gbits/sec [332] 54.0-55.0 sec 408 MBytes 3.43 Gbits/sec [332] 55.0-56.0 sec 403 MBytes 3.38 Gbits/sec [332] 56.0-57.0 sec 402 MBytes 3.37 Gbits/sec [332] 57.0-58.0 sec 404 MBytes 3.39 Gbits/sec [332] 58.0-59.0 sec 420 MBytes 3.53 Gbits/sec [332] 59.0-60.0 sec 394 MBytes 3.31 Gbits/sec [ ID] Interval Transfer Bandwidth [332] 0.0-60.0 sec 23.1 GBytes 3.31 Gbits/sec Wait 0 seconds and press a key to continue ... Start of the 3rd Test... ------------------------------------------------------------ Client connecting to 192.168.1.53, TCP port 5001 TCP window size: 1.00 MByte ------------------------------------------------------------ [332] local 192.168.1.53 port 55060 connected with 192.168.1.53 port 5001 [ ID] Interval Transfer Bandwidth [332] 0.0- 1.0 sec 399 MBytes 3.35 Gbits/sec [332] 1.0- 2.0 sec 402 MBytes 3.38 Gbits/sec [332] 2.0- 3.0 sec 409 MBytes 3.43 Gbits/sec [332] 3.0- 4.0 sec 396 MBytes 3.32 Gbits/sec [332] 4.0- 5.0 sec 414 MBytes 3.47 Gbits/sec [332] 5.0- 6.0 sec 398 MBytes 3.34 Gbits/sec [332] 6.0- 7.0 sec 405 MBytes 3.40 Gbits/sec [332] 7.0- 8.0 sec 394 MBytes 3.31 Gbits/sec [332] 8.0- 9.0 sec 402 MBytes 3.37 Gbits/sec [332] 9.0-10.0 sec 401 MBytes 3.37 Gbits/sec [332] 10.0-11.0 sec 402 MBytes 3.38 Gbits/sec [332] 11.0-12.0 sec 408 MBytes 3.42 Gbits/sec [332] 12.0-13.0 sec 410 MBytes 3.44 Gbits/sec [332] 13.0-14.0 sec 420 MBytes 3.52 Gbits/sec [332] 14.0-15.0 sec 400 MBytes 3.36 Gbits/sec [332] 15.0-16.0 sec 407 MBytes 3.41 Gbits/sec [332] 16.0-17.0 sec 394 MBytes 3.31 Gbits/sec [332] 17.0-18.0 sec 402 MBytes 3.37 Gbits/sec [332] 18.0-19.0 sec 404 MBytes 3.39 Gbits/sec [332] 19.0-20.0 sec 381 MBytes 3.19 Gbits/sec [ ID] Interval Transfer Bandwidth [332] 20.0-21.0 sec 398 MBytes 3.34 Gbits/sec [332] 21.0-22.0 sec 404 MBytes 3.39 Gbits/sec [332] 22.0-23.0 sec 410 MBytes 3.44 Gbits/sec [332] 23.0-24.0 sec 410 MBytes 3.44 Gbits/sec [332] 24.0-25.0 sec 405 MBytes 3.40 Gbits/sec [332] 25.0-26.0 sec 365 MBytes 3.07 Gbits/sec [332] 26.0-27.0 sec 405 MBytes 3.40 Gbits/sec [332] 27.0-28.0 sec 389 MBytes 3.27 Gbits/sec [332] 28.0-29.0 sec 406 MBytes 3.40 Gbits/sec [332] 29.0-30.0 sec 378 MBytes 3.17 Gbits/sec [332] 30.0-31.0 sec 399 MBytes 3.35 Gbits/sec [332] 31.0-32.0 sec 393 MBytes 3.29 Gbits/sec [332] 32.0-33.0 sec 367 MBytes 3.08 Gbits/sec [332] 33.0-34.0 sec 408 MBytes 3.42 Gbits/sec [332] 34.0-35.0 sec 400 MBytes 3.36 Gbits/sec [332] 35.0-36.0 sec 402 MBytes 3.37 Gbits/sec [332] 36.0-37.0 sec 405 MBytes 3.40 Gbits/sec [332] 37.0-38.0 sec 381 MBytes 3.19 Gbits/sec [332] 38.0-39.0 sec 396 MBytes 3.32 Gbits/sec [332] 39.0-40.0 sec 390 MBytes 3.27 Gbits/sec [ ID] Interval Transfer Bandwidth [332] 40.0-41.0 sec 388 MBytes 3.25 Gbits/sec [332] 41.0-42.0 sec 400 MBytes 3.35 Gbits/sec [332] 42.0-43.0 sec 392 MBytes 3.29 Gbits/sec [332] 43.0-44.0 sec 392 MBytes 3.29 Gbits/sec [332] 44.0-45.0 sec 404 MBytes 3.39 Gbits/sec [332] 45.0-46.0 sec 379 MBytes 3.18 Gbits/sec [332] 46.0-47.0 sec 368 MBytes 3.09 Gbits/sec [332] 47.0-48.0 sec 398 MBytes 3.34 Gbits/sec [332] 48.0-49.0 sec 399 MBytes 3.34 Gbits/sec [332] 49.0-50.0 sec 361 MBytes 3.03 Gbits/sec [332] 50.0-51.0 sec 363 MBytes 3.04 Gbits/sec [332] 51.0-52.0 sec 408 MBytes 3.42 Gbits/sec [332] 52.0-53.0 sec 415 MBytes 3.48 Gbits/sec [332] 53.0-54.0 sec 397 MBytes 3.33 Gbits/sec [332] 54.0-55.0 sec 403 MBytes 3.38 Gbits/sec [332] 55.0-56.0 sec 411 MBytes 3.44 Gbits/sec [332] 56.0-57.0 sec 403 MBytes 3.38 Gbits/sec [332] 57.0-58.0 sec 406 MBytes 3.41 Gbits/sec [332] 58.0-59.0 sec 379 MBytes 3.18 Gbits/sec [332] 59.0-60.0 sec 418 MBytes 3.51 Gbits/sec [ ID] Interval Transfer Bandwidth [332] 0.0-60.0 sec 23.3 GBytes 3.33 Gbits/sec Wait 0 seconds and press a key to continue ... Start of the 4th test... ------------------------------------------------------------ Client connecting to 192.168.1.53, TCP port 5001 TCP window size: 1.00 MByte ------------------------------------------------------------ [332] local 192.168.1.53 port 55155 connected with 192.168.1.53 port 5001 [ ID] Interval Transfer Bandwidth [332] 0.0- 1.0 sec 401 MBytes 3.36 Gbits/sec [332] 1.0- 2.0 sec 390 MBytes 3.27 Gbits/sec [332] 2.0- 3.0 sec 373 MBytes 3.13 Gbits/sec [332] 3.0- 4.0 sec 395 MBytes 3.32 Gbits/sec [332] 4.0- 5.0 sec 394 MBytes 3.31 Gbits/sec [332] 5.0- 6.0 sec 396 MBytes 3.32 Gbits/sec [332] 6.0- 7.0 sec 400 MBytes 3.36 Gbits/sec [332] 7.0- 8.0 sec 394 MBytes 3.30 Gbits/sec [332] 8.0- 9.0 sec 381 MBytes 3.19 Gbits/sec [332] 9.0-10.0 sec 374 MBytes 3.14 Gbits/sec [332] 10.0-11.0 sec 398 MBytes 3.34 Gbits/sec [332] 11.0-12.0 sec 368 MBytes 3.09 Gbits/sec [332] 12.0-13.0 sec 372 MBytes 3.12 Gbits/sec [332] 13.0-14.0 sec 391 MBytes 3.28 Gbits/sec [332] 14.0-15.0 sec 389 MBytes 3.26 Gbits/sec [332] 15.0-16.0 sec 388 MBytes 3.26 Gbits/sec [332] 16.0-17.0 sec 388 MBytes 3.26 Gbits/sec [332] 17.0-18.0 sec 390 MBytes 3.28 Gbits/sec [332] 18.0-19.0 sec 376 MBytes 3.16 Gbits/sec [332] 19.0-20.0 sec 333 MBytes 2.80 Gbits/sec [ ID] Interval Transfer Bandwidth [332] 20.0-21.0 sec 400 MBytes 3.35 Gbits/sec [332] 21.0-22.0 sec 404 MBytes 3.39 Gbits/sec [332] 22.0-23.0 sec 405 MBytes 3.40 Gbits/sec [332] 23.0-24.0 sec 394 MBytes 3.30 Gbits/sec [332] 24.0-25.0 sec 362 MBytes 3.04 Gbits/sec [332] 25.0-26.0 sec 371 MBytes 3.12 Gbits/sec [332] 26.0-27.0 sec 405 MBytes 3.40 Gbits/sec [332] 27.0-28.0 sec 393 MBytes 3.30 Gbits/sec [332] 28.0-29.0 sec 391 MBytes 3.28 Gbits/sec [332] 29.0-30.0 sec 366 MBytes 3.07 Gbits/sec [332] 30.0-31.0 sec 387 MBytes 3.25 Gbits/sec [332] 31.0-32.0 sec 363 MBytes 3.05 Gbits/sec [332] 32.0-33.0 sec 327 MBytes 2.74 Gbits/sec [332] 33.0-34.0 sec 397 MBytes 3.33 Gbits/sec [332] 34.0-35.0 sec 395 MBytes 3.32 Gbits/sec [332] 35.0-36.0 sec 396 MBytes 3.32 Gbits/sec [332] 36.0-37.0 sec 399 MBytes 3.35 Gbits/sec [332] 37.0-38.0 sec 397 MBytes 3.33 Gbits/sec [332] 38.0-39.0 sec 394 MBytes 3.30 Gbits/sec [332] 39.0-40.0 sec 344 MBytes 2.88 Gbits/sec [ ID] Interval Transfer Bandwidth [332] 40.0-41.0 sec 397 MBytes 3.33 Gbits/sec [332] 41.0-42.0 sec 363 MBytes 3.05 Gbits/sec [332] 42.0-43.0 sec 394 MBytes 3.30 Gbits/sec [332] 43.0-44.0 sec 359 MBytes 3.01 Gbits/sec [332] 44.0-45.0 sec 339 MBytes 2.84 Gbits/sec [332] 45.0-46.0 sec 369 MBytes 3.09 Gbits/sec [332] 46.0-47.0 sec 393 MBytes 3.30 Gbits/sec [332] 47.0-48.0 sec 401 MBytes 3.37 Gbits/sec [332] 48.0-49.0 sec 394 MBytes 3.31 Gbits/sec [332] 49.0-50.0 sec 387 MBytes 3.25 Gbits/sec [332] 50.0-51.0 sec 393 MBytes 3.30 Gbits/sec [332] 51.0-52.0 sec 396 MBytes 3.32 Gbits/sec [332] 52.0-53.0 sec 398 MBytes 3.34 Gbits/sec [332] 53.0-54.0 sec 398 MBytes 3.34 Gbits/sec [332] 54.0-55.0 sec 393 MBytes 3.30 Gbits/sec [332] 55.0-56.0 sec 391 MBytes 3.28 Gbits/sec [332] 56.0-57.0 sec 394 MBytes 3.31 Gbits/sec [332] 57.0-58.0 sec 387 MBytes 3.25 Gbits/sec [332] 58.0-59.0 sec 394 MBytes 3.31 Gbits/sec [332] 59.0-60.0 sec 391 MBytes 3.28 Gbits/sec [ ID] Interval Transfer Bandwidth [332] 0.0-60.0 sec 22.6 GBytes 3.23 Gbits/sec Wait 0 seconds and press a key to continue ... Start of the 5th test... ------------------------------------------------------------ Client connecting to 192.168.1.53, TCP port 5001 TCP window size: 1.00 MByte ------------------------------------------------------------ [352] local 192.168.1.53 port 55235 connected with 192.168.1.53 port 5001 [ ID] Interval Transfer Bandwidth [352] 0.0- 1.0 sec 380 MBytes 3.19 Gbits/sec [352] 1.0- 2.0 sec 376 MBytes 3.15 Gbits/sec [352] 2.0- 3.0 sec 380 MBytes 3.18 Gbits/sec [352] 3.0- 4.0 sec 377 MBytes 3.16 Gbits/sec [352] 4.0- 5.0 sec 374 MBytes 3.13 Gbits/sec [352] 5.0- 6.0 sec 320 MBytes 2.69 Gbits/sec [352] 6.0- 7.0 sec 309 MBytes 2.60 Gbits/sec [352] 7.0- 8.0 sec 376 MBytes 3.15 Gbits/sec [352] 8.0- 9.0 sec 379 MBytes 3.18 Gbits/sec [352] 9.0-10.0 sec 369 MBytes 3.10 Gbits/sec [352] 10.0-11.0 sec 377 MBytes 3.16 Gbits/sec [352] 11.0-12.0 sec 373 MBytes 3.13 Gbits/sec [352] 12.0-13.0 sec 371 MBytes 3.11 Gbits/sec [352] 13.0-14.0 sec 357 MBytes 3.00 Gbits/sec [352] 14.0-15.0 sec 358 MBytes 3.00 Gbits/sec [352] 15.0-16.0 sec 376 MBytes 3.15 Gbits/sec [352] 16.0-17.0 sec 371 MBytes 3.11 Gbits/sec [352] 17.0-18.0 sec 367 MBytes 3.07 Gbits/sec [352] 18.0-19.0 sec 375 MBytes 3.15 Gbits/sec [352] 19.0-20.0 sec 373 MBytes 3.13 Gbits/sec [ ID] Interval Transfer Bandwidth [352] 20.0-21.0 sec 364 MBytes 3.06 Gbits/sec [352] 21.0-22.0 sec 378 MBytes 3.17 Gbits/sec [352] 22.0-23.0 sec 372 MBytes 3.12 Gbits/sec [352] 23.0-24.0 sec 359 MBytes 3.01 Gbits/sec [352] 24.0-25.0 sec 369 MBytes 3.09 Gbits/sec [352] 25.0-26.0 sec 370 MBytes 3.10 Gbits/sec [352] 26.0-27.0 sec 382 MBytes 3.20 Gbits/sec [352] 27.0-28.0 sec 351 MBytes 2.95 Gbits/sec [352] 28.0-29.0 sec 371 MBytes 3.11 Gbits/sec [352] 29.0-30.0 sec 372 MBytes 3.12 Gbits/sec [352] 30.0-31.0 sec 360 MBytes 3.02 Gbits/sec [352] 31.0-32.0 sec 363 MBytes 3.04 Gbits/sec [352] 32.0-33.0 sec 368 MBytes 3.09 Gbits/sec [352] 33.0-34.0 sec 366 MBytes 3.07 Gbits/sec [352] 34.0-35.0 sec 379 MBytes 3.18 Gbits/sec [352] 35.0-36.0 sec 390 MBytes 3.27 Gbits/sec [352] 36.0-37.0 sec 385 MBytes 3.23 Gbits/sec [352] 37.0-38.0 sec 397 MBytes 3.33 Gbits/sec [352] 38.0-39.0 sec 397 MBytes 3.33 Gbits/sec [352] 39.0-40.0 sec 372 MBytes 3.12 Gbits/sec [ ID] Interval Transfer Bandwidth [352] 40.0-41.0 sec 371 MBytes 3.11 Gbits/sec [352] 41.0-42.0 sec 332 MBytes 2.78 Gbits/sec [352] 42.0-43.0 sec 328 MBytes 2.75 Gbits/sec [352] 43.0-44.0 sec 309 MBytes 2.59 Gbits/sec [352] 44.0-45.0 sec 302 MBytes 2.54 Gbits/sec [352] 45.0-46.0 sec 304 MBytes 2.55 Gbits/sec [352] 46.0-47.0 sec 364 MBytes 3.05 Gbits/sec [352] 47.0-48.0 sec 385 MBytes 3.23 Gbits/sec [352] 48.0-49.0 sec 387 MBytes 3.24 Gbits/sec [352] 49.0-50.0 sec 381 MBytes 3.19 Gbits/sec [352] 50.0-51.0 sec 375 MBytes 3.15 Gbits/sec [352] 51.0-52.0 sec 360 MBytes 3.02 Gbits/sec [352] 52.0-53.0 sec 375 MBytes 3.14 Gbits/sec [352] 53.0-54.0 sec 370 MBytes 3.10 Gbits/sec [352] 54.0-55.0 sec 329 MBytes 2.76 Gbits/sec [352] 55.0-56.0 sec 378 MBytes 3.17 Gbits/sec [352] 56.0-57.0 sec 376 MBytes 3.16 Gbits/sec [352] 57.0-58.0 sec 380 MBytes 3.18 Gbits/sec [352] 58.0-59.0 sec 378 MBytes 3.17 Gbits/sec [352] 59.0-60.0 sec 382 MBytes 3.20 Gbits/sec [ ID] Interval Transfer Bandwidth [352] 0.0-60.0 sec 21.5 GBytes 3.07 Gbits/sec The test is completed. Please view the test results... Please press any key to continue. . .
Running screenshot
Today's Meitu
Full source download address
Link: https://pan.baidu.com/s/1wIOvIVNAxC2QKumnzATwOw
Extraction code: fdm7