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

CAT II (Medium)

The Juniper router must be configured to obtain its public key certificates from an appropriate certificate policy through an approved service provider.

Rule ID

SV-217352r991995_rule

STIG

Juniper Router NDM Security Technical Implementation Guide

Version

V3R2

CCIs

CCI-001159, CCI-004909

Discussion

For user certificates, each organization obtains certificates from an approved, shared service provider, as required by OMB policy. For federal agencies operating a legacy public key infrastructure cross-certified with the Federal Bridge Certification Authority (CA) at medium assurance or higher, this CA will suffice.

Check Content

Review the router configuration to verify that it is compliant with this requirement. The configuration below is an example of a CA profile defining name of the CA, the location of CRL for revocation check and to refresh the CRL every 24 hours, and the email address to send a certificate request.

security {
    pki {
        ca-profile DODXX_CA {
            ca-identity xxxxx.mil;
            revocation-check {
                crl {
                    url http://server1.xxxxx.mil/CertEnroll/example.crl;
                    refresh-interval 24;
                }
            }
            administrator {
                email-address "certadmin@xxxxx.mil";
            }
        }
    }
}

If the router is not configured to obtain its public key certificates from an appropriate certificate policy through an approved service provider, this is a finding.

Fix Text

Step 1. Create a trusted profile and email address to send certificate request to.

[edit security]
set pki ca-profile DODXX_CA ca-identity xxxxx.mil
set pki ca-profile DODXX_CA administrator email-address certadmin@xxxxx.mil

Step 2. Create a revocation check to specify a method for checking certificate revocation.

set pki ca-profile DODXX_CA revocation-check crl url http://server1.example.mil/CertEnroll/example.crl
set pki ca-profile DODXX_CA revocation-check crl refresh-interval 24