summaryrefslogtreecommitdiffstats
path: root/usr/local/www/diag_logs_dhcp.php
diff options
context:
space:
mode:
authorScott Ullrich <sullrich@pfsense.org>2004-11-21 19:09:02 +0000
committerScott Ullrich <sullrich@pfsense.org>2004-11-21 19:09:02 +0000
commit4d875b4f189e508f71dda38d5f62b0c56dc8a027 (patch)
treed57f8dfe071a2fd6a9ba516f95d6421679719da1 /usr/local/www/diag_logs_dhcp.php
parent6cc3419083fd9eef4b4badeff938516ba4fbbe9b (diff)
downloadpfsense-4d875b4f189e508f71dda38d5f62b0c56dc8a027.zip
pfsense-4d875b4f189e508f71dda38d5f62b0c56dc8a027.tar.gz
Update (C)
Diffstat (limited to 'usr/local/www/diag_logs_dhcp.php')
-rwxr-xr-xusr/local/www/diag_logs_dhcp.php26
1 files changed, 14 insertions, 12 deletions
diff --git a/usr/local/www/diag_logs_dhcp.php b/usr/local/www/diag_logs_dhcp.php
index 088a02d..499a8ea 100755
--- a/usr/local/www/diag_logs_dhcp.php
+++ b/usr/local/www/diag_logs_dhcp.php
@@ -1,22 +1,24 @@
#!/usr/local/bin/php
-<?php
+<?php
/*
diag_logs_dhcp.php
- part of m0n0wall (http://m0n0.ch/wall)
-
+ Copyright (C) 2004 Scott Ullrich
+ All rights reserved.
+
+ originially part of m0n0wall (http://m0n0.ch/wall)
Copyright (C) 2003-2004 Manuel Kasper <mk@neon1.net>.
All rights reserved.
-
+
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
-
+
1. Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.
-
+
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
-
+
THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
@@ -45,11 +47,11 @@ function dump_clog($logfile, $tail, $withorig = true) {
$sor = isset($config['syslog']['reverse']) ? "-r" : "";
exec("/usr/sbin/clog " . $logfile . " | tail {$sor} -n " . $tail, $logarr);
-
+
foreach ($logarr as $logent) {
$logent = preg_split("/\s+/", $logent, 6);
echo "<tr valign=\"top\">\n";
-
+
if ($withorig) {
echo "<td class=\"listlr\" nowrap>" . htmlspecialchars(join(" ", array_slice($logent, 0, 3))) . "</td>\n";
echo "<td class=\"listr\">" . htmlspecialchars($logent[4] . " " . $logent[5]) . "</td>\n";
@@ -83,11 +85,11 @@ function dump_clog($logfile, $tail, $withorig = true) {
<li class="tabinact"><a href="diag_logs_settings.php">Settings</a></li>
</ul>
</td></tr>
- <tr>
+ <tr>
<td class="tabcont">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td colspan="2" class="listtopic">
+ <tr>
+ <td colspan="2" class="listtopic">
Last <?=$nentries;?> DHCP service log entries</td>
</tr>
<?php dump_clog("/var/log/dhcpd.log", $nentries); ?>
OpenPOWER on IntegriCloud