SV-217022r639663_rule
V-217022
SRG-NET-000362-RTR-000113
JUNI-RT-000170
CAT II
10
[edit firewall family inet]
set filter FILTER_INBOUND term DENY_BY_DEFAULT then log discard
Review the firewall hierarchy configuration to verify that all packets that are not permitted are silently dropped using the discard parameter as shown in the configuration example below.
firewall {
family inet {
…
…
…
}
filter FILTER_INBOUND {
term ALLOW_XYZ {
from {
protocol xyz;
}
then accept;
}
…
…
…
}
term DENY_BY_DEFAULT {
then {
log;
discard;
}
}
}
}
If ICMP unreachable notifications are sent for packets that are dropped, this is a finding.
V-217022
False
JUNI-RT-000170
Review the firewall hierarchy configuration to verify that all packets that are not permitted are silently dropped using the discard parameter as shown in the configuration example below.
firewall {
family inet {
…
…
…
}
filter FILTER_INBOUND {
term ALLOW_XYZ {
from {
protocol xyz;
}
then accept;
}
…
…
…
}
term DENY_BY_DEFAULT {
then {
log;
discard;
}
}
}
}
If ICMP unreachable notifications are sent for packets that are dropped, this is a finding.
M
4032