STIGhubSTIGhub
STIGsSearchCompare

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
  • Compare Versions

Resources

  • About
  • Release Notes
  • VPAT
  • DISA STIG Library
STIGs updated 5 hours ago
Powered by Pylon
© 2026 Beacon Cloud Solutions, Inc. All rights reserved.
← Back to Dell OS10 Switch Router Security Technical Implementation Guide

V-269868

CAT II (Medium)

The Dell OS10 Router must be configured to use encryption for routing protocol authentication.

Rule ID

SV-269868r1051989_rule

STIG

Dell OS10 Switch Router Security Technical Implementation Guide

Version

V1R2

CCIs

CCI-000803

Discussion

A rogue router could send a fictitious routing update to convince a site's perimeter router to send traffic to an incorrect or even a rogue destination. This diverted traffic could be analyzed to learn confidential information about the site's network or used to disrupt the network's ability to communicate with other networks. This is known as a "traffic attraction attack" and is prevented by configuring neighbor router authentication for routing updates. However, using clear-text authentication provides little benefit since an attacker can intercept traffic and view the authentication key. This would allow the attacker to use the authentication key in an attack. This requirement applies to all IPv4 and IPv6 protocols that are used to exchange routing or packet forwarding information; this includes all Interior Gateway Protocols (such as OSPF, EIGRP, and IS-IS) and Exterior Gateway Protocols (such as BGP), MPLS-related protocols (such as LDP), and multicast-related protocols.

Check Content

Review the router configuration.

For every protocol that affects the routing or forwarding tables (where information is exchanged between neighbors), verify that neighbor router authentication is encrypting the authentication key.

Verify the routing protocols are configured to use encryption 

!
interface vlan400
 ipv6 ospf 10 area 0.0.0.1
 ipv6 ospf authentication ipsec spi 4017 sha1 1234567890123456789012345678901234567890
 ...
 ip ospf 1 area 0.0.0.1
 ip ospf message-digest-key 1 md5 1234567812345678

If authentication is not encrypting the authentication key, this is a finding.

Fix Text

Configure the router to use encryption for routing protocol authentication.

OS10(config)# interface vlan 400
OS10(conf-if-vl-400)# ipv6 ospf 10 area 0.0.0.1
OS10(conf-if-vl-400)# ipv6 ospf authentication ipsec spi 4017 sha1 1234567890123456789012345678901234567890
OS10(conf-if-vl-400)#
OS10(conf-if-vl-400)# ip ospf 1 area 0.0.0.1
OS10(conf-if-vl-400)# ip ospf message-digest-key 1 md5 1234567812345678
OS10(conf-if-vl-400)# exit