Remote Administration Flashcards

1
Q

What does SSH stand for?

A

Secure SHell

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

SSH uses a broad category of cryptography. Do you know what it’s called?

A

Public-key cryptography or Asymmetric cryptography

This is a special type of cryptography where, instead of both agents having a copy of the secret key that is used to decrypt, each agent has their own asymmetric key pair and they use math magic to send and receive secrets that eavesdroppers can’t decypher.

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

What does SFTP stand for?

A

Secure FTP!

Secure ( File Transfer Protocol )

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

What command is used for gathering keys from remote hosts for use in the ‘ssh_known_hosts’ file?

A

ssh-keyscan

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

PKI STANDS FOR WAT

A

PRIVATE KEY IDENTITIES

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

What command loads PKIs into the authentication agent, typically ‘ssh-agent’. This action is also referred to as “loading into the environment” in the practice test on linux academy

A

ssh-add

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

What is the name of the implementation of SSH used on SLES and most operating systems? You can check it with ssh -V

A

OpenSSH

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

What is the default port number used for an ssh connection?

A
  1. The ssh client uses port 22 on the client server and the ssh server uses port 22 to host the connection on the target server.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

If you want to copy one file from a remote server to your directory /tmp/work, what command would you use?

A

scp username@hostname:/path/to/the/file /tmp/work

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

ssh-keygen creates a human-readable summary of a typically hard-to-read key file. What is it called?

A

Fingerprint

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

What command would you use to output the fingerprint of your ecsda public key?

A

ssh-keygen -lf ssh_host_ecsda.pub

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