mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
071ca9bc2a
Co-authored-by: StyleCI Bot <bot@styleci.io>
7 lines
192 B
PHP
7 lines
192 B
PHP
<?php
|
|
|
|
$int_desc = snmpwalk_group($device, 'ifMainDesc', 'ARICENT-CFA-MIB');
|
|
foreach ($port_stats as $index => $port) {
|
|
$port_stats[$index]['ifAlias'] = $int_desc[$index]['ifMainDesc'];
|
|
}
|