function is working, octets were in the wrong order though
Skyweave Test, Lint, and Deploy Ritual / Test and Lint Code (push) Successful in 29s
Skyweave Test, Lint, and Deploy Ritual / Deploy to Roof Unit (push) Successful in 19s

This commit is contained in:
wes
2025-06-29 09:41:41 -04:00
parent 1483a7c74c
commit f61a392d60
+1 -1
View File
@@ -241,7 +241,7 @@ function utils.get_active_default_gateway()
table.insert(routes, { table.insert(routes, {
iface = iface, iface = iface,
metric = tonumber(metric_str) or 999, metric = tonumber(metric_str) or 999,
gateway = string.format("%d.%d.%d.%d", o1, o2, o3, o4) -- Corrected from your version gateway = string.format("%d.%d.%d.%d", o4, o3, o2, o1) -- Corrected from your version
}) })
end end
end end