mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
* Fix Calix OS definitions The main change is EXA (E7, etc) and B6 (Occam) devices are now their own OS Now the follow OS exist: exa: E7 EXA, E5-400, E5-48, E3-48, E3-8G occamos: B6 Unchanged: calix: E5-1**, E3-12C axos: E7-2 AXOS, E9-2, E3-2, E5-520, E5-16F, E3-16F, E5-30x * fix tests exa_e7-2 seems like bogus data. * additional tests, fix an error in the yaml * Remove extra line return * Add missed file
8 lines
424 B
PHP
8 lines
424 B
PHP
<?php
|
|
|
|
// Device might not have a card 1 (or even card2 if it is an E7-20)
|
|
$version = strtok(snmp_walk($device, "e7CardSoftwareVersion.1", "-OQv", "E7-Calix-MIB"), PHP_EOL);
|
|
$hardware = "Calix " . $device['sysDescr'];
|
|
$features = str_replace(PHP_EOL, ', ', snmp_walk($device, "e7CardProvType", "-OQv", "E7-Calix-MIB"));
|
|
$serial = str_replace(PHP_EOL, ', ', snmp_walk($device, "e7CardSerialNumber", "-OQv", "E7-Calix-MIB"));
|