The Cisco switch must be configured to authenticate Network Time Protocol (NTP) sources using authentication that is cryptographically based.
Overview
| Finding ID | Version | Rule ID | IA Controls | Severity |
| V-220502 | CISC-ND-001150 | SV-220502r1107166_rule | CCI-001967 | medium |
| Description | ||||
| If Network Time Protocol is not authenticated, an attacker can introduce a rogue NTP server. This rogue server can then be used to send incorrect time information to network devices, which will make log timestamps inaccurate and affect scheduled actions. NTP authentication is used to prevent this tampering by authenticating the time source. | ||||
| STIG | Date | |||
| Cisco NX OS Switch NDM Security Technical Implementation Guide | 2025-05-19 | |||
Details
Check Text (C-220502r1107166_chk)
Review the Cisco switch configuration to verify that it is compliant with this requirement as shown in the configuration example below:
ntp distribute
ntp server 10.1.12.10 key 1
ntp server 10.1.22.13 key 1
ntp authenticate
ntp authentication-key 1 hmac-sha2-256 xxxxxx
ntp trusted-key 1
ntp commit
If the Cisco switch is not configured to authenticate NTP sources using authentication that is cryptographically based, this is a finding.
Fix Text (F-22206r1107165_fix)
Configure the Cisco switch to authenticate NTP sources using authentication that is cryptographically based as shown in the example below:
SW1(config)# ntp authenticate
SW1(config)# ntp authentication-key 1 hmac-sha2-256 xxxxxx
SW1(config)# ntp trusted-key 1
SW1(config)# ntp server 10.1.12.10 key 1
SW1(config)# ntp server 10.1.22.13 key 1
SW1(config)# ntp commit
SW1(config)# end