RUCKUS ICX NDM Security Technical Implementation Guide
Pick two releases to diff their requirements.
Open a previous version of this STIG.
- RMF Control
- AC-3
- Severity
- H
- CCI
- CCI-000213
- Version
- RCKS-NDM-000100
- Vuln IDs
-
- V-273784
- Rule IDs
-
- SV-273784r1111052_rule
Checks: C-77875r1111018_chk
Verify the network device is configured to assign appropriate user roles or access levels to authenticated users. 1. Confirm login authentication is configured for a AAA server followed by local authentication. SSH@ICX(config)# show running-config | include (aaa.*login|aaa.*exec) aaa authentication login default radius local aaa authorization exec default radius 2. Verify local accounts have desired privilege levels. SSH@ICX# show user Username Password Encrypt Priv Status Expire Time ====================================================================================================================== local $1$b6Mn/o0q$/HIqAT.num4n80Pyd0um7 enabled 0 enabled Never If using a AAA for authentication and "aaa authorization exec" line is not present, this is a finding. If the local user account does not have the correct privilege level assigned, this is a finding.
Fix: F-77780r1110532_fix
Configure the network device to assign appropriate user roles or access levels to authenticated users. 1. Configure local account: username [user] privilege [priv_lvl] password [password] ... where priv_lvl equals: 0 – Super User level (full read-write access) 4 – Port Configuration level 5 – Read Only level 2. Configure a RADIUS (or TACACS+) server: radius-server host x.x.x.x auth-port 1812 acct-port 1813 default key [shared_secret] 3. Configure AAA authentication: aaa authentication login default radius local aaa authorization exec default radius
- RMF Control
- AC-4
- Severity
- M
- CCI
- CCI-001368
- Version
- RCKS-NDM-000110
- Vuln IDs
-
- V-273785
- Rule IDs
-
- SV-273785r1110836_rule
Checks: C-77876r1110534_chk
Verify management access is limited to the desired subnets: SSH@ICX(config)# show management access management access src-ip 192.168.1.0 255.255.255.0 allow ssh If the ICX switch does not enforce approved authorizations for controlling the flow of management information within the device based on information control policies, this is a finding.
Fix: F-77781r1110535_fix
Configure management access to limit source address and protocol as required: management access src-ip [subnet_addr]/[mask] allow [protocol]
- RMF Control
- AC-7
- Severity
- M
- CCI
- CCI-000044
- Version
- RCKS-NDM-000120
- Vuln IDs
-
- V-273786
- Rule IDs
-
- SV-273786r1110837_rule
Checks: C-77877r1110537_chk
Review the device configuration to verify that it enforces the limit of three consecutive invalid logon attempts. show running-config | include disable-on-login-failure enable user disable-on-login-failure 3 login-recovery-time in-secs 900 If the device is not configured to enforce the limit of three consecutive invalid logon attempts, after which time it must block any login attempt for 15 minutes, this is a finding.
Fix: F-77782r1110538_fix
Configure the network device to enforce the limit of three consecutive invalid logon attempts during a 15-minute time period. enable user disable-on-login-failure 3 login-recovery-time in-mins 15
- RMF Control
- AC-8
- Severity
- M
- CCI
- CCI-000048
- Version
- RCKS-NDM-000130
- Vuln IDs
-
- V-273787
- Rule IDs
-
- SV-273787r1110838_rule
Checks: C-77878r1110540_chk
Check for presence of "banner motd ..." command and verify the subsequent text complies: show running-config | begin banner If the Standard Mandatory DOD Notice and Consent Banner is not configured, this is a finding.
Fix: F-77783r1110541_fix
Issue the commands below to configure login banner: SSH@ICX(config)# banner motd ^C Enter TEXT message, End with the character '^'. You are accessing a U.S. Government (USG) Information System (IS) that is provided for USG-authorized use only. By using this IS (which includes any device attached to this IS), you consent to the following conditions: -The USG routinely intercepts and monitors communications on this IS for purposes including, but not limited to, penetration testing, COMSEC monitoring, network operations and defense, personnel misconduct (PM), law enforcement (LE), and counterintelligence (CI) investigations. -At any time, the USG may inspect and seize data stored on this IS. -Communications using, or data stored on, this IS are not private, are subject to routine monitoring, interception, and search, and may be disclosed or used for any USG-authorized purpose. -This IS includes security measures (e.g., authentication and access controls) to protect USG interests--not for your personal benefit or privacy. -Notwithstanding the above, using this IS does not constitute consent to PM, LE or CI investigative searching or monitoring of the content of privileged communications, or work product, related to personal representation or services by attorneys, psychotherapists, or clergy, and their assistants. Such communications and work product are private and confidential. See User Agreement for details. ^C
- RMF Control
- AU-14
- Severity
- M
- CCI
- CCI-001464
- Version
- RCKS-NDM-000180
- Vuln IDs
-
- V-273788
- Rule IDs
-
- SV-273788r1110839_rule
Checks: C-77879r1110543_chk
Verify that logging is enabled: SSH@ICX(config)# show running-config | include logging logging console logging persistence logging cli-command logging host x.x.x.x logging host y.y.y.y If "no logging on" exists, this is a finding.
Fix: F-77784r1110544_fix
Enable logging: SSH@ICX(config)# logging on SSH@ICX(config)# exit SSH@ICX# write memory
- RMF Control
- AU-3
- Severity
- M
- CCI
- CCI-000135
- Version
- RCKS-NDM-000250
- Vuln IDs
-
- V-273789
- Rule IDs
-
- SV-273789r1110840_rule
Checks: C-77880r1110546_chk
Verify logging is enabled: SSH@ICX(config)# show running-config | include logging logging console logging persistence logging cli-command logging host x.x.x.x logging host y.y.y.y If "logging cli-command" is not present or "no logging on" exists, this is a finding.
Fix: F-77785r1110547_fix
Enable CLI command logging: SSH@ICX(config)# logging cli-command SSH@ICX(config)# exit SSH@ICX# write memory
- RMF Control
- CM-7
- Severity
- H
- CCI
- CCI-000382
- Version
- RCKS-NDM-000340
- Vuln IDs
-
- V-273798
- Rule IDs
-
- SV-273798r1110830_rule
Checks: C-77889r1110573_chk
Check the configuration for unnecessary/nonsecure functions including any of the below commands: ip dns server … web-management http web-management https telnet server ip proxy-arp If the above or any other service/function deemed unnecessary or unsecure is listed, this is a finding.
Fix: F-77794r1110574_fix
Disable unnecessary/unsecure functions as required, such as: SSH@ICX(config)# web http disable SSH@ICX(config)# web https disable SSH@ICX(config)# no ip proxy-arp SSH@ICX(config)# no ip dns server [address] SSH@ICX(config)# no telnet server
- RMF Control
- AC-2
- Severity
- M
- CCI
- CCI-001358
- Version
- RCKS-NDM-000350
- Vuln IDs
-
- V-273799
- Rule IDs
-
- SV-273799r1110841_rule
Checks: C-77890r1110576_chk
View configuration for locally defined user accounts: SSH@ICX(config)#show running-config | include username If there is more than one locally defined user account, this is a finding.
Fix: F-77795r1110577_fix
Remove excess locally defined users: SSH@ICX(config)# no username [account_name]
- RMF Control
- Severity
- M
- CCI
- CCI-004066
- Version
- RCKS-NDM-000390
- Vuln IDs
-
- V-273802
- Rule IDs
-
- SV-273802r1110842_rule
Checks: C-77893r1110585_chk
Verify strict password enforcement is configured: SSH@ICX(config)#show running-config | include strict-password-enforcement If strict-password-enforcement is not configured, this is a finding.
Fix: F-77798r1110586_fix
Configure strict password enforcement: SSH@ICX(config)# enable strict-password-enforcement
- RMF Control
- IA-7
- Severity
- H
- CCI
- CCI-000803
- Version
- RCKS-NDM-000500
- Vuln IDs
-
- V-273808
- Rule IDs
-
- SV-273808r1111022_rule
Checks: C-77899r1111020_chk
Verify the FIPS module has been enabled. Router#fips show Cryptographic Module Version: FI-IP-CRYPTO FIPS mode: Administrative status ON: Operational status ON Common-Criteria: Administrative status ON: Operational status ON System Specific: OS monitor access status is: Disabled Management Protocol Specific: Telnet server: Disabled Telnet client: Disabled TFTP client: Disabled SNMP Access to security objects: Disabled Critical security Parameter updates across FIPS boundary: Protocol Shared secret and host passwords: Clear Password Display: Disabled Certificate Specific: HTTPS RSA Host Keys and Signature: Clear SSH DSA Host keys: Clear SSH RSA Host keys: Clear CC Enable AAA Server Any: Retain If the fips show command does not output "FIPS mode: Administrative status ON: Operational status ON", this is a finding.
Fix: F-77804r1111021_fix
Configure the network device to use FIPS 140-2/140-3 approved algorithms for authentication to a cryptographic module. Use a console session directly attached to the ICX switch to log in: device(config)#configuration terminal device(config)# fips enable common-criteria device# fips zeroize all device# write memory device# reload
- RMF Control
- SC-10
- Severity
- H
- CCI
- CCI-001133
- Version
- RCKS-NDM-000520
- Vuln IDs
-
- V-273809
- Rule IDs
-
- SV-273809r1110832_rule
Checks: C-77900r1110606_chk
Check CLI configuration: SSH@ICX(config)#show cli config CLI Session Configuration session timeout : 5 min skip-page mode : disabled skip-page config : disabled rconsole-off : disabled alias : There are no entries in the alias list. If the idle timeout is greater than five minutes or equal to 0 (i.e., no timeout), this is a finding.
Fix: F-77805r1110607_fix
Configure CLI timeout to five minutes or less (default is 2 min): SSH@ICX(config)#cli timeout 5
- RMF Control
- AU-4
- Severity
- M
- CCI
- CCI-001849
- Version
- RCKS-NDM-000650
- Vuln IDs
-
- V-273820
- Rule IDs
-
- SV-273820r1110843_rule
Checks: C-77911r1110639_chk
Verify the log size complies with organization-defined audit record storage: ICX# show logging Syslog logging: enabled ( 0 messages dropped, 0 flushes, 7 overruns) Buffer logging: level ACDMEINW, 4000 messages logged level code: A=alert C=critical D=debugging M=emergency E=error I=informational N=notification W=warning Static Log Buffer: May 01 19:30:50:I:System: Stack unit 1 POE PS 1, Internal Power supply with 370000 mwatts capacity is up May 01 19:30:55:I:System: Stack unit 1 Fan 1 (Rear Side Right), ok May 01 19:30:55:I:System: Stack unit 1 Fan 2 (Rear Side Left), ok Dynamic Log Buffer (4000 lines): Jul 31 14:24:54:I:CLI CMD: "show logging" by local user from ssh If the size of the Dynamic Log Buffer does not meet organization-defined audit record storage requirements, this is a finding.
Fix: F-77816r1110640_fix
Configure logging: ICX(config)#logging buffered 4000 Note: Reload may be required to put new log size into effect.
- RMF Control
- AU-8
- Severity
- M
- CCI
- CCI-001890
- Version
- RCKS-NDM-000680
- Vuln IDs
-
- V-273821
- Rule IDs
-
- SV-273821r1111025_rule
Checks: C-77912r1111023_chk
Verify a time zone is configured on the device: SSH@ICX# show clock 15:13:51.679 GMT+00 Mon Jan 15 2024 If the time does not reflect a time zone that can be mapped to GMT, this is a finding.
Fix: F-77817r1111024_fix
Configure a time zone as needed: SSH@ICX(config) clock timezone [timezone]
- RMF Control
- IA-3
- Severity
- M
- CCI
- CCI-001967
- Version
- RCKS-NDM-000730
- Vuln IDs
-
- V-273825
- Rule IDs
-
- SV-273825r1110845_rule
Checks: C-77916r1110654_chk
View SNMP users: SSH@ICX# show snmp user username = admin1 acl name = <none> group = lab security model = v3 group acl name = <none> group ipv6 acl name = <none> authtype = sha authkey = 6e3e368283194dffcdabde95c9c44e795de911c2 privtype = aes privkey = c8b94fccfc1c845ed8a0d7b172405feb engine ID= 80 0 7c7 3d4c19e609a58 If any users are not configured for authtype sha, this is a finding.
Fix: F-77821r1110655_fix
Delete any SNMP users not configured for SHA/AES. Configure SNMP user account for SHA/AES. SSH@ICX(config)#snmp-server user test_admin test_group v3 auth sha256 [security-string] priv aes [security-key]
- RMF Control
- IA-3
- Severity
- M
- CCI
- CCI-001967
- Version
- RCKS-NDM-000740
- Vuln IDs
-
- V-273826
- Rule IDs
-
- SV-273826r1110846_rule
Checks: C-77917r1110657_chk
View NTP configuration: SSH@ICX# show running-config | begin ntp ntp disable authenticate md5 authenticate authentication-key key-id 1 sha1 2 $VWlkRGkt server x.x.x.x key 1 server y.y.y.y key 1 If the NTP servers are not configured for authentication that is cryptographically based, this is a finding.
Fix: F-77822r1110658_fix
Configure NTP for authentication using SHA1: SSH@ICX(config)# ntp SSH@ICX(config-ntp)# disable authenticate md5 SSH@ICX(config-ntp)# authenticate SSH@ICX(config-ntp)# authentication-key key-id 1 sha1 [password]
- RMF Control
- SC-5
- Severity
- M
- CCI
- CCI-002385
- Version
- RCKS-NDM-000790
- Vuln IDs
-
- V-273829
- Rule IDs
-
- SV-273829r1110847_rule
Checks: C-77920r1110666_chk
Check whether DDoS protection in place: SSH@ICX# show running-config | include burst ip icmp attack-rate burst-normal 50 burst-max 100 lockup 300 ip tcp burst-normal 30 burst-max 100 lockup 300 * burst-normal, burst-max, and lockup values may vary by site. If the switch is not configured with DDoS protection this is a finding.
Fix: F-77825r1110667_fix
Configure DDoS protection: SSH@ICX(config)# ip icmp attack-rate burst-normal 50 burst-max 100 lockup 300 SSH@ICX(config)# ip tcp burst-normal 30 burst-max 100 lockup 300 Note: burst-normal, burst-max, and lockup values may vary by site.
- RMF Control
- SI-2
- Severity
- M
- CCI
- CCI-002605
- Version
- RCKS-NDM-000800
- Vuln IDs
-
- V-273830
- Rule IDs
-
- SV-273830r1110848_rule
Checks: C-77921r1110669_chk
Obtain evidence that firmware updates are consistently applied to the network device within the time frame defined for each patch. If such evidence cannot be obtained, or the evidence that is obtained indicates a pattern of noncompliance, this is a finding. If the network device does not install security-relevant updates within the time period directed by the authoritative source, this is a finding.
Fix: F-77826r1110670_fix
Institute and adhere to policies and procedures to ensure that patches are consistently applied to the network device within the time allowed.
- RMF Control
- AU-4
- Severity
- M
- CCI
- CCI-001851
- Version
- RCKS-NDM-000880
- Vuln IDs
-
- V-273832
- Rule IDs
-
- SV-273832r1110849_rule
Checks: C-77923r1110675_chk
Verify external syslog server is configured and online: show running-config | include logging host If there is no output or the host displayed is unreachable, this is a finding.
Fix: F-77828r1110676_fix
Configure syslog host: SSH@ICX(config)# logging host x.x.x.x
- RMF Control
- CM-6
- Severity
- H
- CCI
- CCI-000370
- Version
- RCKS-NDM-000920
- Vuln IDs
-
- V-273835
- Rule IDs
-
- SV-273835r1110833_rule
Checks: C-77926r1110684_chk
Verify that AAA authentication and authorization are configured along with RADIUS/TACACS+ servers. SSH@ICX#show running-config | include (aaa|radius) aaa authentication dot1x default radius radius-server host x.x.x.x auth-port 1812 acct-port 1813 default key 2 $VWlkRGkt dot1x mac-auth radius-server host y.y.y.y auth-port 1812 acct-port 1813 default key 2 $UGlkRGktdG5v dot1x mac-auth radius-server key 2 $UGlkRGktdG5v aaa authentication login default radius local aaa authorization commands 0 default radius aaa authorization exec default radius If two central authentication servers are not configured, this is a finding.
Fix: F-77831r1110685_fix
Configure AAA as needed: radius-server host x.x.x.x auth-port 1812 acct-port 1813 default key [shared_secret] radius-server host y.y.y.y auth-port 1812 acct-port 1813 default key [shared_secret] aaa authentication login default radius local aaa authorization commands 0 default radius aaa authorization exec default radius
- RMF Control
- CM-6
- Severity
- M
- CCI
- CCI-000366
- Version
- RCKS-NDM-000950
- Vuln IDs
-
- V-273838
- Rule IDs
-
- SV-273838r1110850_rule
Checks: C-77929r1110693_chk
Review the certificate used by the system using the command: SSH@ICX# show ip ssl device-certificate Certificate: Data: Version: 3 (0x2) Serial Number: 3488150 (0x353996) Signature Algorithm: sha256WithRSAEncryption Issuer: CN=RuckusPKI-DeviceSubCA-2, O=Ruckus Wireless Inc., L=Sunnyvale, ST=California, C=US Validity Not Before: Jun 9 09:40:52 2023 GMT Not After : Jun 9 09:40:52 2048 GMT Subject: CN=SN-FNNxxxxxxxx, O=Ruckus Wireless Inc., L=Sunnyvale, ST=California, C=US Subject Public Key Info: Public Key Algorithm: rsaEncryption Public-Key: (2048 bit) Modulus: 00:c5:c0:60:9a:cb:4a:a3:9f:fb:63:c6:21:c2:55: 1f:66:95:f2:9a:fb:eb:37:33:d1:73:28:4b:14:8a: ... If the certificate is not from an approved service provider, this is a finding.
Fix: F-77834r1110694_fix
Load an approved certificate onto the system: ICX# copy scp flash x.x.x.x client_cert.pem ssl-client-cert ICX# copy scp flash x.x.x.x client_cert.key.pem ssl-client-private-key ICX# copy scp flash x.x.x.x root_cert.pem ssl-trust-cert
- RMF Control
- AU-4
- Severity
- H
- CCI
- CCI-001851
- Version
- RCKS-NDM-000960
- Vuln IDs
-
- V-273839
- Rule IDs
-
- SV-273839r1110834_rule
Checks: C-77930r1110696_chk
Verify logging is enabled: SSH@ICX(config)# show running-config | include logging logging console logging persistence logging cli-command logging host x.x.x.x logging host y.y.y.y If the site does not have two or more logging hosts, this is a finding.
Fix: F-77835r1110697_fix
Configure two or more logging hosts: SSH@ICX(config)# logging host x.x.x.x SSH@ICX(config)# logging host y.y.y.y
- RMF Control
- CM-6
- Severity
- H
- CCI
- CCI-000366
- Version
- RCKS-NDM-000970
- Vuln IDs
-
- V-273840
- Rule IDs
-
- SV-273840r1110835_rule
Checks: C-77931r1110699_chk
Use "show version" to determine the version being used. Verify with the RUCKUS Networks support portal that the release is supported. If the switch is not running at the most current federally compliant release, this is a finding.
Fix: F-77836r1110700_fix
Upgrade the ICX firmware to a supported release.
- RMF Control
- Severity
- M
- CCI
- CCI-004909
- Version
- RCKS-NDM-001120
- Vuln IDs
-
- V-273848
- Rule IDs
-
- SV-273848r1111027_rule
Checks: C-77939r1111026_chk
Verify the network device is configured to include only approved trust anchors in trust stores or certificate stores managed by the organization. Verify Device Certificate: device# show ip ssl device-certificate Certificate: Data: Version: 3 (0x2) Serial Number: 238779085 (0xe3b7acd) Signature Algorithm: sha256WithRSAEncryption Issuer: C=US, ST=fe044db7a0ec05cf9736bfbcc2e186a76da5a13e49b1f12c8717e5c5bf5c32f2, L=10.176.156.30, O=cc:4e:24:8c:67:e8, OU=JLSAWZOIFZMD, CN=ICX Validity Not Before: Dec 3 22:40:24 2019 GMT Not After : Nov 19 22:40:24 2079 GMT Subject: C=US, ST=fe044db7a0ec05cf9736bfbcc2e186a76da5a13e49b1f12c8717e5c5bf5c32f2, L=10.176.156.30, O=cc:4e:24:8c:67:e8, OU=JLSAWZOIFZMD, CN=ICX Subject Public Key Info: Public Key Algorithm: rsaEncryption Public-Key: (2048 bit) Modulus: 00:9f:87:35:01:dd:c3:63:52:7b:9d:aa:13:b7:39: a9:0a:12:51:84:6e:57:ed:62:65:b7:79:31:72:35: 08:9a:d8:36:8b:f3:c8:76:47:90:5f:88:37:bc:6b: 1d:1f:5c:fd:0e:94:2d:7b:3a:54:d0:17:3c:96:d7: be:a5:d8:0a:9c:54:08:08:30:06:84:a3:cb:1c:9f: e0:ab:25:ac:59:02:7e:7b:cd:c2:bf:58:8d:63:09: Verify SSL Certificate: device(config)# show ip ssl certificate Trusted Certificates: Dynamic: Index 0: Signature Algorithm: sha256WithRSAEncryption Issuer: CN: 10.25.105.201 Validity: Not Before: 2014 Aug 22 05:12:45 Not After : 2079 Aug 21 05:12:45 Subject: CN: 10.25.105.201 X509v3 extensions: X509v3 Subject Alternative Name: IP Address: 10.25.105.201 Signature: 12:ec:41:d8:01:45:61:ce:cf:7e:80:de:a6:7c:a7:2e:01:7f: 42:27:22:1d:ac:a2:47:c5:0d:4f:e3:68:24:de:bf:50:40:65: 25:8c:30:bd:ff:a7:d0:21:73:d2:ba:5e:67:42:1f:bb:97:4a: d9:1d:c3:ca:31:c4:59:10:79:d1:42:f4:b6:1a:b0:98:4e:a8: ef:e2:a2:98:c3:14:16:63:50:02:a0:18:9c:7a:e3:17:39:0d: b7:30:ab:23:9f:63:bd:0f:9e:d8:67:b0:fe:ec:3b:fa:4c:f4: 3d:34:e2:99:0e:99:24:ec:93:fb:8a:e5:4a:bf:74:d6:ff:91: 0a:dc:fb:b9:4f:91:5d:d4:f6:77:23:eb:ec:eb:3a:62:08:e1: a6:ea:a8:52:b6:39:62:db:29:fa:61:1d:fd:d5:02:31:04:73: 50:ad:de:41:54:a5:e2:96:2d:9c:f4:68:b2:68:05:bb:39:47: ee:74:89:a2:8c:30:f0:f9:d7:d5:4b:3b:e2:95:6f:82:61:a3: c2:79:4c:f2:11:56:f8:2f:cc:fc:2b:4b:cb:3b:54:59:f0:8b: 5b:70:e1:27:c3:57:25:eb:35:c6:07:ea:6d:0b:34:04:95:81: 35:e6:64:c6:b8:72:e8:24:18:bd:ca:90:99:74:45:44:85:71: 9e:7f:13:96: If the network device is not configured to include only approved trust anchors in trust stores or certificate stores managed by the organization, this is a finding.
Fix: F-77844r1110799_fix
To allow a client to communicate with another RUCKUS ICX device using an SSL connection, a set of digital certificates and RSA public-private key pairs must be configured on the device. A digital certificate is used to identify the connecting client to the server. The certificate contains information about the issuing Certificate Authority as well as a public key. Digital certificates and private keys can be imported from a server. Copy the certificates from the server to flash memory and save the configuration. Router# copy scp flash 10.1.1.1 client_cert.pem ssl-client-cert Router# copy scp flash 10.1.1.1 client_cert.key.pem ssl-client-private-key Router# copy scp flash 10.1.1.1 root_cert.pem ssl-trust-cert Router# write memory
- RMF Control
- Severity
- M
- CCI
- CCI-004922
- Version
- RCKS-NDM-001140
- Vuln IDs
-
- V-273850
- Rule IDs
-
- SV-273850r1111029_rule
Checks: C-77941r1111028_chk
Verify the network device is configured to synchronize system clocks within and between systems or system components: device#show ntp association address Domain name Reference Clock st when poll Reach delay offset disp ~ 216.239.35.8 None 1 1 64 1 34.449 21474836 187.55 * synced, # selected, + candidate, - outlayer, x falseticker, ~ configured, **More characters in domain name If the network device is not configured to synchronize system clocks within and between systems or system components, this is a finding.
Fix: F-77846r1110730_fix
Configure NTP clock synchronization. Configure NTP: device#configure terminal device(config)# ntp device(config-ntp)#server 216.239.35.8 (example IP) device(config-ntp)# write memory Configure NTP with authentication: device#configure terminal device(config)# ntp device(config-ntp)#server 216.239.35.8 (example IP) device(config-ntp)#authentication-key key-id 1234 sha1 testntpsession device(config-ntp)# write memory
- RMF Control
- Severity
- M
- CCI
- CCI-004923
- Version
- RCKS-NDM-001150
- Vuln IDs
-
- V-273851
- Rule IDs
-
- SV-273851r1110853_rule
Checks: C-77942r1110732_chk
Verify NTP is configured and synchronizing with two peers: device#show ntp association address Domain name Reference Clock st when poll Reach delay offset disp *~ 216.239.35.8 None GOOG 1 56 64 377 30.444 2.0021 2.884 +~ 23.150.40.242 pool.ntp.org 204.9.54.119 2 61 64 377 44.339 -0.6625 1.220 * synced, # selected, + candidate, - outlayer, x falseticker, ~ configured, **More characters in domain name
Fix: F-77847r1110733_fix
Configure NTP clock synchronization. Configure NTP: device#configure terminal device(config)# ntp device(config-ntp)#server 216.239.35.8 (example IP) device(config-ntp)# write memory Configure NTP with authentication: device#configure terminal device(config)# ntp device(config-ntp)#server 216.239.35.8 (example IP) device(config-ntp)#authentication-key key-id 1234 sha1 testntpsession device(config-ntp)# write memory