UCF STIG Viewer Logo

The Cisco switch must be configured to limit the number of concurrent management sessions to an organization-defined number.


Overview

Finding ID Version Rule ID IA Controls Severity
V-220570 CISC-ND-000010 SV-220570r835068_rule Medium
Description
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 on 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.
STIG Date
Cisco IOS Switch NDM Security Technical Implementation Guide 2022-06-09

Details

Check Text ( C-22285r835066_chk )
Note: This requirement is not applicable to file transfer actions such as FTP, SCP, and SFTP.

Review the switch configuration to determine if concurrent management sessions are limited as show in the example below:

ip http secure-server
ip http max-connections 2




For platforms that support the session-limit command:

line vty 0 4
session-limit 2
transport input ssh


For platforms that do not support the session-limit command, the sessions can also be limited by reducing the number of active vty lines as shown in the example below:

line vty 0 1
transport input ssh
line vty 2 4
transport input none

If the switch is not configured to limit the number of concurrent management sessions, this is a finding.
Fix Text (F-22274r835067_fix)
Configure the switch to limit the number of concurrent management sessions to an organization-defined number as shown in the example below:

SW4(config)#ip http max-connections 2
SW4(config)#line vty 0 1
SW4(config)#transport input ssh
SW4(config)#line vty 2 4
SW4(config)#transport input none