mod-admin-full: Add IPv6 Prefix Delegation information to Status Pages
[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                                         if (ifc.ip6prefix)
59                                         {
60                                                 html += String.format('<strong><%:IPv6-PD%>:</strong> %s<br />', ifc.ip6prefix);
61                                         }
62
63                                         d.innerHTML = html;
64                                 }
65                                 else if (d)
66                                 {
67                                         d.innerHTML = '<em><%:Interface not present or not connected yet.%></em>';
68                                 }
69                         }
70                 }
71         );
72 //]]></script>
73
74 <table>
75         <tr class="cbi-section-table">
76                 <td></td>
77                 <td class="cbi-value-field" style="min-width:16px; padding:3px; text-align:center" id="<%=self.option%>-ifc-signal">
78                         <img src="<%=resource%>/icons/ethernet_disabled.png" style="width:16px; height:16px" /><br />
79                         <small>?</small>
80                 </td>
81                 <td class="cbi-value-field" style="vertical-align:middle; text-align:left; padding:3px" id="<%=self.option%>-ifc-description">
82                         <em><%:Collecting data...%></em>
83                 </td>
84         </tr>
85 </table>
86
87 <%+cbi/valuefooter%>