SFTP

Steps for pulling server files to local machine via sftp
Linux
Author

Caleb Grant

Published

July 7, 2023

  1. Allow secure connection for local IP on remote machine

    sudo ufw allow from 73.239.143.170 to any port 22
  2. Create SFTP connection to remote from local machine

    sftp hostname@167.99.102.213
    sftp hostname@167.99.102.213's password: SuperSecret
  3. Pull remote files to local machine

    get {remote-path} {local-path}