Dell OS10 Switch Layer 2 Switch Security Technical Implementation Guide

  • Version/Release: V1R1
  • Published: 2024-12-11
  • Released: 2024-12-10
  • Expand All:
  • Severity:
  • Sort:
Compare

Select any two versions of this STIG to compare the individual requirements

View

Select any old version/release of this STIG to view the previous requirements

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.
c
The Dell OS10 Switch must uniquely identify all network-connected endpoint devices before establishing any connection.
IA-3 - High - CCI-000778 - V-269953 - SV-269953r1052245_rule
RMF Control
IA-3
Severity
High
CCI
CCI-000778
Version
OS10-L2S-000020
Vuln IDs
  • V-269953
Rule IDs
  • SV-269953r1052245_rule
Controlling LAN access via 802.1x authentication can assist in preventing a malicious user from connecting an unauthorized PC to a switch port to inject or receive data from the network without detection. Satisfies: SRG-NET-000148-L2S-000015, SRG-NET-000343-L2S-000016
Checks: C-73986r1052243_chk

Verify if the switch configuration has 802.1x authentication implemented for all access switch ports connecting to LAN outlets (i.e., RJ-45 wall plates) or devices not located in the telecom room, wiring closets, or equipment rooms. Verify that 802.1x authentication is enabled globally by reviewing the configuration for the presence of: dot1x system-auth-control Verify that 802.1x authentication is enabled on the host-facing access interfaces by looking for the following two dot1x settings: ! interface ethernet1/1/3 dot1x port-control auto dot1x re-authentication If 802.1x authentication is not on configured on all access switch ports connecting to LAN outlets or devices not located in the telecom room, wiring closets, or equipment rooms, this is a finding.

Fix: F-73887r1052244_fix

Configure 802.1 x authentications on all host-facing access switch ports. Configure RADIUS for 802.1x authentication: OS10(config)# radius-server host 10.10.1.200 key my-shared-secret OS10(config)# radius-server retransmit 10 OS10(config)# radius-server timeout 10 Enable 802.1X globally in CONFIGURATION mode: OS10(config)# dot1x system-auth-control Enable 802.1x on the host-facing access interfaces: OS10(config)# interface range ethernet 1/1/2-1/1/48 OS10(conf-rangeeth1/1/2-1/1/48)# dot1x port-control auto OS10(conf-rangeeth1/1/2-1/1/48)# dot1x re-authentication

b
The Dell OS10 Switch must manage excess bandwidth to limit the effects of packet flooding types of denial-of-service (DoS) attacks.
SC-5 - Medium - CCI-001095 - V-269954 - SV-269954r1052477_rule
RMF Control
SC-5
Severity
Medium
CCI
CCI-001095
Version
OS10-L2S-000040
Vuln IDs
  • V-269954
Rule IDs
  • SV-269954r1052477_rule
DoS is a condition when a resource is not available for legitimate users. Packet flooding distributed denial-of-service (DDoS) attacks are referred to as volumetric attacks and have the objective of overloading a network or circuit to deny or seriously degrade performance, which denies access to the services that normally traverse the network or circuit. Volumetric attacks have become relatively easy to launch by using readily available tools such as Low Orbit Ion Cannon or by using botnets. Measures to mitigate the effects of a successful volumetric attack must be taken to ensure that sufficient capacity is available for mission-critical traffic. Managing capacity may include, for example, establishing selected network usage priorities or quotas and enforcing them using rate limiting, Quality of Service (QoS), or other resource reservation control methods. These measures may also mitigate the effects of sudden decreases in network capacity that are the result of accidental or intentional physical damage to telecommunications facilities (such as cable cuts or weather-related outages). Satisfies: SRG-NET-000193-L2S-000020, SRG-NET-000705-L2S-000110
Checks: C-73987r1052246_chk

Review the switch configuration to verify that QoS has been enabled to ensure that sufficient capacity is available for mission-critical traffic such as voice and enforce the traffic priorities specified by the Combatant Commanders/Services/Agencies. To verify that QoS has been enabled, review the configuration for each applicable interface to determine if service policies have been configured: ! interface ethernet1/1/1 ... ... service-policy input type qos 6Q_PolicyMapIn_dscp service-policy output type queuing 6Q_PolicyMapOut_100G ! If the switch is not configured to implement a QoS policy, this is a finding.

Fix: F-73888r1052476_fix

