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

CAT II (Medium)

The Juniper BGP router must be configured to reject inbound route advertisements from a customer edge (CE) Juniper router for prefixes that are not allocated to that customer.

Rule ID

SV-217055r604135_rule

STIG

Juniper Router RTR Security Technical Implementation Guide

Version

V3R2

CCIs

CCI-001368

Discussion

As a best practice, a service provider should only accept customer prefixes that have been assigned to that customer and any peering autonomous systems. A multi-homed customer with BGP speaking routers connected to the Internet or other external networks could be breached and used to launch a prefix de-aggregation attack. Without ingress route filtering of customers, the effectiveness of such an attack could impact the entire IP core and its customers.

Check Content

Review the router configuration to verify that there are filters defined to only accept routes for prefixes that belong to specific customers. 

Verify prefix list has been configured containing prefixes belonging to each customer as shown in the example below.

policy-options {
    …
    …
    …
    prefix-list CUST1_PREFIXES {
        x.x.x.x/24;
        x.x.x.x/24;
    }
    prefix-list CUST2_PREFIXES {
        x.x.x.x/24;
    }

Verify that a policy has been configured to only accept routes belonging to the customer.

policy-options {
    …
    …
    …
    policy-statement FILTER_CUST1_ROUTES {
        term ACCEPT-ROUTES {
            from {
                prefix-list CUST1_PREFIXES;
            }
            then accept;
        }
        term REJECT_OTHER {
            then reject;
        }
    }
    policy-statement FILTER_CUST2_ROUTES {
        term ACCEPT_ROUTES {
            from {
                prefix-list CUST2_PREFIXES;
            }
            then accept;
        }
        term REJECT_OTHER {
            then reject;
        }
    }
}

Verify that the configured policy to filter customer prefixes has been applied to customer BGP peers as shown in the example below.

protocols {
    bgp {
        …
        …
        …
        }
        group CUST1 {
            type external;
            import FILTER_CUST1_ROUTES;
            peer-as 55;
            neighbor x.x.x.x;
            neighbor x.x.x.x;
        }
        group CUST2 {
            type external;
            import FILTER_CUST2_ROUTES;
            peer-as 44;
            neighbor x.x.x.x;
            neighbor x.x.x.x;
        }
    }
    …
    …
    …
}

Note: Routes to PE-CE links within a VPN are needed for troubleshooting end-to-end connectivity across the MPLS/IP backbone. Hence, these prefixes are an exception to this requirement.

If the router is not configured to reject inbound route advertisements from each CE router for prefixes that are not allocated to that customer, this is a finding.

Fix Text

Configure the router to reject inbound route advertisements from a CE router for prefixes that are not allocated to that customer.

Configure a prefix list containing prefixes belonging to the customers.

[edit policy-options]
set prefix-list CUST1_PREFIXES x.x.x.x/24
set prefix-list CUST1_PREFIXES x.x.x.x/24
set prefix-list CUST2_PREFIXES x.x.x.x/24
set prefix-list CUST2_PREFIXES x.x.x.x/24

Configure a policy-statement to filter customer routes.

set policy-statement FILTER_CUST1_ROUTES term ACCEPT_ROUTES from prefix-list CUST1_PREFIXES
set policy-statement FILTER_CUST1_ROUTES term then accept
set policy-statement FILTER_CUST1_ROUTES term REJECT_OTHER then reject
set policy-statement FILTER_CUST2_ROUTES term ACCEPT_ROUTES from prefix-list CUST2_PREFIXES
set policy-statement FILTER_CUST2_ROUTES term then accept
set policy-statement FILTER_CUST2_ROUTES term REJECT_OTHER then reject

Apply the import policy to filter received routes for each customer group.

[edit protocols bgp group CUST1]
set import FILTER_CUST1_ROUTES 
[edit protocols bgp group CUST2]
set import FILTER_CUST2_ROUTES