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 1 hour ago
Powered by Pylon
© 2026 Beacon Cloud Solutions, Inc. All rights reserved.
← Back to Arista MLS EOS 4.2x L2S Security Technical Implementation Guide

V-255979

CAT II (Medium)

The Arista MLS layer 2 switch must have all trunk links enabled statically.

Rule ID

SV-255979r882279_rule

STIG

Arista MLS EOS 4.2x L2S Security Technical Implementation Guide

Version

V1R1

CCIs

CCI-000366

Discussion

When trunk negotiation is enabled via Dynamic Trunk Protocol (DTP), considerable time can be spent negotiating trunk settings (802.1q or ISL) when a node or interface is restored. While this negotiation is happening, traffic is dropped because the link is up from a layer 2 perspective. Packet loss can be eliminated by setting the interface statically to trunk mode, thereby avoiding dynamic trunk protocol negotiation and significantly reducing any outage when restoring a failed link or switch.

Check Content

Review the Arista MLS switch configuration to verify that all Ethernet interfaces designated as trunk links are statically configured to specify only member tagged VLAN traffic is allowed and all nonmember VLAN traffic will be dropped unless untagged traffic is associated with the interface's native VLAN.

switch#show run | section trunk
!
interface Ethernet6
   description STIG Static Trunk
   speed forced 10000full
   switchport trunk native vlan 2102
   switchport trunk allowed vlan 2100-2102
   switchport mode trunk
!

If trunk negotiation is enabled on any interface, this is a finding.

Fix Text

Configure static Ethernet interfaces for switchport trunk mode. Ensure required VLAN member tagged traffic is allowed and all other VLAN traffic will be dropped unless an associated untagged native VLAN for the Ethernet interface is allowed.

switch#configure
switch(config)#interface Ethernet6
   description STIG Static Trunk
   speed forced 10000full
   switchport trunk native vlan 2102
   switchport trunk allowed vlan 2100-2102
   switchport mode trunk
!
switch(config)#interface Ethernet7
   description STIG Static Trunk
   speed forced 10000full
   switchport trunk native vlan 3102
   switchport trunk allowed vlan 3100-3102
   switchport mode trunk
!