SV-217037r639663_rule
V-217037
SRG-NET-000205-RTR-000003
JUNI-RT-000320
CAT II
10
This requirement is not applicable for the DoDIN Backbone.
Configure the router to use an inbound filter on all external interfaces as shown in the example below to restrict traffic in accordance with the guidelines contained in DOD Instruction 8551.1.
set filter INBOUND_FILTER term ALLOW_ABC from protocol tcp destination-port abc
set filter INBOUND_FILTER term ALLOW_ABC then accept
set filter INBOUND_FILTER term ALLOW_XYZ from protocol tcp destination-port xyz
set filter INBOUND_FILTER term ALLOW_XYZ then accept
set filter INBOUND_FILTER term DENY_ALL_OTHER then syslog reject
[edit interfaces ge-0/0/0 unit 0 family inet]
set filter input INBOUND_FILTER
This requirement is not applicable for the DoDIN Backbone.
Review the router configuration to verify that the ingress filter is in accordance with DoD 8551.
Verify that an inbound filter is configured on all external interfaces.
interfaces {
ge-0/0/0 {
unit 0 {
family inet {
filter {
input INBOUND_FILTER;
}
address 11.1.12.2/24;
}
}
}
Review the inbound filter to verify that it is filtering traffic in accordance with DoD 8551.
firewall {
family inet {
filter INBOUND_FILTER {
term ALLOW_ABC {
from {
protocol tcp;
destination-port abc;
}
then accept;
}
term ALLOW_XYZ {
from {
protocol xyz;
}
then accept;
}
term DENY_ALL_OTHER {
then {
syslog;
reject;
}
}
}
}
If the router does not filter traffic in accordance with the guidelines contained in DoD 8551, this is a finding.
V-217037
False
JUNI-RT-000320
This requirement is not applicable for the DoDIN Backbone.
Review the router configuration to verify that the ingress filter is in accordance with DoD 8551.
Verify that an inbound filter is configured on all external interfaces.
interfaces {
ge-0/0/0 {
unit 0 {
family inet {
filter {
input INBOUND_FILTER;
}
address 11.1.12.2/24;
}
}
}
Review the inbound filter to verify that it is filtering traffic in accordance with DoD 8551.
firewall {
family inet {
filter INBOUND_FILTER {
term ALLOW_ABC {
from {
protocol tcp;
destination-port abc;
}
then accept;
}
term ALLOW_XYZ {
from {
protocol xyz;
}
then accept;
}
term DENY_ALL_OTHER {
then {
syslog;
reject;
}
}
}
}
If the router does not filter traffic in accordance with the guidelines contained in DoD 8551, this is a finding.
M
4032