2010-11-18 01:34:56 +00:00
|
|
|
<script type="text/javascript">//<![CDATA[
|
2015-10-07 17:07:36 +00:00
|
|
|
XHR.poll(5, '<%=url('admin/network/dhcplease_status')%>', null,
|
2011-09-26 00:24:34 +00:00
|
|
|
function(x, st)
|
|
|
|
{
|
|
|
|
var tb = document.getElementById('lease_status_table');
|
2012-08-17 15:06:46 +00:00
|
|
|
if (st && st[0] && tb)
|
2010-11-07 23:31:19 +00:00
|
|
|
{
|
2011-09-26 00:24:34 +00:00
|
|
|
/* clear all rows */
|
|
|
|
while( tb.rows.length > 1 )
|
|
|
|
tb.deleteRow(1);
|
|
|
|
|
2012-08-17 15:06:46 +00:00
|
|
|
for( var i = 0; i < st[0].length; i++ )
|
2010-11-07 23:31:19 +00:00
|
|
|
{
|
2011-09-26 00:24:34 +00:00
|
|
|
var timestr;
|
2010-11-07 23:31:19 +00:00
|
|
|
|
2012-08-17 15:06:46 +00:00
|
|
|
if (st[0][i].expires <= 0)
|
2010-11-07 23:31:19 +00:00
|
|
|
{
|
2011-09-26 00:24:34 +00:00
|
|
|
timestr = '<em><%:expired%></em>';
|
2010-11-07 23:31:19 +00:00
|
|
|
}
|
2011-09-26 00:24:34 +00:00
|
|
|
else
|
2010-11-07 23:31:19 +00:00
|
|
|
{
|
2012-08-17 15:06:46 +00:00
|
|
|
timestr = String.format('%t', st[0][i].expires);
|
2010-11-07 23:31:19 +00:00
|
|
|
}
|
2011-09-26 00:24:34 +00:00
|
|
|
|
|
|
|
var tr = tb.insertRow(-1);
|
|
|
|
tr.className = 'cbi-section-table-row cbi-rowstyle-' + ((i % 2) + 1);
|
|
|
|
|
2012-08-17 15:06:46 +00:00
|
|
|
tr.insertCell(-1).innerHTML = st[0][i].hostname ? st[0][i].hostname : '?';
|
|
|
|
tr.insertCell(-1).innerHTML = st[0][i].ipaddr;
|
|
|
|
tr.insertCell(-1).innerHTML = st[0][i].macaddr;
|
2011-09-26 00:24:34 +00:00
|
|
|
tr.insertCell(-1).innerHTML = timestr;
|
2010-11-07 23:31:19 +00:00
|
|
|
}
|
2010-11-17 15:23:21 +00:00
|
|
|
|
2011-09-26 00:24:34 +00:00
|
|
|
if( tb.rows.length == 1 )
|
|
|
|
{
|
|
|
|
var tr = tb.insertRow(-1);
|
|
|
|
tr.className = 'cbi-section-table-row';
|
|
|
|
|
|
|
|
var td = tr.insertCell(-1);
|
|
|
|
td.colSpan = 4;
|
|
|
|
td.innerHTML = '<em><br /><%:There are no active leases.%></em>';
|
|
|
|
}
|
2010-11-07 23:31:19 +00:00
|
|
|
}
|
2012-08-17 15:06:46 +00:00
|
|
|
|
|
|
|
var tb6 = document.getElementById('lease6_status_table');
|
|
|
|
if (st && st[1] && tb6)
|
|
|
|
{
|
|
|
|
tb6.parentNode.style.display = 'block';
|
|
|
|
|
|
|
|
/* clear all rows */
|
|
|
|
while( tb6.rows.length > 1 )
|
|
|
|
tb6.deleteRow(1);
|
|
|
|
|
|
|
|
for( var i = 0; i < st[1].length; i++ )
|
|
|
|
{
|
|
|
|
var timestr;
|
|
|
|
|
|
|
|
if (st[1][i].expires <= 0)
|
|
|
|
{
|
|
|
|
timestr = '<em><%:expired%></em>';
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
timestr = String.format('%t', st[1][i].expires);
|
|
|
|
}
|
|
|
|
|
|
|
|
var tr = tb6.insertRow(-1);
|
|
|
|
tr.className = 'cbi-section-table-row cbi-rowstyle-' + ((i % 2) + 1);
|
|
|
|
|
|
|
|
tr.insertCell(-1).innerHTML = st[1][i].hostname ? st[1][i].hostname : '?';
|
|
|
|
tr.insertCell(-1).innerHTML = st[1][i].ip6addr;
|
|
|
|
tr.insertCell(-1).innerHTML = st[1][i].duid;
|
|
|
|
tr.insertCell(-1).innerHTML = timestr;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( tb6.rows.length == 1 )
|
|
|
|
{
|
|
|
|
var tr = tb6.insertRow(-1);
|
|
|
|
tr.className = 'cbi-section-table-row';
|
|
|
|
|
|
|
|
var td = tr.insertCell(-1);
|
|
|
|
td.colSpan = 4;
|
|
|
|
td.innerHTML = '<em><br /><%:There are no active leases.%></em>';
|
|
|
|
}
|
|
|
|
}
|
2011-09-26 00:24:34 +00:00
|
|
|
}
|
|
|
|
);
|
2010-11-18 01:34:56 +00:00
|
|
|
//]]></script>
|
2010-11-07 23:31:19 +00:00
|
|
|
|
|
|
|
<fieldset class="cbi-section">
|
2012-08-17 15:06:46 +00:00
|
|
|
<legend><%:Active DHCP Leases%></legend>
|
2010-11-07 23:31:19 +00:00
|
|
|
<table class="cbi-section-table" id="lease_status_table">
|
|
|
|
<tr class="cbi-section-table-titles">
|
|
|
|
<th class="cbi-section-table-cell"><%:Hostname%></th>
|
|
|
|
<th class="cbi-section-table-cell"><%:IPv4-Address%></th>
|
|
|
|
<th class="cbi-section-table-cell"><%:MAC-Address%></th>
|
|
|
|
<th class="cbi-section-table-cell"><%:Leasetime remaining%></th>
|
|
|
|
</tr>
|
|
|
|
<tr class="cbi-section-table-row">
|
2010-11-08 09:29:48 +00:00
|
|
|
<td colspan="4"><em><br /><%:Collecting data...%></em></td>
|
2010-11-07 23:31:19 +00:00
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
</fieldset>
|
2012-08-17 15:06:46 +00:00
|
|
|
|
|
|
|
<fieldset class="cbi-section" style="display:none">
|
|
|
|
<legend><%:Active DHCPv6 Leases%></legend>
|
|
|
|
<table class="cbi-section-table" id="lease6_status_table">
|
|
|
|
<tr class="cbi-section-table-titles">
|
|
|
|
<th class="cbi-section-table-cell"><%:Hostname%></th>
|
|
|
|
<th class="cbi-section-table-cell"><%:IPv6-Address%></th>
|
|
|
|
<th class="cbi-section-table-cell"><%:DUID%></th>
|
|
|
|
<th class="cbi-section-table-cell"><%:Leasetime remaining%></th>
|
|
|
|
</tr>
|
|
|
|
<tr class="cbi-section-table-row">
|
|
|
|
<td colspan="4"><em><br /><%:Collecting data...%></em></td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
</fieldset>
|