2009-09-07 11:07:59 +00:00
|
|
|
<?php
|
2007-04-08 18:09:08 +00:00
|
|
|
|
2012-04-13 23:10:32 +00:00
|
|
|
list($hardware, $version, ) = explode(",", str_replace(", ", ",", $poll_device['sysDescr']));
|
|
|
|
|
|
|
|
# Clean up hardware
|
|
|
|
$hardware = str_replace("PROCURVE","ProCurve",$hardware);
|
|
|
|
if (substr($hardware,0,3) == "HP ") { $hardware = substr($hardware,3); }
|
|
|
|
if (substr($hardware,0,24) == "Hewlett-Packard Company ") { $hardware = substr($hardware,24); }
|
|
|
|
|
|
|
|
$altversion = trim(snmp_get($device,"hpSwitchOsVersion.0", "-Oqv", "NETSWITCH-MIB"),'"');
|
|
|
|
if ($altversion) { $version = $altversion; }
|
|
|
|
|
|
|
|
$altversion = trim(snmp_get($device,".1.3.6.1.4.1.11.2.3.7.11.12.1.2.1.11.0", "-Oqv"),'"');
|
|
|
|
if ($altversion) { $version = $altversion; }
|
2007-04-08 18:09:08 +00:00
|
|
|
|
2012-04-14 00:23:40 +00:00
|
|
|
if (preg_match('/^PROCURVE (.*) - (.*)/', $poll_device['sysDescr'], $regexp_result))
|
|
|
|
{
|
|
|
|
$hardware = "ProCurve " . $regexp_result[1];
|
|
|
|
$version = $regexp_result[2];
|
|
|
|
}
|
|
|
|
|
2012-04-07 22:28:53 +00:00
|
|
|
$serial = snmp_get($device, ".1.3.6.1.4.1.11.2.36.1.1.2.9.0", "-Oqv", "SEMI-MIB");
|
|
|
|
$serial = trim(str_replace("\"", "", $serial));
|
|
|
|
|
2012-05-25 12:24:34 +00:00
|
|
|
// FIXME maybe genericise? or do away with it if we ever walk the full dot1qTpFdbTable as we can count ourselves then ;)
|
2010-07-30 13:54:00 +00:00
|
|
|
$fdb_rrd_file = $config['rrd_dir'] . "/" . $device['hostname'] . "/fdb_count.rrd";
|
2010-07-30 13:35:58 +00:00
|
|
|
|
2010-08-04 17:17:00 +00:00
|
|
|
$FdbAddressCount = snmp_get ($device, "hpSwitchFdbAddressCount.0", "-Ovqn", "STATISTICS-MIB");
|
2010-07-30 13:35:58 +00:00
|
|
|
|
2011-03-15 11:59:47 +00:00
|
|
|
if (is_numeric($FdbAddressCount))
|
2010-07-30 13:54:00 +00:00
|
|
|
{
|
2011-03-15 11:59:47 +00:00
|
|
|
if (!is_file($fdb_rrd_file))
|
2010-07-30 13:54:00 +00:00
|
|
|
{
|
|
|
|
rrdtool_create($fdb_rrd_file, " --step 300 \
|
2012-04-20 17:37:58 +00:00
|
|
|
DS:value:GAUGE:600:-1:100000 ".$config['rrd_rra']); }
|
2010-07-30 13:54:00 +00:00
|
|
|
|
|
|
|
rrdtool_update($fdb_rrd_file, "N:$FdbAddressCount");
|
|
|
|
|
|
|
|
$graphs['fdb_count'] = TRUE;
|
2007-04-08 18:09:08 +00:00
|
|
|
|
2010-07-30 13:54:00 +00:00
|
|
|
echo("FDB Count ");
|
|
|
|
}
|
2007-04-08 18:09:08 +00:00
|
|
|
|
2012-04-20 17:37:58 +00:00
|
|
|
?>
|