DoD Compliance · STIG

Cisco IOS XE Switch NDM Security Technical Implementation Guide

V2R1 · · · Released 23 Oct 2020 · 51 rules
Compare

Pick two releases to diff their requirements.

View

Open a previous version of this STIG.

This Security Technical Implementation Guide is published as a tool to improve the security of Department of Defense (DoD) information systems. The requirements are derived from the National Institute of Standards and Technology (NIST) 800-53 and related documents. Comments or proposed revisions to this document should be sent via email to the following address: disa.stig_spt@mail.mil.
Sort by
b
The Cisco switch must be configured to limit the number of concurrent management sessions to an organization-defined number.
AC-10 - Medium - CCI-000054 - V-220518 - SV-220518r531084_rule
RMF Control
AC-10
Severity
M
CCI
CCI-000054
Version
CISC-ND-000010
Vuln IDs
  • V-220518
  • V-101369
Rule IDs
  • SV-220518r531084_rule
  • SV-110473
Device management includes the ability to control the number of administrators and management sessions that manage a device. Limiting the number of allowed administrators and sessions per administrator based on account type, role, or access type is helpful in limiting risks related to DoS attacks. This requirement addresses concurrent sessions for administrative accounts and does not address concurrent sessions by a single administrator via multiple administrative accounts. The maximum number of concurrent sessions should be defined based upon mission needs and the operational environment for each system. At a minimum, limits must be set for SSH, HTTPS, account of last resort, and root account sessions.
Checks: C-22233r508498_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 … … … line vty 0 4 session-limit 2 transport input ssh For those 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-22222r508499_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 4 SW4(config)#session-limit 2

b
The Cisco switch must be configured to automatically audit account creation.
AC-2 - Medium - CCI-000018 - V-220519 - SV-220519r531084_rule
RMF Control
AC-2
Severity
M
CCI
CCI-000018
Version
CISC-ND-000090
Vuln IDs
  • V-220519
  • V-101371
Rule IDs
  • SV-220519r531084_rule
  • SV-110475
Upon gaining access to a network device, an attacker will often first attempt to create a persistent method of reestablishing access. One way to accomplish this is to create a new account. Notification of account creation helps to mitigate this risk. Auditing account creation provides the necessary reconciliation that account management procedures are being followed. Without this audit trail, personnel without the proper authorization may gain access to critical network nodes.
Checks: C-22234r508501_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-22223r508502_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

b
The Cisco switch must be configured to automatically audit account modification.
AC-2 - Medium - CCI-001403 - V-220520 - SV-220520r531084_rule
RMF Control
AC-2
Severity
M
CCI
CCI-001403
Version
CISC-ND-000100
Vuln IDs
  • V-220520
  • V-101373
Rule IDs
  • SV-220520r531084_rule
  • SV-110477
Since the accounts in the network device are privileged or system-level accounts, account management is vital to the security of the network device. Account management by a designated authority ensures access to the network device is being controlled in a secure manner by granting access to only authorized personnel with the appropriate and necessary privileges. Auditing account modification along with an automatic notification to appropriate individuals will provide the necessary reconciliation that account management procedures are being followed. If modifications to management accounts are not audited, reconciliation of account management procedures cannot be tracked.
Checks: C-22235r508504_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-22224r508505_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

b
The Cisco switch must be configured to automatically audit account disabling actions.
AC-2 - Medium - CCI-001404 - V-220521 - SV-220521r531084_rule
RMF Control
AC-2
Severity
M
CCI
CCI-001404
Version
CISC-ND-000110
Vuln IDs
  • V-220521
  • V-101393
Rule IDs
  • SV-220521r531084_rule
  • SV-110497
Account management, as a whole, ensures access to the network device is being controlled in a secure manner by granting access to only authorized personnel. Auditing account disabling actions will support account management procedures. When device management accounts are disabled, user or service accessibility may be affected. Auditing also ensures authorized active accounts remain enabled and available for use when required.
Checks: C-22236r508507_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-22225r508508_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

b
The Cisco switch must be configured to automatically audit account removal actions.
AC-2 - Medium - CCI-001405 - V-220522 - SV-220522r531084_rule
RMF Control
AC-2
Severity
M
CCI
CCI-001405
Version
CISC-ND-000120
Vuln IDs
  • V-220522
  • V-101395
Rule IDs
  • SV-220522r531084_rule
  • SV-110499
Account management, as a whole, ensures access to the network device is being controlled in a secure manner by granting access to only authorized personnel. Auditing account removal actions will support account management procedures. When device management accounts are terminated, user or service accessibility may be affected. Auditing also ensures authorized active accounts remain enabled and available for use when required.
Checks: C-22237r508510_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-22226r508511_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

b
The Cisco switch must be configured to enforce approved authorizations for controlling the flow of management information within the device based on control policies.
AC-4 - Medium - CCI-001368 - V-220523 - SV-220523r539418_rule
RMF Control
AC-4
Severity
M
CCI
CCI-001368
Version
CISC-ND-000140
Vuln IDs
  • V-220523
  • V-101397
Rule IDs
  • SV-220523r539418_rule
  • SV-110501
A mechanism to detect and prevent unauthorized communication flow must be configured or provided as part of the system design. If management information flow is not enforced based on approved authorizations, the network device may become compromised. Information flow control regulates where management information is allowed to travel within a network device. The flow of all management information must be monitored and controlled so it does not introduce any unacceptable risk to the network device or data. Application-specific examples of enforcement occur in systems that employ rule sets or establish configuration settings that restrict information system services or message-filtering capability based on message content (e.g., implementing key word searches or using document characteristics). Applications providing information flow control must be able to enforce approved authorizations for controlling the flow of management information within the system in accordance with applicable policy.
Checks: C-22238r539416_chk

Review the Cisco switch configuration to verify that it is compliant with this requirement. Administrative access to the switch must only be allowed 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 4 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. ip 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-22227r539417_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 standard 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 4 SW2(config-line)#transport input ssh SW2(config-line)#access-class MANAGEMENT_NET in SW2(config-line)#end

b
The Cisco switch must be configured to enforce the limit of three consecutive invalid logon attempts, after which time it must lock out the user account from accessing the device for 15 minutes.
AC-7 - Medium - CCI-000044 - V-220524 - SV-220524r531084_rule
RMF Control
AC-7
Severity
M
CCI
CCI-000044
Version
CISC-ND-000150
Vuln IDs
  • V-220524
  • V-101399
Rule IDs
  • SV-220524r531084_rule
  • SV-110503
By limiting the number of failed logon attempts, the risk of unauthorized system access via user password guessing, otherwise known as brute-forcing, is reduced.
Checks: C-22239r508516_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 login 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-22228r508517_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

