diff --git a/AUTHORS.md b/AUTHORS.md index 6fbea29d3..bb70b233a 100644 --- a/AUTHORS.md +++ b/AUTHORS.md @@ -59,5 +59,6 @@ Contributors to LibreNMS: - Sławomir Paszkiewicz (paszczus) - Frederik Mogensen (mogensen) - Matthew Scully (mattz0r) +- Xavier Beaudouin (xbeaudouin) [1]: http://observium.org/ "Observium web site" diff --git a/includes/discovery/os/multimatic.inc.php b/includes/discovery/os/multimatic.inc.php index bda05bfb4..13af1913e 100644 --- a/includes/discovery/os/multimatic.inc.php +++ b/includes/discovery/os/multimatic.inc.php @@ -5,5 +5,8 @@ if (!$os) { if (strstr(snmp_get($device, 'UPS-MIB::upsIdentManufacturer.0', '-Oqv', ''), 'Multimatic')) { $os = 'multimatic'; } + if (strstr(snmp_get($device, 'UPS-MIB::upsIdentManufacturer.0', '-Oqv', ''), 'S2S')) { + $os = 'multimatic'; + } } }