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 NDM Security Technical Implementation Guide

V-217349

CAT II (Medium)

The Juniper router must be configured to generate log records for a locally developed list of auditable events.

Rule ID

SV-217349r1050859_rule

STIG

Juniper Router NDM Security Technical Implementation Guide

Version

V3R2

CCIs

CCI-000366, CCI-000169

Discussion

Auditing and logging are key components of any security architecture. Logging the actions of specific events provides a means to investigate an attack, recognize resource utilization or capacity thresholds, or identify an improperly configured network device. If auditing is not comprehensive, it will not be useful for intrusion monitoring, security investigations, and forensic analysis.

Check Content

Review the router configuration to verify that it is compliant with this requirement. The example below illustrates how selected events can be logged.

   syslog {
        file LOG_FILE {
            authorization info;
            any info;
            change-log info;
        }
    }

Note: A syslog server can be configured in lieu of logging to a file as shown in the example below.

system {
   syslog {
        host x.x.x.x {
            authorization info;
            any info; 
           change-log info;
        }
    }

If the router is not configured to generate log records for a locally developed list of auditable events, this is a finding.

Fix Text

Configure the router to generate log records for a locally developed list of auditable events as shown in the example below.

[edit system]
set syslog file LOG_FILE authorization info
set syslog file LOG_FILE any info
set syslog file LOG_FILE change-log info

Note: A syslog server can be configured in lieu of logging to a file as shown in the example below.

set syslog host x.x.x.x authorization info
set syslog host x.x.x.x any info
set syslog host x.x.x.x change-log info