I need to obtain data from a server, using my WSL (Ubuntu 20.04) and to do so I run the command
rsync -av -e "ssh -vvv -oPort=5822"'address'
where 'address' is of course replaced with the actual address. Doing so results in the following error
OpenSSH_8.2p1 Ubuntu-4, OpenSSL 1.1.1f 31 Mar 2020debug1: Reading configuration data /etc/ssh/ssh_configdebug1: /etc/ssh/ssh_config line 19: include /etc/ssh/ssh_config.d/*.conf matched no filesdebug1: /etc/ssh/ssh_config line 21: Applying options for *debug2: resolving 'adress' port 5822debug2: ssh_connect_directdebug1: Connecting to 'address' ['ip'] port 5822.debug1: connect to address 'ip' port 5822: Resource temporarily unavailablessh: connect to host 'adress' port 5822: Resource temporarily unavailablersync: connection unexpectedly closed (0 bytes received so far) [Receiver]rsync error: unexplained error (code 255) at io.c(235) [Receiver=3.1.3]
Searching for solutions online originally had me believe that firewall settings caused the issue. However, despite turning off my firewall on windows, and disabling UFW on my WSL, the issue remains.
Is there anything else I should try?
Let me know if you need more information on my setup