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

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Connect to a remote host

A

ssh user@server

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Issuse a command on a remote host without connecting

A

ssh user@server command

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Secure copy a local file to a remote host

A

scp /tmp/localfile user@server:/tmp/

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Secure copy a remote file to the local system

A

scp user@server:/tmp/remotefile /tmp/

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Connect to a remote host using SFTP

A

sftp user@server

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What are basic commands for SFTP

A
? - Display all options
ls - list files
cd - change directory
get - download
put - upload
quit - exit
How well did you know this?
1
Not at all
2
3
4
5
Perfectly