Implement a QoS policy for traffic prioritization and bandwidth reservation. This policy must enforce the traffic priorities specified by the Combatant Commanders/Services/Agencies. An example QOS configuration follows. Define an input policy to classify traffic on ingress: ! class-map type qos 6Q_BestEffort_dscp match ip-any dscp 0 ! class-map type qos 6Q_NetworkControl_dscp match ip-any dscp 48 ! class-map type qos 6Q_PreferData_dscp match ip-any dscp 16 ! class-map type qos 6Q_Scavenger_dscp match ip-any dscp 8 ! class-map type qos 6Q_Video_dscp match ip-any dscp 38 ! class-map type qos 6Q_Voice_dscp match ip-any dscp 49 ! class-map type queuing 6Q_BestEffort match queue 1 ! class-map type queuing 6Q_NetworkControl match queue 5 ! class-map type queuing 6Q_PreferData match queue 2 ! class-map type queuing 6Q_Scavenger match queue 0 ! class-map type queuing 6Q_Video match queue 3 ! class-map type queuing 6Q_Voice match queue 4 ! policy-map type qos 6Q_PolicyMapIn_dscp ! class 6Q_Scavenger_dscp set qos-group 0 ! class 6Q_BestEffort_dscp set qos-group 1 ! class 6Q_PreferData_dscp set qos-group 2 ! class 6Q_Video_dscp set qos-group 3 ! class 6Q_Voice_dscp set qos-group 4 ! class 6Q_Voice_dscp_15 set qos-group 4 set dscp 45 ! class 6Q_NetworkControl_dscp set qos-group 5 Define an output policy to configure class-specific traffic shaping on egress. ! policy-map type queuing 6Q_PolicyMapOut_100G ! class 6Q_Scavenger bandwidth percent 10 shape min mbps 10000 max mbps 10000 ! class 6Q_BestEffort bandwidth percent 20 ! class 6Q_NetworkControl bandwidth percent 5 shape min mbps 5000 max mbps 5000 ! class 6Q_PreferData bandwidth percent 30 shape min mbps 30000 max mbps 30000 ! class 6Q_Video bandwidth percent 15 shape min mbps 15000 max mbps 15000 ! class 6Q_Voice bandwidth percent 20 shape min mbps 20000 max mbps 20000 ! Apply input and output policies to physical interfaces. ! interface ethernet1/1/1 ... ... service-policy input type qos 6Q_PolicyMapIn_dscp service-policy output type queuing 6Q_PolicyMapOut_100G !

a
The Dell OS10 Switch must have Root Guard enabled on all switch ports connecting to access layer switches and hosts.
SC-5 - Low - CCI-002385 - V-269955 - SV-269955r1052251_rule
RMF Control
SC-5
Severity
Low
CCI
CCI-002385
Version
OS10-L2S-000090
Vuln IDs
  • V-269955
Rule IDs
  • SV-269955r1052251_rule
Spanning Tree Protocol (STP) does not provide any means for the network administrator to securely enforce the topology of the switched network. Any switch can be the root bridge in a network. However, a more optimal forwarding topology places the root bridge at a specific predetermined location. With the standard STP, any bridge in the network with a lower bridge ID takes the role of the root bridge. The administrator cannot enforce the position of the root bridge but can set the root bridge priority to zero to secure the root bridge position. The root guard feature provides a way to enforce the root bridge placement in the network. If the bridge receives superior STP Bridge Protocol Data Units (BPDUs) on a root guard-enabled port, root guard moves this port to a root-inconsistent STP state, and no traffic can be forwarded across this port while it is in this state. To enforce the position of the root bridge it is imperative that root guard is enabled on all ports where the root bridge should never appear.
Checks: C-73988r1052249_chk

Review the Dell OS10 Switch topology as well as the switch configuration to verify that Root Guard is enabled on all switch ports connecting to access layer switches and hosts. For each switch port connecting to access layer switches and hosts, execute the following: OS10# show running-configuration interface ethernet <interface number> Verify Root Guard is enabled: spanning-tree guard root If the switch has not enabled Root Guard on all switch ports connecting to access layer switches and hosts, this is a finding.

Fix: F-73889r1052250_fix

Configure the Dell OS10 Switch to enable Root Guard on all switch ports connecting to access layer switches and hosts as shown in the example below: OS10(config)# interface ethernet 1/1/1 OS10(conf-if-eth1/1/1)# spanning-tree guard root

b
The Dell OS10 Switch must have BPDU Guard enabled on all user-facing or untrusted access switch ports.
SC-5 - Medium - CCI-002385 - V-269956 - SV-269956r1052254_rule
RMF Control
SC-5
Severity
Medium
CCI
CCI-002385
Version
OS10-L2S-000100
Vuln IDs
  • V-269956
Rule IDs
  • SV-269956r1052254_rule
If a rogue switch is introduced into the topology and transmits a Bridge Protocol Data Unit (BPDU) with a lower bridge priority than the existing root bridge, it will become the new root bridge and cause a topology change, rendering the network in a suboptimal state. The STP PortFast BPDU guard enhancement allows network designers to enforce the STP domain borders and keep the active topology predictable. The devices behind the ports that have STP PortFast enabled are not able to influence the STP topology. At the reception of BPDUs, the BPDU guard operation disables the port that has PortFast configured. The BPDU guard transitions the port into err disable state and sends a log message.
Checks: C-73989r1052252_chk

Review the Dell OS10 Switch topology as well as the switch configuration to verify that BPDU Guard is enabled on all user-facing or untrusted access switch ports. For each user-facing or untrusted access switch port, execute the following: OS10# show running-configuration interface ethernet <interface number> Verify Root Guard is enabled: spanning-tree bpduguard enable If the switch has not enabled BPDU Guard on all user-facing or untrusted access switch ports, this is a finding.

Fix: F-73890r1052253_fix

