mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
790c4b3402
* Configurable device display name You can just set the display name in device settings. It also accepts simple template format with the variables: hostname, sysName, sysName_fallback, ip Default controlled by device_display_default, (set from old force_hostname_to_sysname and force_ip_to_sysname settings * remove second argument to format_hostname() * Style fixes * Update schema * update phpstan baseline * Improved settings strings (and add for translation)
143 lines
5.1 KiB
PHP
143 lines
5.1 KiB
PHP
<div class="panel panel-default panel-condensed">
|
|
<div class="panel-heading">
|
|
<strong>FDB Entries</strong>
|
|
</div>
|
|
<table id="fdb-search" class="table table-hover table-condensed table-striped">
|
|
<thead>
|
|
<tr>
|
|
<th data-column-id="device">Device</th>
|
|
<th data-column-id="mac_address" data-width="150px" data-formatter="tooltip">MAC Address</th>
|
|
<?php
|
|
if (\LibreNMS\Config::get('mac_oui.enabled') === true) {
|
|
echo ' <th data-column-id="mac_oui" data-sortable="false" data-width="150px" data-visible="false" data-formatter="tooltip">Vendor</th>';
|
|
}
|
|
?>
|
|
<th data-column-id="ipv4_address" data-sortable="false" data-formatter="tooltip">IPv4 Address</th>
|
|
<th data-column-id="interface">Port</th>
|
|
<th data-column-id="vlan" data-width="60px">Vlan</th>
|
|
<th data-column-id="description" data-formatter="tooltip">Description</th>
|
|
<th data-column-id="dnsname" data-sortable="false" data-visible="false" data-formatter="tooltip">DNS Name</th>
|
|
<th data-column-id="first_seen" data-width="165px">First seen</th>
|
|
<th data-column-id="last_seen" data-width="165px">Last seen</th>
|
|
</tr>
|
|
</thead>
|
|
</table>
|
|
</div>
|
|
|
|
<script>
|
|
|
|
var grid = $("#fdb-search").bootgrid({
|
|
ajax: true,
|
|
rowCount: [50, 100, 250, -1],
|
|
templates: {
|
|
header: "<div id=\"{{ctx.id}}\" class=\"{{css.header}}\"><div class=\"row\">"+
|
|
"<div class=\"col-sm-9 actionBar\"><span class=\"pull-left\">"+
|
|
"<form method=\"post\" action=\"\" class=\"form-inline\" role=\"form\">"+
|
|
"<?php echo addslashes(csrf_field()) ?>"+
|
|
"<div class=\"form-group\">"+
|
|
"<select name=\"device_id\" id=\"device_id\" class=\"form-control input-sm\">"+
|
|
"<option value=\"\">All Devices</option>"+
|
|
<?php
|
|
|
|
// Select the devices only with FDB tables
|
|
$sql = 'SELECT D.device_id AS device_id, `hostname`, `sysName`, `display` FROM `ports_fdb` AS F, `ports` AS P, `devices` AS D';
|
|
$param = [];
|
|
|
|
if (! Auth::user()->hasGlobalRead()) {
|
|
$device_ids = Permissions::devicesForUser()->toArray() ?: [0];
|
|
$where .= ' AND `D`.`device_id` IN ' . dbGenPlaceholders(count($device_ids));
|
|
$param = array_merge($param, $device_ids);
|
|
}
|
|
|
|
$sql .= " WHERE F.port_id = P.port_id AND P.device_id = D.device_id $where GROUP BY `D`.`device_id`, `D`.`hostname` ORDER BY `hostname`";
|
|
foreach (dbFetchRows($sql, $param) as $data) {
|
|
echo '"<option value=\"' . $data['device_id'] . '\""+';
|
|
if ($data['device_id'] == $vars['device_id']) {
|
|
echo '" selected "+';
|
|
}
|
|
|
|
echo '">' . format_hostname($data) . '</option>"+';
|
|
}
|
|
?>
|
|
"</select>"+
|
|
"</div>"+
|
|
"<div class=\"form-group\">"+
|
|
"<select name=\"searchby\" id=\"searchby\" class=\"form-control input-sm\">"+
|
|
"<option value=\"mac\" "+
|
|
<?php
|
|
if ($vars['searchby'] == 'mac') {
|
|
echo '" selected "+';
|
|
}
|
|
?>
|
|
|
|
">MAC Address</option>"+
|
|
"<option value=\"ip\" "+
|
|
<?php
|
|
if ($vars['searchby'] == 'ip') {
|
|
echo '" selected "+';
|
|
}
|
|
?>
|
|
|
|
">IP Address</option>"+
|
|
"<option value=\"dnsname\" "+
|
|
<?php
|
|
if ($vars['searchby'] == 'dnsname') {
|
|
echo '" selected "+';
|
|
}
|
|
?>
|
|
|
|
">DNS Name</option>"+
|
|
"<option value=\"description\" "+
|
|
<?php
|
|
if ($vars['searchby'] == 'description') {
|
|
echo '" selected "+';
|
|
}
|
|
?>
|
|
|
|
">Description</option>"+
|
|
"<option value=\"vlan\" "+
|
|
<?php
|
|
if ($vars['searchby'] == 'vlan') {
|
|
echo '" selected "+';
|
|
}
|
|
?>
|
|
|
|
">Vlan</option>"+
|
|
"</select>"+
|
|
"</div>"+
|
|
"<div class=\"form-group\">"+
|
|
"<input type=\"text\" name=\"searchPhrase\" id=\"address\" value=\""+
|
|
<?php
|
|
echo '"' . $vars['searchPhrase'] . '"+';
|
|
?>
|
|
|
|
"\" class=\"form-control input-sm\" placeholder=\"Value\" />"+
|
|
"</div>"+
|
|
"<button type=\"submit\" class=\"btn btn-default input-sm\">Search</button>"+
|
|
"</form></span></div>"+
|
|
"<div class=\"col-sm-3 actionBar\"><p class=\"{{css.actions}}\"></p></div></div></div>"
|
|
},
|
|
post: function ()
|
|
{
|
|
return {
|
|
device_id: '<?php echo $vars['device_id']; ?>',
|
|
searchby: '<?php echo $vars['searchby']; ?>',
|
|
searchPhrase: '<?php echo $vars['searchPhrase']; ?>',
|
|
dns: $("#fdb-search").bootgrid("getColumnSettings").find(col => col.id === "dnsname").visible,
|
|
};
|
|
},
|
|
url: "<?php echo url('/ajax/table/fdb-tables'); ?>",
|
|
formatters: {
|
|
"tooltip": function (column, row) {
|
|
var value = row[column.id];
|
|
var vendor = '';
|
|
if (column.id == 'mac_address' && ((vendor = row['mac_oui']) != '' )) {
|
|
return "<span title=\'" + value + " (" + vendor + ")\' data-toggle=\'tooltip\'>" + value + "</span>";
|
|
}
|
|
return "<span title=\'" + value + "\' data-toggle=\'tooltip\'>" + value + "</span>";
|
|
},
|
|
},
|
|
});
|
|
|
|
</script>
|