Difficulty: Easy
Correct Answer: exit
Explanation:
Introduction / Context:
Once remote administration is complete, the Telnet session should be ended cleanly. IOS provides several commands for line management, but only one is correct for gracefully terminating an active Telnet.
Given Data / Assumptions:
Concept / Approach:
The 'exit' command is used within the Telnet session to close the connection. This differs from 'disconnect' (used from the local router's session management prompt) and from 'close'/'disable' which are not valid IOS commands in this context.
Step-by-Step Solution:
Verification / Alternative check:
Prompt should change back to the local device's hostname. 'show sessions' should confirm the closed session is gone.
Why Other Options Are Wrong:
disconnect: Used at local IOS prompt after suspending sessions. close/disable: Not valid Telnet termination commands in IOS.
Common Pitfalls:
Typing 'quit' (works in some contexts) or forgetting to save changes before exiting, causing config loss.
Final Answer:
exit
Discussion & Comments