864455ca8fba9b1030326a4844e53d67a4f9c3e3
[project/luci.git] / applications / luci-fw / src / controller / luci_fw / luci_fw.lua
1 module("ffluci.controller.luci_fw.luci_fw", package.seeall)
2
3 function index()
4 local page = node("admin", "network", "portfw")
5 page.target = cbi("luci_fw/portfw")
6 page.title = "Portweiterleitung"
7 page.order = 70
8
9 local page = node("admin", "network", "routing")
10 page.target = cbi("luci_fw/routing")
11 page.title = "Routing"
12 page.order = 72
13
14 local page = node("admin", "network", "firewall")
15 page.target = cbi("luci_fw/firewall")
16 page.title = "Firewall"
17 page.order = 74
18 end