Søren Rosiak c0f5897226 Improve Ligowave detection (#9474)
* Improve Ligowave Support

* Update infinity_2.snmprec

* Update infinity.yaml

* Update infinity.snmprec

* Update infinity.yaml

* Update infinity.yaml

* Undo my derp
2018-12-11 21:04:01 -06:00

17 lines
587 B
PHP

<?php
/*
* LibreNMS LigoWave Infinity OS information module
*
* Copyright (c) 2015 Mike Rostermund <mike@kollegienet.dk>
* 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.
*/
$data = explode(' ', $device['sysDescr']);
$hardware = $data[0] . ' ' . $data[1];
$version = $data[2];
unset($data);