A network operations center uses SNMP to monitor device health. An administrator needs to retrieve the current CPU utilization from a router. Which SNMP operation is most appropriate?
GET is used to read the value of a managed object, such as CPU utilization.
Why this answer
The SNMP GET operation is used by an NMS (Network Management System) to actively request a specific variable from a managed device, such as the current CPU utilization from a router's OID. This is a poll-based retrieval, making it the correct choice for an administrator who needs to read a single value on demand.
Exam trap
The trap here is confusing event-driven notifications (TRAP/INFORM) with on-demand data retrieval, leading candidates to select TRAP because they associate it with CPU alerts, but the question asks for retrieving current utilization, not waiting for an alert.
How to eliminate wrong answers
Option B (SET) is wrong because SET is used to modify a configuration parameter or write a value on the device, not to read data. Option C (TRAP) is wrong because TRAP is an unsolicited notification sent by the agent to the NMS when a predefined event occurs, not a request for current data. Option D (INFORM) is wrong because INFORM is a confirmed notification (requiring an acknowledgment) sent from the agent to the NMS, also used for event-driven alerts, not for polling a specific value.