status.htm 1.3 KB
Newer Older
P
p4u 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
<%+header%>
<link rel="stylesheet" type="text/css" href="/luci-static/resources/bmx6/style.css" />

<img src="<%=resource%>/bmx6/bmx6logo.png" />

Bmx6 is a routing protocol for Linux based operating systems. Visit <a href="http://bmx6.net">bmx6.net</a> for more info.

<br />
<br />

<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%>