2009-10-27 13:04:16 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
if($_GET['id']) { $interface = $_GET['id'];
|
|
|
|
} elseif($_GET['port']) { $interface = $_GET['port'];
|
|
|
|
} elseif($_GET['if']) { $interface = $_GET['if'];
|
|
|
|
} elseif($_GET['interface']) { $interface = $_GET['interface']; }
|
|
|
|
|
2010-02-20 17:22:22 +00:00
|
|
|
$query = mysql_query("SELECT * FROM `ports` AS I, `devices` AS D WHERE I.interface_id = '".$interface."'
|
2009-10-27 13:04:16 +00:00
|
|
|
AND I.device_id = D.device_id");
|
|
|
|
|
|
|
|
$port = mysql_fetch_array($query);
|
2010-02-05 22:10:06 +00:00
|
|
|
if(is_file($config['rrd_dir'] . "/" . $port['hostname'] . "/" . safename($port['ifIndex'] . ".rrd"))) {
|
|
|
|
$rrd_filename = $config['rrd_dir'] . "/" . $port['hostname'] . "/" . safename($port['ifIndex'] . ".rrd");
|
2009-10-27 13:04:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
$rra_in = "INOCTETS";
|
|
|
|
$rra_out = "OUTOCTETS";
|
|
|
|
|
|
|
|
include("generic_bits.inc.php");
|
|
|
|
|
|
|
|
?>
|