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 just now
Powered by Pylon
© 2026 Beacon Cloud Solutions, Inc. All rights reserved.
← Back to RUCKUS ICX Router Security Technical Implementation Guide

V-273597

CAT II (Medium)

The RUCKUS ICX router must be configured to authenticate all routing protocol messages using NIST-validated FIPS 198-1 message authentication code algorithm.

Rule ID

SV-273597r1110916_rule

STIG

RUCKUS ICX Router Security Technical Implementation Guide

Version

V1R1

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. Since MD5 is vulnerable to "birthday" attacks and may be compromised, routing protocol authentication must use FIPS 198-1 validated algorithms and modules to encrypt the authentication key. 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. Satisfies: SRG-NET-000168-RTR-000078, SRG-NET-000168-RTR-000077

Check Content

Review configuration for routing protocol authentication and encryption.

OSPF:

router ospf
 area 0
!
interface ethernet 1/1/1
 ip ospf area 0
 ip ospf authentication hmac-sha-256 key-id 10 key 2 $Nlx9cy1TR31TIS0tfURuXA==
 ipv6 address fd00:12::2/32
!

BGP:

keychain mykeychain tcp
 key-id 1
  password 2 $Uyt9R3NVfURuXH1a
  authentication-algorithm aes-128-cmac
  send-lifetime start 03-05-2024 00:00:00 end 09-01-2024 00:00:00
  no accept-ao-mismatch
  send-id 1
  recv-id 1

router bgp
 local-as xxxx
 neighbor x.x.x.x remote-as 10
 neighbor x.x.x.x ao mykeychain

If OSPF or BGP is configured and does not use authentication/encryption, this is a finding.

Fix Text

Configure OSPF or BGP keychain as appropriate:

ICX(config)# router ospf
ICX(config-ospf-router)# area 0

ICX(config)# interface ve 1
ICX(config-vif-1)#ip ospf area 0
ICX(config-vif-1)#ip ospf authentication hmac-sha-256 key 10 key my_ospf_pass_key

---------------------

ICX(config)# keychain mykeychain
ICX(config-keychain-tcp-mykeychain)# key 1
ICX(config-keychain-tcp-mykeychain-key-1)# authentication-algorithm aes-128-cmac
ICX(config-keychain-tcp-mykeychain-key-1)# no accept-ao-mismatch
ICX(config-keychain-tcp-mykeychain-key-1)# include-tcp-options
ICX(config-keychain-tcp-mykeychain-key-1)# send-id 1
ICX(config-keychain-tcp-mykeychain-key-1)# recv-id 1
ICX(config-keychain-tcp-mykeychain-key-1)# accept-lifetime start 03-05-24 10:10:10 end 15552000  !!! 180 days in seconds
ICX(config-keychain-tcp-mykeychain-key-1)# send-lifetime start 03-05-24 10:10:10 end 09-01-24 10:10:10

ICX(config)# router bgp
ICX(config-bgp-router)# local-as xxxx
ICX(config-bgp-router)# neighbor x.x.x.x remote-as 10
ICX(config-bgp-router)#neighbor x.x.x.x ao mykeychain