66 lines
1.5 KiB
Lua
66 lines
1.5 KiB
Lua
|
--[[
|
||
|
LuCI - Lua Configuration Interface
|
||
|
|
||
|
Copyright 2008 Steven Barth <steven@midlink.org>
|
||
|
Copyright 2008 Jo-Philipp Wich <xm@leipzig.freifunk.net>
|
||
|
|
||
|
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.ip")
|
||
|
|
||
|
m = Map("chillispot")
|
||
|
|
||
|
-- tun
|
||
|
s1 = m:section(TypedSection, "tun")
|
||
|
s1.anonymous = true
|
||
|
|
||
|
net = s1:option( Value, "net" )
|
||
|
for _, route in ipairs(luci.sys.net.routes()) do
|
||
|
if route.Iface ~= "lo" and route.Mask ~= "FFFFFFFF" then
|
||
|
local netmask = luci.ip.IPv4(route.Mask)
|
||
|
if netmask then
|
||
|
local netaddr = luci.ip.IPv4(route.Destination, netmask)
|
||
|
if netaddr then
|
||
|
net:value( netaddr:string() )
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
|
||
|
s1:option( Value, "dynip" ).optional = true
|
||
|
s1:option( Value, "statip" ).optional = true
|
||
|
|
||
|
s1:option( Value, "dns1" ).optional = true
|
||
|
s1:option( Value, "dns2" ).optional = true
|
||
|
s1:option( Value, "domain" ).optional = true
|
||
|
|
||
|
s1:option( Value, "ipup" ).optional = true
|
||
|
s1:option( Value, "ipdown" ).optional = true
|
||
|
|
||
|
s1:option( Value, "conup" ).optional = true
|
||
|
s1:option( Value, "condown" ).optional = true
|
||
|
|
||
|
|
||
|
-- dhcp config
|
||
|
s2 = m:section(TypedSection, "dhcp")
|
||
|
s2.anonymous = true
|
||
|
|
||
|
dif = s2:option( Value, "dhcpif" )
|
||
|
for _, nif in ipairs(luci.sys.net.devices()) do
|
||
|
if nif ~= "lo" then dif:value(nif) end
|
||
|
end
|
||
|
|
||
|
s2:option( Value, "dhcpmac" ).optional = true
|
||
|
s2:option( Value, "lease" ).optional = true
|
||
|
|
||
|
|
||
|
return m
|