Files
librenms-librenms/html/pages/device/routing/ospf.inc.php
Tony Murray 8c639aa5a4 PSR2 Cleanup: /html edition
Travis tests for code conformance. Ignore warnings for now.
Fixed all errors, left most warnings.
2016-08-18 21:29:30 -05:00

174 lines
7.2 KiB
PHP

<?php
$i = 0;
echo '
<div>
<div class="panel panel-default">
<div class="panel-body">
<table class="table table-condensed" style="border-collapse:collapse;">
<thead>
<tr>
<th>&nbsp;</th>
<th>Router ID</th>
<th>Status</th>
<th>ABR</th>
<th>ASBR</th>
<th>Areas</th>
<th>Ports(Enabled)</th>
<th>Neighbours</th>
</tr>
</thead>';
foreach (dbFetchRows('SELECT * FROM `ospf_instances` WHERE `device_id` = ?', array($device['device_id'])) as $instance) {
$i++;
$area_count = dbFetchCell('SELECT COUNT(*) FROM `ospf_areas` WHERE `device_id` = ?', array($device['device_id']));
$port_count = dbFetchCell('SELECT COUNT(*) FROM `ospf_ports` WHERE `device_id` = ?', array($device['device_id']));
$port_count_enabled = dbFetchCell("SELECT COUNT(*) FROM `ospf_ports` WHERE `ospfIfAdminStat` = 'enabled' AND `device_id` = ?", array($device['device_id']));
$nbr_count = dbFetchCell('SELECT COUNT(*) FROM `ospf_nbrs` WHERE `device_id` = ?', array($device['device_id']));
$status_color = $abr_status_color = $asbr_status_color = 'default';
if ($instance['ospfAdminStat'] == 'enabled') {
$status_color = 'success';
}
if ($instance['ospfAreaBdrRtrStatus'] == 'true') {
$abr_status_color = 'success';
}
if ($instance['ospfASBdrRtrStatus'] == 'true') {
$asbr_status_color = 'success';
}
echo '
<tbody>
<tr data-toggle="collapse" data-target="#ospf-panel' . $i . '" class="accordion-toggle">
<td><button class="btn btn-default btn-xs"><span class="fa fa-plus"></span></button></td>
<td>' . $instance['ospfRouterId'] . '</td>
<td><span class="label label-' . $status_color . '">' . $instance['ospfAdminStat'] . '</span></td>
<td><span class="label label-' . $abr_status_color . '">' . $instance['ospfAreaBdrRtrStatus'] . '</span></td>
<td><span class="label label-' . $asbr_status_color . '">' . $instance['ospfASBdrRtrStatus'] . '</span></td>
<td>' . $area_count . '</td>
<td>' . $port_count . '(' . $port_count_enabled . ')</td>
<td>' . $nbr_count . '</td>
</tr>
<tr>
<td colspan="12" class="hiddenRow">
<div class="accordian-body collapse" id="ospf-panel' . $i . '">
<br>
<div class="col-xs-4">
<div class="table-responsive">
<table class="table table-striped table-hover">
<thead>
<h4><span class="label label-primary">Areas</span></h4>
<tr>
<th>Area ID</th>
<th>Ports(Enabled)</th>
<th>Status</th>
</tr>
</thead>';
foreach (dbFetchRows('SELECT * FROM `ospf_areas` WHERE `device_id` = ?', array($device['device_id'])) as $area) {
$area_port_count = dbFetchCell('SELECT COUNT(*) FROM `ospf_ports` WHERE `device_id` = ? AND `ospfIfAreaId` = ?', array($device['device_id'], $area['ospfAreaId']));
$area_port_count_enabled = dbFetchCell("SELECT COUNT(*) FROM `ospf_ports` WHERE `ospfIfAdminStat` = 'enabled' AND `device_id` = ? AND `ospfIfAreaId` = ?", array($device['device_id'], $area['ospfAreaId']));
echo '
<tbody>
<tr>
<td>' . $area['ospfAreaId'] . '</td>
<td>' . $area_port_count . '(' . $area_port_count_enabled . ')</td>
<td><span class="label label-' . $status_color . '">' . $instance['ospfAdminStat'] . '</span></td>
</tr>
</tbody>';
}
echo '
</table>
</div>
</div>
<div class="col-xs-4">
<div class="table-responsive">
<table class="table table-striped table-hover">
<thead>
<h4><span class="label label-primary">Ports</span></h4>
<tr>
<th>Port</th>
<th>Port Type</th>
<th>Port State</th>
<th>Status</th>
</tr>
</thead>
</div>';
foreach (dbFetchRows("SELECT * FROM `ospf_ports` AS O, `ports` AS P WHERE O.`ospfIfAdminStat` = 'enabled' AND O.`device_id` = ? AND O.`ospfIfAreaId` = ? AND P.port_id = O.port_id", array($device['device_id'], $area['ospfAreaId'])) as $ospfport) {
$port_status_color = 'default';
if ($ospfport['ospfIfAdminStat'] == 'enabled') {
$port_status_color = 'success';
}
echo '
<tbody>
<tr>
<td>' . generate_port_link($ospfport) . '</td>
<td>' . $ospfport['ospfIfType'] . '</td>
<td>' . $ospfport['ospfIfState'] . '</td>
<td><span class="label label-' . $port_status_color . '">' . $ospfport['ospfIfAdminStat'] . '</span></td>
</tr>
</tbody>';
}
echo '
</table>
</div>
</div>
<div class="col-xs-4">
<div class="table-responsive">
<table class="table table-striped table-hover">
<thead>
<h4><span class="label label-primary">Neighbours</span></h4>
<tr>
<th>Router ID</th>
<th>Device</th>
<th>IP Address</th>
<th>Status</th>
</tr>
</thead>';
foreach (dbFetchRows('SELECT * FROM `ospf_nbrs` WHERE `device_id` = ?', array($device['device_id'])) as $nbr) {
$host = @dbFetchRow('SELECT * FROM `ipv4_addresses` AS A, `ports` AS I, `devices` AS D WHERE A.ipv4_address = ? AND I.port_id = A.port_id AND D.device_id = I.device_id', array($nbr['ospfNbrRtrId']));
$rtr_id = 'unknown';
$ospfnbr_status_color = 'default';
if (is_array($host)) {
$rtr_id = generate_device_link($host);
}
if ($nbr['ospfNbrState'] == 'full') {
$ospfnbr_status_color = 'success';
} elseif ($nbr['ospfNbrState'] == 'down') {
$ospfnbr_status_color = 'danger';
}
echo '
<tbody>
<tr>
<td>' . $nbr['ospfNbrRtrId'] . '</td>
<td>' . $rtr_id . '</td>
<td>' . $nbr['ospfNbrIpAddr'] . '</td>
<td><span class="label label-' . $ospfnbr_status_color . '">' . $nbr['ospfNbrState'] . '</span></td>
</tr>
</tbody>';
}
echo '
</table>
</div>
</div>
</div>
</td>
</tr>
</tbody>';
}
echo '
</table>
</div>
</div>
</div>';