Remote Administration Flashcards
What does SSH stand for?
Secure SHell
SSH uses a broad category of cryptography. Do you know what it’s called?
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.
What does SFTP stand for?
Secure FTP!
Secure ( File Transfer Protocol )
What command is used for gathering keys from remote hosts for use in the ‘ssh_known_hosts’ file?
ssh-keyscan
PKI STANDS FOR WAT
PRIVATE KEY IDENTITIES
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
ssh-add
What is the name of the implementation of SSH used on SLES and most operating systems? You can check it with ssh -V
OpenSSH
What is the default port number used for an ssh connection?
- 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.
If you want to copy one file from a remote server to your directory /tmp/work, what command would you use?
scp username@hostname:/path/to/the/file /tmp/work
ssh-keygen creates a human-readable summary of a typically hard-to-read key file. What is it called?
Fingerprint
What command would you use to output the fingerprint of your ecsda public key?
ssh-keygen -lf ssh_host_ecsda.pub