<%# LuCI - Lua Configuration Interface Copyright 2008 Steven Barth Copyright 2008 Jo-Philipp Wich Copyright 2011 Manuel Munz 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 -%> <% local i = 1 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%>

<%:SmartGW announcements%>

<% if has_smartgw then %>
<%:Overview of smart gateways in this network%> <% for k, gw in ipairs(gws) do %> <% i = ((i % 2) + 1) end %>
<%:Gateway%> <%:Status%> <%:ETX%> <%:Hops%> <%:Uplink%> <%:Downlink%> <%:IPv4%> <%:IPv6%> <%:Prefix%>
/cgi-bin-status.html"><%=gw["Gateway IP"]%> <%=gw.Status%> <%=gw.ETX%> <%=gw.Hopcnt%> <%=gw.Uplink%> <%=gw.Downlnk%> <%=gw.IPv4%> <%=gw.IPv6%> <%=gw.Prefix%>
<% else %> <%:SmartGateway is not configured on this system.%> <% end %> <%+footer%>