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?
The GET operation is fundamental for network monitoring as it allows an SNMP manager to actively query an agent for the current value of a specific managed object. When a Network Operations Center (NOC) needs to check device health, such as CPU utilization or interface status, the manager sends a GET request to the device's SNMP agent. The agent then retrieves the requested data from its Management Information Base (MIB) and returns it in a GET-RESPONSE message, providing real-time insight into the device's operational state.
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.
Why the other options are wrong
SET is used to modify configuration or write data to a device, not to retrieve information. The question asks for retrieving CPU utilization, which requires a read operation.
TRAP is an unsolicited message sent by an SNMP agent to the manager to notify an event, not a request to retrieve data. The question asks for retrieving current CPU utilization, which requires a GET request from the manager.
INFORM is used for acknowledged SNMP notifications between managers, not for retrieving data like CPU utilization from an agent.