2008-11-05 13:57:44 +00:00
|
|
|
<?php
|
|
|
|
|
2012-05-09 10:01:42 +00:00
|
|
|
/**
|
2016-08-20 12:16:55 +01:00
|
|
|
* LibreNMS
|
2012-05-09 10:01:42 +00:00
|
|
|
*
|
2016-08-20 12:16:55 +01:00
|
|
|
* This file is part of LibreNMS.
|
2012-05-09 10:01:42 +00:00
|
|
|
*
|
2016-08-20 12:16:55 +01:00
|
|
|
* @package librenms
|
2013-10-29 05:38:12 +10:00
|
|
|
* @subpackage ajax
|
|
|
|
* @copyright (C) 2006 - 2012 Adam Armstrong
|
2012-05-09 10:01:42 +00:00
|
|
|
*/
|
|
|
|
|
2016-11-21 14:12:59 -06:00
|
|
|
$init_modules = array('web', 'auth');
|
|
|
|
require realpath(__DIR__ . '/..') . '/includes/init.php';
|
2008-11-05 13:57:44 +00:00
|
|
|
|
2016-09-07 18:42:49 +01:00
|
|
|
set_debug($_REQUEST['debug']);
|
|
|
|
|
2015-07-13 20:10:26 +02:00
|
|
|
if (!$_SESSION['authenticated']) {
|
|
|
|
echo 'unauthenticated';
|
|
|
|
exit;
|
2008-11-05 13:57:44 +00:00
|
|
|
}
|
|
|
|
|
2015-07-13 20:10:26 +02:00
|
|
|
if (is_numeric($_GET['device_id'])) {
|
|
|
|
foreach (dbFetch('SELECT * FROM ports WHERE device_id = ?', array($_GET['device_id'])) as $interface) {
|
|
|
|
$interface = ifNameDescr($interface);
|
2017-01-26 22:18:09 +00:00
|
|
|
$string = addslashes(display($interface['label'].' - '.$interface['ifAlias']));
|
2015-07-13 20:10:26 +02:00
|
|
|
echo "obj.options[obj.options.length] = new Option('".$string."','".$interface['port_id']."');\n";
|
|
|
|
}
|
|
|
|
}
|