* luci/modules: add hosts configuration pages

This commit is contained in:
Jo-Philipp Wich 2008-09-06 18:21:58 +00:00
parent 975df7e17f
commit c80d0a350e
2 changed files with 50 additions and 12 deletions

View file

@ -77,10 +77,15 @@ function index()
i18n("dhcp_leases")
)
local page = node("admin", "network", "hosts")
page.target = cbi("admin_network/hosts")
page.title = i18n("hostnames", "Hostnames")
page.order = 40
local page = node("admin", "network", "routes")
page.target = cbi("admin_network/routes")
page.title = i18n("a_n_routes")
page.order = 40
page.order = 50
page.leaf = true
entry(

View file

@ -0,0 +1,33 @@
--[[
LuCI - Lua Configuration Interface
Copyright 2008 Steven Barth <steven@midlink.org>
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
$Id$
]]--
require("luci.sys")
require("luci.util")
m = Map("luci_hosts", translate("hostnames"))
s = m:section(TypedSection, "host", translate("hostnames_entries"))
s.addremove = true
s.anonymous = true
s.template = "cbi/tblsection"
hn = s:option(Value, "hostname", translate("hostnames_hostname"))
ip = s:option(Value, "ipaddr", translate("hostnames_address"))
for i, dataset in ipairs(luci.sys.net.arptable()) do
ip:value(
dataset["IP address"],
"%s (%s)" %{ dataset["IP address"], dataset["HW address"] }
)
end
return m