From 603ea189d7748ff4edd6b3e03e3de11e6b22e5ac Mon Sep 17 00:00:00 2001 From: Jo-Philipp Wich Date: Mon, 9 Nov 2009 01:09:31 +0000 Subject: [PATCH] modules/admin-full: switch static lease page to /etc/config/dhcp, add better labels and hostname column --- .../luasrc/model/cbi/admin_network/dhcpleases.lua | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/modules/admin-full/luasrc/model/cbi/admin_network/dhcpleases.lua b/modules/admin-full/luasrc/model/cbi/admin_network/dhcpleases.lua index 2e0ebf892..678ebab06 100644 --- a/modules/admin-full/luasrc/model/cbi/admin_network/dhcpleases.lua +++ b/modules/admin-full/luasrc/model/cbi/admin_network/dhcpleases.lua @@ -17,7 +17,10 @@ local sys = require "luci.sys" local wa = require "luci.tools.webadmin" local fs = require "nixio.fs" -m2 = Map("luci_ethers", translate("Leases")) +m2 = Map("dhcp", translate("DHCP Leases"), + translate("Static leases are used to assign fixed IP addresses and symbolic hostnames to " .. + "DHCP clients. They are also required for non-dynamic interface configurations where " .. + "only hosts with a corresponding lease are served.")) local leasefn, leasefp, leases uci:foreach("dhcp", "dnsmasq", @@ -46,13 +49,18 @@ if leases then end end -s = m2:section(TypedSection, "static_lease", translate("Static Leases")) +s = m2:section(TypedSection, "host", translate("Static Leases"), + translate("Use the Add Button to add a new lease entry. The MAC-Address " .. + "indentifies the host, the IPv4-Address specifies to the fixed address to " .. + "use and the Hostname is assigned as symbolic name to the requesting host.")) + s.addremove = true s.anonymous = true s.template = "cbi/tblsection" -mac = s:option(Value, "macaddr", translate("MAC-Address")) -ip = s:option(Value, "ipaddr", translate("IPv4-Address")) +name = s:option(Value, "name", translate("Hostname")) +mac = s:option(Value, "mac", translate("MAC-Address")) +ip = s:option(Value, "ip", translate("IPv4-Address")) sys.net.arptable(function(entry) ip:value(entry["IP address"]) mac:value( -- 2.11.0