SV-254023r997531_rule
V-254023
SRG-NET-000205-RTR-000015
JUEX-RT-000510
CAT II
10
This requirement is not applicable for the DODIN Backbone.
Configure the router to drop all packets with IP options.
set firewall family inet filter <filter name> term 1 from ip-options any
set firewall family inet filter <filter name> term 1 then log
set firewall family inet filter <filter name> term 1 then syslog
set firewall family inet filter <filter name> term 1 then discard
<additional accept terms>
set firewall family inet filter default term 1 then log
set firewall family inet filter default term 1 then syslog
set firewall family inet filter default term 1 then discard
set interfaces <interface name> unit <number> family inet filter input <filter name>
set interfaces <interface name> unit <number> family inet address <IPv4 address>/<mask>
This requirement is not applicable for the DODIN Backbone.
Review the router configuration to determine if it will block all packets with IP options.
[edit firewall family inet]
filter <name> {
term 1 {
from {
ip-options any;
}
then {
log;
syslog;
discard;
}
}
<additional accept terms>
term default {
then {
log;
syslog;
discard;
}
}
}
[edit interfaces]
<interface name> {
unit <number> {
family inet {
filter input <filter name>;
address <IPv4 address>/<mask>;
}
}
}
Note: Some Juniper devices support both monolithic filters and filter lists. Filter lists separate each term, or set of terms, into a separate filter that is applied sequentially to an interface. If using filter lists, the keywords "input" or "output" change to "input-list" or "output-list". Verify the final list item is a deny-all filter. The deny-all filter is created once per family and can be reused across multiple lists. For example:
input-list [ permit_mgt permit_routing_protocols default-deny ];
If the router is not configured to drop all packets with IP options, this is a finding.
V-254023
False
JUEX-RT-000510
This requirement is not applicable for the DODIN Backbone.
Review the router configuration to determine if it will block all packets with IP options.
[edit firewall family inet]
filter <name> {
term 1 {
from {
ip-options any;
}
then {
log;
syslog;
discard;
}
}
<additional accept terms>
term default {
then {
log;
syslog;
discard;
}
}
}
[edit interfaces]
<interface name> {
unit <number> {
family inet {
filter input <filter name>;
address <IPv4 address>/<mask>;
}
}
}
Note: Some Juniper devices support both monolithic filters and filter lists. Filter lists separate each term, or set of terms, into a separate filter that is applied sequentially to an interface. If using filter lists, the keywords "input" or "output" change to "input-list" or "output-list". Verify the final list item is a deny-all filter. The deny-all filter is created once per family and can be reused across multiple lists. For example:
input-list [ permit_mgt permit_routing_protocols default-deny ];
If the router is not configured to drop all packets with IP options, this is a finding.
M
5479