mirror of
https://github.com/Ysurac/openmptcprouter-feeds.git
synced 2025-03-09 15:40:03 +00:00
Revert to previous firewall luci interface
This commit is contained in:
parent
7774814e12
commit
4b638e2189
40 changed files with 26797 additions and 0 deletions
23
luci-app-firewall/luasrc/controller/firewall.lua
Normal file
23
luci-app-firewall/luasrc/controller/firewall.lua
Normal file
|
@ -0,0 +1,23 @@
|
|||
module("luci.controller.firewall", package.seeall)
|
||||
|
||||
function index()
|
||||
entry({"admin", "network", "firewall"},
|
||||
alias("admin", "network", "firewall", "zones"),
|
||||
_("Firewall"), 60)
|
||||
|
||||
entry({"admin", "network", "firewall", "zones"},
|
||||
arcombine(cbi("firewall/zones"), cbi("firewall/zone-details")),
|
||||
_("General Settings"), 10).leaf = true
|
||||
|
||||
entry({"admin", "network", "firewall", "forwards"},
|
||||
arcombine(cbi("firewall/forwards"), cbi("firewall/forward-details")),
|
||||
_("Port Forwards"), 20).leaf = true
|
||||
|
||||
entry({"admin", "network", "firewall", "rules"},
|
||||
arcombine(cbi("firewall/rules"), cbi("firewall/rule-details")),
|
||||
_("Traffic Rules"), 30).leaf = true
|
||||
|
||||
entry({"admin", "network", "firewall", "custom"},
|
||||
form("firewall/custom"),
|
||||
_("Custom Rules"), 40).leaf = true
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue