Hello i have a problem to use rclone ftp with online net ftp backup storage.
I have configured online net ftp in rclone, but when i try to connect i got these errors:
First of all, the address shown for your online.net FTP server (123.456.123.23) is not a real IP address; have you "redacted" it before posting here, or was it really that address that was being shown? Probably the former, but if the latter, I would suspect you got a bad address somewhere in your configuration.
If the former, it seems that your online.net FTP server is simply refusing connections from your client; FTP is a really antiquated and messy protocol which (unlike most modern protocols) require new "backchannel" connections for some of the data to flow from the server to the client, for example the "ls" command which would list the remote files. In this vein, the problem would be probably related to the inability of the server to provide "passive mode" FTP, which is what rclone uses (see here for more details). You could debug this by using a conventional FTP client and forcing passive mode on it, then trying to connect to the online.net server.
Either way, my suggestion is to use something else instead of FTP (for example, SFTP) if online.net allows; this would not only be more secure (FTP sends your password in plaintext on the wire) but faster (specially for lots of small files) and possibly more stable.
That is not the real online net ftp ip, i have changed the ip address.
I will test the ftp protocoll because on my online net server is a free 100gb ftp backup plan included.
I know that the ftp protocoll is old and unsecure, but only ftp ist included in free plan.
i tested it with ftp-ssl client, active mode is forbidden and passive mode is mandatory.
That is not the real online.net ftp ip, i have changed the ip address.
OK, so my first guess is off.
I like free. Free is good. Free gets. Sh¡t. Done.
Ok, so my second guess is off too...
I'd say we have a bug in rclone's ftp code, then. To be sure of that, and help to debug it, can you please:
try with the latest beta, if you didn't already?
provide a full rclone debug log, generated by including the options -v -v --log-file whatever.log in your command line?
provide a tcpdump capture file (generated by running tcpdump -nnl -s0 -w whatever.cap host your.ftp.server.ip in another shell session simultaneously with 1) above? This file will include your ftp password, so be sure to change it to something discardable before running the test, then change it back.
open an issue on rclone's github pointing back to this thread, and upload the above files there?
This is very curious.
I have the last beta version installed and could then run 3 or 4 times rclone lsd ftponline: without error.
But then came again the same error message and since then nothing more.
I have the last beta version installed and could then run 3 or 4 times rclone lsd ftponline: without error.
But then came again the same error message and since then nothing more.
This points to intermitent problems with your setup -- was rclone connecting to the same IP address every time? Sometimes ISPs like online.net have a bunch of servers answering from the same FQDN, and in your case the problem may be manifesting in some of them and not in others.
Probably the easiest way for me to debug this is for someone to lend me their credentials for a little while. If anyone would like to then email them to nick@craig-wood.com - I won't access any data you have stored there. Or alternatively if someone could point me towards setting up a free account?
I wonder what is causing those errors. It might be limiting the number of connections. Try with --checkers 1 --transfers 1 and see if that makes any difference?