ftp automation

ScriptFTP

The professional tool to automate FTP, SFTP, FTPS and schedule FTP batch jobs

The forum is now read only. Please, go to the the main ScriptFTP website if you need help.
Need help writing a script? Have any question about ScriptFTP?
Hello

I am logging into the FTP Gateway/Proxy server.
And from this place I am logging into the proper FTP server by command:

user USERNAME@192.231.185.84
PASSWORD2

My eg. dos script
user rhenus1
PASSWORD1
user rhenus2@10.10.10.10
PASSWORD2
prompt off
lcd C:\folder\out
mput *
bye

Does ScriptFTP have such a possibility?
No, sorry. ScriptFTP does not support proxies.
I actually got the proxying to work while I was previewing the software.

Here is what I did:
Code: Select all# This may not be required. SETPASSIVE(DISABLED) # Connect to FTP server OPENHOST("ftpproxy.proxy.com","user@ftp.host.com","password")
Connected like a dream.
Some FTP proxies are completely transparent. This means that a FTP client, like ScriptFTP, does not need to support proxies in order to work with it.

This one I think it takes the FTP server address from the user name field and once connected it just forwards the data and FTP protocol commands between SciptFTP and the FTP server.