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 EX Series Switches Router Security Technical Implementation Guide

V-254014

CAT II (Medium)

The Juniper perimeter router must be configured to filter egress traffic at the internal interface on an inbound direction.

Rule ID

SV-254014r844075_rule

STIG

Juniper EX Series Switches Router Security Technical Implementation Guide

Version

V2R1

CCIs

CCI-001097

Discussion

Firewall filters are used to separate data traffic into that which it will route (permitted packets) and that which it will not route (denied packets). Secure configuration of routers makes use of firewall filters for restricting access to services on the router itself as well as for filtering traffic passing through the router. Inbound versus Outbound: It should be noted that some operating systems default access lists are applied to the outbound queue. The more secure solution is to apply the access list to the inbound queue for three reasons: - The router can protect itself before damage is inflicted. - The input port is still known and can be filtered upon. - It is more efficient to filter packets before routing them.

Check Content

This requirement is not applicable for the DODIN Backbone. 

Review the router configuration to verify that the egress firewall filter is bound to the internal interface in an inbound direction. 

[edit interfaces]
<internal interface> {
    unit <number> {
        family inet {
            filter {
                input outbound-ipv4;
            }
        }
        family inet6 {
            filter {
                input outbound-ipv6;
            }
        }
    }
}

Note: Some Juniper devices support both monolithic filters and filter lists. Filter lists separate each term, or set of terms, into a separate filter that is applied sequentially to an interface. If using filter lists, the keywords "input" or "output' change to "input-list" or "output-list". Verify the final list item is a deny-all filter. The deny-all filter is created once per family and can be reused across multiple lists. For example:

input-list [ permit_mgt permit_routing_protocols default-deny ];

If the router is not configured to filter traffic leaving the network at the internal interface in an inbound direction, this is a finding.

Fix Text

This requirement is not applicable for the DODIN Backbone.

Configure an egress firewall filter bound to the internal interface in an inbound direction to filter traffic leaving the network.

set interfaces <internal interface name> unit <number> family inet filter input outbound-ipv4
set interfaces <internal interface name> unit <number> family inet6 filter input outbound-ipv6