• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Can I FTP from one web server to another?

I maintain some files like drivers and such on my own web host (1&1 Internet). So I frequently make additions or replace files with newer ones. This requires downloading from the source to my local PC, then uploading it to my server space. The upload speed of my cable service is kind of crappy (average is usually 20KB ~ 26KB per second), and some files are 20MB, 30MB, 40MB, or larger.

Is there a way I can skip the local leg of this trip and fly non-stop, by FTP'ing that sucker straight from the source to my server?

I assume this would need to be some kind of app that runs on my server, and I will be very limited in what I can run. I have 1&1 Internet's Home Hosting Package with MS-compatible servers and APIs. TIA.
 
why not use ssh(scp actually)? i'd have to assume port 22 is open on 1and1, and it has an ssh daemon listening so you can login using an encrypted terminal. Just need to have an ssh/scp client on the source host.


Initiate the connection on the source. Because if its a windows box it wont have an ssh daemon listening by default.

scp source_hostname:/source_folder/thisfile.whatever destination_hostname:/destination_folder/


It will prompt you for the 1and1 password and transfer the files securely(encrypted)

if you have access to the gui on the source you could use WinSCP.

cli from a windows box use pscp (putty scp) and start the command with pscp instead of scp
 
I don't have non-public access to any of the source servers beyond the URL of the file. These would be the public download servers of Intel, Microsoft, Realtek, NVIDIA, and other companies, primarily.
 
Back
Top