Describe the function of Telnet and SSH Flashcards
What is Telnet and what is its primary function?
Telnet is a network protocol used to provide a command-line interface for communication with a remote device or server.
Its primary function is to enable remote login and command execution.
On which port does Telnet operate by default?
Telnet operates on TCP port 23 by default.
What are the security characteristics of Telnet?
Telnet transmits data, including usernames and passwords, in plaintext, making it insecure for use over untrusted networks.
What is SSH and what is its primary function?
SSH stands for Secure Shell.
Its primary function is to provide a secure channel over an unsecured network for remote login and command execution.
On which port does SSH operate by default?
SSH operates on TCP port 22 by default.
What security features does SSH provide?
SSH provides encryption for data transmission, ensuring that usernames, passwords, and commands are secure.
It also supports various authentication methods, including password and public key authentication.
How does SSH enhance security compared to Telnet?
SSH encrypts all data sent between the client and the server, protecting against eavesdropping and man-in-the-middle attacks.
Telnet, on the other hand, transmits data in plaintext, making it vulnerable to interception and unauthorized access.
What command is commonly used to initiate a Telnet session?
The command to initiate a Telnet session is typically telnet <hostname>.</hostname>
What command is commonly used to initiate an SSH session?
The command to initiate an SSH session is typically ssh <username@hostname or IP>.