8c3b1abcc756eceede506f8ed3b34d69b4fe34c5
[project/luci.git] / modules / luci-mod-admin-full / luasrc / view / admin_network / iface_status.htm
1 <%+cbi/valueheader%>
2
3 <script type="text/javascript">//<![CDATA[
4         XHR.poll(5, '<%=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.macaddr)
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                                                 for (var i = 0; i < ifc.ipaddrs.length; i++)
43                                                         html += String.format(
44                                                                 '<strong><%:IPv4%>:</strong> %s<br />',
45                                                                 ifc.ipaddrs[i]
46                                                         );
47                                         }
48
49                                         if (ifc.ip6addrs && ifc.ip6addrs.length)
50                                         {
51                                                 for (var i = 0; i < ifc.ip6addrs.length; i++)
52                                                         html += String.format(
53                                                                 '<strong><%:IPv6%>:</strong> %s<br />',
54                                                                 ifc.ip6addrs[i]
55                                                         );
56                                         }
57
58                                         d.innerHTML = html;
59                                 }
60                                 else if (d)
61                                 {
62                                         d.innerHTML = '<em><%:Interface not present or not connected yet.%></em>';
63                                 }
64                         }
65                 }
66         );
67 //]]></script>
68
69 <table>
70         <tr class="cbi-section-table">
71                 <td></td>
72                 <td class="cbi-value-field" style="min-width:16px; padding:3px; text-align:center" id="<%=self.option%>-ifc-signal">
73                         <img src="<%=resource%>/icons/ethernet_disabled.png" style="width:16px; height:16px" /><br />
74                         <small>?</small>
75                 </td>
76                 <td class="cbi-value-field" style="vertical-align:middle; text-align:left; padding:3px" id="<%=self.option%>-ifc-description">
77                         <em><%:Collecting data...%></em>
78                 </td>
79         </tr>
80 </table>
81
82 <%+cbi/valuefooter%>