2009-09-07 11:07:59 +00:00
|
|
|
<?php
|
2007-06-24 15:46:47 +00:00
|
|
|
|
2010-03-07 22:22:29 +00:00
|
|
|
if ($config['overview_show_sysDescr'])
|
|
|
|
{
|
2010-12-15 17:54:42 +00:00
|
|
|
echo('<div style="font-family: courier, serif; margin: 10px"><strong>' . $device['sysDescr'] . "</strong></div>");
|
2010-02-21 14:58:46 +00:00
|
|
|
}
|
2007-06-24 15:46:47 +00:00
|
|
|
|
2010-02-13 07:40:43 +00:00
|
|
|
$uptime = $device['uptime'];
|
|
|
|
|
2010-03-07 22:22:29 +00:00
|
|
|
if ($device['os'] == "ios") { formatCiscoHardware($device); }
|
|
|
|
if ($device['features']) { $device['features'] = "(".$device['features'].")"; }
|
2010-06-25 12:18:00 +00:00
|
|
|
$device['os_text'] = $config['os'][$device['os']]['text'];
|
2008-03-19 19:16:16 +00:00
|
|
|
|
2010-12-15 17:54:42 +00:00
|
|
|
echo('<table width="100%">');
|
2010-02-21 17:02:20 +00:00
|
|
|
|
2010-03-07 22:22:29 +00:00
|
|
|
if($device['hardware'])
|
|
|
|
{
|
|
|
|
echo('<tr>
|
|
|
|
<td class="list-bold">Hardware</td>
|
|
|
|
<td>' . $device['hardware']. '</td>
|
|
|
|
</tr>');
|
|
|
|
}
|
2007-06-24 16:45:18 +00:00
|
|
|
|
2010-06-10 19:49:23 +00:00
|
|
|
if($device['serial'])
|
|
|
|
{
|
|
|
|
echo('<tr>
|
|
|
|
<td class="list-bold">Serial</td>
|
|
|
|
<td>' . $device['serial']. '</td>
|
|
|
|
</tr>');
|
|
|
|
}
|
|
|
|
|
2010-03-07 22:22:29 +00:00
|
|
|
echo('<tr>
|
|
|
|
<td class="list-bold">Operating System</td>
|
|
|
|
<td>' . $device['os_text'] . ' ' . $device['version'] . ' ' . $device['features'] . ' </td>
|
|
|
|
</tr>');
|
2008-03-19 19:16:16 +00:00
|
|
|
|
2010-03-07 22:22:29 +00:00
|
|
|
if($device['sysContact'])
|
|
|
|
{
|
|
|
|
echo('<tr>
|
|
|
|
<td class="list-bold">Contact</td>
|
|
|
|
<td>' . htmlspecialchars($device['sysContact']). '</td>
|
|
|
|
</tr>');
|
|
|
|
}
|
2008-03-19 19:16:16 +00:00
|
|
|
|
2010-03-07 22:22:29 +00:00
|
|
|
if($device['location'])
|
|
|
|
{
|
|
|
|
echo('<tr>
|
|
|
|
<td class="list-bold">Location</td>
|
|
|
|
<td>' . $device['location']. '</td>
|
|
|
|
</tr>');
|
|
|
|
}
|
2007-06-24 15:46:47 +00:00
|
|
|
|
2010-03-07 22:22:29 +00:00
|
|
|
if($uptime)
|
|
|
|
{
|
|
|
|
echo('<tr>
|
|
|
|
<td class="list-bold">Uptime</td>
|
|
|
|
<td>' . formatUptime($uptime) . '</td>
|
|
|
|
</tr>');
|
|
|
|
}
|
2007-06-24 15:46:47 +00:00
|
|
|
|
2010-03-07 22:22:29 +00:00
|
|
|
echo('
|
|
|
|
</table>');
|
2007-06-24 15:46:47 +00:00
|
|
|
?>
|