Following ftp script is executed by windows server's ftp.exe:
open externalserver
username
password
quote pasv
bin
lcd F01
cd DE
prompt no
mget "*.xml"
mdel "*.xml"
lcd ../F06
cd ../AT
mget "*.xml"
mdel "*.xml"
bye
The problem starts with the first mdel command:
ftp> mdel "*.xml"
150 Opening ASCII mode data connection for file list
Liste der Remotedateien kann nicht gefunden werden. (means something like list of remote files cannot be found)
In the FTP proxy log I see the successfull transfers of the first mget, and then I see this error three times for the mdel and the 2nd mget, mdel part of the script:
frox[11213]: PORT: [public dsl ip]:41314
2014:09:11-11:24:07 fw frox[11213]: Connection refused when trying to connect to [internal ftp client ip]
2014:09:11-11:24:07 fw frox[11213]: Failed to contact client data port
What can I do? Is it a regression, something I need to set or change my script?
This thread was automatically locked due to age.