b
The Cisco switch must be configured to display the Standard Mandatory DoD Notice and Consent Banner before granting access to the device.
AC-8 - Medium - CCI-000048 - V-220525 - SV-220525r531084_rule
RMF Control
AC-8
Severity
M
CCI
CCI-000048
Version
CISC-ND-000160
Vuln IDs
  • V-220525
  • V-101401
Rule IDs
  • SV-220525r531084_rule
  • SV-110505
Display of the DoD-approved use notification before granting access to the network device ensures privacy and security notification verbiage used is consistent with applicable federal laws, executive orders, directives, policies, regulations, standards, and guidance. System use notifications are required only for access via logon interfaces with human users.
Checks: C-22240r508519_chk

Review the Cisco switch configuration to verify that it is compliant with this requirement 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-22229r508520_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

b
The Cisco switch must be configured to protect against an individual falsely denying having performed organization-defined actions to be covered by non-repudiation.
AU-10 - Medium - CCI-000166 - V-220526 - SV-220526r531084_rule
RMF Control
AU-10
Severity
M
CCI
CCI-000166
Version
CISC-ND-000210
Vuln IDs
  • V-220526
  • V-101403
Rule IDs
  • SV-220526r531084_rule
  • SV-110507
This requirement supports non-repudiation of actions taken by an administrator and is required in order to maintain the integrity of the configuration management process. All configuration changes to the network device are logged, and administrators authenticate with two-factor authentication before gaining administrative access. Together, these processes will ensure the administrators can be held accountable for the configuration changes they implement. To meet this requirement, the network device must log administrator access and activity.
Checks: C-22241r508522_chk

Review the Cisco switch configuration to verify that it is compliant with this requirement 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-22230r508523_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

b
The Cisco switch must be configured to generate audit records when successful/unsuccessful attempts to log on with access privileges occur.
AU-12 - Medium - CCI-000172 - V-220527 - SV-220527r531084_rule
RMF Control
AU-12
Severity
M
CCI
CCI-000172
Version
CISC-ND-000250
Vuln IDs
  • V-220527
  • V-101405
Rule IDs
  • SV-220527r531084_rule
  • SV-110509
Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one. Audit records can be generated from various components within the information system (e.g., module or policy filter).
Checks: C-22242r508525_chk

Review the Cisco switch configuration to verify that it is compliant with this requirement. The configuration example below will log all logon attempts. login on-failure log login on-success log If the Cisco switch is not configured to generate audit records when successful/unsuccessful attempts to logon, this is a finding.

Fix: F-22231r508526_fix

Configure the Cisco switch to log all logon attempts as shown in the example below: SW1(config)#login on-failure log SW1(config)#login on-success log SW1(config)#end

b
The Cisco switch must produce audit records containing information to establish when (date and time) the events occurred.
AU-3 - Medium - CCI-000131 - V-220528 - SV-220528r531084_rule
RMF Control
AU-3
Severity
M
CCI
CCI-000131
Version
CISC-ND-000280
Vuln IDs
  • V-220528
  • V-101407
Rule IDs
  • SV-220528r531084_rule
  • SV-110511
It is essential for security personnel to know what is being done, what was attempted, where it was done, when it was done, and by whom it was done in order to compile an accurate risk assessment. Logging the date and time of each detected event provides a means of investigating an attack; recognizing resource utilization or capacity thresholds; or identifying an improperly configured network device. In order to establish and correlate the series of events leading up to an outage or attack, it is imperative the date and time are recorded in all log records.
Checks: C-22243r508528_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 is not configured, this is a finding.

Fix: F-22232r508529_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

b
The Cisco switch must produce audit records containing information to establish where the events occurred.
AU-3 - Medium - CCI-000132 - V-220529 - SV-220529r531084_rule
RMF Control
AU-3
Severity
M
CCI
CCI-000132
Version
CISC-ND-000290
Vuln IDs
  • V-220529
  • V-101409
Rule IDs
  • SV-220529r531084_rule
  • SV-110513
In order to compile an accurate risk assessment and provide forensic analysis, it is essential for security personnel to know where events occurred, such as device hardware components, device software modules, session identifiers, filenames, host names, and functionality. Associating information about where the event occurred within the network device provides a means of investigating an attack; recognizing resource utilization or capacity thresholds; or identifying an improperly configured device.
Checks: C-22244r508531_chk

Review the deny statements in all ACLs to determine if the log-input parameter has been configured as shown in the example below: 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-22233r508532_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

b
The Cisco switch must be configured to generate audit records containing the full-text recording of privileged commands.
AU-3 - Medium - CCI-000135 - V-220530 - SV-220530r531084_rule
RMF Control
AU-3
Severity
M
CCI
CCI-000135
Version
CISC-ND-000330
Vuln IDs
  • V-220530
  • V-101411
Rule IDs
  • SV-220530r531084_rule
  • SV-110515
Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information. Organizations consider limiting the additional audit information to only that information explicitly needed for specific audit requirements. The additional information required is dependent on the type of information (i.e., sensitivity of the data and the environment within which it resides). At a minimum, the organization must audit full-text recording of privileged commands. The organization must maintain audit trails in sufficient detail to reconstruct events to determine the cause and impact of compromise.
Checks: C-22245r508534_chk

Review the Cisco switch configuration to verify that it is compliant with this requirement. 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-22234r508535_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

b
The Cisco switch must be configured to protect audit information from unauthorized modification.
AU-9 - Medium - CCI-000163 - V-220531 - SV-220531r531084_rule
RMF Control
AU-9
Severity
M
CCI
CCI-000163
Version
CISC-ND-000380
Vuln IDs
  • V-220531
  • V-101413
Rule IDs
  • SV-220531r531084_rule
  • SV-110517
Audit information includes all information (e.g., audit records, audit settings, and audit reports) needed to successfully audit network device activity. If audit data were to become compromised, then forensic analysis and discovery of the true source of potentially malicious system activity is impossible to achieve. To ensure the veracity of audit data, the network device must protect audit information from unauthorized modification. This requirement can be achieved through multiple methods, which will depend upon system architecture and design. Some commonly employed methods include ensuring log files receive the proper file system permissions and limiting log data locations. Network devices providing a user interface to audit data will leverage user permissions and roles identifying the user accessing the data and the corresponding rights that the user enjoys in order to make access decisions regarding the modification of audit data.
Checks: C-22246r508537_chk

Review the Cisco switch configuration to verify that it is compliant with this requirement. 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-22235r508538_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

