通过FTPS自动备份? 什么是最好的软件来实现这一目标?

我正在寻找一个相对容易的设置/维护解决scheme,通过Windows OS上的FTPS备份到远程位置。

我们目前使用的是Mozy,但想要在我们的场所中再次备份到服务器(要备份的服务器是远程的)。 我们也希望能够configuration这个过程的自动化。

假设我已经用安全证书等设置了FileZilla服务器,是否有一个好的客户端,任何人都可以推荐可以通过FTPS进行连接,并按计划自动传输文件?

过去几年来,我们一直在使用http://www.ipswitchft.com/products/moveitFreely/index.aspx ,没有任何问题。

例如。

FTPS.exe -a -s:ftpscript.scr xxx.xxx.xxx.xxx>xferlog.log

# ftpscript.scr
username
password
cd ftp_root
put *.*
quit

好的,find一个解决scheme。 希望这对他人有用。 安装在http://www.scriptftp.com/ ,似乎做我需要的一切。 尝试30天,尚未授权。

通过以下脚本与程序一起实现FTPS自动化。

如果有人有任何经验,我愿意接受其他客户的build议,所以不会暂时closures这个问题。

 # # More script samples at http://www.ScriptFTP.com/examples.php # Online scripting guide at http://www.ScriptFTP.com/reference.php # Free technical support at http://www.ScriptFTP.com/contact.php # # Remember to save the changes before clicking run on the ScriptFTP window. # Set protocol to FTPS, encryping username, password and data SETPROTOCOL(FTPS_EXPLICIT_ENCRYPT_DATA) # Connect to FTP server OPENHOST("62.XXX.XXX.XX","user","myPassWd") # Send all the files and subdirectories in C:\MyDir to the server PUTFILE("C:\FTP_ROOT\*.*",SUBDIRS) # Transfer finished, close the connection CLOSEHOST