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

CAT III (Low)

The Juniper router must be configured to log all packets that have been dropped.

Rule ID

SV-253998r844027_rule

STIG

Juniper EX Series Switches Router Security Technical Implementation Guide

Version

V2R1

CCIs

CCI-000134

Discussion

Auditing and logging are key components of any security architecture. It is essential for security personnel to know what is being done or attempted to be done, and by whom, to compile an accurate risk assessment. Auditing the actions on network devices provides a means to recreate an attack or identify a configuration mistake on the device.

Check Content

Review the router interface firewall filters to verify all deny statements are logged. At a minimum, all discarding filter terms must have the "syslog" action enabled.

Verify all discarding firewall filter terms are configured with (minimally) the "syslog" action:
[edit firewall]
family inet {
    filter <filter name> {
        term <name> {
            from {
                <match conditions>;
            }
            then {
                log;
                syslog; <<< Must be enabled for local and external syslog.
                discard;
            }
        }
    }
}
family inet6 {
    filter <filter name> {
        term <name> {
            from {
                <match conditions>;
            }
            then {
                log;
                syslog; <<< Must be enabled for local and external syslog.
                discard;
            }
        }
    }
}

If packets being dropped are not logged, this is a finding.

Fix Text

Configure interface firewall filters to log all deny statements.

All discarding firewall filter terms:
<filter terms and match conditions>
set firewall family inet filter <filter name> term <name> then log
set firewall family inet filter <filter name> term <name> then syslog <<< Minimally must be configured for all discarding filter terms.
set firewall family inet filter <filter name> term <name> then discard

<filter terms and match conditions>
set firewall family inet6 filter <filter name> term <name> then log
set firewall family inet6 filter <filter name> term <name> then syslog <<< Minimally must be configured for all discarding filter terms.
set firewall family inet6 filter <filter name> term <name> then discard