luci/applications/luci-olsr/luasrc/view/status-olsr/neighbors.htm

67 lines
2.1 KiB
HTML
Raw Normal View History

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
$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%>
<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 />
<table class="smalltext" cellspacing="0" cellpadding="6">
2008-05-08 16:14:49 +00:00
<tr>
<th><%:Neighbour IP%></th>
<th><%:Hostname%></th>
<th><%:Local interface IP%></th>
<th><%:Device%></th>
2008-05-08 16:14:49 +00:00
<th>LQ</th>
<th>NLQ</th>
<th>ETX</th>
</tr>
<% for k, link in ipairs(links) do
2008-05-08 16:14:49 +00:00
local color = "#bb3333"
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
defaultgw_color = ""
if link.defaultgw == 1 then
defaultgw_color = "#ffff99"
end
2008-05-08 16:14:49 +00:00
%>
<tr>
<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 />
<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>
<li><strong>ETX: </strong><%:Expected retransmission count%></li>
2008-05-08 16:14:49 +00:00
</ul>
<%+footer%>