- What is a significant downside of using Telnet?
Essentially, Telnet provides no security features. Passwords are sent as plaintext.
- Which port does SSH typically run on?
SSH's official port is TCP port 22. In practice, it is common to run SSH on arbitrary ports in an attempt to hide from attackers. With a properly secured server, these attackers are a nuisance rather than a legitimate threat.
- Why is it essential that the client authenticates the SSH server?
If the client doesn't verify the SSH server's identity, then it could be tricked into sending credentials to an impostor.
- How is the server typically authenticated?
SSH servers typically use certificates to identity themselves. This is similar to how servers are authenticated when using HTTPS.
- How is the SSH client typically authenticated?
It is still...