b
The Cisco switch must be configured to protect audit information from unauthorized deletion.
AU-9 - Medium - CCI-000164 - V-220532 - SV-220532r531084_rule
RMF Control
AU-9
Severity
M
CCI
CCI-000164
Version
CISC-ND-000390
Vuln IDs
  • V-220532
  • V-101415
Rule IDs
  • SV-220532r531084_rule
  • SV-110519
Audit information includes all information (e.g., audit records, audit settings, and audit reports) needed to successfully audit information system activity. If audit data were to become compromised, then forensic analysis and discovery of the true source of potentially malicious system activity is impossible to achieve. To ensure the veracity of audit data, the network device must protect audit information from unauthorized deletion. This requirement can be achieved through multiple methods, which will depend upon system architecture and design. Some commonly employed methods include: ensuring log files receive the proper file system permissions utilizing file system protections, restricting access, and backing up log data to ensure log data is retained. Network devices providing a user interface to audit data will leverage user permissions and roles identifying the user accessing the data and the corresponding rights the user enjoys in order to make access decisions regarding the deletion of audit data.
Checks: C-22247r508540_chk

Review the Cisco switch configuration to verify that it is compliant with this requirement. 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-22236r508541_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

b
The Cisco switch must be configured to limit privileges to change the software resident within software libraries.
CM-5 - Medium - CCI-001499 - V-220533 - SV-220533r531084_rule
RMF Control
CM-5
Severity
M
CCI
CCI-001499
Version
CISC-ND-000460
Vuln IDs
  • V-220533
  • V-101417
Rule IDs
  • SV-220533r531084_rule
  • SV-110521
Changes to any software components of the network device can have significant effects on the overall security of the network. Therefore, only qualified and authorized individuals should be allowed administrative access to the network device for implementing any changes or upgrades. If the network device were to enable non-authorized users to make changes to software libraries, those changes could be implemented without undergoing testing, validation, and approval.
Checks: C-22248r508543_chk

Review the Cisco switch configuration to verify that it is compliant with this requirement. 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-22237r508544_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

c
The Cisco switch must be configured to prohibit the use of all unnecessary and nonsecure functions and services.
CM-7 - High - CCI-000382 - V-220534 - SV-220534r531084_rule
RMF Control
CM-7
Severity
H
CCI
CCI-000382
Version
CISC-ND-000470
Vuln IDs
  • V-220534
  • V-101419
Rule IDs
  • SV-220534r531084_rule
  • SV-110523
Network devices are capable of providing a wide variety of functions and services. Some of the functions and services provided by default may not be necessary to support essential organizational operations. Additionally, it is sometimes convenient to provide multiple services from a single component (e.g., email and web services); however, doing so increases risk over limiting the services provided by any one component. To support the requirements and principles of least functionality, the network device must support the organizational requirements providing only essential capabilities and limiting the use of ports, protocols, and/or services to only those required, authorized, and approved. Some network devices have capabilities enabled by default; if these capabilities are not necessary, they must be disabled. If a particular capability is used, then it must be documented and approved.
Checks: C-22249r508546_chk

Verify that the switch does not have any unnecessary or non-secure 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 If any unnecessary or non-secure ports, protocols, or services are enabled, this is a finding.

Fix: F-22238r508547_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)#end

b
The Cisco switch must be configured with only one local account to be used as the account of last resort in the event the authentication server is unavailable.
AC-2 - Medium - CCI-001358 - V-220535 - SV-220535r531084_rule
RMF Control
AC-2
Severity
M
CCI
CCI-001358
Version
CISC-ND-000490
Vuln IDs
  • V-220535
  • V-101421
Rule IDs
  • SV-220535r531084_rule
  • SV-110525
Authentication for administrative (privileged level) access to the device is required at all times. An account can be created on the device's local database for use when the authentication server is down or connectivity between the device and the authentication server is not operable. This account is referred to as the account of last resort since it is intended to be used as a last resort and when immediate administrative access is absolutely necessary. The account of last resort logon credentials must be stored in a sealed envelope and kept in a safe. The safe must be periodically audited to verify the envelope remains sealed. The signature of the auditor and the date of the audit should be added to the envelope as a record. Administrators should secure the credentials and disable the root account (if possible) when not needed for system administration functions.
Checks: C-22250r508549_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-22239r508550_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

b
The Cisco switch must be configured to implement replay-resistant authentication mechanisms for network access to privileged accounts.
IA-2 - Medium - CCI-001941 - V-220536 - SV-220536r531084_rule
RMF Control
IA-2
Severity
M
CCI
CCI-001941
Version
CISC-ND-000530
Vuln IDs
  • V-220536
  • V-101423
Rule IDs
  • SV-220536r531084_rule
  • SV-110527
A replay attack may enable an unauthorized user to gain access to the application. Authentication sessions between the authenticator and the application validating the user credentials must not be vulnerable to a replay attack. An authentication process resists replay attacks if it is impractical to achieve a successful authentication by recording and replaying a previous authentication message.
Checks: C-22251r508552_chk

Review the Cisco switch configuration to verify that SSH is configured to use FIPS-140-2 compliant HMACs as shown in the example below: ip ssh version 2 ip ssh server algorithm encryption aes256-ctr aes192-ctr aes128-ctr Note: An SSH configuration enables a server and client to authorize the negotiation of only those algorithms that are configured from the allowed list. If a remote party tries to negotiate using an algorithm that is not part of the allowed list, the request is rejected and the session is not established. If the switch is not configured to implement replay-resistant authentication mechanisms for network access to privileged accounts, this is a finding.

Fix: F-22240r508553_fix

Configure SSH to use FIPS-140-2 compliant HMACs as shown in the example below: SW1(config)#ip ssh version 2 SW1(config)#iip ssh server algorithm encryption aes256-ctr aes192-ctr aes128-ctr Note: An SSH configuration enables a server and client to authorize the negotiation of only those algorithms that are configured from the allowed list. If a user tries to negotiate using an algorithm that is not part of the allowed list, the request is rejected and the session is not established.

b
The Cisco switch must be configured to enforce a minimum 15-character password length.
IA-5 - Medium - CCI-000205 - V-220537 - SV-220537r531084_rule
RMF Control
IA-5
Severity
M
CCI
CCI-000205
Version
CISC-ND-000550
Vuln IDs
  • V-220537
  • V-101425
Rule IDs
  • SV-220537r531084_rule
  • SV-110529
Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks. Password length is one factor of several that helps to determine strength and how long it takes to crack a password. The shorter the password, the lower the number of possible combinations that need to be tested before the password is compromised. Use of more characters in a password helps to exponentially increase the time and/or resources required to compromise the password.
Checks: C-22252r508555_chk

Review the Cisco switch configuration to verify that it is compliant with this requirement 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-22241r508556_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

