* Minor bugfixes
This commit is contained in:
parent
32274f49f0
commit
0ea68c4f74
4 changed files with 37 additions and 21 deletions
2
INSTALL
2
INSTALL
|
@ -13,7 +13,7 @@ TOC:
|
|||
|
||||
3. Run ./scripts/feeds update
|
||||
|
||||
4. Run ./scripts/feeds install luci-lua ffluci
|
||||
4. Run ./scripts/feeds install ffluci
|
||||
|
||||
5. Type make menuconfig and you will find ffluci in the menu "Administration"
|
||||
|
||||
|
|
|
@ -34,24 +34,7 @@
|
|||
<th><%:signal Signal%></th>
|
||||
<th><%:noise Rausch%></th>
|
||||
</tr>
|
||||
<%for k, v in pairs(wifi) do%>
|
||||
<tr>
|
||||
<td rowspan="2"><%=k%></td>
|
||||
<td><%=v[1]%></td>
|
||||
<td><%=v.Frequency%></td>
|
||||
<td><%=v["Tx-Power"]%></td>
|
||||
<td><%=v["Bit Rate"]%></td>
|
||||
<td><%=v["RTS thr"]%></td>
|
||||
<td><%=v["Fragment thr"]%></td>
|
||||
<td><%=v["Link Quality"]%></td>
|
||||
<td><%=v["Signal level"]%></td>
|
||||
<td><%=v["Noise level"]%></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="4"><strong><%:essid ESSID%>: </strong><%=v.ESSID%></td>
|
||||
<td colspan="5"><strong><%:bssid BSSID%>: </strong><%=(v.Cell or v["Access Point"])%></td>
|
||||
</tr>
|
||||
<%end%>
|
||||
<%=ffluci.sys.httpget("http://127.0.0.1" .. controller .. "/sudo/status/iwconfig")%>
|
||||
</table>
|
||||
<br />
|
||||
<br />
|
||||
|
@ -64,7 +47,15 @@
|
|||
<th><%:iface Schnittstelle%></th>
|
||||
</tr>
|
||||
<%
|
||||
local be = (routes[1] and routes[1].Mask:sub(-2) == "00")
|
||||
|
||||
-- UGLY hack is UGLY
|
||||
if routes[1] and routes[1].Gateway:sub(-2) == "00" then
|
||||
local be = true
|
||||
else
|
||||
local be = false
|
||||
end
|
||||
|
||||
|
||||
for i, rt in pairs(routes) do
|
||||
%>
|
||||
<tr>
|
||||
|
|
|
@ -14,7 +14,11 @@
|
|||
local routes = ffluci.sys.net.routes()
|
||||
|
||||
-- UGLY hack is UGLY
|
||||
local be = (routes[1] and routes[1].Mask:sub(-2) == "00")
|
||||
if routes[1] and routes[1].Gateway:sub(-2) == "00" then
|
||||
local be = true
|
||||
else
|
||||
local be = false
|
||||
end
|
||||
|
||||
for i, r in pairs(routes) do
|
||||
%>
|
||||
|
|
21
module/public-core/src/view/sudo_status/iwconfig.htm
Normal file
21
module/public-core/src/view/sudo_status/iwconfig.htm
Normal file
|
@ -0,0 +1,21 @@
|
|||
<%
|
||||
ffluci.http.textheader()
|
||||
for k, v in pairs(ffluci.sys.wifi.getiwconfig()) do
|
||||
%>
|
||||
<tr>
|
||||
<td rowspan="2"><%=k%></td>
|
||||
<td><%=v[1]%></td>
|
||||
<td><%=v.Frequency%></td>
|
||||
<td><%=v["Tx-Power"]%></td>
|
||||
<td><%=v["Bit Rate"]%></td>
|
||||
<td><%=v["RTS thr"]%></td>
|
||||
<td><%=v["Fragment thr"]%></td>
|
||||
<td><%=v["Link Quality"]%></td>
|
||||
<td><%=v["Signal level"]%></td>
|
||||
<td><%=v["Noise level"]%></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="4"><strong>ESSID: </strong><%=v.ESSID%></td>
|
||||
<td colspan="5"><strong>BSSID: </strong><%=(v.Cell or v["Access Point"])%></td>
|
||||
</tr>
|
||||
<%end%>
|
Loading…
Reference in a new issue