|
FXP is File Exchange Protocol, it let's you copy files from one FTP-server to another using a FXP-client. You transfer files using the FTP protocol between your machine and a FTP-server.When transferring files between two remote hosts using a FXP client, the maximum transfer speed does not depend on you're connection but only on the connection between the two host, which is usually much faster than your own connection... Because it's a direct connection you won't be able to see the progress or the transfer speed of the files.
To use FXP you have to make sure both hosts support PASV mode and allow PORT commands to foreign hosts. The FXP client tells the destination FTP to listen for a connection by sending a "PASV" command. The source FTP connects to the data port reported by the destination server. Your data goes directly from the source to the destination FTP and both servers do only report status messages on fail/success to the FTP client.
So, you have to contact both hosts.
|