Changes between Version 10 and Version 11 of Transferring Large Data


Ignore:
Timestamp:
08/28/06 18:08:45 (20 years ago)
Author:
dkg@…
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Transferring Large Data

    v10 v11  
    2020ticket #230 also suggests using an `.htaccess` file to require a password before downloading data.  While that ticket is open, this feature is not available in the CAL web servers.  It is also not cryptographically sound: any machine on the various networks between the web server and the receipient can intercept that data and copy it (and can intercept the password used in an unencrypted http session for that matter).  This authentication could be a useful additional layer of security for ultra-top-secret data, however.
    2121
    22 If you have a shell account (via `ssh`) on a remote machine that the intended receipient controls, you could also use `scp` or `sftp` to transfer the data to that remote machine for the other person to pick up.  This protects the data while it's in transit.
     22If you and the intended receipient have shell accounts (via `ssh`) on a common remote machine, you could also use `scp` or `sftp` to transfer the data to that remote machine for the other person to pick up.  This protects the data while it's in transit.
    2323
    2424== receiving data from external sources ==
     
    2626Your best bet is to ask the sender of the data to post it to a web or ftp server, and then use some standard tool (e.g. a browser, `wget`, `curl`, `lftp`, etc) to retrieve the data from there.
    2727
    28 If the sender of the data does not have access to a server like this, but does have shell access on a remote machine that you also have access to, you could use `sftp` or `scp` to effect the transfer:  have the sender use `scp` or `sftp to move the data to the remote machine, and then use the same tools yourself to transfer them to your local account.
     28If the sender of the data does not have access to a server like this, but does have shell access on a remote machine that you also have access to, you could use `sftp` or `scp` to effect the transfer:  have the sender use `scp` or `sftp to move the data to the remote machine, and then use the same tools yourself to transfer them back to CAL.
    2929
    3030== why using E-mail for binary or large data is a bad idea ==