b
The Cisco switch must be configured to enforce password complexity by requiring that at least one upper-case character be used.
IA-5 - Medium - CCI-000192 - V-220538 - SV-220538r531084_rule
RMF Control
IA-5
Severity
M
CCI
CCI-000192
Version
CISC-ND-000570
Vuln IDs
  • V-220538
  • V-101427
Rule IDs
  • SV-220538r531084_rule
  • SV-110531
Use of a complex passwords helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks. Password complexity is one factor of several that determine how long it takes to crack a password. The more complex the password is, the greater the number of possible combinations that need to be tested before the password is compromised. Multifactor authentication (MFA) is required for all administrative and user accounts on network devices, except for an account of last resort and (where applicable) a root account. Passwords should only be used when MFA using PKI is not available, and for the account of last resort and root account.
Checks: C-22253r508558_chk

Review the Cisco switch configuration to verify that it is compliant with this requirement 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-22242r508559_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

b
The Cisco switch must be configured to enforce password complexity by requiring that at least one lower-case character be used.
IA-5 - Medium - CCI-000193 - V-220539 - SV-220539r531084_rule
RMF Control
IA-5
Severity
M
CCI
CCI-000193
Version
CISC-ND-000580
Vuln IDs
  • V-220539
  • V-101429
Rule IDs
  • SV-220539r531084_rule
  • SV-110533
Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks. Password complexity is one factor of several that determine how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised. Multifactor authentication (MFA) is required for all administrative and user accounts on network devices, except for an account of last resort and (where applicable) a root account. Passwords should only be used when MFA using PKI is not available, and for the account of last resort and root account.
Checks: C-22254r508561_chk

Review the Cisco switch configuration to verify that it is compliant with this requirement 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-22243r508562_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

b
The Cisco switch must be configured to enforce password complexity by requiring that at least one numeric character be used.
IA-5 - Medium - CCI-000194 - V-220540 - SV-220540r531084_rule
RMF Control
IA-5
Severity
M
CCI
CCI-000194
Version
CISC-ND-000590
Vuln IDs
  • V-220540
  • V-101431
Rule IDs
  • SV-220540r531084_rule
  • SV-110535
Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks. Password complexity is one factor of several that determine how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised. Multifactor authentication (MFA) is required for all administrative and user accounts on network devices, except for an account of last resort and (where applicable) a root account. Passwords should only be used when MFA using PKI is not available, and for the account of last resort and root account.
Checks: C-22255r508564_chk

Review the Cisco switch configuration to verify that it is compliant with this requirement 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-22244r508565_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

b
The Cisco switch must be configured to enforce password complexity by requiring that at least one special character be used.
IA-5 - Medium - CCI-001619 - V-220541 - SV-220541r531084_rule
RMF Control
IA-5
Severity
M
CCI
CCI-001619
Version
CISC-ND-000600
Vuln IDs
  • V-220541
  • V-101433
Rule IDs
  • SV-220541r531084_rule
  • SV-110537
Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks. Password complexity is one factor of several that determine how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised. Multifactor authentication (MFA) is required for all administrative and user accounts on network devices, except for an account of last resort and (where applicable) a root account. Passwords should only be used when MFA using PKI is not available, and for the account of last resort and root account.
Checks: C-22256r508567_chk

Review the Cisco switch configuration to verify that it is compliant with this requirement 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-22245r508568_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

b
The Cisco switch must be configured to require that when a password is changed, the characters are changed in at least eight of the positions within the password.
IA-5 - Medium - CCI-000195 - V-220542 - SV-220542r531084_rule
RMF Control
IA-5
Severity
M
CCI
CCI-000195
Version
CISC-ND-000610
Vuln IDs
  • V-220542
  • V-101435
Rule IDs
  • SV-220542r531084_rule
  • SV-110539
If the application allows the user to consecutively reuse extensive portions of passwords, this increases the chances of password compromise by increasing the window of opportunity for attempts at guessing and brute-force attacks. The number of changed characters refers to the number of changes required with respect to the total number of positions in the current password. In other words, characters may be the same within the two passwords; however, the positions of the like characters must be different. Multifactor authentication (MFA) is required for all administrative and user accounts on network devices, except for an account of last resort and (where applicable) a root account. Passwords should only be used when MFA using PKI is not available, and for the account of last resort and root account.
Checks: C-22257r508570_chk

Review the Cisco switch configuration to verify that it is compliant with this requirement 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-22246r508571_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

c
The Cisco switch must only store cryptographic representations of passwords.
IA-5 - High - CCI-000196 - V-220543 - SV-220543r531084_rule
RMF Control
IA-5
Severity
H
CCI
CCI-000196
Version
CISC-ND-000620
Vuln IDs
  • V-220543
  • V-101437
Rule IDs
  • SV-220543r531084_rule
  • SV-110541
Passwords need to be protected at all times, and encryption is the standard method for protecting passwords. If passwords are not encrypted, they can be plainly read (i.e., clear text) and easily compromised. Network devices must enforce cryptographic representations of passwords when storing passwords in databases, configuration files, and log files. Passwords must be protected at all times; using a strong one-way hashing encryption algorithm with a salt is the standard method for providing a means to validate a password without having to store the actual password. Performance and time required to access are factors that must be considered, and the one way hash is the most feasible means of securing the password and providing an acceptable measure of password security. If passwords are stored in clear text, they can be plainly read and easily compromised. In many instances, verifying the user knows a password is performed using a password verifier. In its simplest form, a password verifier is a computational function that is capable of creating a hash of a password and determining if the value provided by the user matches the stored hash.
Checks: C-22258r508573_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-22247r508574_fix

Configure the switch to encrypt all passwords: SW4(config)#service password-encryption SW4(config)#enable secret xxxxxxxxxxxx SW4(config)#end

c
The Cisco switch must be configured to terminate all network connections associated with device management after 10 minutes of inactivity.
SC-10 - High - CCI-001133 - V-220544 - SV-220544r531084_rule
RMF Control
SC-10
Severity
H
CCI
CCI-001133
Version
CISC-ND-000720
Vuln IDs
  • V-220544
  • V-101439
Rule IDs
  • SV-220544r531084_rule
  • SV-110543
Terminating an idle session within a short time period reduces the window of opportunity for unauthorized personnel to take control of a management session enabled on the console or console port that has been left unattended. In addition, quickly terminating an idle session will also free up resources committed by the managed network element. Terminating network connections associated with communications sessions includes, for example, de-allocating associated TCP/IP address/port pairs at the operating system level, or de-allocating networking assignments at the application level if multiple application sessions are using a single, operating system-level network connection. This does not mean that the device terminates all sessions or network access; it only ends the inactive session and releases the resources associated with that session.
Checks: C-22259r508576_chk

