2016-07-07 13:32:32 -05:00
|
|
|
<?php
|
|
|
|
|
2016-07-07 13:52:18 -05:00
|
|
|
/*
|
|
|
|
* LibreNMS Lantronix SLC OS Polling module
|
|
|
|
*
|
|
|
|
* Copyright (c) 2016 Chris A. Evans <thecityofguanyu@outlook.com>
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify it
|
|
|
|
* under the terms of the GNU General Public License as published by the
|
|
|
|
* Free Software Foundation, either version 3 of the License, or (at your
|
|
|
|
* option) any later version. Please see LICENSE.txt at the top level of
|
|
|
|
* the source code distribution for details.
|
|
|
|
*/
|
|
|
|
|
2016-08-28 12:32:58 -05:00
|
|
|
$hardware = snmp_get($device, 'slcSystemModel.0', '-Ovqs', 'LANTRONIX-SLC-MIB');
|
2016-07-07 13:32:32 -05:00
|
|
|
$hardware = str_replace('"', '', $hardware);
|
2016-08-28 12:32:58 -05:00
|
|
|
$version = snmp_get($device, 'slcSystemFWRev.0', '-Ovqs', 'LANTRONIX-SLC-MIB');
|
2016-07-07 13:32:32 -05:00
|
|
|
$version = str_replace('"', '', $version);
|
2016-07-07 13:52:18 -05:00
|
|
|
$serial = snmp_get($device, 'slcSystemSerialNo.0', '-Ovqs', 'LANTRONIX-SLC-MIB');
|
2016-07-07 13:32:32 -05:00
|
|
|
$serial = str_replace('"', '', $serial);
|
2016-07-07 15:09:43 -05:00
|
|
|
$features = snmp_get($device, 'slcSystemModelString.0', '-Ovqs', 'LANTRONIX-SLC-MIB');
|
|
|
|
$features = str_replace('"', '', $features);
|