SV-217033r639663_rule
V-217033
SRG-NET-000019-RTR-000008
JUNI-RT-000280
CAT I
10
This requirement is not applicable for the DoDIN Backbone.
Configure the ingress filter of the perimeter router connected to an alternate gateway to only permit packets with destination addresses of the site's NIPRNet address space or a destination address belonging to the address block assigned by the alternate gateway network service provider as shown in the example below.
[edit firewall family inet filter ISP_FILTER]
set term RESTRICT_DESTINATION from destination-address 0.0.0.0/0
set term RESTRICT_DESTINATION from destination-address 11.1.0.0/16 except
set term RESTRICT_DESTINATION then syslog discard
insert term RESTRICT_DESTINATION before term ALLOW_XYZ
This requirement is not applicable for the DoDIN Backbone.
Verify the interface connecting to ISP has an inbound filter as shown in the example below.
interfaces {
ge-0/0/0 {
description "Verizon ISP link";
unit 0 {
family inet {
filter {
input ISP_FILTER;
}
address 11.1.12.2/24;
}
}
}
Verify that the filter only allows traffic to specific destination addresses (i.e. enclave’s NIPRNet address space) as shown in the example below.
firewall {
family inet {
filter ISP_FILTER {
term RESTRICT_DESTINATION {
from {
destination-address {
0.0.0.0/0;
11.1.0.0/16 except;
}
}
then {
syslog;
discard;
}
}
term ALLOW_XYZ {
from {
protocol xyz;
}
then accept;
}
…
…
…
term DENY_ALL_OTHER {
then {
syslog;
reject;
}
}
}
If the ingress filter bound to the interface connecting to an alternate gateway permits packets with addresses other than those specified, such as destination addresses of the site's NIPRNet address space or a destination address belonging to the address block assigned by the alternate gateway network service provider, this is a finding.
V-217033
False
JUNI-RT-000280
This requirement is not applicable for the DoDIN Backbone.
Verify the interface connecting to ISP has an inbound filter as shown in the example below.
interfaces {
ge-0/0/0 {
description "Verizon ISP link";
unit 0 {
family inet {
filter {
input ISP_FILTER;
}
address 11.1.12.2/24;
}
}
}
Verify that the filter only allows traffic to specific destination addresses (i.e. enclave’s NIPRNet address space) as shown in the example below.
firewall {
family inet {
filter ISP_FILTER {
term RESTRICT_DESTINATION {
from {
destination-address {
0.0.0.0/0;
11.1.0.0/16 except;
}
}
then {
syslog;
discard;
}
}
term ALLOW_XYZ {
from {
protocol xyz;
}
then accept;
}
…
…
…
term DENY_ALL_OTHER {
then {
syslog;
reject;
}
}
}
If the ingress filter bound to the interface connecting to an alternate gateway permits packets with addresses other than those specified, such as destination addresses of the site's NIPRNet address space or a destination address belonging to the address block assigned by the alternate gateway network service provider, this is a finding.
M
4032