Configure the Dell OS10 Switch to enable BPDU Guard on all user-facing or untrusted access switch ports, as shown in the example below: OS10(config)# interface ethernet 1/1/1 OS10(conf-if-eth1/1/1)# spanning-tree bpduguard enable

b
The Dell OS10 Switch must have STP Loop Guard enabled on all nondesignated STP switch ports.
SC-5 - Medium - CCI-002385 - V-269957 - SV-269957r1052257_rule
RMF Control
SC-5
Severity
Medium
CCI
CCI-002385
Version
OS10-L2S-000110
Vuln IDs
  • V-269957
Rule IDs
  • SV-269957r1052257_rule
The Spanning Tree Protocol (STP) loop guard feature provides additional protection against STP loops. An STP loop is created when an STP blocking port in a redundant topology erroneously transitions to the forwarding state. In its operation, STP relies on continuous reception and transmission of Bridge Protocol Data Unit (BPDUs) based on the port role. The designated port transmits BPDUs, and the nondesignated port receives BPDUs. When one of the ports in a physically redundant topology no longer receives BPDUs, the STP conceives that the topology is loop free. Eventually, the blocking port from the alternate or backup port becomes a designated port and moves to a forwarding state. This situation creates a loop. The loop guard feature makes additional checks. If BPDUs are not received on a nondesignated port and loop guard is enabled, that port is moved into the STP loop-inconsistent blocking state.
Checks: C-73990r1052255_chk

Review the switch configuration to verify that STP Loop Guard is enabled on at least all nondesignated STP ports. Verify that the spanning-tree guard loop setting is enabled on each interface. interface ethernet1/1/1 no shutdown switchport mode trunk switchport access vlan 100 flowcontrol receive off spanning-tree guard loop ! If STP Loop Guard is not configured globally or on nondesignated STP ports, this is a finding.

Fix: F-73891r1052256_fix

Configure the switch to have STP Loop Guard enabled globally, or at a minimum, on all nondesignated STP switch ports. OS10(config)# interface range ethernet 1/1/1-1/1/58 OS10(conf-range-eth1/1/1-1/1/58)# spanning-tree guard loop

b
The Dell OS10 Switch must have Unknown Unicast Flood Blocking (UUFB) enabled.
SC-5 - Medium - CCI-002385 - V-269958 - SV-269958r1052260_rule
RMF Control
SC-5
Severity
Medium
CCI
CCI-002385
Version
OS10-L2S-000120
Vuln IDs
  • V-269958
Rule IDs
  • SV-269958r1052260_rule
Access layer switches use the Content Addressable Memory (CAM) table to direct traffic to specific ports based on the VLAN number and the destination MAC address of the frame. When a router has an Address Resolution Protocol (ARP) entry for a destination host and forwards it to the access layer switch and there is no entry corresponding to the frame's destination MAC address in the incoming VLAN, the frame will be sent to all forwarding ports within the respective VLAN, which causes flooding. Large amounts of flooded traffic can saturate low-bandwidth links, causing network performance issues or complete connectivity outage to the connected devices. Unknown unicast flooding has been a nagging problem in networks that have asymmetric routing and default timers. To mitigate the risk of a connectivity outage, the Unknown Unicast Flood Blocking (UUFB) feature must be implemented on all access layer switches. The UUFB feature will block unknown unicast traffic flooding and only permit egress traffic with MAC addresses that are known to exit on the port.
Checks: C-73991r1052258_chk

Review the Dell OS10 Switch configuration to verify that unknown unicast traffic is blocked by storm control is on all host-facing switch ports. For each host-facing switch port: interface ethernet1/1/1 switchport access vlan 100 storm-control unknown-unicast 1 If the switch has not enabled unknown unicast storm control on all host-facing switch ports, this is a finding.

Fix: F-73892r1052259_fix

Configure the Dell OS10 Switch to enable storm control is on all host-facing switch ports as shown in the example below: OS10(config)# interface ethernet 1/1/1 OS10(conf-if-eth1/1/1)# storm-control unknown-unicast 1

b
The Dell OS10 Switch must have DHCP snooping for all user VLANs to validate DHCP messages from untrusted sources.
SC-5 - Medium - CCI-002385 - V-269959 - SV-269959r1052263_rule
RMF Control
SC-5
Severity
Medium
CCI
CCI-002385
Version
OS10-L2S-000130
Vuln IDs
  • V-269959
Rule IDs
  • SV-269959r1052263_rule
In an enterprise network, devices under administrative control are trusted sources. These devices include the switches, routers, and servers in the network. Host ports and unknown DHCP servers are considered untrusted sources. An unknown DHCP server on the network on an untrusted port is called a spurious DHCP server, any device (PC, Wireless Access Point) that is loaded with DHCP server enabled. The DHCP snooping feature determines whether traffic sources are trusted or untrusted. The potential exists for a spurious DHCP server to respond to DHCPDISCOVER messages before the real server has time to respond. DHCP snooping allows switches on the network to trust the port a DHCP server is connected to and not trust the other ports. The DHCP snooping feature validates DHCP messages received from untrusted sources and filters out invalid messages as well as rate-limits DHCP traffic from trusted and untrusted sources. DHCP snooping feature builds and maintains a binding database, which contains information about untrusted hosts with leased IP addresses, and it uses the database to validate subsequent requests from untrusted hosts. Other security features, such as IP Source Guard and Dynamic Address Resolution Protocol (ARP) Inspection (DAI), also use information stored in the DHCP snooping binding database. Hence, it is imperative that the DHCP snooping feature is enabled on all VLANs.
Checks: C-73992r1052261_chk

