As requested, a PHP version of the status/debug script.
By the way, does the list take attachments, or is putting
patches in-line like this the preferred way?
--
Jim McBeath
--------------------------------------------------------
#!/usr/local/bin/php
<?php
/* Run various commands and collect their output into HTML tables.
* Jim McBeath <jimmc at macrovision dot com> Nov 2003
*/
/* Execute a command, with a title, and generate an HTML table
* showing the results.
*/
function doCmdT($title, $command) {
echo "<p>\n";
echo "<a name=\"" . $title . "\">\n";
echo "<table border=1?\n";
echo "<tr bgcolor=lightblue><td align=center>" . $title . "</td></tr>\n";
echo "<tr bgcolor=white><td><pre>"; /* no newline after pre */
exec ($command . " 2>&1", $execOutput, $execStatus);
for ($i = 0; isset($execOutput[$i]); $i++) {
if ($i > 0) {
echo "\n";
}
echo htmlspecialchars($execOutput[$i],ENT_NOQUOTES);
}
echo "</pre></tr>\n";
echo "</table>\n";
}
/* Execute a command, giving it a title which is the same as the command. */
function doCmd($command) {
doCmdT($command,$command);
}
/* Define a command, with a title, to be executed later. */
function defCmdT($title, $command) {
global $commands;
$title = htmlspecialchars($title,ENT_NOQUOTES);
$commands[] = array($title, $command);
}
/* Define a command, with a title which is the same as the command,
* to be executed later.
*/
function defCmd($command) {
defCmdT($command,$command);
}
/* List all of the commands as an index. */
function listCmds() {
global $commands;
echo "<p>This status page includes the following information:\n";
echo "<ul>\n";
for ($i = 0; isset($commands[$i]); $i++ ) {
echo "<li><a href=\"#" . $commands[$i][0] . "\">" . $commands[$i][0] . "</a>\n";
}
echo "</ul>\n";
}
/* Execute all of the commands which were defined by a call to defCmd. */
function execCmds() {
global $commands;
for ($i = 0; isset($commands[$i]); $i++ ) {
doCmdT($commands[$i][0], $commands[$i][1]);
}
}
/* Set up all of the commands we want to execute. */
defCmdT("System Uptime","uptime");
defCmdT("Interfaces","/sbin/ifconfig -a");
defCmdT("Routing Tables","netstat -nr");
defCmd("/sbin/ipfw show");
defCmd("/sbin/ipnat -lv");
defCmd("/sbin/ipfstat -v");
defCmd("/sbin/ipfstat -hio");
defCmdT("resolv.conf","cat /etc/resolv.conf");
defCmdT("Processes","ps xauww");
defCmdT("dhcpd.conf","cat /var/etc/dhcpd.conf");
defCmdT("/conf/ez-ipupdate.cache","cat /conf/ez-ipupdate.cache");
defCmdT("df","/bin/df");
defCmdT("/var/etc/racoon.conf","cat /var/etc/racoon.conf");
defCmdT("SPD","/usr/sbin/setkey -DP");
defCmdT("SAD","/usr/sbin/setkey -D");
defCmdT("last 200 system log entries","/usr/sbin/clog /var/log/system.log 2>&1 | tail -n 200");
defCmdT("last 50 filter log entries","/usr/sbin/clog /var/log/filter.log 2>&1 | tail -n 50");
defCmd("ls /conf");
defCmd("ls /var/run");
defCmdT("config.xml","cat /conf/config.xml");
defCmd("/sbin/kldstat");
defCmd("/usr/sbin/ngctl list");
exec("hostname", $hostnameOutput, $hostnameStatus);
$hostname = $hostnameOutput[0];
$pageTitle = "Server statistics for " . $hostname;
exec("/bin/date", $dateOutput, $dateStatus);
$currentDate = $dateOutput[0];
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title><?php $pageTitle ?></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
<h2><?php echo $pageTitle; ?></h2>
<h3><?php echo $currentDate; ?></h3>
<?php listCmds(); ?>
<?php execCmds(); ?>
</body>
</html> |