Review the Cisco switch configuration to verify that all network connections associated with a device management have an idle timeout value set to 10 minutes or less as shown in the following example: ip http secure-server ip http timeout-policy idle 600 life nnnn requests nn … … … line con 0 exec-timeout 10 0 line vty 0 4 exec-timeout 10 0 If the Cisco switch is not configured to terminate all network connections associated with a device management after "10" minutes of inactivity, this is a finding.

Fix: F-22248r508577_fix

Set the idle timeout value to "10" minutes or less on all configured login classes as shown in the example below: SW1(config)#line vty 0 4 SW1(config-line)#exec-timeout 10 0 SW1(config-line)#exit SW1(config)#line con 0 SW1(config-line)#exec-timeout 10 0 SW1(config-line)#exit SW2(config)#ip http timeout-policy idle 600 life nnnn requests nn

b
The Cisco switch must be configured to automatically audit account enabling actions.
AC-2 - Medium - CCI-002130 - V-220545 - SV-220545r531084_rule
RMF Control
AC-2
Severity
M
CCI
CCI-002130
Version
CISC-ND-000880
Vuln IDs
  • V-220545
  • V-101441
Rule IDs
  • SV-220545r531084_rule
  • SV-110545
Once an attacker establishes initial access to a system, the attacker often attempts to create a persistent method of reestablishing access. One way to accomplish this is for the attacker to simply enable a new or disabled account. Notification of account enabling is one method for mitigating this risk. A comprehensive account management process will ensure an audit trail which documents the creation of application user accounts and notifies administrators and Information System Security Officers (ISSO). Such a process greatly reduces the risk that accounts will be surreptitiously created and provides logging that can be used for forensic purposes.
Checks: C-22260r508579_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-22249r508580_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

b
The Cisco switch must be configured to audit the execution of privileged functions.
AC-6 - Medium - CCI-002234 - V-220546 - SV-220546r531084_rule
RMF Control
AC-6
Severity
M
CCI
CCI-002234
Version
CISC-ND-000940
Vuln IDs
  • V-220546
  • V-101443
Rule IDs
  • SV-220546r531084_rule
  • SV-110547
Misuse of privileged functions, either intentionally or unintentionally by authorized users, or by unauthorized external entities that have compromised information system accounts, is a serious and ongoing concern and can have significant adverse impacts on organizations. Auditing the use of privileged functions is one way to detect such misuse and identify the risk from insider threats and the advanced persistent threat.
Checks: C-22261r508582_chk

Review the Cisco switch configuration to verify that it is compliant with this requirement. The configuration example below will log all commands entered from the command line interface as well as log all configuration changes. 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 the Cisco switch is not configured to log all commands entered from the command line interface as well as log all configuration changes, this is a finding.

Fix: F-22250r508583_fix

Configure the Cisco switch to log all commands entered from the command line interface as well as log all configuration changes as shown in the following example: 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

b
The Cisco switch must be configured to allocate audit record storage capacity in accordance with organization-defined audit record storage requirements.
AU-4 - Medium - CCI-001849 - V-220547 - SV-220547r531084_rule
RMF Control
AU-4
Severity
M
CCI
CCI-001849
Version
CISC-ND-000980
Vuln IDs
  • V-220547
  • V-101445
Rule IDs
  • SV-220547r531084_rule
  • SV-110549
In order to ensure network devices have a sufficient storage capacity in which to write the audit logs, they need to be able to allocate audit record storage capacity. The task of allocating audit record storage capacity is usually performed during initial device setup if it is modifiable. The value for the organization-defined audit record storage requirement will depend on the amount of storage available on the network device, the anticipated volume of logs, the frequency of transfer from the network device to centralized log servers, and other factors.
Checks: C-22262r508585_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-22251r508586_fix

Configure the buffer size for logging as shown in the example below: SW2(config)#logging buffered xxxxxxxx informational

b
The Cisco switch must be configured to generate an alert for all audit failure events.
AU-5 - Medium - CCI-001858 - V-220548 - SV-220548r531084_rule
RMF Control
AU-5
Severity
M
CCI
CCI-001858
Version
CISC-ND-001000
Vuln IDs
  • V-220548
  • V-101447
Rule IDs
  • SV-220548r531084_rule
  • SV-110551
It is critical for the appropriate personnel to be aware if a system is at risk of failing to process audit logs as required. Without a real-time alert, security personnel may be unaware of an impending failure of the audit capability and system operation may be adversely affected. Alerts provide organizations with urgent messages. Real-time alerts provide these messages immediately (i.e., the time from event detection to alert occurs in seconds or less).
Checks: C-22263r508588_chk

Review the Cisco switch configuration to verify that it is compliant with this requirement as shown in the example below: logging trap critical logging x.x.x.x 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-22252r508589_fix

Configure the Cisco switch to send critical to emergency log messages to the syslog server as shown in the example below: 4(config)#logging host x.x.x.x SW4(config)#logging trap critical Note: The parameter "critical" can replaced with a lesser severity level (i.e., error, warning, notice, informational).

b
The Cisco switch must be configured to synchronize its clock with the primary and secondary time sources using redundant authoritative time sources.
AU-8 - Medium - CCI-001893 - V-220549 - SV-220549r531084_rule
RMF Control
AU-8
Severity
M
CCI
CCI-001893
Version
CISC-ND-001030
Vuln IDs
  • V-220549
  • V-101449
Rule IDs
  • SV-220549r531084_rule
  • SV-110553
The loss of connectivity to a particular authoritative time source will result in the loss of time synchronization (free-run mode) and increasingly inaccurate time stamps on audit events and other functions. Multiple time sources provide redundancy by including a secondary source. Time synchronization is usually a hierarchy; clients synchronize time to a local source while that source synchronizes its time to a more accurate source. The network device must utilize an authoritative time server and/or be configured to use redundant authoritative time sources. This requirement is related to the comparison done in CCI-001891. DoD-approved solutions consist of a combination of a primary and secondary time source using a combination or multiple instances of the following: a time server designated for the appropriate DoD network (NIPRNet/SIPRNet); United States Naval Observatory (USNO) time servers; and/or the Global Positioning System (GPS). The secondary time source must be located in a different geographic region than the primary time source.
Checks: C-22264r508591_chk

Review the Cisco switch configuration to verify that it is compliant with this requirement as shown in the configuration 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-22253r508592_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

