7

I have a Digital Ocean droplet that I can ssh into just fine. This is how I work on the server. The other day I went to use scp and was given the following error;

scp -r host@my_ip:/path/to/file .
ssh: connect to host my_ip port 22: Connection timed out

Previously it worked with out a problem. I have changed the ports in ssh_config and restarted the deamon on both the local and remote machines. I have added firewall rules to the local machine and changed them when I changed the ports ssh is to use.

I still get the same error message. Any help would be appreciated.

Regards,

1 Answers1

-1

The problem is MTU related try setting your client's network card mtu smaller for example

ifconfig enp10s0 mtu 1000 (linux)

mort
  • 1