mirror of
https://github.com/Ysurac/openmptcprouter-feeds.git
synced 2025-03-09 15:40:03 +00:00
Try to revert to previous firewall app with SNAT support
This commit is contained in:
parent
476e6ff7c9
commit
fb63bb0bda
35 changed files with 26679 additions and 0 deletions
20
luci-app-firewall/luasrc/controller/firewall.lua
Normal file
20
luci-app-firewall/luasrc/controller/firewall.lua
Normal file
|
@ -0,0 +1,20 @@
|
|||
module("luci.controller.firewall", package.seeall)
|
||||
|
||||
function index()
|
||||
entry({"admin", "network", "firewall"},
|
||||
alias("admin", "network", "firewall", "zones"),
|
||||
_("Firewall"), 60)
|
||||
|
||||
entry({"admin", "network", "firewall", "zones"},
|
||||
view("firewall/zones"), _("General Settings"), 10)
|
||||
|
||||
entry({"admin", "network", "firewall", "forwards"},
|
||||
view("firewall/forwards"), _("Port Forwards"), 20)
|
||||
|
||||
entry({"admin", "network", "firewall", "rules"},
|
||||
view("firewall/rules"), _("Traffic Rules"), 30)
|
||||
|
||||
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