STIGhubSTIGhub
STIGsRMF ControlsCompare

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
  • RMF Controls
  • 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 IOS Switch RTR Security Technical Implementation Guide

V-220440

CAT I (High)

The Cisco perimeter switch must be configured to deny network traffic by default and allow network traffic by exception.

Rule ID

SV-220440r1137935_rule

STIG

Cisco IOS Switch RTR Security Technical Implementation Guide

Version

V3R3

CCIs

CCI-001109

Discussion

A deny-all, permit-by-exception network communications traffic policy ensures that only connections that are essential and approved are allowed. This requirement applies to both inbound and outbound network communications traffic. All inbound and outbound traffic must be denied by default. Firewalls and perimeter switches should only allow traffic through that is explicitly permitted. The initial defense for the internal network is to block any traffic at the perimeter that is attempting to make a connection to a host residing on the internal network. In addition, allowing unknown or undesirable outbound traffic by the firewall or switch will establish a state that will permit the return of this undesirable traffic inbound.

Check Content

Review the switch configuration to verify that the inbound access control list (ACL) applied to all external interfaces is configured to allow specific ports and protocols and deny all other traffic. 

Step 1: Verify that an inbound ACL is applied to all external interfaces as shown in the example below: 

interface GigabitEthernet0/2 
 ip address x.11.1.2 255.255.255.254 
 ip access-group EXTERNAL_ACL in 

Step 2: Review the inbound ACL to verify that it is configured to deny all other traffic that is not explicitly allowed. 

ip access-list extended EXTERNAL_ACL 
 permit tcp any any established 
 permit icmp host x.11.1.1 host x.11.1.2 echo 
 permit icmp host x.11.1.1 host x.11.1.2 echo-reply 
… 
 … 
 … 
deny ip any any log-input 

If the ACL is not configured to allow specific ports and protocols and deny all other traffic, this is a finding. 

If the ACL is not configured inbound on all external interfaces, this is a finding.

Fix Text

Step 1: Configure an inbound ACL to deny all other traffic by default as shown in the example below: 

SW1(config)#ip access-list extended EXTERNAL_ACL 
SW1(config-ext-nacl)#permit tcp any any established 
SW1(config-ext-nacl)#permit icmp host x.11.1.1 host x.11.1.2 echo 
SW1(config-ext-nacl)#permit icmp host x.11.1.1 host x.11.1.2 echo-reply 
… 
… 
… 
SW1(config-ext-nacl)#deny ip any any log-input 

Step 2: Apply the ingress filter to all external interfaces. 

SW1(config)#int g0/2 
SW1(config-if)#ip access-group EXTERNAL_ACL in