Review the Dell OS10 Switch configuration and verify that DHCP snooping is enabled on all user VLANs. Verify that DHCP snooping is enabled globally: ip dhcp snooping Verify that interfaces attached to trusted DHCP servers are configured: interface ethernet 1/1/4 ip dhcp snooping trust Verify that static DHCP snooping entries are in the binding table: ip dhcp snooping binding mac 00:04:96:70:8a:12 vlan 100 ip 100.1.1.2 interface ethernet 1/1/1 Note that OS10 supports three types of source address validation of trusted DHCP servers: source IP address validation, source IP and MAC address validation, and DHCP source MAC address validation. If the switch does not have DHCP snooping enabled for all user VLANs to validate DHCP messages from untrusted sources, this is a finding.

Fix: F-73893r1052262_fix

Configure the Dell OS10 Switch to have DHCP snooping for all user VLANs to validate DHCP messages from untrusted sources, as shown in the example below: Enable DHCP snooping globally in CONFIGURATION mode: OS10(config)# ip dhcp snooping Specify physical or LAG interfaces that have connections towards DHCP servers as trusted in INTERFACE mode: OS10(config)# interface ethernet 1/1/4 OS10(conf-if-eth1/1/1)# ip dhcp snooping trust Alternatively, add static DHCP snooping entry in the binding table: OS10(config)# ip dhcp snooping binding mac 00:04:96:70:8a:12 vlan 100 ip 100.1.1.2 interface ethernet 1/1/1

b
The Dell OS10 Switch must have Source Address Validation (SAV) enabled on all user-facing or untrusted access switch ports.
SC-5 - Medium - CCI-002385 - V-269960 - SV-269960r1052266_rule
RMF Control
SC-5
Severity
Medium
CCI
CCI-002385
Version
OS10-L2S-000140
Vuln IDs
  • V-269960
Rule IDs
  • SV-269960r1052266_rule
IP Source Guard provides source IP address filtering on a Layer 2 port to prevent a malicious host from impersonating a legitimate host by assuming the legitimate host's IP address. The feature uses dynamic DHCP snooping and static IP source binding to match IP addresses to hosts on untrusted Layer 2 access ports. Initially, all IP traffic on the protected port is blocked except for DHCP packets. After a client receives an IP address from the DHCP server, or after static IP source binding is configured by the administrator, all traffic with that IP source address is permitted from that client. Traffic from other hosts is denied. This filtering limits a host's ability to attack the network by claiming a neighbor host's IP address.
Checks: C-73993r1052264_chk

Review the Dell OS10 Switch configuration and verify that SAV is enabled on all user-facing or untrusted access switch ports. Verify that DHCP snooping is enabled globally: ip dhcp snooping Verify that interfaces attached to trusted DHCP servers are configured: interface ethernet 1/1/4 ip dhcp snooping trust Enable source IP and MAC address validation in INTERFACE mode for each untrusted and user-facing port: ip dhcp snooping source-address-validation ipmac If the switch does not have DHCP snooping is enabled globally, a trusted DHCP server port specified, and Source Address Validation enabled for all user-facing or untrusted access switch ports, this is a finding.

Fix: F-73894r1052265_fix

Configure the Dell OS10 Switch to have DHCP snooping for all user VLANs to validate DHCP messages from untrusted sources, as shown in the example below: Enable DHCP snooping globally in CONFIGURATION mode: OS10(config)# ip dhcp snooping Specify physical interfaces which are user facing or untrusted in INTERFACE mode: OS10(config)# interface ethernet 1/1/24 OS10(conf-if-eth1/1/1)# ip dhcp snooping source-address-validation ipmac

b
The Dell OS10 Switch must have Dynamic Address Resolution Protocol (ARP) Inspection (DAI) enabled on all user VLANs.
SC-5 - Medium - CCI-002385 - V-269961 - SV-269961r1052492_rule
RMF Control
SC-5
Severity
Medium
CCI
CCI-002385
Version
OS10-L2S-000150
Vuln IDs
  • V-269961
Rule IDs
  • SV-269961r1052492_rule
DAI intercepts ARP requests and verifies that each of these packets has a valid IP-to-MAC address binding before updating the local ARP cache and before forwarding the packet to the appropriate destination. Invalid ARP packets are dropped and logged. DAI determines the validity of an ARP packet based on valid IP-to-MAC address bindings stored in the DHCP snooping binding database. If the ARP packet is received on a trusted interface, the switch forwards the packet without any checks. On untrusted interfaces, the switch forwards the packet only if it is valid.
Checks: C-73994r1052491_chk

