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 Juniper Router RTR Security Technical Implementation Guide

V-217052

CAT II (Medium)

The Juniper BGP router must be configured to use a unique key for each autonomous system (AS) that it peers with.

Rule ID

SV-217052r945862_rule

STIG

Juniper Router RTR Security Technical Implementation Guide

Version

V3R2

CCIs

CCI-000366, CCI-002205

Discussion

If the same keys are used between eBGP neighbors, the chance of a hacker compromising any of the BGP sessions increases. It is possible that a malicious user exists in one autonomous system who would know the key used for the eBGP session. This user would then be able to hijack BGP sessions with other trusted neighbors.

Check Content

Review the BGP configuration to determine if it is peering with multiple autonomous systems.

Interview the ISSM and router administrator to determine if unique keys are being used. 

protocols {
    bgp {
        group AS44 {
            type external;
            peer-as 44;
            neighbor x.x.x.x {
                authentication-key "$8$tBga0ORx7VsYoIEgJ"; ## SECRET-DATA
            }
        }
        group AS66 {
            type external;
            peer-as 66;
            neighbor x.x.x.x {
                authentication-key "$8$Q4953nCrlMLX-9A7V"; ## SECRET-DATA
            }
        }
    }

If unique keys are not being used, this is a finding.

Fix Text

Configure the router to use unique keys for each AS that it peers with as shown in the example below.

[edit protocols bgp]
set group GROUP_AS66 authentication-key abc123
set group GROUP_AS44 authentication-key xyz123