diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2008-12-27 01:44:56 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2008-12-27 01:44:56 +0000 |
commit | 71b8fd5ddf9d7f23ada97a1910bafd1f8711a76b (patch) | |
tree | be8f0c46995d919630bc53a60c7e23157e5fea74 /applications/luci-siitwizard/luasrc/model | |
parent | 870397a3cd621561e8f464d1aed7b0cef88d98d7 (diff) |
applications/siitwizard:
- fix calculation of available hosts addresses in pool
- also calculate dhcp start and limit addresses
- tune siit defaults to use Freifunk PI addresses
- change bssid to avoid collision with Freifunk mesh
Diffstat (limited to 'applications/luci-siitwizard/luasrc/model')
-rw-r--r-- | applications/luci-siitwizard/luasrc/model/cbi/siitwizard.lua | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/applications/luci-siitwizard/luasrc/model/cbi/siitwizard.lua b/applications/luci-siitwizard/luasrc/model/cbi/siitwizard.lua index c95b805f7b..c1dbb0efd3 100644 --- a/applications/luci-siitwizard/luasrc/model/cbi/siitwizard.lua +++ b/applications/luci-siitwizard/luasrc/model/cbi/siitwizard.lua @@ -65,7 +65,7 @@ f = SimpleForm("siitwizward", "SIIT-Wizzard", f:field(DummyValue, "info_ula", "Mesh ULA address").value = ula:string() f:field(DummyValue, "ipv4_pool", "IPv4 allocation pool").value = - "%s (%i hosts)" %{ gv4_net:string(), 2 ^ gv4_net:prefix() - 2 } + "%s (%i hosts)" %{ gv4_net:string(), 2 ^ ( 32 - gv4_net:prefix() ) - 2 } f:field(DummyValue, "ipv4_size", "IPv4 LAN network prefix").value = "%i bit (%i hosts)" %{ ipv4_netsz, 2 ^ ( 32 - ipv4_netsz ) - 2 } @@ -364,7 +364,9 @@ function mode.write(self, section, value) -- lan dns uci:tset("dhcp", "lan", { - dhcp_option = "6," .. dns_server + dhcp_option = "6," .. dns_server, + start = bit.band(lan_net:minhost():add(1)[2][2], 0xFF), + limit = ( 2 ^ ( 32 - lan_net:prefix() ) ) - 3 }) -- hostname |