x32x01
  • by x32x01 ||
Telnet and SSH are network protocols used to access and manage remote systems. But what is it that makes them different, and when is it better to use one over the other ?

This tutorial covers what Telnet and SSH are, when they are used, and how they work.
Telnet vs. SSH: How Is SSH Different From Telnet ?
Telnet vs. SSH: Definitions
Telnet
(Telecommunications and Networks) and SSH (Secure SHell) are general-purpose client-server applications that allow users to interact with remote systems.

Telnet
Telnet is practically as old as the Internet itself. It was launched alongside the Net in 1969 and is used by purists to this day.
Telnet is an application protocol that helps users communicate with a remote system. It uses a text-based interface to create a virtual terminal, allowing administrators to access applications on other devices.

SSH
SSH serves the same primary function as Telnet but does so in a more secure way. This protocol provides secure access even on unsecured networks, eliminating many of Telnet's vulnerabilities.
With SSH, administrators can log into remote devices, execute commands, move files between devices, and more.

Telnet vs. SSH: Comparison Overview
Although Telnet and SSH have some similarities, there are many differences between the two. The most important is that SSH is much more secure than Telnet, which has caused it to replace Telnet almost completely in everyday use.

Telnet and SSH use different default ports. While Telnet can only transfer data as plain text, SSH can encrypt traffic in both directions.
FeatureTelnetSSH
OperationUses TCP port 23 and works best with local area networksUses TCP port 22 by default. Easy to change the port number
SecurityLess secure than SSH, with many vulnerabilities. Difficult to encrypt dataHighly secure
AuthenticationNo authentication mechanismUses public key encryption
Data FormatsData is transferred as plain textData is transferred in an encrypted format via a secure channel
Operating SystemsLinux and WindowsAll popular operating systems
Bandwidth UsageLowHigh

Operation

Telnet

Telnet requires a server application on the remote system you want to manage, and the client application installed on the local machine.
Telnet uses the TCP protocol and port 23 to establish a connection with a remote system. This system then acts as a Telnet server and can receive commands. Commands are sent using the NVT (Network Virtual Terminal) format, received and interpreted by the server, and sent to the appropriate application.
telnet-vs-ssh-02.png
SSH
SSH starts by establishing a secure connection to the server through port 22 (although you can change the port number). With key-based authentication, after the client verifies the server, a session key is generated and sent to both client and the server. This key encrypts the traffic for the ongoing session.
Finally, the server verifies the client using an SSH key pair generated. Once the client is authenticated, an encrypted connection is established, and the two systems securely exchange data.

Note: If you are working with Windows, you need an SSH client, such as Putty, to use SSH.

Security

Telnet

Telnet doesn't use any security mechanisms or protocols when sending data. This makes it highly vulnerable unless it is used on private, trusted networks.

SSH
When SSD sessions use key-pairs for authentication, it is extremely difficult to decrypt and read the exchanged data. This makes SSH a highly secure way of transferring data over unsecured networks.

Authentication

Telnet

Telnet doesn't use any authentication mechanisms when establishing a connection.

SSH
The most common and secure SSH authentication is public key authentication. When an SSH key pair is generated, the client holds the private key, while the public key is sent to a server. If a client tries to access a server using SSH, the server authenticates the client by comparing the public key to the private key. If the keys match, the two systems can establish a secure connection.

Data Formats

Telnet

Telnet transfers data as plain text using the NVT format.

SSH
SSH uses an encrypted format to transfer data through a secure connection.

When to Use Telnet?
Since SSH is vastly more secure than Telnet, there are two cases when it is recommended to use Telnet over SSH:
  • When working on trusted networks (such as LANs) that are not connected to the Internet.
  • When working with devices that don't support SSH.
Telnet's lack of security stops being an issue in these cases, while lower bandwidth usage becomes a benefit.

When to Use SSH?
Due to its highly secure nature, you should use SSH whenever you want to connect to a remote system over the Internet.
SSH also offers more functionality than Telnet, such as secure file transfer and port forwarding.

Conclusion
After reading this tutorial, you should better understand the differences between Telnet and SSH, and the best way to use them.
 

Similar Threads

x32x01
  • x32x01
Replies
0
Views
434
x32x01
x32x01
x32x01
  • x32x01
Replies
0
Views
340
x32x01
x32x01
x32x01
  • x32x01
Replies
0
Views
252
x32x01
x32x01
x32x01
  • x32x01
Replies
0
Views
274
x32x01
x32x01
x32x01
  • x32x01
Replies
0
Views
262
x32x01
x32x01
TAGs: Tags
ssh telnet

Register & Login Faster

Forgot your password?

Latest Resources

Forum Statistics

Threads
507
Messages
508
Members
42
Latest Member
Mustafa123
Back
Top