op-packages/luci-app-bridge/luasrc/controller/bridge.lua
github-actions[bot] 32600acc60 🌴 Sync 2026-03-05 23:51:42
2026-03-05 23:51:42 +08:00

21 lines
547 B
Lua

module("luci.controller.bridge", package.seeall)
function index()
if not nixio.fs.access("/etc/config/bridge") then
return
end
local page
page = entry({"admin", "network", "bridge"}, cbi("bridge"), _("Transparent bridge"), 60)
page.dependent = true
entry({"admin","network","bridge","status"},call("act_status")).leaf=true
end
function act_status()
local e={}
e.running=luci.sys.call("iptables -L INPUT | grep zone_.*input | grep bridge >/dev/null")==0
luci.http.prepare_content("application/json")
luci.http.write_json(e)
end