62 lines
1.1 KiB
HTML
62 lines
1.1 KiB
HTML
<%+header%>
|
|
<link rel="stylesheet" type="text/css" href="/luci-static/resources/bmx6/style.css" />
|
|
|
|
<h2>Status of bmx6</h2>
|
|
|
|
<table>
|
|
<tr>
|
|
<th>Version</th>
|
|
<th>Compatibility</th>
|
|
<th>CodeVersion</th>
|
|
<th>Global Id</th>
|
|
<th>Primary Ip</th>
|
|
<th>Local Id</th>
|
|
<th>Uptime</th>
|
|
<th>CPU</th>
|
|
<th>Nodes</th>
|
|
</tr>
|
|
<tr>
|
|
<td><%=status.version%></td>
|
|
<td><%=status.compatibility%></td>
|
|
<td><%=status.codeVersion%></td>
|
|
<td><%=status.globalId%>/<%=status.rateMax%></td>
|
|
<td><%=status.primaryIp%></td>
|
|
<td><%=status.myLocalId%></td>
|
|
<td><%=status.uptime%></td>
|
|
<td><%=status.cpu%></td>
|
|
<td><%=status.nodes%></td>
|
|
</tr>
|
|
</table>
|
|
|
|
<br />
|
|
<br />
|
|
|
|
<h2>Status of interfaces</h2>
|
|
<table>
|
|
<tr>
|
|
<th>Name</th>
|
|
<th>State</th>
|
|
<th>Type</th>
|
|
<th>Rate (Min/Max)</th>
|
|
<th>Local IP</th>
|
|
<th>Global IP</th>
|
|
<th>Multicast IP</th>
|
|
<th>Primary</th>
|
|
</tr>
|
|
<% for i,v in ipairs(interfaces) do %>
|
|
<tr>
|
|
<td><%=v.devName%></td>
|
|
<td><%=v.state%></td>
|
|
<td><%=v.type%></td>
|
|
<td><%=v.rateMin%>/<%=v.rateMax%></td>
|
|
<td><%=v.llocalIp%></td>
|
|
<td><%=v.globalIp%></td>
|
|
<td><%=v.multicastIp%></td>
|
|
<td><%=v.primary%></td>
|
|
</tr>
|
|
<%end%>
|
|
</table>
|
|
|
|
<br />
|
|
|
|
<%+footer%>
|