1
0
Fork 0
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:
Ycarus (Yannick Chabanois) 2020-01-02 21:50:21 +01:00
parent 476e6ff7c9
commit fb63bb0bda
35 changed files with 26679 additions and 0 deletions

View 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