b
The Cisco switch must record time stamps for audit records that meet a granularity of one second for a minimum degree of precision.
AU-8 - Medium - CCI-001889 - V-220550 - SV-220550r531084_rule
RMF Control
AU-8
Severity
M
CCI
CCI-001889
Version
CISC-ND-001040
Vuln IDs
  • V-220550
  • V-101451
Rule IDs
  • SV-220550r531084_rule
  • SV-110555
Without sufficient granularity of time stamps, it is not possible to adequately determine the chronological order of records. Time stamps generated by the application include date and time. Granularity of time measurements refers to the degree of synchronization between information system clocks and reference clocks.
Checks: C-22265r508594_chk

Review the Cisco switch configuration to verify that it is compliant with this requirement as shown in the example below: service timestamps log datetime If the switch is not configured to record time stamps that meet a granularity of one second, this is a finding.

Fix: F-22254r508595_fix

Configure the Cisco switch to record time stamps that meet a granularity of one second as shown in the example below: SW2(config)#service timestamps log datetime localtime

b
The Cisco switch must be configured to record time stamps for log records that can be mapped to Coordinated Universal Time (UTC) or Greenwich Mean Time (GMT).
AU-8 - Medium - CCI-001890 - V-220551 - SV-220551r531084_rule
RMF Control
AU-8
Severity
M
CCI
CCI-001890
Version
CISC-ND-001050
Vuln IDs
  • V-220551
  • V-101453
Rule IDs
  • SV-220551r531084_rule
  • SV-110557
If time stamps are not consistently applied and there is no common time reference, it is difficult to perform forensic analysis. Time stamps generated by the application include date and time. Time is commonly expressed in Coordinated Universal Time (UTC), a modern continuation of Greenwich Mean Time (GMT), or local time with an offset from UTC.
Checks: C-22266r508597_chk

Review the Cisco switch configuration to verify that it is compliant with this requirement as shown in the example below: service timestamps log datetime localtime ! hostname R2 … … … clock timezone EST -5 Note: UTC is the default; hence, the command set time-zone may not be seen in the configuration. This can be verified using the show system uptime command. If the switch is not configured to record time stamps for audit records that can be mapped to UTC GMT, this is a finding.

Fix: F-22255r508598_fix

Configure the Cisco switch to record time stamps for audit records that can be mapped to UTC or GMT as shown in the example below: SW2(config)#clock timezone EST -5 SW2(config)#service timestamps log datetime localtime

b
The Cisco switch must be configured to authenticate SNMP messages using a FIPS-validated Keyed-Hash Message Authentication Code (HMAC).
IA-3 - Medium - CCI-001967 - V-220552 - SV-220552r531084_rule
RMF Control
IA-3
Severity
M
CCI
CCI-001967
Version
CISC-ND-001130
Vuln IDs
  • V-220552
  • V-101455
Rule IDs
  • SV-220552r531084_rule
  • SV-110559
Without authenticating devices, unidentified or unknown devices may be introduced, thereby facilitating malicious activity. Bidirectional authentication provides stronger safeguards to validate the identity of other devices for connections that are of greater risk. A local connection is any connection with a device communicating without the use of a network. A network connection is any connection with a device that communicates through a network (e.g., local area or wide area network, Internet). A remote connection is any connection with a device communicating through an external network (e.g., the Internet). Because of the challenges of applying this requirement on a large scale, organizations are encouraged to only apply the requirement to those limited number (and type) of devices that truly need to support this capability.
Checks: C-22267r508600_chk

Review the Cisco switch configuration to verify that it is compliant with this requirement 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-22256r508601_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

b
The Cisco switch must be configured to encrypt SNMP messages using a FIPS 140-2 approved algorithm.
AC-17 - Medium - CCI-000068 - V-220553 - SV-220553r531084_rule
RMF Control
AC-17
Severity
M
CCI
CCI-000068
Version
CISC-ND-001140
Vuln IDs
  • V-220553
  • V-101457
Rule IDs
  • SV-220553r531084_rule
  • SV-110561
Without the strong encryption that is provided by the SNMP Version 3 User-based Security Model (USM), an unauthorized user can gain access to network management information that can be used to create a network outage.
Checks: C-22268r508603_chk

Review the Cisco switch configuration to verify that it is compliant with this requirement 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-22257r508604_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

b
The Cisco switch must be configured to authenticate Network Time Protocol (NTP) sources using authentication that is cryptographically based.
IA-3 - Medium - CCI-001967 - V-220554 - SV-220554r531084_rule
RMF Control
IA-3
Severity
M
CCI
CCI-001967
Version
CISC-ND-001150
Vuln IDs
  • V-220554
  • V-101459
Rule IDs
  • SV-220554r531084_rule
  • SV-110563
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.
Checks: C-22269r508606_chk

Review the Cisco switch configuration to verify that it is compliant with this requirement 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-22258r508607_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

c
The Cisco switch must be configured to use FIPS-validated Keyed-Hash Message Authentication Code (HMAC) to protect the integrity of remote maintenance sessions.
MA-4 - High - CCI-002890 - V-220555 - SV-220555r531084_rule
RMF Control
MA-4
Severity
H
CCI
CCI-002890
Version
CISC-ND-001200
Vuln IDs
  • V-220555
  • V-101461
Rule IDs
  • SV-220555r531084_rule
  • SV-110565
Unapproved mechanisms that are used for authentication to the cryptographic module are not verified and therefore cannot be relied upon to provide confidentiality or integrity, and DoD data may be compromised. Nonlocal maintenance and diagnostic activities are those activities conducted by individuals communicating through a network, either an external network (e.g., the Internet) or an internal network. Currently, HMAC is the only FIPS-approved algorithm for generating and verifying message/data authentication codes in accordance with FIPS 198-1. Products that are FIPS 140-2 validated will have an HMAC that meets specification; however, the option must be configured for use as the only message authentication code used for authentication to cryptographic modules. Separate requirements for configuring applications and protocols used by each application (e.g., SNMPv3, SSHv2, NTP, HTTPS, and other protocols and applications that require server/client authentication) are required to implement this requirement. Where SSH is used, the SSHv2 protocol suite is required because it includes Layer 7 protocols such as SCP and SFTP, which can be used for secure file transfers.
Checks: C-22270r508609_chk

Review the Cisco switch configuration to verify that it is compliant with this requirement as shown in the example below: 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-22259r508610_fix

Configure SSH to use FIPS-validated HMAC for remote maintenance sessions as shown in the following example: SW1(config)#ip ssh version 2 SW1(config)#iip ssh server algorithm mac hmac-sha2-512 hmac-sha2-256

c
The Cisco switch must be configured to implement cryptographic mechanisms to protect the confidentiality of remote maintenance sessions.
MA-4 - High - CCI-003123 - V-220556 - SV-220556r531084_rule
RMF Control
MA-4
Severity
H
CCI
CCI-003123
Version
CISC-ND-001210
Vuln IDs
  • V-220556
  • V-101463
