. * * @link https://www.librenms.org * * @copyright 2021 Tony Murray * @author Tony Murray */ namespace LibreNMS\OS; use App\Models\Device; class NsBsd extends \LibreNMS\OS { public function discoverOS(Device $device): void { parent::discoverOS($device); // yaml $device->sysName = \SnmpQuery::get('STORMSHIELD-PROPERTY-MIB::snsSystemName.0')->value() ?: $device->sysName; } }