IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changes between Version 2 and Version 3 of External_Supercomputing_Notes


Ignore:
Timestamp:
Dec 17, 2013, 6:05:29 PM (13 years ago)
Author:
watersc1
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • External_Supercomputing_Notes

    v2 v3  
    2525The ~/.ssh/connections/ directory needs to be created if it does not already exist.  With this configuration in place, you can log in to the computing front end with {{{ssh -t DMZ_HOST ssh SEC_HOST}}}.  The DMZ_HOST does not support commands other than ssh and scp, and is used only to bounce the connection to SEC_HOST.
    2626
    27 ==
     27== Data transfer ==
     28
     29As the DMZ_HOST does not have available disk space, data transfers need to write directly to the SEC_HOST disks.  The following commands illustrate how to use scp to transfer files to and from SEC_HOST:
     30
     31{{{
     32scp @LOCAL_FILE@ DMZ_HOST:SEC_HOST:/@PATH_TO_DESTINATION@/
     33scp DMZ_HOST:SEC_HOST:/@PATH_TO_FILE@/@REMOTE_FILE@ @LOCAL_DESTINATION@
     34}}}