Use the iSH terminal to run the iperf3 command on the iPhone to test the Wi-Fi speed of the intranet

It is mainly divided into 2 parts:

1. Install the server and run the service

2. Install the client and run the test

====Install the iperf3 program on the server====<Assuming the server is running on the Ubuntu system of 192.168.1.5>

$ ssh [email protected]

$ apt install iperf3 //Install the iperf3 program

$ iperf3 -s -D //Run iperf3 in the background on the server

===Install the iperf3 program on the iPhone====

--Download iSH software on iPhone--

 

--Install the iperf3 software in the iSH terminal--

$ apk update //Upgrade the library of the installation package

$ apk add iperf3 //install iperf3 program

--Run the iperf3 software test in the iSH terminal--

$ iperf3 -c 192.168.1.5 -b 10000m -u //Single line test command

$ iperf3 -c 192.168.1.5 -b 10000m -u -P 2 //multi-line speed test command

==== Test Results ====

 

Guess you like

Origin blog.csdn.net/cgxcgxcgxcgx/article/details/125918277