Web Hosting Talk







View Full Version : Downloading from server to server


Blikje
09-21-2002, 03:19 PM
Hi,

Is it possible that your server can download files from an other server to itself? So basically the idea that you normally download something to your own computer, only now the server is that computer.
The benefit is that this way you can have your server download on a fast connection and that (if your server has a fast connection itself) you can download way much faster to your PC's HD than from the original server which can have a slow connection.

Is this possible, and is there software to do this?

Thank you in advance!

Jacco

Samuel
09-21-2002, 03:21 PM
SSH (http://www.google.com/search?sourceid=navclient&ie=UTF-8&oe=UTF-8&q=SSH) - wget http://location.suck

http://www.webhostingtalk.com/showthread.php?s=&threadid=75104

Blikje
09-21-2002, 03:47 PM
Originally posted by Samuel
SSH (http://www.google.com/search?sourceid=navclient&ie=UTF-8&oe=UTF-8&q=SSH) - wget http://location.suck

http://www.webhostingtalk.com/showthread.php?s=&threadid=75104

Ok thanks, thought this was something special, but I see it is a SSH thing!

Jacco

TowerHost
09-21-2002, 03:53 PM
If both servers support FXP you can do a direct transfer using FTP from one server to the other. This skips downloading on your own machine and does a direct transfer using both servers fast connections.

You will need a client such as FlashFXP to perform this.

Cheers

Samuel
09-21-2002, 03:56 PM
Towerhost, that's what I just showed him how to do.

bitserve
09-22-2002, 01:48 PM
Doing site to site FTP transfers has been supported in the FTP protocol since it was originally developed.

No special "FXP support" or FTP client is required. You can do this by making an FTP control connection to two servers, and then have them establish an FTP data connection to each other.

FTP clients like FlashFXP just make this easier for windows people by adding it to their GUI.

merconline
09-23-2002, 04:46 AM
bitserve, can u explain that part 'FTP Control connection' ?
as i want to transfer backup of one domain under Windows 2000 to another Windows 2000 domain and since Telnet or SSH is not provided with the plan.

matt2kjones
09-23-2002, 07:56 PM
ahhh right they are windows 2000 domains

why dont you set up a vpn in routing and remote access

so that you can connect from one server to the other

once connected, go to run

and the machinename.thedomainname.com should bring up the contentrs of the other server

i hope you no what i mean

you can find it in routing and remote access

i havent done anything wih it for a while since i use linux now, so thats why my explination is a bit dodgy

kbc-Tux
09-24-2002, 02:14 AM
Originally posted by Samuel
SSH (http://www.google.com/search?sourceid=navclient&ie=UTF-8&oe=UTF-8&q=SSH) - wget http://location.suck

http://www.webhostingtalk.com/showthread.php?s=&threadid=75104

going one further,


server1 == source from net
server2 == your server
PC == your PC at home


if you want file1 from server1, and you are on your PC (and you don't have or feel like running an ftp or http server)

pc.localhost # ssh server1 - "dd if=file1" | ssh server2 - "dd of=file1"; ssh server2 - "dd if=file1" | ssh PC - "dd of=file1"; ssh server2 - "rm file1"

this works for rsh also