1
0

bandwidth is bits/second so divide by 8

This commit is contained in:
Daniel Barlow 2025-03-27 20:21:14 +00:00
parent 420320e434
commit 89065be6cd

View File

@ -50,7 +50,7 @@ let
local n = output(s, "ifname");
local bw = output(s, "bandwidth");
if n and bw then
return "meta l4proto icmpv6 iifname ".. n .. " limit rate over " .. (math.floor (tonumber(bw) / 20)) .. " bytes/second drop"
return "meta l4proto icmpv6 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