diff options
author | Steven Barth <steven@midlink.org> | 2008-05-08 16:04:18 +0000 |
---|---|---|
committer | Steven Barth <steven@midlink.org> | 2008-05-08 16:04:18 +0000 |
commit | 214bfdc19887c3df373d1323afd9738eee4f64ca (patch) | |
tree | 1b3660fd9a8db552d50c9ef9d11b9dee35bf8fac /modules/freifunk/src/view/public_status | |
parent | aa9ccf77c6648515ba58c37b9345cdbd561028db (diff) |
* Fixed #2030
Diffstat (limited to 'modules/freifunk/src/view/public_status')
-rw-r--r-- | modules/freifunk/src/view/public_status/index.htm | 59 | ||||
-rw-r--r-- | modules/freifunk/src/view/public_status/iwscan.htm | 21 | ||||
-rw-r--r-- | modules/freifunk/src/view/public_status/routes.htm | 28 |
3 files changed, 108 insertions, 0 deletions
diff --git a/modules/freifunk/src/view/public_status/index.htm b/modules/freifunk/src/view/public_status/index.htm new file mode 100644 index 0000000000..be0b96888b --- /dev/null +++ b/modules/freifunk/src/view/public_status/index.htm @@ -0,0 +1,59 @@ +<%+header%> +<h1><%:status Status%></h1> +<h2><%:system System%></h2> + +<br /> +<table cellspacing="0" cellpadding="6" class="smalltext"> +<tr> +<th><%:system_type Systemtyp%>:</th> +<td><%=s%></td> +</tr> +<tr> +<th><%:cpu Prozessor%>:</th> +<td><%=m%></td> +</tr> +<tr> +<th><%:ram Hauptspeicher%>:</th> +<td><%=r%></td> +</tr> +</table> +<br /><br /> + +<h2><%:wifi Drahtlos%></h2> +<br /> +<table cellspacing="0" cellpadding="6" class="smalltext"> +<tr> +<th><%:name Name%></th> +<th><%:protocol Protokoll%></th> +<th><%:frequency Frequenz%></th> +<th><%:power Leistung%></th> +<th><%:bitrate Bitrate%></th> +<th><%:rts RTS%></th> +<th><%:frag Frag.%></th> +<th><%:link Verb.%></th> +<th><%:signal Signal%></th> +<th><%:noise Rausch%></th> +</tr> +<%=ffluci.sys.httpget("http://127.0.0.1" .. controller .. "/sudo/status/iwconfig")%> +</table> +<br /> +<br /> +<h2><%:defroutes Standardrouten%></h2> +<br /> +<table cellspacing="0" cellpadding="6" class="smalltext"> +<tr> +<th><%:gateway Gateway%></th> +<th><%:metric Metrik%></th> +<th><%:iface Schnittstelle%></th> +</tr> +<% +for i, rt in pairs(routes) do +%> +<tr> +<td><%=ffluci.sys.net.hexip4(rt.Gateway)%></th> +<td><%=rt.Metric%></th> +<td><%=rt.Iface%></th> +</tr> +<% end %> +</table> +<%+footer%>
\ No newline at end of file diff --git a/modules/freifunk/src/view/public_status/iwscan.htm b/modules/freifunk/src/view/public_status/iwscan.htm new file mode 100644 index 0000000000..a8924c8925 --- /dev/null +++ b/modules/freifunk/src/view/public_status/iwscan.htm @@ -0,0 +1,21 @@ +<%+header%> +<h1><%:iwscan WLAN-Scan%></h1> +<p><%:iwscan1 Drahtlosnetzwerke in der lokalen Umgebung des Routers:%></p> + +<br /> +<table cellspacing="0" cellpadding="6" class="smalltext"> +<tr> +<th><%:interface Schnittstelle%></th> +<th><%:essid ESSID%></th> +<th><%:bssid BSSID%></th> +<th><%:mode Modus%></th> +<th><%:channel Kanal%></th> +<th><%:encr Vers.%></th> +<th><%:link Verb.%></th> +<th><%:signal Signal%></th> +<th><%:noise Rausch%></th> +</tr> +<%=ffluci.sys.httpget("http://127.0.0.1" .. controller .. "/sudo/status/iwscan")%> +</table> +<br /> +<%+footer%>
\ No newline at end of file diff --git a/modules/freifunk/src/view/public_status/routes.htm b/modules/freifunk/src/view/public_status/routes.htm new file mode 100644 index 0000000000..85b02212d7 --- /dev/null +++ b/modules/freifunk/src/view/public_status/routes.htm @@ -0,0 +1,28 @@ +<%+header%> +<h1><%:routes Routen%></h1> + +<br /> +<table cellspacing="0" cellpadding="6" class="smalltext"> +<tr> +<th><%:target Ziel%></th> +<th><%:netmask Netzmaske%></th> +<th><%:gateway Gateway%></th> +<th><%:metric Metrik%></th> +<th><%:iface Schnittstelle%></th> +</tr> +<% +local routes = ffluci.sys.net.routes() + +for i, r in pairs(routes) do +%> +<tr> +<td><%=ffluci.sys.net.hexip4(r.Destination)%></td> +<td><%=ffluci.sys.net.hexip4(r.Mask)%></td> +<td><%=ffluci.sys.net.hexip4(r.Gateway)%></td> +<td><%=r.Metric%></td> +<td><%=r.Iface%></td> +</tr> +<% end %> +</table> +<br /> +<%+footer%>
\ No newline at end of file |