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

V-256060

CAT II (Medium)

The perimeter router must be configured to block all packets with any IP options.

Rule ID

SV-256060r882522_rule

STIG

Arista MLS EOS 4.2x Router Security Technical Implementation Guide

Version

V1R1

CCIs

CCI-002403

Discussion

Packets with IP options are not fast routered and henceforth must be punted to the router processor. Hackers who initiate denial-of-service (DoS) attacks on routers commonly send large streams of packets with IP options. Dropping the packets with IP options reduces the load of IP options packets on the router. The end result is a reduction in the effects of the DoS attack on the router and on downstream routers.

Check Content

Verify the perimeter router is configured to block all packets with any IP options with the following command:

router#show run | section IP_Option_ACL
IP Access List IP_Option_ACL
        10 deny ip any any ip-length gt 5
        20 deny any log
!
interface Ethernet25
   description STIG_IP_Option_ACL
   ip access-group IP_Option_ACL in
!

If the perimeter router is not configured to block packets with IP options, this is a finding.

Fix Text

Configure the perimeter router to block packets with IP options with the following commands:

router#config
router(config)# ip access-list IP_Option_ACL
   10 deny ip any any ip-length gt 5 
!
router(config)#interface Ethernet25
 ip access-group IP_Option_ACL in
!