mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
12 lines
510 B
PHP
12 lines
510 B
PHP
|
<?php
|
||
|
$pagetitle[] = 'Metro Ethernet';
|
||
|
echo '<table border="0" cellspacing="0" cellpadding="5" width="100%" class="table table-condensed"><tr class="tablehead"><th>Link</th><th>Type</th><th>MTU</th><th>Admin State</th><th>Row State</th></tr>';
|
||
|
$i = '1';
|
||
|
|
||
|
foreach (dbFetchRows('SELECT `mefIdent`,`mefType`,`mefMTU`,`mefAdmState`,`mefRowState` FROM `mefinfo` WHERE `device_id` = ? ORDER BY `mefID`', array($device['device_id'])) as $mef) {
|
||
|
include 'includes/print-mef.inc.php';
|
||
|
$i++;
|
||
|
}
|
||
|
|
||
|
echo '</table>';
|