1
0

firewall: fix syntax of icmp v4 rule

This commit is contained in:
Daniel Barlow 2025-03-31 23:03:24 +01:00
parent d9723aeb87
commit ee683f2202

View File

@ -72,7 +72,7 @@ let
local n = output(s, "ifname");
local bw = output(s, "bandwidth");
if n and bw then
return "icmp iifname ".. n .. " limit rate over " .. (math.floor (tonumber(bw) / 8 / 20)) .. " bytes/second drop"
return "meta l4proto icmp iifname ".. n .. " limit rate over " .. (math.floor (tonumber(bw) / 8 / 20)) .. " bytes/second drop"
else
return "# " .. (n or "not n") .. " " .. (bw or "not bw")
end