Difficulty: Easy
Correct Answer: TELNET
Explanation:
Introduction / Context:
Remote terminal access is a classic requirement in computer networks. Within the TCP/IP suite, one protocol was defined expressly to provide interactive, character-based sessions on remote systems. Knowing which protocol offers this “virtual terminal” service helps differentiate it from file transfer, name/address resolution, or transport-only mechanisms.
Given Data / Assumptions:
Concept / Approach:
TELNET provides a Network Virtual Terminal model over TCP. It negotiates options (like echoing) and carries keystrokes and screen output between client and server, giving the user a live shell on the remote host. By contrast, FTP is for file transfer; RARP was for address resolution from MAC to IP on legacy LANs; UDP is a transport protocol, not an application service; SSH is a secure modern replacement but was not the original TCP/IP “remote terminal connection service.”
Step-by-Step Solution:
Verification / Alternative check:
Default port mappings confirm roles: TELNET typically uses TCP port 23, FTP uses TCP ports 21/20, and SSH (a secure replacement) uses TCP port 22. Historical admin practices used TELNET widely before encrypted alternatives became standard.
Why Other Options Are Wrong:
Common Pitfalls:
Assuming any remote shell implies SSH; exam questions often test recognition that TELNET is the classic, non-encrypted terminal protocol.
Final Answer:
TELNET
Discussion & Comments