FTP Server mit einem Batch im Kreis testen

checke-ftp-server Mit diesem Batch kann man einen FTP Server richtig quälen und fortlaufend eine Datei hochladen. timeout /T [Sekunden] /NOBREAK checke-ftp-server.cmd @echo off :start echo GO! echo ######################-%date% – %time:~0,8%>>.\ftp.log ftp -d -s:ftpbefehle1.txt>>.\ftp.log timeout /T 4 /NOBREAK goto start ftpbefehle1.txt server Benutzer Passwort open vosftp01.wmg.loc zgttest ZGT4lan put testdatei.txt bye Wenn der passive Modus gewünscht wird dann open vosftp01.wmg.loc zgttest ZGT4lan quote pasv put testdatei.txt bye Ergänzend: Many people just have this wrong notion that windows command line FTP.exe can not be run in passive mode. It actually can be configured to run. The (undocumented or not well documented in ftp help) QUOTE command is the key here. QUOTE PASV command will set the FTP client to work in passive …

weiterlesen ….