mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
* Security fix: unauthorized access Affects nginx users: Moved php files outside of public html directory (Apache was protected by .htaccess) Affects all users: Some files did not check for authentication and could disclose some info. Better checks before including files from user input * git mv html/includes/ includes/html git mv html/pages/ includes/html/
130 lines
5.2 KiB
PHP
130 lines
5.2 KiB
PHP
<?php
|
|
/*
|
|
* This program is free software: you can redistribute it and/or modify it
|
|
* under the terms of the GNU General Public License as published by the
|
|
* Free Software Foundation, either version 3 of the License, or (at your
|
|
* option) any later version. Please see LICENSE.txt at the top level of
|
|
* the source code distribution for details.
|
|
*
|
|
* @package LibreNMS
|
|
* @subpackage webui
|
|
* @link http://librenms.org
|
|
* @copyright 2017 LibreNMS
|
|
* @author LibreNMS Contributors
|
|
*/
|
|
|
|
$details_visible = var_export($vars['format'] == 'list_detail', 1);
|
|
$errors_visible = var_export($vars['format'] == 'list_detail' || $vars['errors'], 1);
|
|
$no_refresh = true;
|
|
|
|
if ($vars['errors']) {
|
|
$error_sort = ' data-order="desc"';
|
|
$sort = '';
|
|
} else {
|
|
$error_sort = '';
|
|
$sort = ' data-order="asc"';
|
|
}
|
|
?>
|
|
<div class="panel panel-default panel-condensed">
|
|
<div class="panel-heading">
|
|
<?php echo $displayLists; ?>
|
|
</div>
|
|
<div class="table-responsive">
|
|
<table id="ports" class="table table-condensed table-hover table-striped">
|
|
<thead>
|
|
<tr>
|
|
<th data-column-id="device" data-formatter="device">Device</th>
|
|
<th data-column-id="port"<?php echo $sort ?>>Port</th>
|
|
<th data-column-id="ifLastChange" data-converter="duration">Status Changed</th>
|
|
<th data-column-id="ifConnectorPresent" data-visible="false">Connected</th>
|
|
<th data-column-id="ifSpeed" data-converter="human-bps">Speed</th>
|
|
<th data-column-id="ifMtu" data-visible="false">MTU</th>
|
|
<th data-column-id="ifInOctets_rate" data-searchable="false" data-css-class="green"
|
|
data-converter="human-bps">Down
|
|
</th>
|
|
<th data-column-id="ifOutOctets_rate" data-searchable="false" data-css-class="blue"
|
|
data-converter="human-bps">Up
|
|
</th>
|
|
<th data-column-id="ifInUcastPkts_rate" data-searchable="false"
|
|
data-visible="<?php echo $details_visible ?>" data-css-class="green" data-converter="human-pps">
|
|
Packets In
|
|
</th>
|
|
<th data-column-id="ifOutUcastPkts_rate" data-searchable="false"
|
|
data-visible="<?php echo $details_visible ?>" data-css-class="blue" data-converter="human-pps">
|
|
Packets Out
|
|
</th>
|
|
<th data-column-id="ifInErrors" data-searchable="false" data-visible="<?php echo $errors_visible ?>"
|
|
data-css-class="red"<?php echo $error_sort ?>>Errors In
|
|
</th>
|
|
<th data-column-id="ifOutErrors" data-searchable="false" data-visible="<?php echo $errors_visible ?>"
|
|
data-css-class="red">Errors Out
|
|
</th>
|
|
<th data-column-id="ifType">Media</th>
|
|
<th data-column-id="description">Description</th>
|
|
<th data-column-id="actions" data-sortable="false" data-searchable="false">Actions</th>
|
|
</tr>
|
|
</thead>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
<script>
|
|
|
|
function formatUnits(units,decimals,display,base) {
|
|
if(!units) return '';
|
|
if(display === undefined) display = ['bps', 'Kbps', 'Mbps', 'Gbps', 'Tbps', 'Pbps', 'Ebps', 'Zbps', 'Ybps'];
|
|
if(units == 0) return units + display[0];
|
|
base = base || 1000; // or 1024 for binary
|
|
var dm = decimals || 2;
|
|
var i = Math.floor(Math.log(units) / Math.log(base));
|
|
return parseFloat((units / Math.pow(base, i)).toFixed(dm)) + display[i];
|
|
}
|
|
|
|
var grid = $("#ports").bootgrid({
|
|
ajax: true,
|
|
rowCount: [50, 100, 250, -1],
|
|
converters: {
|
|
'duration': {
|
|
to: function (value) { return moment.duration(value, 'seconds').humanize(); }
|
|
},
|
|
'human-bps': {
|
|
to: function (value) { return formatUnits(value); }
|
|
},
|
|
'human-pps': {
|
|
to: function (value) {
|
|
return formatUnits(value, 2, ['pps', 'Kpps', 'Mpps', 'Gpps', 'Tpps', 'Ppps', 'Epps', 'Zpps', 'Ypps']);
|
|
}
|
|
}
|
|
},
|
|
formatters: {
|
|
'device': function (column, row) {
|
|
return "<span class='alert-status " + row.status + "' style='float:left;margin-right:10px;'></span>" + row.device + "";
|
|
}
|
|
},
|
|
templates: {
|
|
search: "" // hide the generic search
|
|
},
|
|
post: function ()
|
|
{
|
|
return {
|
|
id: "ports",
|
|
device_id: '<?php echo mres($vars['device_id']); ?>',
|
|
hostname: '<?php echo htmlspecialchars($vars['hostname']); ?>',
|
|
state: '<?php echo mres($vars['state']); ?>',
|
|
ifSpeed: '<?php echo mres($vars['ifSpeed']); ?>',
|
|
ifType: '<?php echo mres($vars['ifType']); ?>',
|
|
port_descr_type: '<?php echo mres($vars['port_descr_type']); ?>',
|
|
ifAlias: '<?php echo $vars['ifAlias']; ?>',
|
|
location: '<?php echo mres($vars['location']); ?>',
|
|
disabled: '<?php echo mres($vars['disabled']); ?>',
|
|
ignore: '<?php echo mres($vars['ignore']); ?>',
|
|
deleted: '<?php echo mres($vars['deleted']); ?>',
|
|
errors: '<?php echo mres($vars['errors']); ?>',
|
|
};
|
|
},
|
|
url: "ajax_table.php"
|
|
});
|
|
|
|
$(".actionBar").append("<?php echo $output; ?>");
|
|
|
|
</script>
|