2008-07-07 22:00:56 +00:00
|
|
|
<%#
|
|
|
|
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
|
|
|
|
|
2010-12-17 02:14:28 +00:00
|
|
|
$Id: index.htm 6619 2010-12-05 15:02:44Z soma $
|
2008-07-07 22:00:56 +00:00
|
|
|
|
|
|
|
-%>
|
2008-05-08 16:14:49 +00:00
|
|
|
<%+header%>
|
2009-10-31 15:54:11 +00:00
|
|
|
<h2><a id="content" name="content"><%:OLSR connections%></a></h2>
|
|
|
|
<p><%:Overview of currently established OLSR connections%></p>
|
2008-05-08 16:14:49 +00:00
|
|
|
<br />
|
2008-07-16 02:38:45 +00:00
|
|
|
<table class="smalltext" cellspacing="0" cellpadding="6">
|
2008-05-08 16:14:49 +00:00
|
|
|
<tr>
|
2009-10-31 15:54:11 +00:00
|
|
|
<th><%:Neighbour IP%></th>
|
2010-12-05 15:02:44 +00:00
|
|
|
<th><%:Hostname%></th>
|
2009-10-31 15:54:11 +00:00
|
|
|
<th><%:Local interface IP%></th>
|
2010-12-05 15:02:44 +00:00
|
|
|
<th><%:Device%></th>
|
2008-05-08 16:14:49 +00:00
|
|
|
<th>LQ</th>
|
|
|
|
<th>NLQ</th>
|
|
|
|
<th>ETX</th>
|
|
|
|
</tr>
|
2008-09-14 20:57:00 +00:00
|
|
|
<% for k, link in ipairs(links) do
|
2008-05-08 16:14:49 +00:00
|
|
|
local color = "#bb3333"
|
2008-09-14 20:57:00 +00:00
|
|
|
|
2008-09-13 17:51:03 +00:00
|
|
|
link.Cost = tonumber(link.Cost) or 0
|
|
|
|
if link.Cost == 0 then
|
2008-05-08 16:14:49 +00:00
|
|
|
color = "#bb3333"
|
2008-09-13 17:51:03 +00:00
|
|
|
elseif link.Cost < 4 then
|
2008-05-08 16:14:49 +00:00
|
|
|
color = "#00cc00"
|
2008-09-13 17:51:03 +00:00
|
|
|
elseif link.Cost < 10 then
|
2008-05-08 16:14:49 +00:00
|
|
|
color = "#ffcb05"
|
2008-09-13 17:51:03 +00:00
|
|
|
elseif link.Cost < 100 then
|
2008-05-08 16:14:49 +00:00
|
|
|
color = "#ff6600"
|
|
|
|
end
|
2011-01-02 12:09:54 +00:00
|
|
|
|
|
|
|
defaultgw_color = ""
|
|
|
|
if link.defaultgw == 1 then
|
|
|
|
defaultgw_color = "#ffff99"
|
|
|
|
end
|
2008-05-08 16:14:49 +00:00
|
|
|
%>
|
|
|
|
<tr>
|
2011-01-02 12:09:54 +00:00
|
|
|
<td style="background-color:<%=defaultgw_color%>"><a href="http://<%=link["Remote IP"]%>/cgi-bin-status.html"><%=link["Remote IP"]%></a></td>
|
|
|
|
<td style="background-color:<%=defaultgw_color%>"><a href="http://<%=link["Hostname"]%>/cgi-bin-status.html"><%=link["Hostname"]%></a></td>
|
|
|
|
<td style="background-color:<%=defaultgw_color%>"><%=link["Local IP"]%></td>
|
|
|
|
<td style="background-color:<%=defaultgw_color%>"><%=link["Local Device"]%></td>
|
|
|
|
<td style="background-color:<%=defaultgw_color%>"><%=link.LQ%></td>
|
|
|
|
<td style="background-color:<%=defaultgw_color%>"><%=link.NLQ%></td>
|
2008-09-13 17:51:03 +00:00
|
|
|
<td style="background-color:<%=color%>"><%=string.format("%.3f", link.Cost)%></td>
|
2008-05-08 16:14:49 +00:00
|
|
|
</tr>
|
|
|
|
<% end %>
|
|
|
|
</table>
|
|
|
|
<br />
|
2009-10-31 15:54:11 +00:00
|
|
|
<h3><%:Legend%>:</h3>
|
2008-05-08 16:14:49 +00:00
|
|
|
<ul>
|
2010-11-18 09:19:51 +00:00
|
|
|
<li><strong>LQ: </strong><%:Success rate of packages received from the neighbour%></li>
|
|
|
|
<li><strong>NLQ: </strong><%:Success rate of packages sent to the neighbour%></li>
|
2009-10-31 15:54:11 +00:00
|
|
|
<li><strong>ETX: </strong><%:Expected retransmission count%></li>
|
2008-05-08 16:14:49 +00:00
|
|
|
</ul>
|
2008-09-14 20:57:00 +00:00
|
|
|
<%+footer%>
|