GISTS/windows/iperf3-client.bat
2024-09-02 17:33:58 +02:00

10 lignes
Pas d'EOL
234 o
Batchfile

@echo off
:: iperf client script. binaries at https://files.budman.pw/
echo Client iperf
echo ============
set /P ip=Adresse IP du serveur iperf:
:loop
iperf3 -c %ip%
echo appuyez sur entree pour relancer le test
pause >nul
goto loop