2010-08-13 20:32:50 +00:00
< ? php
2011-03-17 10:57:51 +00:00
if ( $_GET [ 'id' ] && is_numeric ( $_GET [ 'id' ])) { $atm_vp_id = $_GET [ 'id' ]; }
2010-08-13 20:32:50 +00:00
2011-05-12 22:33:43 +00:00
$vp = dbFetchRow ( " SELECT * FROM `juniAtmVp` as J, `ports` AS I, `devices` AS D WHERE J.juniAtmVp_id = ? AND I.interface_id = J.interface_id AND I.device_id = D.device_id " , array ( $atm_vp_id ));
2010-08-13 20:32:50 +00:00
2011-04-06 13:54:50 +00:00
if ( $config [ 'allow_unauth_graphs' ] || port_permitted ( $vp [ 'interface_id' ]))
{
2010-08-13 20:32:50 +00:00
$port = $vp ;
$device = device_by_id_cache ( $port [ 'device_id' ]);
$title = generate_device_link ( $device );
$title .= " :: Port " . generate_port_link ( $port );
$title .= " :: VP " . $vp [ 'vp_id' ];
$auth = TRUE ;
$rrd_filename = $config [ 'rrd_dir' ] . " / " . $vp [ 'hostname' ] . " / " . safename ( " vp- " . $vp [ 'ifIndex' ] . " - " . $vp [ 'vp_id' ] . " .rrd " );
}
2011-05-12 22:33:43 +00:00
?>