How to test the network interface
TrizepsVIII / Myon2 / SBCSOM
Download iperf: iperf_bin.zip
After downloading extract the archive.
Copy the ARM64 binaries to your device and connect to the device. (How to connect to IoT Core Device)
Start the server on your host pc (iperf_bin\Win32)
.\iperf.exe -sStart the test on the device
.\iperf.exe -c ip_of_serverAfter the test you should get an result on your device like this:
Connecting to host 192.168.2.109, port 5201
[224] local 192.168.2.124 port 49774 connected to 192.168.2.109 port 5201
[ ID] Interval Transfer Bandwidth
[224] 0.00-1.00 sec 12.3 MBytes 102 Mbits/sec
[224] 1.00-2.00 sec 12.4 MBytes 104 Mbits/sec
[224] 2.00-3.01 sec 11.4 MBytes 94.9 Mbits/sec
[224] 3.01-4.00 sec 11.3 MBytes 94.8 Mbits/sec
[224] 4.00-5.01 sec 11.4 MBytes 94.9 Mbits/sec
[224] 5.01-6.00 sec 11.3 MBytes 94.9 Mbits/sec
[224] 6.00-7.01 sec 11.4 MBytes 94.9 Mbits/sec
[224] 7.01-8.00 sec 11.3 MBytes 94.9 Mbits/sec
[224] 8.00-9.01 sec 11.4 MBytes 94.9 Mbits/sec
[224] 9.01-10.00 sec 11.3 MBytes 94.9 Mbits/sec
- - - - - - - - - - - - - - - - - - - - - - - - -
[ ID] Interval Transfer Bandwidth
[224] 0.00-10.00 sec 115 MBytes 96.6 Mbits/sec sender
[224] 0.00-10.00 sec 115 MBytes 96.6 Mbits/sec receiver
iperf Done.Hint
If you want to use the IoT Core Device as server you have to open the port.
netsh advfirewall firewall add rule name="Open port 5201" dir=in action=allow protocol=TCP localport=5201
or
netsh advfirewall firewall add rule name="iperf" dir=in action=allow program="C:\iperf.exe" enable=yes