Rule IDs
  • SV-220556r531084_rule
  • SV-110567
This requires the use of secure protocols instead of their unsecured counterparts, such as SSH instead of telnet, SCP instead of FTP, and HTTPS instead of HTTP. If unsecured protocols (lacking cryptographic mechanisms) are used for sessions, the contents of those sessions will be susceptible to eavesdropping, potentially putting sensitive data (including administrator passwords) at risk of compromise and potentially allowing hijacking of maintenance sessions.
Checks: C-22271r508612_chk

Review the Cisco switch configuration to verify that it is compliant with this requirement. 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-22260r508613_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)#iip ssh server algorithm encryption aes256-ctr aes192-ctr aes128-ctr

b
The Cisco switch must be configured to protect against known types of denial-of-service (DoS) attacks by employing organization-defined security safeguards.
SC-5 - Medium - CCI-002385 - V-220557 - SV-220557r531084_rule
RMF Control
SC-5
Severity
M
CCI
CCI-002385
Version
CISC-ND-001220
Vuln IDs
  • V-220557
  • V-101465
Rule IDs
  • SV-220557r531084_rule
  • SV-110569
DoS is a condition when a resource is not available for legitimate users. When this occurs, the organization either cannot accomplish its mission or must operate at degraded capacity. This requirement addresses the configuration of network devices to mitigate the impact of DoS attacks that have occurred or are ongoing on device availability. For each network device, known and potential DoS attacks must be identified and solutions for each type implemented. A variety of technologies exist to limit or, in some cases, eliminate the effects of DoS attacks (e.g., limiting processes or restricting the number of sessions the device opens at one time). Employing increased capacity and bandwidth, combined with service redundancy, may reduce the susceptibility to some DoS attacks. The security safeguards cannot be defined at the DoD level because they vary according to the capabilities of the individual network devices and the security controls applied on the adjacent networks (e.g., firewalls performing packet filtering to block DoS attacks).
Checks: C-22272r508615_chk

Review the Cisco switch configuration to verify that it is compliant with this requirement. 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 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 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 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-22261r508616_fix

Configure the Cisco switch 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 ACLs 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

b
The Cisco switch must be configured to generate log records when administrator privileges are modified.
AU-12 - Medium - CCI-000172 - V-220558 - SV-220558r531084_rule
RMF Control
AU-12
Severity
M
CCI
CCI-000172
Version
CISC-ND-001240
Vuln IDs
  • V-220558
  • V-101467
Rule IDs
  • SV-220558r531084_rule
  • SV-110571
Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one. Audit records can be generated from various components within the network device (e.g., module or policy filter).
Checks: C-22273r508618_chk

Review the Cisco switch configuration to verify that it is compliant with this requirement as shown in the examples below: hostname R4 ! ! logging userinfo … … … archive log config logging enable Note: The logging userinfo command will log when the administrator increases his or her privilege level while the log config command will log all configuration changes such as changing privilege levels for certain commands. If the Cisco switch is not configured to generate log records when administrator privileges are modified, this is a finding.

Fix: F-22262r508619_fix

Configure the Cisco switch to generate log records when account privileges are modified as shown in the example below: SW4(config)#logging userinfo SW4(config)#archive SW4(config-archive)#log config SW4(config-archive-log-cfg)#logging enable SW4(config-archive-log-cfg)#end

b
The Cisco switch must be configured to generate log records when administrator privileges are deleted.
AU-12 - Medium - CCI-000172 - V-220559 - SV-220559r531084_rule
RMF Control
AU-12
Severity
M
CCI
CCI-000172
Version
CISC-ND-001250
Vuln IDs
  • V-220559
  • V-101469
Rule IDs
  • SV-220559r531084_rule
  • SV-110573
Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one. Audit records can be generated from various components within the network device (e.g., module or policy filter).
Checks: C-22274r508621_chk

Review the Cisco switch configuration to verify that it is compliant with this requirement 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-22263r508622_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

b
The Cisco switch must be configured to generate audit records when successful/unsuccessful logon attempts occur.
AU-12 - Medium - CCI-000172 - V-220560 - SV-220560r531084_rule
RMF Control
AU-12
Severity
M
CCI
CCI-000172
Version
CISC-ND-001260
Vuln IDs
  • V-220560
  • V-101471
Rule IDs
  • SV-220560r531084_rule
  • SV-110575
Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one. Audit records can be generated from various components within the network device (e.g., module or policy filter).
Checks: C-22275r508624_chk

Review the Cisco switch configuration to verify that it is compliant with this requirement 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-22264r508625_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

b
The Cisco switch must be configured to generate log records for privileged activities.
AU-12 - Medium - CCI-000172 - V-220561 - SV-220561r531084_rule
RMF Control
AU-12
Severity
M
CCI
CCI-000172
Version
CISC-ND-001270
Vuln IDs
  • V-220561
  • V-101473
Rule IDs
  • SV-220561r531084_rule
  • SV-110577
Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one. Audit records can be generated from various components within the network device (e.g., module or policy filter).
Checks: C-22276r508627_chk

Review the Cisco switch configuration to verify that it is compliant with this requirement 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-22265r508628_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

b
The Cisco switch must be configured to generate log records when concurrent logons from different workstations occur.
AU-12 - Medium - CCI-000172 - V-220563 - SV-220563r531084_rule
RMF Control
AU-12
Severity
M
CCI
CCI-000172
Version
CISC-ND-001290
Vuln IDs
  • V-220563
  • V-101477
Rule IDs
  • SV-220563r531084_rule
  • SV-110581
Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one. Audit records can be generated from various components within the network device (e.g., module or policy filter).
Checks: C-22278r508633_chk

Review the Cisco switch configuration to verify that it is compliant with this requirement as shown in the examples below: login on-success log If the Cisco switch is not configured to generate log records when concurrent logons from different workstations occur, this is a finding.

Fix: F-22267r508634_fix

Configure the Cisco switch to generate log records when concurrent logons from different workstations occur as shown in the example below: R5(config)#login on-success log

b
The Cisco switch must be configured to off-load log records onto a different system than the system being audited.
AU-4 - Medium - CCI-001851 - V-220564 - SV-220564r531084_rule
RMF Control
AU-4
Severity
M
CCI
CCI-001851
Version
CISC-ND-001310
Vuln IDs
  • V-220564
  • V-101479
Rule IDs
  • SV-220564r531084_rule
  • SV-110583
Information stored in one location is vulnerable to accidental or incidental deletion or alteration. Off-loading is a common process in information systems with limited audit storage capacity.
Checks: C-22279r508636_chk

