====== Securely Transfer Files Between Systems ====== **General Information** Transferring files with secure copy (scp) and secure file transfer protocol (sftp). SCP and SFTP both use tcp/22 (openssh). ---- ===== SCP ===== SCP copy local file to remote server scp myfile user@server1.org:~/storage/ \\ Copy a remote file to a local system scp user@server1.org:~/storage/myotherfile mynewlocalfile ---- ===== SFTP ===== SFTP Connect sftp user@server1.org \\ View available commands sftp> ? * Notice that all commands that operate locally are pre-pended with a "l" \\ Once connected, list and navigate sftp> ls sftp> cd mydir \\ Once connected, download file from remote server1 to local system sftp> get myfile \\ Once connected, upload file to remote server1 from local system sftp> put otherfile \\ Exit SFTP connected session exit OR quit ----