2008-05-08 16:14:49 +00:00
|
|
|
<%+header%>
|
2008-06-08 18:02:47 +00:00
|
|
|
<h1><%:olsr_topology OLSR-Topologie%></h1>
|
2008-05-08 16:14:49 +00:00
|
|
|
<br />
|
|
|
|
<table cellspacing="0" cellpadding="6">
|
|
|
|
<tr>
|
|
|
|
<th><%:destination Ziel%></th>
|
2008-06-08 18:02:47 +00:00
|
|
|
<th><%:olsr_lasthop Letzter Router%></th>
|
2008-05-08 16:14:49 +00:00
|
|
|
<th>LQ</th>
|
|
|
|
<th>ILQ</th>
|
|
|
|
<th>ETX</th>
|
|
|
|
</tr>
|
|
|
|
<% for k, route in ipairs(routes) do %>
|
|
|
|
<tr>
|
|
|
|
<td><a href="http://<%=route["Destination IP"]%>"><%=route["Destination IP"]%></a></td>
|
|
|
|
<td><a href="http://<%=route["Last hop IP"]%>"><%=route["Last hop IP"]%></a></td>
|
|
|
|
<td><%=route.LQ%></td>
|
|
|
|
<td><%=route.ILQ%></td>
|
|
|
|
<td><%=route.ETX%></td>
|
|
|
|
</tr>
|
|
|
|
<% end %>
|
|
|
|
</table>
|
|
|
|
<br />
|
|
|
|
<%+footer%>
|