mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
78 lines
2.6 KiB
PHP
78 lines
2.6 KiB
PHP
|
|
<table cellpadding="3" cellspacing="0" class="table table-striped table-condensed" width="100%">
|
|
|
|
<?php
|
|
|
|
echo '<tr class="tablehead">';
|
|
|
|
$cols = array(
|
|
'device' => 'Device',
|
|
'port' => 'Port',
|
|
'speed' => 'Speed',
|
|
'traffic_in' => 'Down',
|
|
'traffic_out' => 'Up',
|
|
'media' => 'Media',
|
|
'descr' => 'Description',
|
|
);
|
|
|
|
foreach ($cols as $sort => $col) {
|
|
if (isset($vars['sort']) && $vars['sort'] == $sort) {
|
|
echo '<th>'.$col.' *</th>';
|
|
}
|
|
else {
|
|
echo '<th><a href="'.generate_url($vars, array('sort' => $sort)).'">'.$col.'</a></th>';
|
|
}
|
|
}
|
|
|
|
echo ' </tr>';
|
|
|
|
$ports_disabled = 0;
|
|
$ports_down = 0;
|
|
$ports_up = 0;
|
|
$ports_total = 0;
|
|
|
|
foreach ($ports as $port) {
|
|
if (port_permitted($port['port_id'], $port['device_id'])) {
|
|
if ($port['ifAdminStatus'] == 'down') {
|
|
$ports_disabled++;
|
|
}
|
|
else if ($port['ifAdminStatus'] == 'up' && $port['ifOperStatus'] == 'down') {
|
|
$ports_down++;
|
|
}
|
|
else if ($port['ifAdminStatus'] == 'up' && $port['ifOperStatus'] == 'up') {
|
|
$ports_up++;
|
|
}
|
|
|
|
$ports_total++;
|
|
|
|
$speed = humanspeed($port['ifSpeed']);
|
|
$type = humanmedia($port['ifType']);
|
|
$ifclass = ifclass($port['ifOperStatus'], $port['ifAdminStatus']);
|
|
|
|
if ((isset($port['in_errors']) && $port['in_errors'] > 0) || (isset($ports['out_errors']) && $port['out_errors'] > 0)) {
|
|
$error_img = generate_port_link($port, "<img src='images/16/chart_curve_error.png' alt='Interface Errors' border=0>", errors);
|
|
}
|
|
else {
|
|
$error_img = '';
|
|
}
|
|
|
|
$port['in_rate'] = formatRates(($port['ifInOctets_rate'] * 8));
|
|
$port['out_rate'] = formatRates(($port['ifOutOctets_rate'] * 8));
|
|
|
|
$port = ifLabel($port, $device);
|
|
echo "<tr class='ports'>
|
|
<td width=200 class=list-bold>".generate_device_link($port, shorthost($port['hostname'], '20'))."</td>
|
|
<td width=150 class=list-bold><a class='".$ifclass."'href='".generate_port_url($port)."'>".fixIfName($port['label'])." $error_img</td>
|
|
<td width=110 >$speed</td>
|
|
<td width=100 class=green>".$port['in_rate'].'</td>
|
|
<td width=100 class=blue>'.$port['out_rate']."</td>
|
|
<td width=150>$type</td>
|
|
<td>".$port['ifAlias']."</td>
|
|
</tr>\n";
|
|
}//end if
|
|
}//end foreach
|
|
|
|
echo '<tr><td colspan="7">';
|
|
echo "<strong>Matched Ports: $ports_total ( <span class=green>Up $ports_up</span> | <span class=red>Down $ports_down</span> | Disabled $ports_disabled )</strong>";
|
|
echo '</td></tr></table>';
|