Review the switch configuration to verify that DAI feature is enabled on all user VLANs. Verify that each user VLAN has arp inspection enabled. ! interface vlan200 no shutdown arp inspection ! interface vlan201 no shutdown arp inspection If ARP inspection is not enabled on all user VLANs, this is a finding.

Fix: F-73895r1052492_fix

Configure the switch to have DAI enabled on all user VLANs as shown in the example below: OS10(config)# interface range vlan 200-201 OS10(conf-range-vl-200-201)# arp inspection

a
The Dell OS10 Switch must have Storm Control configured on all host-facing switch ports.
CM-6 - Low - CCI-000366 - V-269962 - SV-269962r1052327_rule
RMF Control
CM-6
Severity
Low
CCI
CCI-000366
Version
OS10-L2S-000160
Vuln IDs
  • V-269962
Rule IDs
  • SV-269962r1052327_rule
A traffic storm occurs when packets flood a LAN, creating excessive traffic and degrading network performance. Traffic storm control prevents network disruption by suppressing ingress traffic when the number of packets reaches a configured threshold level. Traffic storm control monitors ingress traffic levels on a port and drops traffic when the number of packets reaches the configured threshold level during any one-second interval.
Checks: C-73995r1052270_chk

Review the Dell OS10 Switch configuration to verify that storm control is enabled on all host-facing switch ports. For each host-facing switch port: interface ethernet1/1/1 switchport access vlan 100 storm-control broadcast 1000 storm-control multicast rate 100 Mbps storm-control unknown-unicast rate 600 Kbps Note that the rates may be entered in bits per second or packets per second units. If the switch has not enabled storm control on all host-facing switch ports, this is a finding.

Fix: F-73896r1052271_fix

Configure the Dell OS10 Switch to enable storm control is on all host-facing switch ports as shown in the example below: OS10(config)# interface ethernet 1/1/1 OS10(conf-if-eth1/1/1)# storm-control broadcast 1000 OS10(conf-if-eth1/1/1)# storm-control multicast rate 100 Mbps OS10(conf-if-eth1/1/1)# storm-control unknown-unicast rate 600 Kbps

a
The Dell OS10 Switch must have IGMP or MLD Snooping configured on all VLANs
CM-6 - Low - CCI-000366 - V-269963 - SV-269963r1052275_rule
RMF Control
CM-6
Severity
Low
CCI
CCI-000366
Version
OS10-L2S-000170
Vuln IDs
  • V-269963
Rule IDs
  • SV-269963r1052275_rule
IGMP and MLD snooping provides a way to constrain multicast traffic at Layer 2. By monitoring the IGMP or MLD membership reports sent by hosts within a VLAN, the snooping application can set up Layer 2 multicast forwarding tables to deliver specific multicast traffic only to interfaces connected to hosts interested in receiving the traffic, thereby significantly reducing the volume of multicast traffic that would otherwise flood the VLAN.
Checks: C-73996r1052273_chk

Review the Dell OS10 Switch configuration to verify that IGMP or MLD snooping has been configured for IPv4 and IPv6 multicast traffic, respectively. Verify that IGMP and MLD snooping have not been disabled globally by checking that the following have not been configured: no ip igmp snooping enable no ipv6 mld snooping enable Verify that IGMP or MLD snooping have not been disabled on any of the individual VLANs: Interface vlan 100 no ip igmp snooping no ipv6 mld snooping If the switch is not configured to implement IGMP or MLD snooping for each VLAN, this is a finding.

Fix: F-73897r1052274_fix

Configure IGMP or MLD snooping for IPv4 and IPv6 multicast traffic respectively for each VLAN. Enable IGMP or MLD snooping globally: OS10(config)# ip igmp snooping enable OS10(config)# ipv6 mld snooping enable Enable IGMP or MLD snooping on each VLAN: OS10(config)# interface vlan 100 OS10(conf-if-vl-100)# ip igmp snooping OS10(conf-if-vl-100)# ipv6 mld snooping

b
The Dell OS10 Switch must implement Rapid Spanning Tree Protocol (STP) where VLANs span multiple switches with redundant links.
CM-6 - Medium - CCI-000366 - V-269964 - SV-269964r1052278_rule
RMF Control
CM-6
Severity
Medium
CCI
CCI-000366
Version
OS10-L2S-000180
Vuln IDs
  • V-269964
Rule IDs
  • SV-269964r1052278_rule
STP is implemented on bridges and switches to prevent Layer 2 loops when a broadcast domain spans multiple bridges and switches and when redundant links are provisioned to provide high availability in case of link failures. Convergence time can be significantly reduced using Rapid STP (802.1w) instead of STP (802.1d), resulting in improved availability. Rapid STP should be deployed by implementing either Rapid Per-VLAN-Spanning-Tree (Rapid-PVST) or Multiple Spanning-Tree Protocol (MSTP); the latter scales much better when there are many VLANs.
Checks: C-73997r1052276_chk

