STIGQter STIGQter: STIG Summary: Juniper Router RTR Security Technical Implementation Guide Version: 2 Release: 2 Benchmark Date: 12 Feb 2021:

The Juniper router must be configured to enforce approved authorizations for controlling the flow of information within the network based on organization-defined information flow control policies.

DISA Rule

SV-217011r639663_rule

Vulnerability Number

V-217011

Group Title

SRG-NET-000018-RTR-000001

Rule Version

JUNI-RT-000010

Severity

CAT II

CCI(s)

Weight

10

Fix Recommendation

This requirement is not applicable for the DoDIN Backbone.

Configure firewall filters to allow or deny traffic for specific source and destination addresses as well as ports and protocols between various subnets as required. The commands used below were used to create the configuration as shown in the check content.

[edit firewall family inet]
set filter FILTER_SERVER_TRAFFIC term PRINT_FILTER from destination-address 11.1.23.0/24
set filter FILTER_SERVER_TRAFFIC term PRINT_FILTER from protocol tcp destination-port [515 631 9100]
set filter FILTER_SERVER_TRAFFIC term PRINT_FILTER then accept
set filter FILTER_SERVER_TRAFFIC term SQL_FILTER from destination-address 11.1.24.0/24
set filter FILTER_SERVER_TRAFFIC term SQL_FILTER from protocol tcp destination-port [1433 1434 4022]
set filter FILTER_SERVER_TRAFFIC term SQL_FILTER then accept
set filter FILTER_SERVER_TRAFFIC term ALLOW_OSPF from protocol ospf
set filter FILTER_SERVER_TRAFFIC term ALLOW_OSPF then accept
set filter FILTER_SERVER_TRAFFIC term ALLOW_ICMP from protocol icmp
set filter FILTER_SERVER_TRAFFIC term ALLOW_ICMP then accept
set filter FILTER_SERVER_TRAFFIC term DENY_ALL_OTHER then log reject

[edit interfaces ge-0/0/0 unit 0 family inet]
set filter input FILTER_SERVER_TRAFFIC

Check Contents

This requirement is not applicable for the DoDIN Backbone.

Review the router configuration to verify that firewall filters are configured to allow or deny traffic for specific source and destination addresses as well as ports and protocols. For example, the configuration below will allow only printer traffic into subnet 11.1.23.0/24 and SQL traffic into subnet 11.1.24.0/24. ICMP is allowed for troubleshooting and OSPF is the routing protocol used within the network.

interfaces {
ge-0/0/0 {
unit 0 {
family inet {
filter {
input FILTER_SERVER_TRAFFIC;
}
address 11.1.12.2/24;
}
}
}



firewall {
family inet {
filter FILTER_SERVER_TRAFFIC {
term PRINT_FILTER {
from {
destination-address {
11.1.23.0/24;
}
protocol tcp;
destination-port [ 515 631 9100 ];
}
then accept;
}
term SQL_FILTER {
from {
destination-address {
11.1.24.0/24;
}
protocol tcp;
destination-port [ 1433 1434 4022 ];
}
then accept;
}
term ALLOW_OSPF {
from {
protocol ospf;
}
then accept;
}
term ALLOW_ICMP {
from {
protocol icmp;
}
then accept;
}
term DENY_ALL_OTHER {
then {
log;
syslog;
reject;
}
}
}



If the router is not configured to enforce approved authorizations for controlling the flow of information within the network based on organization-defined information flow control policies, this is a finding.

Vulnerability Number

V-217011

Documentable

False

Rule Version

JUNI-RT-000010

Severity Override Guidance

This requirement is not applicable for the DoDIN Backbone.

Review the router configuration to verify that firewall filters are configured to allow or deny traffic for specific source and destination addresses as well as ports and protocols. For example, the configuration below will allow only printer traffic into subnet 11.1.23.0/24 and SQL traffic into subnet 11.1.24.0/24. ICMP is allowed for troubleshooting and OSPF is the routing protocol used within the network.

interfaces {
ge-0/0/0 {
unit 0 {
family inet {
filter {
input FILTER_SERVER_TRAFFIC;
}
address 11.1.12.2/24;
}
}
}



firewall {
family inet {
filter FILTER_SERVER_TRAFFIC {
term PRINT_FILTER {
from {
destination-address {
11.1.23.0/24;
}
protocol tcp;
destination-port [ 515 631 9100 ];
}
then accept;
}
term SQL_FILTER {
from {
destination-address {
11.1.24.0/24;
}
protocol tcp;
destination-port [ 1433 1434 4022 ];
}
then accept;
}
term ALLOW_OSPF {
from {
protocol ospf;
}
then accept;
}
term ALLOW_ICMP {
from {
protocol icmp;
}
then accept;
}
term DENY_ALL_OTHER {
then {
log;
syslog;
reject;
}
}
}



If the router is not configured to enforce approved authorizations for controlling the flow of information within the network based on organization-defined information flow control policies, this is a finding.

Check Content Reference

M

Target Key

4032

Comments