Cisco IOS Switch NDM Security Technical Implementation Guide
Pick two releases to diff their requirements.
Open a previous version of this STIG.
Digest of Updates ✎ 1
Comparison against the immediately-prior release (V2R7). Rule matching uses the Group Vuln ID. Content-change detection compares the rule’s description, check, and fix text after stripping inline markup — cosmetic-only edits aren’t flagged.
Content changes 1
- V-220617 High checkfix The Cisco switch must be configured to use at least two authentication servers to authenticate users prior to granting administrative access.
- RMF Control
- AC-10
- Severity
- M
- CCI
- CCI-000054
- Version
- CISC-ND-000010
- Vuln IDs
-
- V-220570
- V-101265
- Rule IDs
-
- SV-220570r879511_rule
- SV-110369
Checks: C-22285r835066_chk
Note: This requirement is not applicable to file transfer actions such as FTP, SCP, and SFTP. Review the switch configuration to determine if concurrent management sessions are limited as show in the example below: ip http secure-server ip http max-connections 2 … … … For platforms that support the session-limit command: line vty 0 4 session-limit 2 transport input ssh For platforms that do not support the session-limit command, the sessions can also be limited by reducing the number of active vty lines as shown in the example below: line vty 0 1 transport input ssh line vty 2 4 transport input none If the switch is not configured to limit the number of concurrent management sessions, this is a finding.
Fix: F-22274r835067_fix
Configure the switch to limit the number of concurrent management sessions to an organization-defined number as shown in the example below: SW4(config)#ip http max-connections 2 SW4(config)#line vty 0 1 SW4(config)#transport input ssh SW4(config)#line vty 2 4 SW4(config)#transport input none
- RMF Control
- AC-2
- Severity
- M
- CCI
- CCI-000018
- Version
- CISC-ND-000090
- Vuln IDs
-
- V-220571
- V-101267
- Rule IDs
-
- SV-220571r879525_rule
- SV-110371
Checks: C-22286r507759_chk
Review the switch configuration to determine if it automatically audits account creation. The configuration should look similar to the example below: archive log config logging enable Note: Configuration changes can be viewed using the show archive log config all command. If account creation is not automatically audited, this is a finding.
Fix: F-22275r507760_fix
Configure the switch to log account creation using the following commands: SW4(config)#archive SW4(config-archive)#log config SW4(config-archive-log-cfg)#logging enable SW4(config-archive-log-cfg)#end
- RMF Control
- AC-2
- Severity
- M
- CCI
- CCI-001403
- Version
- CISC-ND-000100
- Vuln IDs
-
- V-220572
- V-101269
- Rule IDs
-
- SV-220572r879526_rule
- SV-110373
Checks: C-22287r507762_chk
Review the switch configuration to determine if it automatically audits account modification. The configuration should look similar to the example below: archive log config logging enable Note: Configuration changes can be viewed using the show archive log config all command. If account modification is not automatically audited, this is a finding.
Fix: F-22276r507763_fix
Configure the switch to log account modification using the following commands: SW4(config)#archive SW4(config-archive)#log config SW4(config-archive-log-cfg)#logging enable SW4(config-archive-log-cfg)#end
- RMF Control
- AC-2
- Severity
- M
- CCI
- CCI-001404
- Version
- CISC-ND-000110
- Vuln IDs
-
- V-220573
- V-101271
- Rule IDs
-
- SV-220573r879527_rule
- SV-110375
Checks: C-22288r507765_chk
Review the switch configuration to determine if it automatically audits account disabling. The configuration should look similar to the example below: archive log config logging enable Note: Configuration changes can be viewed using the show archive log config all command. If account disabling is not automatically audited, this is a finding.
Fix: F-22277r507766_fix
Configure the switch to log account disabling using the following commands: SW4(config)#archive SW4(config-archive)#log config SW4(config-archive-log-cfg)#logging enable SW4(config-archive-log-cfg)#end
- RMF Control
- AC-2
- Severity
- M
- CCI
- CCI-001405
- Version
- CISC-ND-000120
- Vuln IDs
-
- V-220574
- V-101273
- Rule IDs
-
- SV-220574r879528_rule
- SV-110377
Checks: C-22289r507768_chk
Review the switch configuration to determine if it automatically audits account removal. The configuration should look similar to the example below: archive log config logging enable Note: Configuration changes can be viewed using the show archive log config all command. If account removal is not automatically audited, this is a finding.
Fix: F-22278r507769_fix
Configure the switch to log account removal using the following commands: SW4(config)#archive SW4(config-archive)#log config SW4(config-archive-log-cfg)#logging enable SW4(config-archive-log-cfg)#end
- RMF Control
- AC-4
- Severity
- M
- CCI
- CCI-001368
- Version
- CISC-ND-000140
- Vuln IDs
-
- V-220575
- V-101275
- Rule IDs
-
- SV-220575r879533_rule
- SV-110379
Checks: C-22290r835069_chk
Review the Cisco switch configuration to verify that administrative access to the switch is allowed only from hosts residing in the management network. Step 1: Verify that the line vty has an ACL inbound applied as shown in the example below: line vty 0 1 access-class MANAGEMENT_NET in transport input ssh Step 2: Verify that the ACL permits only hosts from the management network to access the switch. iip access-list extended MANAGEMENT_NET permit ip x.x.x.0 0.0.0.255 any deny ip any any log-input If the Cisco switch is not configured to enforce approved authorizations for controlling the flow of management information within the device based on control policies, this is a finding.
Fix: F-22279r835070_fix
Configure the Cisco switch to restrict management access to specific IP addresses via SSH as shown in the example below: SW2(config)#ip access-list extended MANAGEMENT_NET SW2(config-std-nacl)#permit x.x.x.0 0.0.0.255 SW2(config-std-nacl)#exit SW2(config)#line vty 0 1 SW2(config-line)#transport input ssh SW2(config-line)#access-class MANAGEMENT_NET in SW2(config-line)#end
- RMF Control
- AC-7
- Severity
- M
- CCI
- CCI-000044
- Version
- CISC-ND-000150
- Vuln IDs
-
- V-220576
- V-101277
- Rule IDs
-
- SV-220576r879546_rule
- SV-110381
Checks: C-22291r507774_chk
Review the Cisco switch configuration to verify that it enforces the limit of three consecutive invalid logon attempts as shown in the example below: login block-for 900 attempts 3 within 120 Note: The configuration example above will block any logon attempt for 15 minutes after three consecutive invalid logon attempts within a two-minute period. If the Cisco switch is not configured to enforce the limit of three consecutive invalid logon attempts, this is a finding.
Fix: F-22280r507775_fix
Configure the Cisco switch to enforce the limit of three consecutive invalid logon attempts as shown in the example below: SW2(config)#login block-for 900 attempts 3 within 120
- RMF Control
- AC-8
- Severity
- M
- CCI
- CCI-000048
- Version
- CISC-ND-000160
- Vuln IDs
-
- V-220577
- V-101279
- Rule IDs
-
- SV-220577r879547_rule
- SV-110383
Checks: C-22292r507777_chk
Review the Cisco switch configuration to verify that it displays the Standard Mandatory DoD Notice and Consent Banner before granting access to the device as shown in the example below: banner login ^C 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 If the Cisco switch is not configured to display the Standard Mandatory DoD Notice and Consent Banner before granting access to the device, this is a finding.
Fix: F-22281r507778_fix
Configure the Cisco switch to display the Standard Mandatory DoD Notice and Consent Banner before granting access as shown in the following example: SW1(config)#banner login # 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. # SW1(config)#end
- RMF Control
- AU-10
- Severity
- M
- CCI
- CCI-000166
- Version
- CISC-ND-000210
- Vuln IDs
-
- V-220578
- V-101281
- Rule IDs
-
- SV-220578r879554_rule
- SV-110385
Checks: C-22293r507780_chk
Review the Cisco switch configuration to verify that it logs administrator activity as shown in the example below: hostname R1 ! logging userinfo ! … … … archive log config logging enable ! Note: The logging userinfo global configuration command will generate a log when a user increases his or her privilege level. If logging of administrator activity is not configured, this is a finding.
Fix: F-22282r507781_fix
Configure the switch to log administrator activity as shown in the example below: SW1(config)#logging userinfo SW1(config)#archive SW1(config-archive)#log config SW1(config-archive-log-cfg)#logging enable SW1(config-archive-log-cfg)#end
- RMF Control
- AU-3
- Severity
- M
- CCI
- CCI-000131
- Version
- CISC-ND-000280
- Vuln IDs
-
- V-220580
- V-101285
- Rule IDs
-
- SV-220580r879564_rule
- SV-110389
Checks: C-22295r507786_chk
Verify that the switch is configured to include the date and time on all log records as shown in the configuration example below: service timestamps log datetime localtime If time stamps are not configured, this is a finding.
Fix: F-22284r507787_fix
Configure the switch to include the date and time on all log records as shown in the example below: SW1(config)#service timestamps log datetime localtime
- RMF Control
- AU-3
- Severity
- M
- CCI
- CCI-000132
- Version
- CISC-ND-000290
- Vuln IDs
-
- V-220581
- V-101287
- Rule IDs
-
- SV-220581r929020_rule
- SV-110391
Checks: C-22296r929019_chk
Review the deny statements in all interface ACLs to determine if the log-input parameter has been configured as shown in the example below. Note: log-input can only apply to interface bound ACLs. ip access-list extended BLOCK_INBOUND deny icmp any any log-input If the switch is not configured with the log-input parameter after any deny statements to note where packets have been dropped via an ACL, this is a finding.
Fix: F-22285r507790_fix
Configure the log-input parameter after any deny statements to provide the location as to where packets have been dropped via an ACL: SW1(config)#ip access-list extended BLOCK_INBOUND SW1(config-ext-nacl)#deny icmp any any log-input
- RMF Control
- AU-3
- Severity
- M
- CCI
- CCI-000135
- Version
- CISC-ND-000330
- Vuln IDs
-
- V-220582
- V-101289
- Rule IDs
-
- SV-220582r879569_rule
- SV-110393
Checks: C-22297r507792_chk
Review the Cisco switch configuration to verify that it generates audit records of configuration changes. The configuration example below will log all configuration changes: archive log config logging enable Note: Configuration changes can be viewed using the show archive log config all command. If the Cisco switch is not configured to generate audit records of configuration changes, this is a finding.
Fix: F-22286r507793_fix
Configure the Cisco switch to log all configuration changes as shown in the example below: SW4(config)#archive SW4(config-archive)#log config SW4(config-archive-log-cfg)#logging enable SW4(config-archive-log-cfg)#end
- RMF Control
- AU-9
- Severity
- M
- CCI
- CCI-000163
- Version
- CISC-ND-000380
- Vuln IDs
-
- V-220583
- V-101291
- Rule IDs
-
- SV-220583r879577_rule
- SV-110395
Checks: C-22298r507795_chk
Review the Cisco switch configuration to verify that it is configured to protect audit information. Step 1: If persistent logging is enabled as shown in the example below, go to Step 2. Otherwise, this requirement is not applicable. logging persistent url disk0:/logfile size 134217728 filesize 16384 Step 2: Verify that the switch is not configured with a privilege level other than "15" to allow access to the file system as shown in the example below: file privilege 10 Note: The default privilege level required for access to the file system is "15"; hence, the command file privilege "15" will not be shown in the configuration. If the switch is configured with a privilege level other than "15" to allow access to the file system, this is a finding.
Fix: F-22287r507796_fix
If persistent logging is enabled, configure the switch to only allow administrators with privilege level "15" access to the file system as shown in the example below: SW4(config)#file privilege 15
- RMF Control
- AU-9
- Severity
- M
- CCI
- CCI-000164
- Version
- CISC-ND-000390
- Vuln IDs
-
- V-220584
- V-101293
- Rule IDs
-
- SV-220584r879578_rule
- SV-110397
Checks: C-22299r507798_chk
Review the Cisco switch configuration to verify that it protects audit information from unauthorized deletion. Step 1: If persistent logging is enabled as shown in the example below, go to Step 2. Otherwise, this requirement is not applicable. logging persistent url disk0:/logfile size 134217728 filesize 16384 Step 2: Verify that the switch is not configured with a privilege level other than "15" to allow access to the file system as shown in the example below: file privilege 10 Note: The default privilege level required for access to the file system is "15"; hence, the command file privilege "15" will not be shown in the configuration. If the switch is configured with a privilege level other than "15" to allow access to the file system, this is a finding.
Fix: F-22288r507799_fix
If persistent logging is enabled, configure the switch to only allow administrators with privilege level "15" access to the file system as shown in the example below: SW4(config)#file privilege 15
- RMF Control
- CM-5
- Severity
- M
- CCI
- CCI-001499
- Version
- CISC-ND-000460
- Vuln IDs
-
- V-220585
- V-101295
- Rule IDs
-
- SV-220585r879586_rule
- SV-110399
Checks: C-22300r507801_chk
Review the Cisco switch configuration to verify that it limits software change privileges. Step 1: If persistent logging is enabled as shown in the example below, go to Step 2. Otherwise, this requirement is not applicable. logging persistent url disk0:/logfile size 134217728 filesize 16384 Step 2: Verify that the switch is not configured with a privilege level other than "15" to allow access to the file system as shown in the example below: file privilege 10 Note: The default privilege level required for access to the file system is "15"; hence, the command file privilege "15" will not be shown in the configuration. If the switch is configured with a privilege level other than "15" to allow access to the file system, this is a finding.
Fix: F-22289r507802_fix
If persistent logging is enabled, configure the switch to only allow administrators with privilege level "15" access to the file system as shown in the example below: SW4(config)#file privilege 15
- RMF Control
- CM-7
- Severity
- H
- CCI
- CCI-000382
- Version
- CISC-ND-000470
- Vuln IDs
-
- V-220586
- V-101297
- Rule IDs
-
- SV-220586r892388_rule
- SV-110401
Checks: C-22301r892386_chk
Verify that the switch does not have any unnecessary or nonsecure ports, protocols, and services enabled. For example, the following commands should not be in the configuration: boot network ip boot server ip bootp server ip dns server ip identd ip finger ip http server ip rcmd rcp-enable ip rcmd rsh-enable service config service finger service tcp-small-servers service udp-small-servers service pad service call-home If any unnecessary or nonsecure ports, protocols, or services are enabled, this is a finding.
Fix: F-22290r892387_fix
Disable the following services if enabled as shown in the example below: SW2(config)#no boot network SW2(config)#no ip boot server SW2(config)#no ip bootp server SW2(config)#no ip dns server SW2(config)#no ip identd SW2(config)#no ip finger SW2(config)#no ip http server SW2(config)#no ip rcmd rcp-enable SW2(config)#no ip rcmd rsh-enable SW2(config)#no service config SW2(config)#no service finger SW2(config)#no service tcp-small-servers SW2(config)#no service udp-small-servers SW2(config)#no service pad SW2(config)#no service call-home SW2(config)#end
- RMF Control
- AC-2
- Severity
- M
- CCI
- CCI-001358
- Version
- CISC-ND-000490
- Vuln IDs
-
- V-220587
- V-101299
- Rule IDs
-
- SV-220587r879589_rule
- SV-110403
Checks: C-22302r507807_chk
Step 1: Review the Cisco switch configuration to verify that a local account for last resort has been configured with a privilege level that will enable the administrator to troubleshoot connectivity to the authentication server. username xxxxxxxxxxx privilege 10 common-criteria-policy PASSWORD_POLICY password xxxxxxxxxx Note: The configured Common Criteria policy must be used when creating or changing the local account password as shown in the example above. Step 2: Verify that local is defined after radius or tacacs+ in the authentication order as shown in the example below: aaa authentication login default group tacacs+ local If the Cisco switch is not configured with only one local account to be used as the account of last resort in the event the authentication server is unavailable, this is a finding.
Fix: F-22291r507808_fix
Step 1: Configure a local account with the necessary privilege level to troubleshoot network outage and restore operations as shown in the following example: SW2(config)#username xxxxxxxxxxx privilege 10 common-criteria-policy PASSWORD_POLICY password xxxxxxxxxx Step 2: Configure the authentication order to use the local account if the authentication server is not reachable as shown in the following example: SW2(config)#aaa authentication login default group tacacs+ local
- RMF Control
- IA-5
- Severity
- M
- CCI
- CCI-000205
- Version
- CISC-ND-000550
- Vuln IDs
-
- V-220589
- V-101303
- Rule IDs
-
- SV-220589r879601_rule
- SV-110407
Checks: C-22304r507813_chk
Review the Cisco switch configuration to verify that it enforces a minimum 15-character password length as shown in the example below: aaa new-model ! ! aaa common-criteria policy PASSWORD_POLICY min-length 15 If the Cisco switch is not configured to enforce a minimum 15-character password length, this is a finding.
Fix: F-22293r507814_fix
Configure the Cisco switch to enforce a minimum 15-character password length as shown in the example below: SW1(config)#aaa common-criteria policy PASSWORD_POLICY SW1(config-cc-policy)#min-length 15 SW1(config-cc-policy)#exit
- RMF Control
- IA-5
- Severity
- M
- CCI
- CCI-000192
- Version
- CISC-ND-000570
- Vuln IDs
-
- V-220590
- V-101305
- Rule IDs
-
- SV-220590r879603_rule
- SV-110409
Checks: C-22305r507816_chk
Review the Cisco switch configuration to verify that it requires the use of at least one upper-case character as shown in the example below: aaa new-model ! ! aaa common-criteria policy PASSWORD_POLICY upper-case 1 If the Cisco switch is not configured to enforce password complexity by requiring that at least one upper-case character be used, this is a finding.
Fix: F-22294r507817_fix
Configure the Cisco switch to enforce password complexity by requiring that at least one upper-case character be used as shown in the example below: SW1(config)#aaa common-criteria policy PASSWORD_POLICY SW1(config-cc-policy)#upper-case 1 SW1(config-cc-policy)#exit
- RMF Control
- IA-5
- Severity
- M
- CCI
- CCI-000193
- Version
- CISC-ND-000580
- Vuln IDs
-
- V-220591
- V-101307
- Rule IDs
-
- SV-220591r879604_rule
- SV-110411
Checks: C-22306r507819_chk
Review the Cisco switch configuration to verify that it requires the use of at least one lower-case character as shown in the example below: aaa new-model ! ! aaa common-criteria policy PASSWORD_POLICY lower-case 1 If the Cisco switch is not configured to enforce password complexity by requiring that at least one lower-case character be used, this is a finding.
Fix: F-22295r507820_fix
Configure the Cisco switch to enforce password complexity by requiring that at least one lower-case character be used as shown in the example below: SW1(config)#aaa common-criteria policy PASSWORD_POLICY SW1(config-cc-policy)#lower-case 1 SW1(config-cc-policy)#exit
- RMF Control
- IA-5
- Severity
- M
- CCI
- CCI-000194
- Version
- CISC-ND-000590
- Vuln IDs
-
- V-220592
- V-101309
- Rule IDs
-
- SV-220592r879605_rule
- SV-110413
Checks: C-22307r507822_chk
Review the Cisco switch configuration to verify that it requires the use of at least one numeric character as shown in the example below: aaa new-model ! ! aaa common-criteria policy PASSWORD_POLICY numeric-count 1 If the Cisco switch is not configured to enforce password complexity by requiring that at least one numeric character be used, this is a finding.
Fix: F-22296r507823_fix
Configure the Cisco switch to enforce password complexity by requiring that at least one numeric character be used as shown in the example below: SW1(config)#aaa common-criteria policy PASSWORD_POLICY SW1(config-cc-policy)#numeric-count 1 SW1(config-cc-policy)#exit
- RMF Control
- IA-5
- Severity
- M
- CCI
- CCI-001619
- Version
- CISC-ND-000600
- Vuln IDs
-
- V-220593
- V-101311
- Rule IDs
-
- SV-220593r879606_rule
- SV-110415
Checks: C-22308r507825_chk
Review the Cisco switch configuration to verify that it requires the use of at least one special character as shown in the example below: aaa new-model ! ! aaa common-criteria policy PASSWORD_POLICY special-case 1 If the Cisco switch is not configured to enforce password complexity by requiring that at least one special character be used, this is a finding.
Fix: F-22297r507826_fix
Configure the Cisco switch to enforce password complexity by requiring that at least one special character be used as shown in the example below: SW1(config)#aaa common-criteria policy PASSWORD_POLICY SW1(config-cc-policy)#special-case 1 SW1(config-cc-policy)#exit
- RMF Control
- IA-5
- Severity
- M
- CCI
- CCI-000195
- Version
- CISC-ND-000610
- Vuln IDs
-
- V-220594
- V-101313
- Rule IDs
-
- SV-220594r879607_rule
- SV-110417
Checks: C-22309r507828_chk
Review the Cisco switch configuration to verify that, when a password is changed, it requires the characters to be changed in at least eight of the positions as shown in the example below: aaa new-model ! ! aaa common-criteria policy PASSWORD_POLICY char-changes 8 If the Cisco switch is not configured to require that when a password is changed, the characters are changed in at least eight of the positions within the password, this is a finding.
Fix: F-22298r507829_fix
Configure the Cisco switch to enforce password complexity by requiring that when a password is changed, the characters are changed in at least eight of the positions within the password as shown in the example below: SW1(config)#aaa common-criteria policy PASSWORD_POLICY SW1(config-cc-policy)#char-changes 8 SW1(config-cc-policy)#exit
- RMF Control
- IA-5
- Severity
- H
- CCI
- CCI-000196
- Version
- CISC-ND-000620
- Vuln IDs
-
- V-220595
- V-101315
- Rule IDs
-
- SV-220595r879608_rule
- SV-110419
Checks: C-22310r507831_chk
Review the switch configuration to determine if passwords are encrypted as shown in the example below: service password-encryption … … … Enable secret 5 xxxxxxxxxxxxxxxxxxxxxxxxxx If the switch is not configured to encrypt passwords, this is a finding.
Fix: F-22299r507832_fix
Configure the switch to encrypt all passwords: SW4(config)#service password-encryption SW4(config)#enable secret xxxxxxxxxxxx SW4(config)#end
- RMF Control
- SC-10
- Severity
- H
- CCI
- CCI-001133
- Version
- CISC-ND-000720
- Vuln IDs
-
- V-220596
- V-101317
- Rule IDs
-
- SV-220596r916342_rule
- SV-110421
Checks: C-22311r916302_chk
Review the Cisco switch configuration to verify that all network connections associated with a device management have an idle timeout value set to five minutes or less as shown in the example below: ip http secure-server ip http timeout-policy idle 300 life nnnn requests nn … … … line con 0 exec-timeout 5 0 line vty 0 1 exec-timeout 5 0 If the Cisco switch is not configured to terminate all network connections associated with a device management after five minutes of inactivity, this is a finding.
Fix: F-22300r916303_fix
Set the idle timeout value to five minutes or less on all configured login classes as shown in the example below: SW1(config)#line vty 0 1 SW1(config-line)#exec-timeout 5 0 SW1(config-line)#exit SW1(config)#line con 0 SW1(config-line)#exec-timeout 5 0 SW1(config-line)#exit SW2(config)#ip http timeout-policy idle 300 life nnnn requests nn
- RMF Control
- AC-2
- Severity
- M
- CCI
- CCI-002130
- Version
- CISC-ND-000880
- Vuln IDs
-
- V-220597
- V-101319
- Rule IDs
-
- SV-220597r879696_rule
- SV-110423
Checks: C-22312r507837_chk
Review the switch configuration to determine if it automatically audits account enabling. The configuration should look similar to the example below: archive log config logging enable Note: Configuration changes can be viewed using the show archive log config all command. If account enabling is not automatically audited, this is a finding.
Fix: F-22301r507838_fix
Configure the switch to log account enabling using the following commands: SW4(config)#archive SW4(config-archive)#log config SW4(config-archive-log-cfg)#logging enable SW4(config-archive-log-cfg)#end
- RMF Control
- AU-4
- Severity
- M
- CCI
- CCI-001849
- Version
- CISC-ND-000980
- Vuln IDs
-
- V-220599
- V-101323
- Rule IDs
-
- SV-220599r879730_rule
- SV-110427
Checks: C-22314r507843_chk
Verify that the Cisco switch is configured with a logging buffer size. The configuration should look like the example below: logging buffered xxxxxxxx informational If a logging buffer size is not configured, this is a finding. If the Cisco switch is not configured to allocate audit record storage capacity in accordance with organization-defined audit record storage requirements, this is a finding.
Fix: F-22303r507844_fix
Configure the buffer size for logging as shown in the example below: SW2(config)#logging buffered xxxxxxxx informational
- RMF Control
- AU-5
- Severity
- M
- CCI
- CCI-001858
- Version
- CISC-ND-001000
- Vuln IDs
-
- V-220600
- V-101325
- Rule IDs
-
- SV-220600r879733_rule
- SV-110429
Checks: C-22315r835081_chk
Review the Cisco switch configuration to verify that it generates an alert for all audit failure events as shown in the example below: logging trap critical Note: The parameter "critical" can replaced with a lesser severity level (i.e., error, warning, notice, informational). Informational is the default severity level; hence, if the severity level is configured to informational, the logging trap command will not be shown in the configuration. If the Cisco switch is not configured to generate an alert for all audit failure events, this is a finding.
Fix: F-22304r835082_fix
Configure the Cisco switch to send critical to emergency log messages to the syslog server as shown in the example below: SW4(config)#logging trap critical Note: The parameter "critical" can replaced with a lesser severity level (i.e., error, warning, notice, informational).
- RMF Control
- AU-8
- Severity
- M
- CCI
- CCI-001889
- Version
- CISC-ND-001030
- Vuln IDs
-
- V-220601
- V-101327
- Rule IDs
-
- SV-220601r879746_rule
- SV-110431
Checks: C-22316r507849_chk
Review the Cisco switch configuration to verify that it synchronizes its clock with redundant authoritative time sources as shown in the example below: ntp server x.x.x.x ntp server y.y.y.y If the Cisco switch is not configured to synchronize its clock with redundant authoritative time sources, this is a finding.
Fix: F-22305r507850_fix
Configure the Cisco switch to synchronize its clock with redundant authoritative time sources as shown in the example below: SW2(config)#ntp server x.x.x.x SW2(config)#ntp server y.y.y.y
- RMF Control
- IA-3
- Severity
- M
- CCI
- CCI-001967
- Version
- CISC-ND-001130
- Vuln IDs
-
- V-220604
- V-101333
- Rule IDs
-
- SV-220604r879768_rule
- SV-110437
Checks: C-22319r507858_chk
Review the Cisco switch configuration to verify that it authenticates SNMP messages using a FIPS-validated HMAC as shown in the example below: snmp-server group V3GROUP v3 auth read V3READ write V3WRITE snmp-server view V3READ iso included snmp-server view V3WRITE iso included snmp-server host x.x.x.x version 3 auth V3USER Authentication used by the SNMP users can be viewed via the show snmp user command as shown in the example below: R4#show snmp user User name: V3USER Engine ID: 800000090300C2042B540000 storage-type: nonvolatile active Authentication Protocol: SHA Privacy Protocol: None Group-name: V3GROUP If the Cisco switch is not configured to authenticate SNMP messages using a FIPS-validated HMAC, this is a finding.
Fix: F-22308r507859_fix
Configure the Cisco switch to authenticate SNMP messages as shown in the example below: SW4(config)#snmp-server group V3GROUP v3 auth read V3READ write V3WRITE SW4(config)#snmp-server user V3USER V3GROUP v3 auth sha xxxxxxx SW4(config)#snmp-server view V3READ iso included SW4(config)#snmp-server view V3WRITE iso included SW4(config)#snmp-server host x.x.x.x version 3 auth V3USER
- RMF Control
- AC-17
- Severity
- M
- CCI
- CCI-000068
- Version
- CISC-ND-001140
- Vuln IDs
-
- V-220605
- V-101335
- Rule IDs
-
- SV-220605r879768_rule
- SV-110439
Checks: C-22320r507861_chk
Review the Cisco switch configuration to verify that it encrypts SNMP messages using a FIPS 140-2 approved algorithm as shown in the example below: snmp-server group V3GROUP v3 priv read V3READ write V3WRITE snmp-server view V3READ iso included snmp-server view V3WRITE iso included snmp-server host x.x.x.x version 3 auth V3USER Encryption used by the SNMP users can be viewed via the show snmp user command as shown in the example below: R4#show snmp user User name: V3USER Engine ID: 800000090300C2042B540000 storage-type: nonvolatile active Authentication Protocol: SHA Privacy Protocol: AES256 Group-name: V3GROUP If the Cisco switch is not configured to encrypt SNMP messages using a FIPS 140-2 approved algorithm, this is a finding.
Fix: F-22309r507862_fix
Configure the Cisco switch to encrypt SNMP messages using a FIPS 140-2 approved algorithm as shown in the example below: SW4(config)#snmp-server group V3GROUP v3 priv read V3READ write V3WRITE SW4(config)#snmp-server user V3USER V3GROUP v3 auth sha xxxxxx priv aes 256 xxxxxx
- RMF Control
- IA-3
- Severity
- M
- CCI
- CCI-001967
- Version
- CISC-ND-001150
- Vuln IDs
-
- V-220606
- V-101337
- Rule IDs
-
- SV-220606r879768_rule
- SV-110441
Checks: C-22321r507864_chk
Review the Cisco switch configuration to verify that it authenticates NTP sources using cryptographically based authentication as shown in the configuration example below: ntp authentication-key 1 md5 121B0A151012 7 ntp authenticate ntp trusted-key 1 ntp server x.x.x.x key 1 ntp server y.y.y.y key 1 If the Cisco switch is not configured to authenticate NTP sources using authentication that is cryptographically based, this is a finding.
Fix: F-22310r507865_fix
Configure the Cisco switch to authenticate NTP sources using authentication that is cryptographically based as shown in the example below: SW2(config)#ntp authenticate SW2(config)#ntp authentication-key 1 md5 xxxxxx SW2(config)#ntp trusted-key 1 SW2(config)#ntp server x.x.x.x key 1 SW2(config)#ntp server y.y.y.y key 1
- RMF Control
- MA-4
- Severity
- H
- CCI
- CCI-002890
- Version
- CISC-ND-001200
- Vuln IDs
-
- V-220607
- V-101339
- Rule IDs
-
- SV-220607r879784_rule
- SV-110443
Checks: C-22322r835087_chk
Review the Cisco switch configuration to verify that it uses FIPS-validated HMAC to protect the integrity of remote maintenance sessions as shown in the example below: NOTE: Although allowed by SP800-131Ar2 for some applications, SHA-1 is considered a compromised hashing standard and is being phased out of use by industry and Government standards. Unless required for legacy use, DoD systems should not be configured to use SHA-1 for integrity of remote access sessions. SSH Example ip ssh version 2 ip ssh server algorithm mac hmac-sha2-512 hmac-sha2-256 If the Cisco switch is not configured to use FIPS-validated HMAC to protect the integrity of remote maintenance sessions, this is a finding.
Fix: F-22311r835088_fix
Configure SSH to use FIPS-validated HMAC for remote maintenance sessions as shown in the following example: SSH Example SW1(config)#ip ssh version 2 SW1(config)#iip ssh server algorithm mac hmac-sha2-512 hmac-sha2-256
- RMF Control
- MA-4
- Severity
- H
- CCI
- CCI-003123
- Version
- CISC-ND-001210
- Vuln IDs
-
- V-220608
- V-101341
- Rule IDs
-
- SV-220608r879785_rule
- SV-110445
Checks: C-22323r507870_chk
Review the Cisco switch configuration to verify that it implements cryptographic mechanisms to protect the confidentiality of remote maintenance sessions using a FIPS 140-2 approved algorithm as shown in the example below: ip ssh version 2 ip ssh server algorithm encryption aes256-ctr aes192-ctr aes128-ctr If the switch is not configured to implement cryptographic mechanisms to protect the confidentiality of remote maintenance sessions using a FIPS 140-2 approved algorithm, this is a finding.
Fix: F-22312r507871_fix
Configure the Cisco switch to implement cryptographic mechanisms to protect the confidentiality of remote maintenance sessions using a FIPS 140-2 approved algorithm as shown in the example below: SW1(config)#ip ssh server algorithm encryption aes256-ctr aes192-ctr aes128-ctr
- RMF Control
- SC-5
- Severity
- M
- CCI
- CCI-002385
- Version
- CISC-ND-001220
- Vuln IDs
-
- V-220609
- V-101343
- Rule IDs
-
- SV-220609r879806_rule
- SV-110447
Checks: C-22324r507873_chk
Review the Cisco switch configuration to verify that it protects against known types of DoS attacks by employing organization-defined security safeguards. Step 1: Verify traffic types have been classified based on importance levels. The following is an example configuration: class-map match-all CoPP_CRITICAL match access-group name CoPP_CRITICAL class-map match-any CoPP_IMPORTANT match access-group name CoPP_IMPORTANT match protocol arp class-map match-all CoPP_NORMAL match access-group name CoPP_NORMAL class-map match-any CoPP_UNDESIRABLE match access-group name CoPP_UNDESIRABLE class-map match-all CoPP_DEFAULT match access-group name CoPP_DEFAULT Step 2: Review the access control lists (ACLs) referenced by the class-maps to determine if the traffic is being classified appropriately. The following is an example configuration: ip access-list extended CoPP_CRITICAL remark our control plane adjacencies are critical permit ospf host [OSPF neighbor A] any permit ospf host [OSPF neighbor B] any permit pim host [PIM neighbor A] any permit pim host [PIM neighbor B] any permit pim host [RP addr] any permit igmp any 224.0.0.0 15.255.255.255 permit tcp host [BGP neighbor] eq bgp host [local BGP addr] permit tcp host [BGP neighbor] host [local BGP addr] eq bgp deny ip any any ip access-list extended CoPP_IMPORTANT permit tcp host [TACACS server] eq tacacs any permit tcp [management subnet] 0.0.0.255 any eq 22 permit udp host [SNMP manager] any eq snmp permit udp host [NTP server] eq ntp any deny ip any any ip access-list extended CoPP_NORMAL remark we will want to rate limit ICMP traffic permit icmp any any echo permit icmp any any echo-reply permit icmp any any time-exceeded permit icmp any any unreachable deny ip any any ip access-list extended CoPP_UNDESIRABLE remark other management plane traffic that should not be received permit udp any any eq ntp permit udp any any eq snmp permit tcp any any eq 22 permit tcp any any eq 23 remark other control plane traffic not configured on switch permit eigrp any any permit udp any any eq rip deny ip any any ip access-list extended CoPP_DEFAULT permit ip any any Note: Explicitly defining undesirable traffic with ACL entries enables the network operator to collect statistics. Excessive Address Resolution Protocol (ARP) packets can potentially monopolize Route Processor resources, starving other important processes. Currently, ARP is the only Layer 2 protocol that can be specifically classified using the match protocol command. Step 3: Review the policy-map to determine if the traffic is being policed appropriately for each classification. The following is an example configuration: policy-map CONTROL_PLANE_POLICY class CoPP_CRITICAL police 512000 8000 conform-action transmit exceed-action transmit class CoPP_IMPORTANT police 256000 4000 conform-action transmit exceed-action drop class CoPP_NORMAL police 128000 2000 conform-action transmit exceed-action drop class CoPP_UNDESIRABLE police 8000 1000 conform-action drop exceed-action drop class CoPP_DEFAULT police 64000 1000 conform-action transmit exceed-action drop Step 4: Verify that the Control Plane Policing (CoPP) policy is enabled. The following is an example configuration: control-plane service-policy input CONTROL_PLANE_POLICY Note: Control Plane Protection (CPPr) can be used to filter as well as police control plane traffic destined to the RP. CPPr is very similar to CoPP and has the ability to filter and police traffic using finer granularity by dividing the aggregate control plane into three separate categories: 1) host, 2) transit, and 3) CEF-exception. Hence, a separate policy-map could be configured for each traffic category. If the Cisco switch is not configured to protect against known types of DoS attacks by employing organization-defined security safeguards, this is a finding.
Fix: F-22313r507874_fix
Configure the Cisco switch to protect against known types of DoS attacks on the route processor. Implementing a CoPP policy as shown in the example below is a best practice method. Step 1: Configure ACL specific traffic types: SW1(config)#ip access-list extended CoPP_CRITICAL SW1(config-ext-nacl)#remark our control plane adjacencies are critical SW1(config-ext-nacl)#permit ospf host x.x.x.x any SW1(config-ext-nacl)#permit ospf host x.x.x.x any SW1(config-ext-nacl)#permit pim host x.x.x.x any SW1(config-ext-nacl)#permit pim host x.x.x.x any SW1(config-ext-nacl)#permit igmp any 224.0.0.0 15.255.255.255 SW1(config-ext-nacl)#permit tcp host x.x.x.x eq bgp host x.x.x.x SW1(config-ext-nacl)#deny ip any any SW1(config-ext-nacl)#exit SW1(config)#ip access-list extended CoPP_IMPORTANT SW1(config-ext-nacl)#permit tcp host x.x.x.x eq tacacs any SW1(config-ext-nacl)#permit tcp x.x.x.x 0.0.0.255 any eq 22 SW1(config-ext-nacl)#permit udp host x.x.x.x any eq snmp SW1(config-ext-nacl)#permit udp host x.x.x.x eq ntp any SW1(config-ext-nacl)#deny ip any any SW1(config-ext-nacl)#exit SW1(config)#ip access-list extended CoPP_NORMAL SW1(config-ext-nacl)#remark we will want to rate limit ICMP traffic SW1(config-ext-nacl)#permit icmp any any echo SW1(config-ext-nacl)#permit icmp any any echo-reply SW1(config-ext-nacl)#permit icmp any any time-exceeded SW1(config-ext-nacl)#permit icmp any any unreachable SW1(config-ext-nacl)#deny ip any any SW1(config-ext-nacl)#exit SW1(config)#ip access-list extended CoPP_UNDESIRABLE SW1(config-ext-nacl)#remark management plane traffic that should not be received SW1(config-ext-nacl)#permit udp any any eq ntp SW1(config-ext-nacl)#permit udp any any eq snmp SW1(config-ext-nacl)#permit tcp any any eq 22 SW1(config-ext-nacl)#permit tcp any any eq 23 SW1(config-ext-nacl)#remark control plane traffic not configured on switch SW1(config-ext-nacl)#permit eigrp any any SW1(config-ext-nacl)#permit udp any any eq rip SW1(config-ext-nacl)#deny ip any any SW1(config-ext-nacl)#exit SW1(config)#ip access-list extended CoPP_DEFAULT SW1(config-ext-nacl)#permit ip any any SW1(config-ext-nacl)#exit Step 2: Configure class-maps referencing each of the ACLs: SW1(config)#class-map match-all CoPP_CRITICAL SW1(config-cmap)#match access-group name CoPP_CRITICAL SW1(config-cmap)#class-map match-any CoPP_IMPORTANT SW1(config-cmap)#match access-group name CoPP_IMPORTANT SW1(config-cmap)#match protocol arp SW1(config-cmap)#class-map match-all CoPP_NORMAL SW1(config-cmap)#match access-group name CoPP_NORMAL SW1(config-cmap)#class-map match-any CoPP_UNDESIRABLE SW1(config-cmap)#match access-group name CoPP_UNDESIRABLE SW1(config-cmap)#class-map match-all CoPP_DEFAULT SW1(config-cmap)#match access-group name CoPP_DEFAULT SW1(config-cmap)#exit Step 3: Configure a policy-map referencing the configured class-maps and apply appropriate bandwidth allowance and policing attributes: SW1(config)#policy-map CONTROL_PLANE_POLICY SW1(config-pmap)#class CoPP_CRITICAL SW1(config-pmap-c)#police 512000 8000 conform-action transmit exceed-action transmit SW1(config-pmap-c-police)#class CoPP_IMPORTANT SW1(config-pmap-c)#police 256000 4000 conform-action transmit exceed-action drop SW1(config-pmap-c-police)#class CoPP_NORMAL SW1(config-pmap-c)#police 128000 2000 conform-action transmit exceed-action drop SW1(config-pmap-c-police)#class CoPP_UNDESIRABLE SW1(config-pmap-c)#police 8000 1000 conform-action drop exceed-action drop SW1(config-pmap-c-police)#class CoPP_DEFAULT SW1(config-pmap-c)#police 64000 1000 conform-action transmit exceed-action drop SW1(config-pmap-c-police)#exit SW1(config-pmap-c)#exit SW1(config-pmap)#exit Step 4: Apply the policy-map to the control plane: SW1(config)#control-plane SW1(config-cp)#service-policy input CONTROL_PLANE_POLICY SW1(config-cp)#end
- RMF Control
- AU-12
- Severity
- M
- CCI
- CCI-000172
- Version
- CISC-ND-001250
- Vuln IDs
-
- V-220611
- V-101347
- Rule IDs
-
- SV-220611r879870_rule
- SV-110451
Checks: C-22326r507879_chk
Review the Cisco switch configuration to verify that it generates log records when administrator privileges are deleted as shown in the example below: archive log config logging enable If the Cisco switch is not configured to generate log records when administrator privileges are deleted, this is a finding.
Fix: F-22315r507880_fix
Configure the Cisco switch to generate log records when administrator privileges are deleted as shown in the example below: SW4(config)#archive SW4(config-archive)#log config SW4(config-archive-log-cfg)#logging enable SW4(config-archive-log-cfg)#end
- RMF Control
- AU-12
- Severity
- M
- CCI
- CCI-000172
- Version
- CISC-ND-001260
- Vuln IDs
-
- V-220612
- V-101349
- Rule IDs
-
- SV-220612r879874_rule
- SV-110453
Checks: C-22327r507882_chk
Review the Cisco switch configuration to verify that it generates audit records when successful/unsuccessful logon attempts occur as shown in the examples below: login on-failure log login on-success log If the Cisco switch is not configured to generate audit records when successful/unsuccessful logon attempts occur, this is a finding.
Fix: F-22316r507883_fix
Configure the Cisco switch to generate audit records when successful/unsuccessful logon attempts occur as shown in the example below: R5(config)#login on-failure log R5(config)#login on-success log
- RMF Control
- AU-12
- Severity
- M
- CCI
- CCI-000172
- Version
- CISC-ND-001270
- Vuln IDs
-
- V-220613
- V-101351
- Rule IDs
-
- SV-220613r879875_rule
- SV-110455
Checks: C-22328r507885_chk
Review the Cisco switch configuration to verify that it generates log records for privileged activities as shown in the example configurations below: archive log config logging enable If the Cisco switch is not configured to generate log records for privileged activities, this is a finding.
Fix: F-22317r507886_fix
Configure the Cisco switch to generate log records for privileged activities as shown in the example below: SW4(config)#archive SW4(config-archive)#log config SW4(config-archive-log-cfg)#logging enable SW4(config-archive-log-cfg)#end
- RMF Control
- CM-6
- Severity
- H
- CCI
- CCI-000370
- Version
- CISC-ND-001370
- Vuln IDs
-
- V-220617
- V-101359
- Rule IDs
-
- SV-220617r939989_rule
- SV-110463
Checks: C-22332r939987_chk
Review the Cisco switch configuration to verify that the device is configured to use at least two authentication servers as the primary source for authentication as shown in the example below: aaa new-model ! aaa authentication CONSOLE local aaa authentication login LOGIN_AUTHENTICATION group radius local … … … ip http authentication aaa login-authentication LOGIN_AUTHENTICATION ip http secure-server … … … radius-server host x.x.x.x auth-port 1812 acct-port 1813 key xxxxxxx radius-server host x.x.x.x auth-port 1812 acct-port 1813 key xxxxxxx … … … line con 0 exec-timeout 5 0 login authentication CONSOLE line vty 0 1 exec-timeout 5 0 login authentication LOGIN_AUTHENTICATION If the Cisco switch is not configured to use at least two authentication servers to authenticate users prior to granting administrative access, this is a finding.
Fix: F-22321r939988_fix
Step 1: Configure the Cisco switch to use at least two authentication servers as shown in the example below: SW4(config)#radius host 10.1.48.2 key xxxxxx SW4(config)#radius host 10.1.48.3 key xxxxxx Step 2: Configure the authentication order to use the authentication servers as the primary source for authentication as shown in the example below: SW4(config)#aaa authentication CONSOLE local SW4(config)#aaa authentication login LOGIN_AUTHENTICATION group radius local Step 3: Configure all network connections associated with device management to use the authentication servers for login authentication: SW4(config)#line vty 0 1 SW4(config-line)#login authentication LOGIN_AUTHENTICATION SW4(config-line)#exit SW4(config)#line con 0 SW4(config-line)#login authentication CONSOLE SW4(config-line)#exit SW4(config)#ip http authentication aaa login-authentication LOGIN_AUTHENTICATION
- RMF Control
- CM-6
- Severity
- M
- CCI
- CCI-000366
- Version
- CISC-ND-001410
- Vuln IDs
-
- V-220618
- V-101361
- Rule IDs
-
- SV-220618r916221_rule
- SV-110465
Checks: C-22333r507900_chk
Review the Cisco switch configuration to verify that it backs up the configuration when changes occur. The example configuration below will send the configuration to a TFTP server when a configuration change occurs: event manager applet BACKUP_CONFIG event syslog pattern "%SYS-5-CONFIG_I" action 1 info type switchname action 2 cli command "enable" action 3 cli command "copy run tftp" pattern "remote host" action 4 cli command "x.x.x.x" pattern "filename" action 5 cli command "$_info_switchname-config" action 6 syslog priority informational msg "Configuration backup was executed" If the Cisco switch is not configured to conduct backups of the configuration when changes occur, this is a finding.
Fix: F-22322r507901_fix
Configure the Cisco switch to send the configuration to a TFTP or an FTP server when a configuration change occurs as shown in the example below: SW4(config)#event manager applet BACKUP_CONFIG SW4(config-applet)#event syslog pattern "%SYS-5-CONFIG_I" SW4(config-applet)#action 1 cli command "enable" SW4(config-applet)#action 2 info type switchname SW4(config-applet)#action 3 cli command "copy run tftp" pattern "remote host" SW4(config-applet)#action 4 cli command "x.x.x.x" pattern "filename" SW4(config-applet)#action 5 cli command "$_info_switchname-config" SW4(config-applet)#action 6 syslog priority informational msg "Configuration backup was executed" SW4(config-applet)#end
- RMF Control
- CM-6
- Severity
- M
- CCI
- CCI-000366
- Version
- CISC-ND-001440
- Vuln IDs
-
- V-220619
- V-101363
- Rule IDs
-
- SV-220619r879887_rule
- SV-110467
Checks: C-22334r507903_chk
Review the switch configuration to determine if a CA trust point has been configured. The CA trust point will contain the URL of the CA in which the switch has enrolled. Verify this is a DoD or DoD-approved CA. This will ensure the switch has enrolled and received a certificate from a trusted CA. The CA trust point configuration would look similar to the example below: crypto pki trustpoint CA_X enrollment url http://trustpoint1.example.com Note: A remote endpoint's certificate will always be validated by the switch by verifying the signature of the CA on the certificate using the CA's public key, which is contained in the switch's certificate that it received at enrollment. If the Cisco switch is not configured to obtain its public key certificates from an appropriate certificate policy through an approved service provider, this is a finding.
Fix: F-22323r507904_fix
Configure the switch to obtain its public key certificates from an appropriate certificate policy through an approved service provider as show in the example below: SW2(ca-trustpoint)#enrollment url http://trustpoint1.example.com
- RMF Control
- AU-4
- Severity
- H
- CCI
- CCI-001851
- Version
- CISC-ND-001450
- Vuln IDs
-
- V-220620
- V-101365
- Rule IDs
-
- SV-220620r916114_rule
- SV-110469
Checks: C-22335r916049_chk
Verify that the switch is configured to send logs to at least two central log servers. The configuration should be similar to the example below: logging x.x.x.x logging x.x.x.x If the switch is not configured to send log data to the syslog servers, this is a finding.
Fix: F-22324r916050_fix
Configure the switch to send log messages to the syslog servers as shown in the example below: SW4(config)#logging host x.x.x.x SW4(config)#logging host x.x.x.x
- RMF Control
- SI-2
- Severity
- H
- CCI
- CCI-002605
- Version
- CISC-ND-001470
- Vuln IDs
-
- V-220621
- V-101367
- Rule IDs
-
- SV-220621r879887_rule
- SV-110471
Checks: C-22336r507909_chk
Verify that the switch is in compliance with this requirement by having the switch administrator enter the following command: show version Verify that the release is still supported by Cisco. All releases supported by Cisco can be found at: www.cisco.com/c/en/us/support/ios-nx-os-software If the switch is not running a supported release, this is a finding.
Fix: F-22325r507910_fix
Upgrade the switch to a supported release.