A network engineer is troubleshooting event notifications on a Cisco IOS XE router. During periods of heavy WAN link congestion, critical interface state notifications sent to the Network Management System (NMS) are occasionally dropped and lost. The organization mandates that all management notifications must require an explicit application-layer acknowledgment from the NMS to trigger retransmissions if unacknowledged, while ensuring message integrity, authentication, and payload encryption. Which SNMP configuration change satisfies both the operational delivery guarantee and security requirements?
- Configure the router to send SNMP Informs rather than Traps, and define the SNMPv3 host with the authPriv security level.Cevap
- BReconfigure SNMP notification transport from UDP port 162 to TCP port 161 so that transport-layer windowing and retransmissions automatically guarantee packet delivery.
- CMaintain SNMP Traps on UDP port 162 and configure an inbound Access Control List on the WAN interface to permit incoming TCP ACK packets from the NMS.
- DApply the ip helper-address command on the local router interface pointing to the NMS IP address to relay SNMP trap broadcasts across the WAN.
Cevap
Configure the router to send SNMP Informs rather than Traps, and define the SNMPv3 host with the authPriv security level.
SNMP Traps are unidirectional, unacknowledged UDP messages sent to port 162. Under congested network conditions, lost Traps are never retransmitted. In contrast, SNMP Informs require the receiving Network Management System (NMS) to return an SNMP response back to the agent; if an acknowledgment is not received within a timeout period, the router retransmits the notification. Additionally, SNMPv3 authPriv provides both HMAC authentication and payload encryption (privacy), satisfying the strict security policy.
Adım Adım Çözüm
Anahtar Kavram
SNMP Informs vs Traps operational mechanics and SNMPv3 Security Levels (authPriv)