c2b53d3bfb6b0fd0e794413a7479f61dc8ef9ed9
[project/luci.git] / modules / admin-core / luasrc / view / admin_status / iwscan.htm
1 <%+header%>
2 <h1><%:iwscan WLAN-Scan%></h1>
3 <p><%:iwscan1 Drahtlosnetzwerke in der lokalen Umgebung des Routers:%></p>
4
5 <br />
6 <table cellspacing="0" cellpadding="6" class="smalltext">
7 <tr>
8 <th><%:interface Schnittstelle%></th>
9 <th>ESSID</th>
10 <th>BSSID</th>
11 <th><%:mode Modus%></th>
12 <th><%:channel Kanal%></th>
13 <th><%:iwscan_encr Vers.%></th>
14 <th><%:iwscan_link Verb.%></th>
15 <th><%:iwscan_signal Signal%></th>
16 <th><%:iwscan_noise Rausch%></th>
17 </tr>
18 <%for iface, cells in pairs(luci.sys.wifi.iwscan()) do
19         for i, cell in ipairs(cells) do 
20 %>
21 <tr>
22 <td><%=iface%></td>
23 <td><%=cell.ESSID%></td>
24 <td><%=cell.Address%></td>
25 <td><%=cell.Mode%></td>
26 <td><%=(cell.Channel or cell.Frequency or "")%></td>
27 <td><%=cell["Encryption key"]%></td>
28 <td><%=cell.Quality%></td>
29 <td><%=cell["Signal level"]%></td>
30 <td><%=cell["Noise level"]%></td>
31 </tr>
32 <%
33         end
34 end
35 %>
36 </table>
37 <br />
38 <%+footer%>