1 |
4d875b4f
|
Scott Ullrich
|
<?php
|
2 |
b46bfcf5
|
Bill Marquette
|
/* $Id$ */
|
3 |
5b237745
|
Scott Ullrich
|
/*
|
4 |
|
|
diag_dhcp_leases.php
|
5 |
4d875b4f
|
Scott Ullrich
|
Copyright (C) 2004 Scott Ullrich
|
6 |
5b237745
|
Scott Ullrich
|
All rights reserved.
|
7 |
4d875b4f
|
Scott Ullrich
|
|
8 |
|
|
originially part of m0n0wall (http://m0n0.ch/wall)
|
9 |
|
|
Copyright (C) 2003-2004 Manuel Kasper <mk@neon1.net>.
|
10 |
|
|
All rights reserved.
|
11 |
|
|
|
12 |
5b237745
|
Scott Ullrich
|
Redistribution and use in source and binary forms, with or without
|
13 |
|
|
modification, are permitted provided that the following conditions are met:
|
14 |
4d875b4f
|
Scott Ullrich
|
|
15 |
5b237745
|
Scott Ullrich
|
1. Redistributions of source code must retain the above copyright notice,
|
16 |
|
|
this list of conditions and the following disclaimer.
|
17 |
4d875b4f
|
Scott Ullrich
|
|
18 |
5b237745
|
Scott Ullrich
|
2. Redistributions in binary form must reproduce the above copyright
|
19 |
|
|
notice, this list of conditions and the following disclaimer in the
|
20 |
|
|
documentation and/or other materials provided with the distribution.
|
21 |
4d875b4f
|
Scott Ullrich
|
|
22 |
5b237745
|
Scott Ullrich
|
THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
23 |
|
|
INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
|
24 |
|
|
AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
25 |
|
|
AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
|
26 |
|
|
OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
27 |
|
|
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
28 |
|
|
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
29 |
|
|
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
30 |
|
|
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
31 |
|
|
POSSIBILITY OF SUCH DAMAGE.
|
32 |
|
|
*/
|
33 |
|
|
|
34 |
|
|
require("guiconfig.inc");
|
35 |
b63695db
|
Scott Ullrich
|
|
36 |
|
|
$pgtitle = "Diagnostics: DHCP leases";
|
37 |
|
|
include("head.inc");
|
38 |
|
|
|
39 |
5b237745
|
Scott Ullrich
|
?>
|
40 |
|
|
|
41 |
|
|
<body link="#0000CC" vlink="#0000CC" alink="#0000CC">
|
42 |
5fd0b016
|
Scott Ullrich
|
<script src="/javascript/sorttable.js"></script>
|
43 |
5b237745
|
Scott Ullrich
|
<?php include("fbegin.inc"); ?>
|
44 |
310b2c06
|
Bill Marquette
|
<p class="pgtitle"><?=$pgtitle?></p>
|
45 |
5b237745
|
Scott Ullrich
|
<?php
|
46 |
|
|
|
47 |
|
|
function leasecmp($a, $b) {
|
48 |
5742ca5e
|
Scott Ullrich
|
return strcmp($a[$_GET['order']], $b[$_GET['order']]);
|
49 |
|
|
}
|
50 |
|
|
|
51 |
|
|
function adjust_gmt($dt) {
|
52 |
|
|
$ts = strtotime($dt . " GMT");
|
53 |
|
|
return strftime("%Y/%m/%d %H:%M:%S", $ts);
|
54 |
5b237745
|
Scott Ullrich
|
}
|
55 |
|
|
|
56 |
428d20c4
|
Seth Mos
|
function remove_duplicate($array, $field)
|
57 |
|
|
{
|
58 |
|
|
foreach ($array as $sub)
|
59 |
|
|
$cmp[] = $sub[$field];
|
60 |
|
|
$unique = array_unique($cmp);
|
61 |
|
|
foreach ($unique as $k => $rien)
|
62 |
|
|
$new[] = $array[$k];
|
63 |
|
|
return $new;
|
64 |
5b237745
|
Scott Ullrich
|
}
|
65 |
|
|
|
66 |
428d20c4
|
Seth Mos
|
$leasesfile = "{$g['dhcpd_chroot_path']}/var/db/dhcpd.leases";
|
67 |
|
|
$awk = "/usr/bin/awk";
|
68 |
|
|
/* this pattern sticks comments into a single array item */
|
69 |
|
|
$cleanpattern = "'{ gsub(\"#.*\", \"\");} { gsub(\";\", \"\"); print;}'";
|
70 |
|
|
/* We then split the leases file by } */
|
71 |
b4f7282c
|
Seth Mos
|
$splitpattern = "'BEGIN { RS=\"}\";} {for (i=1; i<=NF; i++) printf \"%s \", \$i; printf \"}\\n\";}'";
|
72 |
5b237745
|
Scott Ullrich
|
|
73 |
428d20c4
|
Seth Mos
|
/* stuff the leases file in a proper format into a array by line */
|
74 |
|
|
exec("cat {$leasesfile} | {$awk} {$cleanpattern} | {$awk} {$splitpattern}", $leases_content);
|
75 |
|
|
$leases_count = count($leases_content);
|
76 |
|
|
|
77 |
|
|
$pools = array();
|
78 |
5b237745
|
Scott Ullrich
|
$leases = array();
|
79 |
|
|
$i = 0;
|
80 |
b4f7282c
|
Seth Mos
|
$l = 0;
|
81 |
|
|
$p = 0;
|
82 |
5b237745
|
Scott Ullrich
|
|
83 |
|
|
// Put everything together again
|
84 |
428d20c4
|
Seth Mos
|
while($i < $leases_count) {
|
85 |
|
|
/* split the line by space */
|
86 |
|
|
$data = explode(" ", $leases_content[$i]);
|
87 |
|
|
/* walk the fields */
|
88 |
|
|
$f = 0;
|
89 |
|
|
$fcount = count($data);
|
90 |
b4f7282c
|
Seth Mos
|
/* with less then 20 fields there is nothing useful */
|
91 |
|
|
if($fcount < 20) {
|
92 |
|
|
$i++;
|
93 |
|
|
continue;
|
94 |
|
|
}
|
95 |
428d20c4
|
Seth Mos
|
while($f < $fcount) {
|
96 |
b4f7282c
|
Seth Mos
|
switch($data[$f]) {
|
97 |
|
|
case "failover":
|
98 |
|
|
$pools[$p]['name'] = $data[$f+2];
|
99 |
|
|
$pools[$p]['mystate'] = $data[$f+7];
|
100 |
|
|
$pools[$p]['peerstate'] = $data[$f+14];
|
101 |
|
|
$pools[$p]['mydate'] = $data[$f+10];
|
102 |
|
|
$pools[$p]['mydate'] .= " " . $data[$f+11];
|
103 |
|
|
$pools[$p]['peerdate'] = $data[$f+17];
|
104 |
|
|
$pools[$p]['peerdate'] .= " " . $data[$f+18];
|
105 |
|
|
$p++;
|
106 |
|
|
$i++;
|
107 |
|
|
continue 3;
|
108 |
|
|
case "lease":
|
109 |
|
|
$leases[$l]['ip'] = $data[$f+1];
|
110 |
|
|
$leases[$l]['type'] = "dynamic";
|
111 |
|
|
$f = $f+2;
|
112 |
|
|
break;
|
113 |
|
|
case "starts":
|
114 |
|
|
$leases[$l]['start'] = $data[$f+2];
|
115 |
|
|
$leases[$l]['start'] .= " " . $data[$f+3];
|
116 |
|
|
$f = $f+3;
|
117 |
|
|
break;
|
118 |
|
|
case "ends":
|
119 |
|
|
$leases[$l]['end'] = $data[$f+2];
|
120 |
|
|
$leases[$l]['end'] .= " " . $data[$f+3];
|
121 |
|
|
$f = $f+3;
|
122 |
|
|
break;
|
123 |
|
|
case "tstp":
|
124 |
|
|
$f = $f+3;
|
125 |
|
|
break;
|
126 |
|
|
case "tsfp":
|
127 |
|
|
$f = $f+3;
|
128 |
|
|
break;
|
129 |
|
|
case "atsfp":
|
130 |
|
|
$f = $f+3;
|
131 |
|
|
break;
|
132 |
|
|
case "cltt":
|
133 |
|
|
$f = $f+3;
|
134 |
|
|
break;
|
135 |
|
|
case "binding":
|
136 |
428d20c4
|
Seth Mos
|
switch($data[$f+2]) {
|
137 |
b4f7282c
|
Seth Mos
|
case "active":
|
138 |
|
|
$leases[$l]['act'] = "active";
|
139 |
428d20c4
|
Seth Mos
|
break;
|
140 |
b4f7282c
|
Seth Mos
|
case "free":
|
141 |
|
|
$leases[$l]['act'] = "expired";
|
142 |
|
|
$leases[$l]['online'] = "offline";
|
143 |
428d20c4
|
Seth Mos
|
break;
|
144 |
b4f7282c
|
Seth Mos
|
case "backup":
|
145 |
|
|
$leases[$l]['act'] = "reserved";
|
146 |
|
|
$leases[$l]['online'] = "offline";
|
147 |
428d20c4
|
Seth Mos
|
break;
|
148 |
|
|
}
|
149 |
b4f7282c
|
Seth Mos
|
$f = $f+1;
|
150 |
|
|
break;
|
151 |
|
|
case "next":
|
152 |
|
|
/* skip the next binding statement */
|
153 |
|
|
$f = $f+3;
|
154 |
|
|
break;
|
155 |
|
|
case "hardware":
|
156 |
|
|
$leases[$l]['mac'] = $data[$f+2];
|
157 |
|
|
/* check if it's online and the lease is active */
|
158 |
|
|
if($leases[$l]['act'] == "active") {
|
159 |
|
|
$online = exec("/usr/sbin/arp -an |/usr/bin/awk '/{$leases[$l]['ip']}/ {print}'|wc -l");
|
160 |
|
|
if ($online == 1) {
|
161 |
|
|
$leases[$l]['online'] = 'online';
|
162 |
|
|
} else {
|
163 |
|
|
$leases[$l]['online'] = 'offline';
|
164 |
|
|
}
|
165 |
14cf741d
|
Scott Ullrich
|
}
|
166 |
b4f7282c
|
Seth Mos
|
$f = $f+2;
|
167 |
|
|
break;
|
168 |
|
|
case "client-hostname":
|
169 |
|
|
if($data[$f+1] <> "") {
|
170 |
|
|
$leases[$l]['hostname'] = preg_replace('/"/','',$data[$f+1]);
|
171 |
|
|
} else {
|
172 |
|
|
$hostname = gethostbyaddr($leases[$l]['ip']);
|
173 |
|
|
if($hostname <> "") {
|
174 |
|
|
$leases[$l]['hostname'] = $hostname;
|
175 |
|
|
}
|
176 |
|
|
}
|
177 |
|
|
$f = $f+1;
|
178 |
|
|
break;
|
179 |
|
|
case "uid":
|
180 |
|
|
$f = $f+1;
|
181 |
|
|
break;
|
182 |
14cf741d
|
Scott Ullrich
|
}
|
183 |
428d20c4
|
Seth Mos
|
$f++;
|
184 |
14cf741d
|
Scott Ullrich
|
}
|
185 |
b4f7282c
|
Seth Mos
|
$l++;
|
186 |
428d20c4
|
Seth Mos
|
$i++;
|
187 |
5b237745
|
Scott Ullrich
|
}
|
188 |
428d20c4
|
Seth Mos
|
|
189 |
|
|
/* remove duplicate items by mac address */
|
190 |
9255cbc5
|
Seth Mos
|
if(count($leases) > 0) {
|
191 |
b4f7282c
|
Seth Mos
|
$leases = remove_duplicate($leases,"ip");
|
192 |
9255cbc5
|
Seth Mos
|
}
|
193 |
b4f7282c
|
Seth Mos
|
|
194 |
9255cbc5
|
Seth Mos
|
if(count($pools) > 0) {
|
195 |
|
|
$pools = remove_duplicate($pools,"name");
|
196 |
|
|
asort($pools);
|
197 |
|
|
}
|
198 |
428d20c4
|
Seth Mos
|
|
199 |
9252431c
|
Scott Ullrich
|
foreach($config['interfaces'] as $ifname => $ifarr) {
|
200 |
|
|
if (is_array($config['dhcpd'][$ifname]['staticmap'])) {
|
201 |
|
|
foreach($config['dhcpd'][$ifname]['staticmap'] as $static) {
|
202 |
|
|
$slease = array();
|
203 |
|
|
$slease['ip'] = $static['ipaddr'];
|
204 |
|
|
$slease['type'] = "static";
|
205 |
|
|
$slease['mac'] = $static['mac'];
|
206 |
|
|
$slease['start'] = gmdate("M d Y H:i:s", time());
|
207 |
|
|
$slease['end'] = gmdate("M d Y H:i:s", time());
|
208 |
|
|
$slease['end'] = gmdate("M d Y H:i:s", strtotime('+5 minutes'));
|
209 |
c5733422
|
Scott Ullrich
|
$slease['hostname'] = htmlentities($static['hostname']);
|
210 |
9252431c
|
Scott Ullrich
|
$slease['act'] = "static";
|
211 |
|
|
$online = exec("/usr/sbin/arp -an |/usr/bin/grep {$slease['mac']}| /usr/bin/wc -l|/usr/bin/awk '{print $1;}'");
|
212 |
|
|
if ($online == 1) {
|
213 |
|
|
$slease['online'] = 'online';
|
214 |
|
|
} else {
|
215 |
|
|
$slease['online'] = 'offline';
|
216 |
|
|
}
|
217 |
|
|
$leases[] = $slease;
|
218 |
|
|
}
|
219 |
|
|
}
|
220 |
|
|
}
|
221 |
5b237745
|
Scott Ullrich
|
|
222 |
|
|
if ($_GET['order'])
|
223 |
|
|
usort($leases, "leasecmp");
|
224 |
428d20c4
|
Seth Mos
|
|
225 |
|
|
?>
|
226 |
|
|
|
227 |
|
|
<?php
|
228 |
|
|
/* only print pool status when we have one */
|
229 |
|
|
if(count($pools) > 0) {
|
230 |
5b237745
|
Scott Ullrich
|
?>
|
231 |
428d20c4
|
Seth Mos
|
<table class="sortable" id="sortabletable" name="sortabletable" width="100%" border="0" cellpadding="0" cellspacing="0">
|
232 |
|
|
<tr>
|
233 |
|
|
<td class="listhdrr">Failover Group</a></td>
|
234 |
|
|
<td class="listhdrr">My State</a></td>
|
235 |
|
|
<td class="listhdrr">Since</a></td>
|
236 |
|
|
<td class="listhdrr">Peer State</a></td>
|
237 |
|
|
<td class="listhdrr">Since</a></td>
|
238 |
|
|
</tr>
|
239 |
|
|
<?php
|
240 |
|
|
foreach ($pools as $data) {
|
241 |
|
|
echo "<tr>\n";
|
242 |
|
|
echo "<td class=\"listlr\">{$fspans}{$data['name']}{$fspane} </td>\n";
|
243 |
|
|
echo "<td class=\"listr\">{$fspans}{$data['mystate']}{$fspane} </td>\n";
|
244 |
|
|
echo "<td class=\"listr\">{$fspans}" . adjust_gmt($data['mydate']) . "{$fspane} </td>\n";
|
245 |
|
|
echo "<td class=\"listr\">{$fspans}{$data['peerstate']}{$fspane} </td>\n";
|
246 |
|
|
echo "<td class=\"listr\">{$fspans}" . adjust_gmt($data['peerdate']) . "{$fspane} </td>\n";
|
247 |
|
|
echo "<td class=\"list\" valign=\"middle\" width=\"17\"> </td>\n";
|
248 |
|
|
echo "<td class=\"list\" valign=\"middle\" width=\"17\"> </td>\n";
|
249 |
|
|
echo "</tr>\n";
|
250 |
|
|
}
|
251 |
|
|
|
252 |
|
|
?>
|
253 |
|
|
</table>
|
254 |
|
|
|
255 |
|
|
<?php
|
256 |
|
|
/* only print pool status when we have one */
|
257 |
|
|
}
|
258 |
|
|
?>
|
259 |
|
|
|
260 |
|
|
<p>
|
261 |
|
|
|
262 |
5fd0b016
|
Scott Ullrich
|
<table class="sortable" id="sortabletable" name="sortabletable" width="100%" border="0" cellpadding="0" cellspacing="0">
|
263 |
5b237745
|
Scott Ullrich
|
<tr>
|
264 |
|
|
<td class="listhdrr"><a href="?all=<?=$_GET['all'];?>&order=ip">IP address</a></td>
|
265 |
|
|
<td class="listhdrr"><a href="?all=<?=$_GET['all'];?>&order=mac">MAC address</a></td>
|
266 |
|
|
<td class="listhdrr"><a href="?all=<?=$_GET['all'];?>&order=hostname">Hostname</a></td>
|
267 |
|
|
<td class="listhdrr"><a href="?all=<?=$_GET['all'];?>&order=start">Start</a></td>
|
268 |
9252431c
|
Scott Ullrich
|
<td class="listhdrr"><a href="?all=<?=$_GET['all'];?>&order=end">End</a></td>
|
269 |
|
|
<td class="listhdr"><a href="?all=<?=$_GET['all'];?>&order=online">Online</a></td>
|
270 |
|
|
<td class="listhdr"><a href="?all=<?=$_GET['all'];?>&order=act">Lease Type</a></td>
|
271 |
5b237745
|
Scott Ullrich
|
</tr>
|
272 |
|
|
<?php
|
273 |
|
|
foreach ($leases as $data) {
|
274 |
9252431c
|
Scott Ullrich
|
if (($data['act'] == "active") || ($data['act'] == "static") || ($_GET['all'] == 1)) {
|
275 |
|
|
if ($data['act'] != "active" && $data['act'] != "static") {
|
276 |
5b237745
|
Scott Ullrich
|
$fspans = "<span class=\"gray\">";
|
277 |
|
|
$fspane = "</span>";
|
278 |
|
|
} else {
|
279 |
|
|
$fspans = $fspane = "";
|
280 |
|
|
}
|
281 |
69981800
|
Scott Ullrich
|
$lip = ip2long($data['ip']);
|
282 |
5b2177e4
|
Scott Ullrich
|
if ($data['act'] == "static") {
|
283 |
|
|
foreach ($config['dhcpd'] as $dhcpif => $dhcpifconf) {
|
284 |
0e616855
|
Scott Ullrich
|
if(is_array($dhcpifconf['staticmap'])) {
|
285 |
|
|
foreach ($dhcpifconf['staticmap'] as $staticent) {
|
286 |
|
|
if ($data['ip'] == $staticent['ipaddr']) {
|
287 |
|
|
$data['if'] = $dhcpif;
|
288 |
|
|
break;
|
289 |
|
|
}
|
290 |
5b2177e4
|
Scott Ullrich
|
}
|
291 |
|
|
}
|
292 |
|
|
/* exit as soon as we have an interface */
|
293 |
|
|
if ($data['if'] != "")
|
294 |
|
|
break;
|
295 |
|
|
}
|
296 |
|
|
} else {
|
297 |
|
|
foreach ($config['dhcpd'] as $dhcpif => $dhcpifconf) {
|
298 |
|
|
if (($lip >= ip2long($dhcpifconf['range']['from'])) && ($lip <= ip2long($dhcpifconf['range']['to']))) {
|
299 |
|
|
$data['if'] = $dhcpif;
|
300 |
|
|
break;
|
301 |
|
|
}
|
302 |
|
|
}
|
303 |
69981800
|
Scott Ullrich
|
}
|
304 |
5b237745
|
Scott Ullrich
|
echo "<tr>\n";
|
305 |
5742ca5e
|
Scott Ullrich
|
echo "<td class=\"listlr\">{$fspans}{$data['ip']}{$fspane} </td>\n";
|
306 |
9252431c
|
Scott Ullrich
|
if ($data['online'] != "online") {
|
307 |
37c0c49b
|
Scott Ullrich
|
echo "<td class=\"listr\">{$fspans}<a href=\"services_wol.php?if={$data['if']}&mac={$data['mac']}\" title=\"send Wake on Lan packet to mac\">{$data['mac']}</a>{$fspane} </td>\n";
|
308 |
|
|
} else {
|
309 |
9252431c
|
Scott Ullrich
|
echo "<td class=\"listr\">{$fspans}{$data['mac']}{$fspane} </td>\n";
|
310 |
37c0c49b
|
Scott Ullrich
|
}
|
311 |
c5733422
|
Scott Ullrich
|
echo "<td class=\"listr\">{$fspans}" . htmlentities($data['hostname']) . "{$fspane} </td>\n";
|
312 |
5742ca5e
|
Scott Ullrich
|
echo "<td class=\"listr\">{$fspans}" . adjust_gmt($data['start']) . "{$fspane} </td>\n";
|
313 |
|
|
echo "<td class=\"listr\">{$fspans}" . adjust_gmt($data['end']) . "{$fspane} </td>\n";
|
314 |
9252431c
|
Scott Ullrich
|
echo "<td class=\"listr\">{$fspans}{$data['online']}{$fspane} </td>\n";
|
315 |
|
|
echo "<td class=\"listr\">{$fspans}{$data['act']}{$fspane} </td>\n";
|
316 |
|
|
|
317 |
|
|
if ($data['type'] == "dynamic") {
|
318 |
6a01ea44
|
Bill Marquette
|
echo "<td class=\"list\" valign=\"middle\"><a href=\"services_dhcp_edit.php?if={$data['if']}&mac={$data['mac']}&hostname={$data['hostname']}\">";
|
319 |
9252431c
|
Scott Ullrich
|
echo "<img src=\"/themes/{$g['theme']}/images/icons/icon_plus.gif\" width=\"17\" height=\"17\" border=\"0\" title=\"add a static mapping for this MAC address\"></a></td>\n";
|
320 |
|
|
} else {
|
321 |
|
|
echo "<td class=\"list\" valign=\"middle\">";
|
322 |
b86e64c1
|
Scott Ullrich
|
echo "<img src=\"/themes/{$g['theme']}/images/icons/icon_plus_mo.gif\" width=\"17\" height=\"17\" border=\"0\"></td>\n";
|
323 |
9252431c
|
Scott Ullrich
|
}
|
324 |
|
|
|
325 |
7477df4f
|
Scott Ullrich
|
echo "<td valign=\"middle\"><a href=\"services_wol_edit.php?if={$data['if']}&mac={$data['mac']}&descr={$data['hostname']}\">";
|
326 |
37c0c49b
|
Scott Ullrich
|
echo "<img src=\"/themes/{$g['theme']}/images/icons/icon_wol_all.gif\" width=\"17\" height=\"17\" border=\"0\" title=\"add a Wake on Lan mapping for this MAC address\"></a></td>\n";
|
327 |
5742ca5e
|
Scott Ullrich
|
echo "</tr>\n";
|
328 |
5b237745
|
Scott Ullrich
|
}
|
329 |
|
|
}
|
330 |
428d20c4
|
Seth Mos
|
|
331 |
5b237745
|
Scott Ullrich
|
?>
|
332 |
|
|
</table>
|
333 |
|
|
<p>
|
334 |
|
|
<form action="diag_dhcp_leases.php" method="GET">
|
335 |
|
|
<input type="hidden" name="order" value="<?=$_GET['order'];?>">
|
336 |
|
|
<?php if ($_GET['all']): ?>
|
337 |
|
|
<input type="hidden" name="all" value="0">
|
338 |
9252431c
|
Scott Ullrich
|
<input type="submit" class="formbtn" value="Show active and static leases only">
|
339 |
5b237745
|
Scott Ullrich
|
<?php else: ?>
|
340 |
|
|
<input type="hidden" name="all" value="1">
|
341 |
9252431c
|
Scott Ullrich
|
<input type="submit" class="formbtn" value="Show all configured leases">
|
342 |
5b237745
|
Scott Ullrich
|
<?php endif; ?>
|
343 |
|
|
</form>
|
344 |
428d20c4
|
Seth Mos
|
<?php if($leases == 0): ?>
|
345 |
5b237745
|
Scott Ullrich
|
<p><strong>No leases file found. Is the DHCP server active?</strong></p>
|
346 |
|
|
<?php endif; ?>
|
347 |
fda1fdae
|
Scott Ullrich
|
|
348 |
5b237745
|
Scott Ullrich
|
<?php include("fend.inc"); ?>
|
349 |
|
|
</body>
|
350 |
|
|
</html>
|