mirror of
https://github.com/stylersnico/librenms.git
synced 2026-07-12 16:06:25 +02:00
7 lines
165 B
PHP
7 lines
165 B
PHP
<?php
|
|
|
|
//SNMPv2-MIB::sysDescr.0 Brocade VDX Switch.
|
|
if (preg_match("/Brocade ([\s\d\w]+)/", $poll_device['sysDescr'], $hardware)) {
|
|
$hardware = $hardware[1];
|
|
}
|