STIGhubSTIGhub
STIGsSearchCompare

STIGhub

A free tool to search and browse the entire DISA STIG library. Saves up to 75% in security compliance research time.

Navigation

  • Browse STIGs
  • Search
  • Compare Versions

Resources

  • About
  • Release Notes
  • VPAT
  • DISA STIG Library
STIGs updated 3 hours ago
Powered by Pylon
© 2026 Beacon Cloud Solutions, Inc. All rights reserved.
← Back to Cisco NX OS Switch NDM Security Technical Implementation Guide

V-220513

CAT I (High)

The Cisco switch must be configured to use at least two authentication servers for the purpose of authenticating users prior to granting administrative access.

Rule ID

SV-220513r1137887_rule

STIG

Cisco NX OS Switch NDM Security Technical Implementation Guide

Version

V3R6

CCIs

CCI-000370

Discussion

Centralized management of user accounts and authentication increases the administrative access to the switch. This control is 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.

Check Content

Review the Cisco switch configuration to verify that the device is configured to use at least two authentication servers as primary source for authentication.

Step 1: Verify that an AAA server group is configured for login authentication for both in-band and console access methods.

aaa authentication login default group RADIUS_SERVERS 
aaa authentication login console group RADIUS_SERVERS

Step 2: Verify that at least two AAA servers have been defined for the server group as shown in the example below:

radius-server host 10.1.48.10 key 7 "xxxxxx" 
radius-server host 10.1.48.11 key 7 "xxxxxx" 
authentication accounting 
aaa group server radius RADIUS_SERVERS 
 server 10.1.48.10
 server 10.1.48.11

If the Cisco switch is not configured to use at least two authentication servers for the purpose of authenticating users prior to granting administrative access, this is a finding.

Fix Text

Configure the Cisco switch to use at least two authentication servers as shown in the following example:

Step 1: Define the authentication servers. 

SW1(config)# radius-server host 10.1.48.10 key xxxxxx
SW1(config)# radius-server host 10.1.48.11 key xxxxxx

Step 2: Configure the AAA group.

SW1(config)# aaa group server radius RADIUS_SERVERS
SW1(config-radius)# server 10.1.48.10
SW1(config-radius)# server 10.1.48.11

Step 3: Use the AAA servers for login authentication for both in-band and console access methods.

SW1(config)# aaa authentication login default group RADIUS_SERVERS 
SW1(config)# aaa authentication login console group RADIUS_SERVERS