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