summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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))