Merge pull request #278 from nmav/ocserv
[project/luci.git] / modules / admin-full / luasrc / view / admin_network / iface_status.htm
1 <%+cbi/valueheader%>
2
3 <script type="text/javascript">//<![CDATA[
4 XHR.poll(5, '<%=luci.dispatcher.build_url("admin", "network", "iface_status", self.network)%>', null,
5 function(x, ifc)
6 {
7 if (ifc && (ifc = ifc[0]))
8 {
9 var html = '';
10
11 var s = document.getElementById('<%=self.option%>-ifc-signal');
12 if (s)
13 s.innerHTML = String.format(
14 '<img src="<%=resource%>/icons/%s%s.png" style="width:16px; height:16px" />' +
15 '<br /><small>%s</small>',
16 ifc.type, ifc.is_up ? '' : '_disabled',
17 ifc.name
18 );
19
20 var d = document.getElementById('<%=self.option%>-ifc-description');
21 if (d && ifc.ifname)
22 {
23 if (ifc.is_up)
24 {
25 html += String.format('<strong><%:Uptime%>:</strong> %t<br />', ifc.uptime);
26 }
27
28 if (ifc.type != 'tunnel')
29 {
30 html += String.format('<strong><%:MAC-Address%>:</strong> %s<br />', ifc.macaddr);
31 }
32
33 html += String.format(
34 '<strong><%:RX%></strong>: %.2mB (%d <%:Pkts.%>)<br />' +
35 '<strong><%:TX%></strong>: %.2mB (%d <%:Pkts.%>)<br />',
36 ifc.rx_bytes, ifc.rx_packets,
37 ifc.tx_bytes, ifc.tx_packets
38 );
39
40 if (ifc.ipaddrs && ifc.ipaddrs.length)
41 {
42 html += '<strong><%:IPv4%>: </strong>';
43
44 for (var i = 0; i < ifc.ipaddrs.length; i++)
45 html += String.format(
46 '%s%s/%d',
47 i ? ', ' : '',
48 ifc.ipaddrs[i].addr,
49 ifc.ipaddrs[i].prefix
50 );
51
52 html += '<br />';
53 }
54
55 if (ifc.ip6addrs && ifc.ip6addrs.length)
56 {
57 html += '<strong><%:IPv6%>: </strong>';
58
59 for (var i = 0; i < ifc.ip6addrs.length; i++)
60 html += String.format(
61 '%s%s/%d',
62 i ? ', ' : '',
63 ifc.ip6addrs[i].addr.toUpperCase(),
64 ifc.ip6addrs[i].prefix
65 );
66
67 html += '<br />';
68 }
69
70 d.innerHTML = html;
71 }
72 else if (d)
73 {
74 d.innerHTML = '<em><%:Interface not present or not connected yet.%></em>';
75 }
76 }
77 }
78 );
79 //]]></script>
80
81 <table>
82 <tr class="cbi-section-table">
83 <td></td>
84 <td class="cbi-value-field" style="min-width:16px; padding:3px; text-align:center" id="<%=self.option%>-ifc-signal">
85 <img src="<%=resource%>/icons/ethernet_disabled.png" style="width:16px; height:16px" /><br />
86 <small>?</small>
87 </td>
88 <td class="cbi-value-field" style="vertical-align:middle; text-align:left; padding:3px" id="<%=self.option%>-ifc-description">
89 <em><%:Collecting data...%></em>
90 </td>
91 </tr>
92 </table>
93
94 <%+cbi/valuefooter%>