Commands for connecting to other systems.

ssh # secure shell.

Examples :

Open a terminal session to babbage.cs.niu.edu using current user's ID.

Open a terminal session to babbage.cs.niu.edu using a specified user's ID.

Use ssh to launch a single command on babbage.cs.niu.edu using specified user's id.


scp # secure copy

Uses ssh protocols.
Designed to work between two Unix systems.
Files transferred in binary mode.

scp source destination

scp file1 babbage.cs.niu.edu:public_html/.

scp babbage.cs.niu.edu:.bashrc mybashrc scp file1 z912730@babbage.cs.niu.edu:public_html/.
sftp - secure file transfer protocol
Using ssh protocols.
Interactive environment
Assumes same user on both systems unless different user specified.

sftp babbage.cs.niu.edu