Can't run more than 1 transfer on Hetzner to Home PC

What is the problem you are having with rclone?

So I'm trying to transfer multiple files but I run into an md5 error and then the connection times out for my sFTP connection. Is there a way to increase the amount of connections? It use to be able to run 4 transfers, not sure why it can't now.

Run the command 'rclone version' and share the full output of the command.

rclone v1.62.2

  • os/version: Microsoft Windows 10 Pro 22H2 (64 bit)
  • os/kernel: 10.0.19045.2846 Build 19045.2846.2846 (x86_64)
  • os/type: windows
  • os/arch: amd64
  • go/version: go1.20.2
  • go/linking: static
  • go/tags: cmount
yes

Which cloud storage system are you using? (eg Google Drive) Hetzner Storage Box

The command you were trying to run (eg rclone copy /tmp remote:tmp)

rclone copy -P -vv hetzner:mnt/unionfs/downloads/ "C:\Users\Person\Downloads\"

The rclone config contents with secrets removed.

- type: sftp
- host: <ip>
- user: <user>
- pass: *** ENCRYPTED ***
- shell_type: unix
- md5sum_command: md5sum
- sha1sum_command: sha1sum

A log from the command with the -vv flag

2023/04/18 23:07:28 DEBUG : pacer: low level retry 1/10 (error couldn't connect SSH: dial tcp <ip>: connectex: A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond.)
2023/04/18 23:07:28 DEBUG : pacer: Rate limited, increasing sleep to 200ms
2023/04/18 23:07:49 DEBUG : pacer: low level retry 2/10 (error couldn't connect SSH: dial tcp <ip>:port: connectex: A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond.)
2023/04/18 23:07:49 DEBUG : pacer: Rate limited, increasing sleep to 400ms

The errors look like a timeout.

Are you using all your download or upload bandwidth?

According to Hetzner you should be allowed 10 simultaneous connections to a storage box so that probably isn't the problem.

hello and welcome to the forum,

for ssh, hetzner storagebox offers a choice of two ports, you want to use 23, not default 22

here is my config, notice the use of port 23:

[hetznersbox01_sftp]
type = sftp
host = redacted.your-storagebox.de
port = 23
key_file = C:\data\c\combined\hetzner\sharebox\keys\id_ed25519
user = redacted
shell_type = unix
md5sum_command = md5 -r
sha1sum_command = sha1 -r
1 Like

It was my firewall, it was blocking everything. lol

1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.