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