Difficulty: Easy
Correct Answer: If no commands are typed in 1 minute and 35 seconds, the console connection will be closed.
Explanation:
Introduction / Context:The exec-timeout setting on Cisco IOS line configurations determines how long an EXEC session can remain idle before the device disconnects it. This helps enforce security hygiene and frees resources on busy devices. The command uses a two-parameter format that frequently confuses newcomers.
Given Data / Assumptions:
Concept / Approach:
The syntax is exec-timeout
Step-by-Step Solution:
Parse the two numbers as minutes and seconds.Map 1 and 35 to 1 minute and 35 seconds.Conclude that idle console sessions will be disconnected after that period with no input.Recognize that output activity alone does not reset the timer; user input is required.Verification / Alternative check:
Testing by leaving the console idle for 95 seconds (1 minute 35 seconds) results in IOS closing the session and returning to the password prompt on the next key press, confirming the configuration behavior.
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:
If no commands are typed in 1 minute and 35 seconds, the console connection will be closed.
Discussion & Comments