10 lignes
Pas d'EOL
234 o
Batchfile
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 |