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

CAT III (Low)

The Juniper router must be configured to have all non-essential capabilities disabled.

Rule ID

SV-217017r604135_rule

STIG

Juniper Router RTR Security Technical Implementation Guide

Version

V3R2

CCIs

CCI-000381

Discussion

A compromised router introduces risk to the entire network infrastructure, as well as data resources that are accessible via the network. The perimeter defense has no oversight or control of attacks by malicious users within the network. Preventing network breaches from within is dependent on implementing a comprehensive defense-in-depth strategy, including securing each device connected to the network. This is accomplished by following and implementing all security guidance applicable for each node type. A fundamental step in securing each router is to enable only the capabilities required for operation.

Check Content

Review the router configuration to determine if services not required for operation are enabled. Services such as finger, ftp, telnet must never be enabled; hence, they should not be shown under the system services hierarchy.

If J-web is not used for administrative access, the web-management services must not be configured as shown below.

If DHCP server is not being deployed on the router, the command dhcp-local-server must not be configured as shown below.

system {
    …
    …
    …
    services {
        web-management {
           https {
            interface ge-0/0/0.0;
           }
        }
        finger;
        ftp;
        ssh {
            protocol-version v2;
            macs [ hmac-sha1-96 hmac-sha2-256 hmac-sha2-512 ];
        }
        telnet;
        netconf {
            ssh;
        }
        dhcp-local-server {
            group DHCP_GROUP {
                interface ge-0/1/0.0;
            }
        }
    }

If unnecessary services and functions are enabled on the router, this is a finding.

Fix Text

Remove unneeded services and functions from the router as shown below.

[edit system services]
delete telnet
[edit system services]
delete finger
[edit system services]
delete ftp