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-217062

CAT III (Low)

The Juniper BGP router must be configured to use its loopback address as the source address for iBGP peering sessions.

Rule ID

SV-217062r992001_rule

STIG

Juniper Router RTR Security Technical Implementation Guide

Version

V3R2

CCIs

CCI-004931

Discussion

Using a loopback address as the source address offers a multitude of uses for security, access, management, and scalability of the BGP routers. It is easier to construct appropriate ingress filters for router management plane traffic destined to the network management subnet since the source addresses will be from the range used for loopback interfaces instead of a larger range of addresses used for physical interfaces. Log information recorded by authentication and syslog servers will record the router’s loopback address instead of the numerous physical interface addresses. When the loopback address is used as the source for eBGP peering, the BGP session will be harder to hijack since the source address to be used is not known globally—making it more difficult for a hacker to spoof an eBGP neighbor. By using traceroute, a hacker can easily determine the addresses for an eBGP speaker when the IP address of an external interface is used as the source address. The routers within the iBGP domain should also use loopback addresses as the source address when establishing BGP sessions.

Check Content

Review the router configuration to verify that a loopback address has been configured.

interfaces {
    …
    …
    …
    }
    lo0 {
        unit 0 {
            family inet {
                address 2.2.2.2/32;
            }
        }
    }
}

Verify that the loopback interface is used as the source address for all iBGP sessions.

protocols {
    bgp {
        …
        …
        …
        }
group IBGP_PEERS {
    type internal;
    local-address 2.2.2.2;
    neighbor x.x.x.x;
}

If the router does not use its loopback address as the source address for all iBGP sessions, this is a finding.

Fix Text

Configure the router to use its loopback address as the source address for all iBGP peering.

[edit protocols bgp group IBGP_PEERS]
set local-address 2.2.2.2