Password authentication
default for ssh, allows user to log in with only a password. Considered less secure than key based authentication
Connect to a remote host
ssh user@server
Issuse a command on a remote host without connecting
ssh user@server command
Secure copy a local file to a remote host
scp /tmp/localfile user@server:/tmp/
Secure copy a remote file to the local system
scp user@server:/tmp/remotefile /tmp/
Connect to a remote host using SFTP
sftp user@server
What are basic commands for SFTP
? - Display all options ls - list files cd - change directory get - download put - upload quit - exit