A network administrator wants to be alerted immediately when any interface on a core router goes down. The administrator has already configured SNMP community strings. Which additional configuration is necessary to receive these alerts?
Configuring a router to send SNMP traps to the Network Management System (NMS) is the correct method for receiving immediate alerts. SNMP traps are unsolicited notification messages sent by the network device (agent) to the NMS (manager) when a significant event, such as an interface going down, occurs. This push-based mechanism ensures real-time notification without requiring the NMS to constantly poll the device, making it highly efficient for critical event monitoring.
Why this answer
SNMP traps are unsolicited notifications sent from the managed device (the router) to the Network Management Station (NMS) when a specific event occurs, such as an interface going down. Since the administrator wants immediate alerts without polling, configuring the router to send SNMP traps to the NMS is the correct approach. The SNMP community strings are already set, so the missing piece is the trap destination and enabling trap generation for interface state changes.
Exam trap
CompTIA often tests the distinction between polling (SNMP get/walk) and event-driven notifications (traps), and candidates mistakenly choose periodic polling (Option C) thinking it provides 'immediate' alerts, not realizing that polling introduces latency and is not truly immediate.
Why the other options are wrong
Performing an SNMP walk retrieves all OID values from the router, but it does not configure the router to send unsolicited alerts. The administrator needs the router to proactively send notifications when an interface goes down, which requires configuring SNMP traps, not polling.
SNMP get retrieves data on demand, not automatically. The administrator wants immediate alerts when an interface goes down, which requires the router to proactively send traps, not periodic polling.
SNMP set is used to modify configuration parameters on a device, not to receive alerts. The question asks for receiving immediate notifications when an interface goes down, which requires traps, not set operations.
When would these options actually be correct?
This option would be correct if the question asked: 'A network administrator wants to audit all configurable parameters on a router to ensure no unauthorized changes have been made. Which SNMP operation should be used?' In that case, an SNMP walk would retrieve the entire MIB tree for review.
A network administrator needs to monitor interface utilization trends over time. By using SNMP get to periodically retrieve interface OIDs, the NMS can collect historical data for analysis and reporting.
In a scenario where a network administrator needs to remotely disable an interface on a router via SNMP to mitigate a security incident, configuring SNMP set would be necessary to change the interface status.
Why candidates pick the wrong answer
Candidates may confuse the act of monitoring (polling) with receiving alerts (traps). They might think that walking the interface OIDs will somehow trigger notifications, not realizing that traps require explicit configuration on the agent.
Candidates may confuse proactive alerting (traps) with reactive monitoring (polling). They might think that frequent polling can provide near-real-time alerts, but it cannot guarantee immediate notification and wastes bandwidth.
Candidates may confuse SNMP set with SNMP trap configuration, thinking that setting parameters is part of alert configuration, or they may not clearly distinguish between SNMP operations (get, set, trap) and their purposes.