* @copyright (C) 2006-2013 Adam Armstrong, (C) 2013-2019 Observium Limited
*
*/
echo('
');
echo("Port | Traffic | Sync Speed | Attainable Speed | Attenuation | SNR Margin | Output Powers |
");
$i = "0";
$ports = dbFetchRows("select * from `ports` AS P, `ports_adsl` AS A WHERE P.device_id = ? AND A.port_id = P.port_id AND P.deleted = '0' ORDER BY `ifIndex` ASC", array($device['device_id']));
foreach ($ports as $port)
{
include("includes/print-interface-adsl.inc.php");
$i++;
}
echo("
");
// EOF