Review the Cisco switch configuration to verify that it is compliant with this requirement as shown in the example below: logging trap notifications logging x.x.x.x Note: Default for sending log messages to the syslog server is informational (level 6); hence, the command logging trap informational will not be seen in the configuration. Level of log messages sent to the syslog server can be verified using the show logging command. If the Cisco switch is not configured to off-load log records onto a different system than the system being audited, this is a finding.

Fix: F-22268r508637_fix

Configure the Cisco switch to send log records to a syslog server as shown in the example below: SW4(config)#logging host x.x.x.x SW4(config)#logging trap notifications

c
The Cisco switch must be configured to use an authentication server for the purpose of authenticating users prior to granting administrative access.
CM-6 - High - CCI-000366 - V-220565 - SV-220565r531084_rule
RMF Control
CM-6
Severity
H
CCI
CCI-000366
Version
CISC-ND-001370
Vuln IDs
  • V-220565
  • V-101481
Rule IDs
  • SV-220565r531084_rule
  • SV-110585
Centralized management of user accounts and authentication increases the administrative access to the switch. This control is a particularly important protection against the insider threat. With robust centralized management, audit records for administrator account access to the organization's network devices can be more readily analyzed for trends and anomalies. The alternative method of defining administrator accounts on each device exposes the device configuration to remote access authentication attacks and system administrators with multiple authenticators for each network device.
Checks: C-22280r508639_chk

Review the Cisco switch configuration to verify that the device is configured to use an authentication server as primary source for authentication as shown in the following example: aaa new-model ! 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 1645 acct-port 1646 key xxxxxxx … … … line con 0 exec-timeout 10 0 login authentication LOGIN_AUTHENTICATION line vty 0 4 exec-timeout 10 0 login authentication LOGIN_AUTHENTICATION If the Cisco switch is not configured to use an authentication server for the purpose of authenticating users prior to granting administrative access, this is a finding.

Fix: F-22269r508640_fix

Step 1: Configure the Cisco switch to use an authentication server as shown in the following example: SW4(config)#radius host 10.1.48.2 key xxxxxx Step 2: Configure the authentication order to use the authentication server as primary source for authentication as shown in the following example: SW4(config)#aaa authentication login LOGIN_AUTHENTICATION group radius local Step 3: Configure all network connections associated with a device management to use an authentication server for the purpose of login authentication. SW4(config)#line vty 0 4 SW4(config-line)#login authentication LOGIN_AUTHENTICATION SW4(config-line)#exit SW4(config)#line con 0 SW4(config-line)#login authentication LOGIN_AUTHENTICATION SW4(config-line)#exit SW4(config)#ip http authentication aaa login-authentication LOGIN_AUTHENTICATION

b
The Cisco switch must be configured to support organizational requirements to conduct backups of the configuration when changes occur.
CM-6 - Medium - CCI-000366 - V-220566 - SV-220566r531084_rule
RMF Control
CM-6
Severity
M
CCI
CCI-000366
Version
CISC-ND-001410
Vuln IDs
  • V-220566
  • V-101483
Rule IDs
  • SV-220566r531084_rule
  • SV-110587
System-level information includes default and customized settings and security attributes, including ACLs that relate to the network device configuration, as well as software required for the execution and operation of the device. Information system backup is a critical step in ensuring system integrity and availability. If the system fails and there is no backup of the system-level information, a denial of service condition is possible for all who utilize this critical network component. This control requires the network device to support the organizational central backup process for system-level information associated with the network device. This function may be provided by the network device itself; however, the preferred best practice is a centralized backup rather than each network device performing discrete backups.
Checks: C-22281r508642_chk

Review the Cisco switch configuration to verify that it is compliant with this requirement. 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-22270r508643_fix

Configure the Cisco switch to send the configuration to a TFTP or 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

b
The Cisco switch must be configured to obtain its public key certificates from an appropriate certificate policy through an approved service provider.
SC-17 - Medium - CCI-001159 - V-220567 - SV-220567r531084_rule
RMF Control
SC-17
Severity
M
CCI
CCI-001159
Version
CISC-ND-001440
Vuln IDs
  • V-220567
  • V-101485
Rule IDs
  • SV-220567r531084_rule
  • SV-110589
For user certificates, each organization obtains certificates from an approved, shared service provider, as required by OMB policy. For federal agencies operating a legacy public key infrastructure cross-certified with the Federal Bridge Certification Authority at medium assurance or higher, this Certification Authority will suffice.
Checks: C-22282r508645_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 with. 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 end-point'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 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-22271r508646_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

c
The Cisco switch must be configured to send log data to a central log server for the purpose of forwarding alerts to the administrators and the ISSO.
CM-6 - High - CCI-000366 - V-220568 - SV-220568r531084_rule
RMF Control
CM-6
Severity
H
CCI
CCI-000366
Version
CISC-ND-001450
Vuln IDs
  • V-220568
  • V-101487
Rule IDs
  • SV-220568r531084_rule
  • SV-110591
The aggregation of log data kept on a syslog server can be used to detect attacks and trigger an alert to the appropriate security personnel. The stored log data can used to detect weaknesses in security that enable the network IA team to find and address these weaknesses before breaches can occur. Reviewing these logs, whether before or after a security breach, are important in showing whether someone is an internal employee or an outside threat.
Checks: C-22283r508648_chk

Verify that the switch is configured to send logs to a central log server. The configuration should look similar to the example below: logging trap notifications logging x.x.x.x Note: Default for sending log messages to the syslog server is informational (level 6); hence, the command logging trap informational will not be seen in the configuration. Level of log messages sent to the syslog server can be verified using the show logging command. If the switch is not configured to send log data to the syslog server, this is a finding.

Fix: F-22272r508649_fix

Configure the switch to send log messages to the syslog server as shown in the example below: SW4(config)#logging host x.x.x.x SW4(config)#logging trap notifications

c
The Cisco switch must be running an IOS release that is currently supported by Cisco Systems.
CM-6 - High - CCI-000366 - V-220569 - SV-220569r531084_rule
RMF Control
CM-6
Severity
H
CCI
CCI-000366
Version
CISC-ND-001470
Vuln IDs
  • V-220569
  • V-101489
Rule IDs
  • SV-220569r531084_rule
  • SV-110593
Network devices running an unsupported operating system lack current security fixes required to mitigate the risks associated with recent vulnerabilities. Running a supported release also enables operations to maintain a stable and reliable network provided by improved quality of service and security features.
Checks: C-22284r508651_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 on the following URL: 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-22273r508652_fix

Upgrade the switch to a supported release.