summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMike Mason <ms13sp@gmail.com>2008-11-05 21:29:48 +0000
committerMike Mason <ms13sp@gmail.com>2008-11-05 21:29:48 +0000
commitf1f65ecc48666b798846e10b704bd4b7a057fc61 (patch)
tree071470a7a7d5335c157c1c547ba60951c481d47f
parentea03ab4f722cad546db9e66da543ef9ebc2164d2 (diff)
downloadacf-dnsmasq-f1f65ecc48666b798846e10b704bd4b7a057fc61.tar.bz2
acf-dnsmasq-f1f65ecc48666b798846e10b704bd4b7a057fc61.tar.xz
End of day commit. Still need some work. Updating to have more viewed options
git-svn-id: svn://svn.alpinelinux.org/acf/dnsmasq/trunk@1580 ab2d0c66-481e-0410-8bed-d214d4d58bed
-rw-r--r--dnsmasq-model.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/dnsmasq-model.lua b/dnsmasq-model.lua
index 0857b66..cacb3d8 100644
--- a/dnsmasq-model.lua
+++ b/dnsmasq-model.lua
@@ -68,11 +68,11 @@ function getconfig()
require ("html")
local output = {}
- output.DOMAIN = cfe({ value = conf.domain or "", label="Local Domain to use",
+ output.DOMAIN = cfe({ value = conf.domain or "private.net", label="Local Domain to use",
descr="Internal Domain for your LAN" })
- output.INTERFACE = cfe({ value=conf.interface, label="Interface" })
+ output.INTERFACE = cfe({ value=conf.interface , label="Interface" })
output.IP = cfe({ value=conf["listen-address"] or "", label="IP address to listen on" })
- output.RANGE = cfe ({value=conf["dhcp-range"] or "", label="Range of IPs", descr="First,Last,Netmask,Time in hours"})
+ output.RANGE = cfe ({value=conf["dhcp-range"] or "169.254.0.10,169.254.0.100,255.255.255.0,12h", label="Range of IPs", descr="First,Last,Netmask,Time in hours"})
-- APP.logevent(html.cfe_unpack(output))