Changes between Version 2 and Version 3 of External_Supercomputing_Notes
- Timestamp:
- Dec 17, 2013, 6:05:29 PM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
External_Supercomputing_Notes
v2 v3 25 25 The ~/.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. 26 26 27 == 27 == Data transfer == 28 29 As 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 {{{ 32 scp @LOCAL_FILE@ DMZ_HOST:SEC_HOST:/@PATH_TO_DESTINATION@/ 33 scp DMZ_HOST:SEC_HOST:/@PATH_TO_FILE@/@REMOTE_FILE@ @LOCAL_DESTINATION@ 34 }}}
