Difficulty: Easy
Correct Answer: TELNET
Explanation:
Introduction / Context:
Remote administration and interactive sessions predate SSH. In the classic TCP/IP suite, a standardized protocol enabled users to open a terminal session on a remote machine. Recognizing the purpose of each protocol avoids misconfiguration and helps in understanding historical tools and their modern replacements.
Given Data / Assumptions:
Concept / Approach:
TELNET (TCP port 23) provides an interactive, text-based remote terminal connection. It negotiates terminal options and transmits keystrokes and screen output. Although insecure by modern standards (no encryption), it is the classic answer for remote terminal service. In contrast, FTP handles file transfer, UDP is a transport layer protocol (not an application protocol), and RARP maps MAC addresses to IPs in early boot scenarios; none of these create an interactive login shell like TELNET does.
Step-by-Step Solution:
Verification / Alternative check:
Modern practice uses SSH (Secure Shell) as a secure replacement for TELNET. Running 'telnet host 23' (if available) demonstrates the unsecured login prompt, reinforcing TELNET's role while highlighting its security drawbacks.
Why Other Options Are Wrong:
Common Pitfalls:
Equating TELNET with SSH in security properties (they are not equivalent) or believing FTP includes remote command execution by default—it does not provide an interactive shell.
Final Answer:
TELNET
Discussion & Comments