In cases where VLANs do not span multiple switches, it is a best practice to not implement STP. Avoiding the use of STP will provide the most deterministic and highly available network topology. If STP is required, then review the switch configuration to verify that Rapid STP has been implemented. OS10# show running-configuration ... ... spanning-tree mode rstp Note: MSTP can be configured as an alternate mode. MSTP uses RSTP for rapid convergence and enables multiple VLANs to be grouped into and mapped to the same spanning-tree instance, thereby reducing the number of spanning-tree instances needed to support many VLANs. OS10# show running-configuration ... ... spanning-tree mode mst If Rapid STP or MSTP have not been implemented where STP is required, this is a finding.

Fix: F-73898r1052277_fix

Configure Rapid STP or MSTP to be implemented at the access and distribution layers where VLANs span multiple switches as shown in the examples below: OS10(config)# spanning-tree mode rstp or OS10(config)# spanning-tree mode mst

b
The Dell OS10 Switch must enable Far-End Failure Detection (FEFD) to protect against one-way connections.
CM-6 - Medium - CCI-000366 - V-269965 - SV-269965r1052281_rule
RMF Control
CM-6
Severity
Medium
CCI
CCI-000366
Version
OS10-L2S-000190
Vuln IDs
  • V-269965
Rule IDs
  • SV-269965r1052281_rule
In topologies where fiber-optic interconnections are used, physical misconnections can occur that allow a link to appear to be up when there is a mismatched set of transmit/receive pairs. When such a physical misconfiguration occurs, protocols such as STP can cause network instability. UDLD is a Layer 2 protocol that can detect these physical misconfigurations by verifying that traffic is flowing bidirectionally between neighbors. Ports with UDLD enabled periodically transmit packets to neighbor devices. If the packets are not echoed back within a specific time frame, the link is flagged as unidirectional and the interface is shut down.
Checks: C-73998r1052279_chk

Dell OS10 provides a proprietary protocol, FEFD, to protect against one-way connections. Verify that FEFD is configured on the appropriate ethernet interfaces by reviewing the FEFD status to verify the desired interfaces are in mode Normal or Aggressive. OS10# show fefd FEFD is globally 'OFF', interval is 15 seconds. INTERFACE MODE INTERVAL STATE ============================================================ eth1/1/1 NA NA Idle (Not running) eth1/1/2 NA NA Idle (Not running) eth1/1/3 NA NA Idle (Not running) eth1/1/4 NA NA Idle (Not running) eth1/1/5 NA NA Idle (Not running) eth1/1/6 Normal 15 Unknown eth1/1/7 Aggressive 15 Unknown eth1/1/8 NA NA Idle (Not running) … If FEFD is not configured on the appropriate interfaces, this is a finding.

Fix: F-73899r1052280_fix

Configure the OS10 switch to enable FEFD on appropriate interfaces connected to other OS10 peers. OS10(config)# interface ethernet 1/1/6 OS10(conf-if-eth1/1/6)# fefd mode normal

b
The Dell OS10 Switch must have all disabled switch ports assigned to an unused VLAN.
CM-6 - Medium - CCI-000366 - V-269966 - SV-269966r1052284_rule
RMF Control
CM-6
Severity
Medium
CCI
CCI-000366
Version
OS10-L2S-000210
Vuln IDs
  • V-269966
Rule IDs
  • SV-269966r1052284_rule
It is possible that a disabled port that is assigned to a user or management VLAN becomes enabled by accident or by an attacker and as a result gains access to that VLAN as a member.
Checks: C-73999r1052282_chk

Review the switch configurations and examine all access switch ports. Each access switch port not in use should have membership to an inactive VLAN that is not used for any purpose and is not allowed on any trunk links. Verify that there is a shutdown VLAN configured for unused ports: ! interface vlan999 description "Unused VLAN" shutdown Verify that the unused switch ports are assigned to the inactive VLAN: ! interface ethernet1/1/57 shutdown switchport access vlan 999 flowcontrol receive off ! interface ethernet1/1/58 shutdown switchport access vlan 999 flowcontrol receive off Verify that no trunk links are configured to accept the unused VLAN ID: ! interface ethernet1/1/1 no shutdown switchport mode trunk switchport access vlan 100 flowcontrol receive off If there are any access switch ports not in use and not in an inactive VLAN, this is a finding.

Fix: F-73900r1052283_fix

Assign all switch ports not in use to an inactive VLAN. Assign a VLAN interface to be unused: OS10(config)# interface vlan 999 OS10(conf-if-vl-999)# description "Unused VLAN" OS10(conf-if-vl-999)# shutdown OS10(conf-if-vl-999)# exit Assign unused switch ports to the unused VLAN: OS10(config)# interface range eth1/1/50-1/1/58 OS10(conf-range-eth1/1/50-1/1/58)# switchport access vlan 999

b
The Dell OS10 Switch must not have the default VLAN assigned to any host-facing switch ports.
CM-6 - Medium - CCI-000366 - V-269967 - SV-269967r1052287_rule
RMF Control
CM-6
Severity
Medium
CCI
CCI-000366
Version
OS10-L2S-000220
Vuln IDs
  • V-269967
Rule IDs
  • SV-269967r1052287_rule
