Question

Difficulty: MediumSNMP Operations, MIBs, Traps, Informs, and Version Differences

Match each Simple Network Management Protocol (SNMP) mechanism or operational requirement on the left with its corresponding protocol characteristic or SNMP message type on the right.

  • Unacknowledged event notification sent from a managed network device to an NMS using UDP port 162SNMP Trap
  • Reliable event notification that requires the destination NMS to send an explicit response PDU back upon receiptSNMP Inform
  • SNMPv3 security level providing both message authentication (HMAC-SHA/MD5) and packet encryption (AES/DES)SNMPv3 authPriv
  • Request PDU sent by an NMS on UDP port 161 to sequentially traverse and retrieve entries from a MIB tableSNMP GetNext

Answer

Unacknowledged notifications correspond to SNMP Trap; reliable notifications requiring acknowledgment correspond to SNMP Inform; authentication with encryption corresponds to SNMPv3 authPriv; sequential MIB traversal corresponds to SNMP GetNext.
Each SNMP concept is paired to its defining technical attribute: Traps are unacknowledged notifications (UDP 162), Informs provide explicit acknowledgment and retransmission, authPriv adds cryptographic encryption alongside authentication, and GetNext handles sequential MIB walking (UDP 161).

Step-by-Step Solution

1
Analyze notification reliability types.
Unacknowledged messages sent to UDP port 162 are Traps, whereas acknowledged notifications are Informs.
Traps use best-effort UDP transport without application-layer confirmations, while Informs retransmit until an acknowledgment PDU is returned.
2
Evaluate SNMPv3 security levels.
The combination of authentication (auth) and privacy/encryption (priv) defines the authPriv security model.
noAuthNoPriv uses plain community-like checks, authNoPriv adds hashing without encryption, and authPriv adds payload encryption.
3
Identify MIB querying operational PDU types.
Retrieving the next lexicographical object instance in a MIB tree corresponds to the GetNext operation.
Get requests retrieve a specific OID instance, whereas GetNext accesses the subsequent entry, enabling MIB walk capabilities.

Key Concept

SNMP Operational Mechanics, Traps vs. Informs, and SNMPv3 Security Levels
Rate this question