SV-217078r639663_rule
V-217078
SRG-NET-000205-RTR-000016
JUNI-RT-000730
CAT II
10
Configure the router to drop all packets with IP options.
[edit firewall family inet filter INGRESS_FILTER]
set term BLOCK_IP_OPTIONS from ip-options any
set term BLOCK_IP_OPTIONS then discard
insert term BLOCK_IP_OPTIONS before term ALLOW_TRANSIT_TRAFFIC
Review the router configuration to determine if it will block all packets with IP options.
firewall {
family inet {
filter INGRESS_FILTER {
term BLOCK_TO_CORE {
from {
destination-address {
x.x.x.x/8;
}
}
then {
log;
discard;
}
}
term BLOCK_IP_OPTIONS {
from {
ip-options any;
}
then {
discard;
}
}
term ALLOW_TRANSIT_TRAFFIC {
then accept;
}
}
}
If the router is not configured to drop all packets with IP options, this is a finding.
V-217078
False
JUNI-RT-000730
Review the router configuration to determine if it will block all packets with IP options.
firewall {
family inet {
filter INGRESS_FILTER {
term BLOCK_TO_CORE {
from {
destination-address {
x.x.x.x/8;
}
}
then {
log;
discard;
}
}
term BLOCK_IP_OPTIONS {
from {
ip-options any;
}
then {
discard;
}
}
term ALLOW_TRANSIT_TRAFFIC {
then accept;
}
}
}
If the router is not configured to drop all packets with IP options, this is a finding.
M
4032