In a VLAN-based network, switches use the default VLAN (i.e., VLAN 1) for in-band management and to communicate with other networking devices using Spanning-Tree Protocol (STP), Dynamic Trunking Protocol (DTP), VLAN Trunking Protocol (VTP), and Port Aggregation Protocol (PAgP)—all untagged traffic. Therefore, the default VLAN may unwisely span the entire network if not appropriately pruned. If its scope is large enough, the risk of compromise can increase significantly.
Checks: C-74000r1052285_chk

Review the switch configurations and verify that no access switch ports have been assigned membership to the default VLAN (i.e., VLAN 1). VLAN assignments can be verified via the “show vlan” command: OS10# show vlan Codes: * - Default VLAN, M - Management VLAN, R - Remote Port Mirroring VLANs, @ - Attached to Virtual Network, P - Primary, C - Community, I - Isolated, S - VLAN-Stack VLAN Q: A - Access (Untagged), T - Tagged NUM Status Description Q Ports * 1 Inactive 30 Inactive Management VLAN 100 Inactive A Eth1/1/1 200 Inactive A Eth1/1/3-1/1/58 201 Inactive A Eth1/1/2 OS10# If there are access switch ports assigned to the default VLAN, this is a finding.

Fix: F-73901r1052286_fix

Remove the assignment of the default VLAN from all access switch ports: OS10(config)# interface range eth1/1/4-1/1/58 OS10(conf-range-eth1/1/4-1/1/58)# switchport mode access OS10(conf-range-eth1/1/4-1/1/58)# switchport access vlan 200

b
The Dell OS10 Switch must have the default VLAN pruned from all trunk ports that do not require it.
CM-6 - Medium - CCI-000366 - V-269968 - SV-269968r1052290_rule
RMF Control
CM-6
Severity
Medium
CCI
CCI-000366
Version
OS10-L2S-000230
Vuln IDs
  • V-269968
Rule IDs
  • SV-269968r1052290_rule
The default VLAN (i.e., VLAN 1) is a special VLAN used for control plane traffic such as Spanning-Tree Protocol (STP), Dynamic Trunking Protocol (DTP), VLAN Trunking Protocol (VTP), and Port Aggregation Protocol (PAgP). VLAN 1 is enabled on all trunks and ports by default. With larger campus networks, use caution regarding the diameter of the STP domain for the default VLAN. Instability in one part of the network could affect the default VLAN, thereby influencing control-plane stability and therefore STP stability for all other VLANs.
Checks: C-74001r1052288_chk

Review the OS10 switch configuration and verify that the default VLAN is pruned from the allowed VLANs on trunk links that do not require it: interface ethernet 1/1/1 no shutdown switchport mode trunk switchport access vlan 99 switchport trunk allowed vlan 2100-2102 If the default VLAN is not pruned from trunk links that should not be transporting frames for the VLAN, this is a finding.

Fix: F-73902r1052289_fix

Best practice for VLAN-based networks is to prune unnecessary trunk links from gaining access to the default VLAN, and to ensure that frames belonging to the default VLAN do not traverse trunks not requiring frames from the VLAN: OS10(config)# interface ethernet 1/1/1 OS10(conf-if-eth1/1/1)# switchport access vlan 99 OS10(conf-if-eth1/1/1)# switchport trunk allowed vlan 2100-2102

b
The Dell OS10 Switch must not use the default VLAN for management traffic.
CM-6 - Medium - CCI-000366 - V-269969 - SV-269969r1052293_rule
RMF Control
CM-6
Severity
Medium
CCI
CCI-000366
Version
OS10-L2S-000240
Vuln IDs
  • V-269969
Rule IDs
  • SV-269969r1052293_rule
Switches use the default VLAN (i.e., VLAN 1) for in-band management and to communicate with directly connected switches using Spanning-Tree Protocol (STP), Dynamic Trunking Protocol (DTP), VLAN Trunking Protocol (VTP), and Port Aggregation Protocol (PAgP)—all untagged traffic. Therefore, the default VLAN may unwisely span the entire network if not appropriately pruned. If its scope is large enough, the risk of compromise can increase significantly.
Checks: C-74002r1052291_chk

Review the OS10 switch configuration and verify that the default VLAN is not used to access the switch for management: interface vlan30 description "Management VLAN" no shutdown ip address 10.10.1.1/24 If the default VLAN is being used to access the switch, this is a finding.

Fix: F-73903r1052292_fix

Configure the switch for management access to use a VLAN other than the default VLAN: OS10(config)# interface vlan 30 OS10(conf-if-vl-30)# description "Management VLAN" OS10(conf-if-vl-30)# ip address 10.10.1.1/24 OS10(conf-if-vl-30)# no shutdown

b
The Dell OS10 Switch must have all user-facing or untrusted ports configured as access switch ports.
CM-6 - Medium - CCI-000366 - V-269970 - SV-269970r1052296_rule
RMF Control
CM-6
Severity
Medium
CCI
CCI-000366
Version
OS10-L2S-000250
Vuln IDs
  • V-269970
Rule IDs
  • SV-269970r1052296_rule
