mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
add tranzeo detection (no cpu, no ram, very basic mibs)
git-svn-id: http://www.observium.org/svn/observer/trunk@1466 61d68cd4-352d-0410-923a-c4978735b2b8
This commit is contained in:
16
includes/polling/os/tranzeo.inc.php
Normal file
16
includes/polling/os/tranzeo.inc.php
Normal file
@@ -0,0 +1,16 @@
|
||||
<?php
|
||||
|
||||
# Tranzeo sysDescr is quite uniform :
|
||||
#
|
||||
# Tranzeo TR6SL5, OS 6.8.0(1024), FW TR6-5.0.2SL5, 5.xGHz, 0dBi int. antenna
|
||||
# Tranzeo TR6Rt, OS 6.8.0(1024), FW TR6-3.6.0Rt, 5.xGHz, 19dBi int. antenna
|
||||
# Tranzeo TR6CPQ, OS 6.3.34(1019), FW TR6-2.0.12CPQ, 2.4GHz, 15dBi int. antenna
|
||||
# Tranzeo TR900Rt, OS 6.8.0(1024), FW TR900-3.3.3Rt, 900MHz, 17dBi ext. antenna
|
||||
|
||||
list($hardware, $version, $features, $hardware_antenna) = explode(", ", $sysDescr);
|
||||
|
||||
list(,$version) = explode(" ", $version);
|
||||
list($version) = explode("(", $version);
|
||||
list(,$features) = explode(" ", $features);
|
||||
|
||||
?>
|
Reference in New Issue
Block a user