2010-12-05 19:06:18 +00:00
|
|
|
<%#
|
|
|
|
LuCI - Lua Configuration Interface
|
|
|
|
Copyright 2008 Steven Barth <steven@midlink.org>
|
|
|
|
Copyright 2008 Jo-Philipp Wich <xm@leipzig.freifunk.net>
|
2011-11-09 18:12:25 +00:00
|
|
|
Copyright 2011 Manuel Munz <freifunk at somakoma dot de>
|
2010-12-05 19:06:18 +00:00
|
|
|
|
|
|
|
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
|
|
|
|
2010-12-05 19:06:18 +00:00
|
|
|
<%
|
2011-11-09 18:12:25 +00:00
|
|
|
local i = 1
|
2010-12-05 19:06:18 +00:00
|
|
|
require("luci.model.uci")
|
|
|
|
local uci = luci.model.uci.cursor_state()
|
|
|
|
|
|
|
|
uci:foreach("olsrd", "olsrd", function(s)
|
|
|
|
if s.SmartGateway and s.SmartGateway == "yes" then has_smartgw = true end
|
|
|
|
end)
|
|
|
|
%>
|
|
|
|
|
|
|
|
<%+header%>
|
|
|
|
|
|
|
|
<h2><a id="content" name="content"><%:SmartGW announcements%></a></h2>
|
2011-11-09 18:12:25 +00:00
|
|
|
|
2010-12-05 19:06:18 +00:00
|
|
|
<% if has_smartgw then %>
|
2011-11-09 18:12:25 +00:00
|
|
|
|
|
|
|
<fieldset class="cbi-section">
|
|
|
|
<legend><%:Overview of smart gateways in this network%></legend>
|
|
|
|
<table class="cbi-section-table">
|
|
|
|
<tr class="cbi-section-table-titles">
|
|
|
|
<th class="cbi-section-table-cell"><%:Gateway%></th>
|
|
|
|
<th class="cbi-section-table-cell"><%:Status%></th>
|
|
|
|
<th class="cbi-section-table-cell"><%:ETX%></th>
|
|
|
|
<th class="cbi-section-table-cell"><%:Hops%></th>
|
|
|
|
<th class="cbi-section-table-cell"><%:Uplink%></th>
|
|
|
|
<th class="cbi-section-table-cell"><%:Downlink%></th>
|
|
|
|
<th class="cbi-section-table-cell"><%:IPv4%></th>
|
|
|
|
<th class="cbi-section-table-cell"><%:IPv6%></th>
|
|
|
|
<th class="cbi-section-table-cell"><%:Prefix%></th>
|
|
|
|
|
|
|
|
</tr>
|
|
|
|
|
|
|
|
<% for k, gw in ipairs(gws) do %>
|
|
|
|
|
|
|
|
<tr class="cbi-section-table-row cbi-rowstyle-<%=i%>">
|
|
|
|
<td class="cbi-section-table-cell"><a href="http://<%=gw["Gateway IP"]%>/cgi-bin-status.html"><%=gw["Gateway IP"]%></a></td>
|
|
|
|
<td class="cbi-section-table-cell"><%=gw.Status%></td>
|
|
|
|
<td class="cbi-section-table-cell"><%=gw.ETX%></td>
|
|
|
|
<td class="cbi-section-table-cell"><%=gw.Hopcnt%></td>
|
|
|
|
<td class="cbi-section-table-cell"><%=gw.Uplink%></td>
|
|
|
|
<td class="cbi-section-table-cell"><%=gw.Downlnk%></td>
|
|
|
|
<td class="cbi-section-table-cell"><%=gw.IPv4%></td>
|
|
|
|
<td class="cbi-section-table-cell"><%=gw.IPv6%></td>
|
|
|
|
<td class="cbi-section-table-cell"><%=gw.Prefix%></td>
|
|
|
|
</tr>
|
|
|
|
|
2011-11-13 12:34:09 +00:00
|
|
|
<% i = ((i % 2) + 1)
|
2011-11-09 18:12:25 +00:00
|
|
|
end %>
|
|
|
|
</table>
|
|
|
|
</fieldset>
|
2010-12-05 19:06:18 +00:00
|
|
|
|
|
|
|
<% else %>
|
2011-11-09 18:12:25 +00:00
|
|
|
|
|
|
|
<%:SmartGateway is not configured on this system.%>
|
|
|
|
|
2010-12-05 19:06:18 +00:00
|
|
|
<% end %>
|
2011-11-09 18:12:25 +00:00
|
|
|
|
2010-12-05 19:06:18 +00:00
|
|
|
<%+footer%>
|