I wated to remote downlaod some files from my own ftp server. So I wrote a litte ftp script:
echo open myIp myPort >> c:\bla.txt
echo myUser >> c:\bla.txt
echo myPassword >> c:\bla.txt
echo BINARY >> c:\bla.txt
echo GET filenames >> c:\bla.txt
...
echo quit >> c:\bla.txt
@echo off
ftp -s:c:\bla.txt
I tried this on several machines an it works fine on most. But some wont download therese files. Here is the ftp log:
220 Serv-U FTP Server v4.0 for WinSock ready...
USER xxxxx
331 User name okay, need password.
PASS xxxxx
230 User logged in, proceed.
TYPE I
200 Type set to I.
PORT x,x,x,x,x,x
200 PORT Command successful.
RETR TzoLibr.dll
150 Opening BINARY mode data connection for filename (36864 bytes).
425 Cannot open data connection.
and then stoped...
Anyone a clue why?
I tried to de/activate PASV mode, but this didnt change a thing.
Sry for my bad english, but i dont live in an english speaking country




