diff --git a/LibreNMS/OS/SafIntegraB.php b/LibreNMS/OS/SafIntegraB.php index db24c7318a..fc1618330c 100644 --- a/LibreNMS/OS/SafIntegraB.php +++ b/LibreNMS/OS/SafIntegraB.php @@ -114,9 +114,18 @@ class SafIntegraB extends OS implements 'power', $this->getDeviceId(), '.1.3.6.1.4.1.7571.100.1.1.7.1.2.1.0', - 'saf-integrab-rx', + 'saf-integrab-tx', 'integraBradioTxPower', - 'Rx Power' + 'Tx Power' + ), + // SAF-INTEGRAB-MIB::integraBradioRxLevel + new WirelessSensor( + 'power', + $this->getDeviceId(), + '.1.3.6.1.4.1.7571.100.1.1.7.1.2.3.0', + 'saf-integrab-rx-level', + 'integraBradioRxLevel', + 'Rx Level' ), ); } diff --git a/LibreNMS/OS/SafIntegraW.php b/LibreNMS/OS/SafIntegraW.php index f7a75bead1..489275d94a 100644 --- a/LibreNMS/OS/SafIntegraW.php +++ b/LibreNMS/OS/SafIntegraW.php @@ -114,9 +114,18 @@ class SafIntegraW extends OS implements 'power', $this->getDeviceId(), '.1.3.6.1.4.1.7571.100.1.1.7.2.2.1.0', - 'saf-integra-rx', + 'saf-integra-tx', 'integraWradioTxPower', - 'Rx Power' + 'Tx Power' + ), + // SAF-INTEGRAW-MIB::integraWradioRxLevel + new WirelessSensor( + 'power', + $this->getDeviceId(), + '.1.3.6.1.4.1.7571.100.1.1.7.2.2.3.0', + 'saf-integra-rx-level', + 'integraWradioRxLevel', + 'Rx Level' ), ); }