2010-07-18 08:51:18 +00:00
|
|
|
<?php
|
|
|
|
|
2016-08-18 20:28:22 -05:00
|
|
|
if (file_exists(get_port_rrdfile_path($device['hostname'], $port['port_id'], 'adsl'))) {
|
2015-07-10 13:36:21 +02:00
|
|
|
$iid = $id;
|
|
|
|
echo '<div class=graphhead>ADSL Line Speed</div>';
|
|
|
|
$graph_type = 'port_adsl_speed';
|
2012-04-06 13:56:23 +00:00
|
|
|
|
2015-07-10 13:36:21 +02:00
|
|
|
include 'includes/print-interface-graphs.inc.php';
|
2011-03-16 23:10:10 +00:00
|
|
|
|
2015-07-10 13:36:21 +02:00
|
|
|
echo '<div class=graphhead>ADSL Line Attenuation</div>';
|
|
|
|
$graph_type = 'port_adsl_attenuation';
|
2012-04-06 13:56:23 +00:00
|
|
|
|
2015-07-10 13:36:21 +02:00
|
|
|
include 'includes/print-interface-graphs.inc.php';
|
2011-03-16 23:10:10 +00:00
|
|
|
|
2015-07-10 13:36:21 +02:00
|
|
|
echo '<div class=graphhead>ADSL Line SNR Margin</div>';
|
|
|
|
$graph_type = 'port_adsl_snr';
|
2012-04-06 13:56:23 +00:00
|
|
|
|
2015-07-10 13:36:21 +02:00
|
|
|
include 'includes/print-interface-graphs.inc.php';
|
2011-03-16 23:10:10 +00:00
|
|
|
|
2015-07-10 13:36:21 +02:00
|
|
|
echo '<div class=graphhead>ADSL Output Powers</div>';
|
|
|
|
$graph_type = 'port_adsl_power';
|
2012-04-06 13:56:23 +00:00
|
|
|
|
2015-07-10 13:36:21 +02:00
|
|
|
include 'includes/print-interface-graphs.inc.php';
|
2011-03-16 23:10:10 +00:00
|
|
|
}
|