A network security auditor is reviewing an enterprise organization's network logging and monitoring infrastructure to meet stringent compliance regulations. The audit reveals two major vulnerabilities: (1) SNMP management traffic captures reveal cleartext interface statistics and OID payloads despite network administrators requiring password access to the monitoring console, and (2) during periodic core switch link saturation, critical Syslog alerts from edge devices are consistently dropped before reaching the centralized SIEM. Which combination of configuration updates will resolve both compliance findings by ensuring cryptographic privacy of network management payloads and reliable, tamper-resistant log delivery?
- Migrate SNMP monitoring to SNMPv3 configured for authPriv using SHA authentication and AES encryption, and reconfigure Syslog transport to use TLS over TCP port 6514.Answer
- BReconfigure SNMP to SNMPv3 operating at the authNoPriv security level using SHA authentication, and retain Syslog transmission over standard UDP port 514 wrapped in an IPsec tunnel.
- CUpgrade management monitoring to SNMPv2c using complex community strings, and increase the Syslog server ring buffer capacity while preserving UDP port 514 transport.
- DConfigure SNMPv3 in noAuthNoPriv mode with custom access control lists, and reconfigure the Syslog daemon to transmit audit events over TCP port 514.
Answer
Migrate SNMP monitoring to SNMPv3 configured for authPriv using SHA authentication and AES encryption, and reconfigure Syslog transport to use TLS over TCP port 6514.
SNMPv3 authPriv combines cryptographic user authentication (such as SHA) with symmetric payload encryption (such as AES), preventing eavesdroppers from reading cleartext OID values and interface stats. Furthermore, configuring Syslog over TLS using TCP port 6514 ensures both cryptographic log security and reliable, acknowledged packet delivery that prevents log loss during network congestion.
Step-by-Step Solution
Key Concept
SNMPv3 Security Levels (authPriv) and Secure Syslog Transport (TLS/TCP Port 6514)