mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
79 lines
2.9 KiB
PHP
79 lines
2.9 KiB
PHP
<?php
|
|
/**
|
|
*
|
|
* LibreNMS PeeringDB Integration
|
|
*
|
|
* 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.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
* @package LibreNMS
|
|
* @link http://librenms.org
|
|
* @copyright 2017 Neil Lathwood
|
|
* @author Neil Lathwood <neil@lathwood.co.uk>
|
|
*/
|
|
|
|
$asn = $vars['asn'];
|
|
$ixid = $vars['ixid'];
|
|
$status = $vars['status'];
|
|
|
|
?>
|
|
<div class="row">
|
|
<div class="col-sm-6">
|
|
<div class="table-responsive">
|
|
<table id="ixpeers" class="table table-bordered table-striped">
|
|
<thead>
|
|
<tr>
|
|
<th data-column-id="remote_asn">ASN</th>
|
|
<th data-column-id="remote_ipaddr4">IP</th>
|
|
<th data-column-id="peer" data-sortable="false">Peer</th>
|
|
<th data-column-id="connected" data-sortable="false">Connected</th>
|
|
<th data-column-id="links" data-sortable="false"></th>
|
|
</tr>
|
|
</thead>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<script>
|
|
var grid = $("#ixpeers").bootgrid({
|
|
ajax: true,
|
|
rowCount: [50, 100, 250, -1],
|
|
templates: {
|
|
header:
|
|
"<div id=\"{{ctx.id}}\" class=\"{{css.header}}\"><div class=\"row\">"+
|
|
"<div class=\"col-sm-6 actionBar\"><span class=\"pull-left\">"+
|
|
"<form method=\"post\" action=\"\" class=\"form-inline\" role=\"form\">"+
|
|
"<div class=\"form-group\">"+
|
|
"<select name=\"status\" id=\"status\" class=\"form-control input-sm\">"+
|
|
"<option value=\"all\">All</option>"+
|
|
"<option value=\"connected\">Connected</option>"+
|
|
"<option value=\"unconnected\">Not connected</option>"+
|
|
"</select>"+
|
|
"<button type=\"submit\" class=\"btn btn-default input-sm\">Search</button>"+
|
|
"</div></form></span></div>"+
|
|
"<div class=\"col-sm-6 actionBar\"><span class=\"{{css.search}}\"></span> <span class=\"{{css.actions}}\"></span></div></div></div>"
|
|
},
|
|
post: function ()
|
|
{
|
|
return {
|
|
id: 'ix-peers',
|
|
asn: '<?php echo $asn; ?>',
|
|
ixid: '<?php echo $ixid; ?>',
|
|
status: '<?php echo $status; ?>',
|
|
};
|
|
},
|
|
url: "ajax_table.php"
|
|
});
|
|
</script>
|