I am working in a server, to which I need to enter from another server. Example:
ssh user@login1.de
ssh user@login2.de
Note that I can't connect to login2
directly, but only from login1
.
Whenever I want to transfer files from login2
to my computer, I first have to transfer it from login2
to login1
, and then from login1
to my computer. The problem is that login1
cannot contain files larger than 1 GB (when login2
can), so its sort of a bottleneck.
My question is, is there a way to still use login1
as some sort of medium between my computer and login2
, and still transfer files larger than 1 GB?
Thanks.