Double encapsulation can be initiated by an attacker who has access to a switch port belonging to the native VLAN of the trunk port. Knowing the victim's MAC address and with the victim attached to a different switch belonging to the same trunk group, thereby requiring the trunk link and frame tagging, the malicious user can begin the attack by sending frames with two sets of tags. The outer tag that will have the attacker's VLAN ID (probably the well-known and omnipresent default VLAN) is stripped off by the switch, and the inner tag that will have the victim's VLAN ID is used by the switch as the next hop and sent out the trunk port.
Checks: C-74003r1052294_chk

Review the Dell OS10 Switch configurations and examine all user-facing or untrusted switch ports. The example below shows both trunk port and user-facing access ports: interface ethernet 1/1/1 no shutdown switchport mode trunk switchport access vlan 99 switchport trunk allowed vlan 2100-2102 ! interface ethernet1/1/2 no shutdown switchport access vlan 201 flowcontrol receive off ! interface ethernet1/1/3 no shutdown switchport access vlan 200 flowcontrol receive off Note: The default switchport mode is access, so it will not be displayed when viewing the configuration of the user-facing ports. If any of the user-facing switch ports are configured as a trunk, this is a finding.

Fix: F-73904r1052295_fix

Disable trunking on all user-facing or untrusted switch ports: OS10(conf-if-eth1/1/1)# interface ethernet 1/1/2 OS10(conf-if-eth1/1/2)# switchport mode access OS10(conf-if-eth1/1/2)# switchport access vlan 201

a
The Dell OS10 Switch must not have any switch ports assigned to the native VLAN.
CM-6 - Low - CCI-000366 - V-269971 - SV-269971r1052299_rule
RMF Control
CM-6
Severity
Low
CCI
CCI-000366
Version
OS10-L2S-000270
Vuln IDs
  • V-269971
Rule IDs
  • SV-269971r1052299_rule
Double encapsulation can be initiated by an attacker who has access to a switch port belonging to the native VLAN of the trunk port. Knowing the victim’s MAC address and with the victim attached to a different switch belonging to the same trunk group, thereby requiring the trunk link and frame tagging, the malicious user can begin the attack by sending frames with two sets of tags. The outer tag that will have the attacker’s VLAN ID (probably the well-known and omnipresent default VLAN) is stripped off by the switch, and the inner tag that will have the victim’s VLAN ID is used by the switch as the next hop and sent out the trunk port.
Checks: C-74004r1052297_chk

Review the Dell OS10 Switch configurations and examine all access switch ports. Verify that they do not belong to the native VLAN of the trunk ports. The native VLAN on trunk ports is set by the switchport access vlan command on those ports. In the example below, the native VLAN is 99 and the access ports must be configured to other VLANs. interface ethernet 1/1/1 no shutdown switchport mode trunk switchport access vlan 99 switchport trunk allowed vlan 2100-2102 ! interface ethernet1/1/2 no shutdown switchport access vlan 201 flowcontrol receive off ! interface ethernet1/1/3 no shutdown switchport access vlan 200 flowcontrol receive off If any access switch ports have been assigned to the same VLAN ID as the native VLAN, this is a finding.

Fix: F-73905r1052298_fix

Configure all access switch ports to an access VLAN other than the native VLAN.

b
The Dell OS10 Switch must implement physically or logically separate subnetworks to isolate organization-defined critical system components and functions.
- Medium - CCI-004891 - V-269972 - SV-269972r1052302_rule
RMF Control
Severity
Medium
CCI
CCI-004891
Version
OS10-L2S-000300
Vuln IDs
  • V-269972
Rule IDs
  • SV-269972r1052302_rule
Separating critical system components and functions from other noncritical system components and functions through separate subnetworks may be necessary to reduce susceptibility to a catastrophic or debilitating breach or compromise that results in system failure. For example, physically separating the command-and-control function from the in-flight entertainment function through separate subnetworks in a commercial aircraft provides an increased level of assurance in the trustworthiness of critical system functions. Satisfies: SRG-NET-000715-L2S-000120, SRG-NET-000512-L2S-000012
Checks: C-74005r1052300_chk

Review the switch configurations and verify that no access switch ports have been assigned membership to the default VLAN (i.e., VLAN 1). VLAN assignments can be verified via the “show vlan” command: OS10# show vlan Codes: * - Default VLAN, M - Management VLAN, R - Remote Port Mirroring VLANs, @ - Attached to Virtual Network, P - Primary, C - Community, I - Isolated, S - VLAN-Stack VLAN Q: A - Access (Untagged), T - Tagged NUM Status Description Q Ports * 1 Inactive 30 Inactive Management VLAN 100 Inactive A Eth1/1/1 200 Inactive A Eth1/1/3-1/1/58 201 Inactive A Eth1/1/2 OS10# If there are access switch ports assigned to the default VLAN, this is a finding.

Fix: F-73906r1052301_fix

Remove the assignment of the default VLAN from all access switch ports: OS10(config)# interface range eth1/1/4-1/1/58 OS10(conf-range-eth1/1/4-1/1/58)# switchport mode access OS10(conf-range-eth1/1/4-1/1/58)# switchport access vlan 200