. * * @link https://www.librenms.org * * @author Craig Harris */ namespace LibreNMS\OS; use App\Models\Device; use LibreNMS\Interfaces\Discovery\OSDiscovery; use LibreNMS\OS; class Netsure extends OS implements OSDiscovery { public function discoverOS(Device $device): void { $device->version = snmp_getnext($this->getDeviceArray(), 'vecFirmwareVersion', '-Oqv', 'VEC-MIBv5-9'); } }