mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
Added Wireless Sensors for Teltonika RUTX Routers (#13419)
* Correctly implement Wireless Sensors for Teltonila RUTX series routers allowing for hardware with multiple modems Fix sensor warning limits based on hardware specs. * Re-capture test data for new sensors * Tidy style * no message * no message * Update RutosRutx.php Co-authored-by: Jellyfrog <[email protected]>
This commit is contained in:
@@ -0,0 +1,146 @@
|
||||
<?php
|
||||
/**
|
||||
* RutosRutx.php
|
||||
*
|
||||
* -Description-
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
*
|
||||
* @link https://www.librenms.org
|
||||
*
|
||||
* @author H. DAY
|
||||
*/
|
||||
|
||||
namespace LibreNMS\OS;
|
||||
|
||||
use LibreNMS\Device\WirelessSensor;
|
||||
use LibreNMS\Interfaces\Discovery\Sensors\WirelessCellDiscovery;
|
||||
use LibreNMS\Interfaces\Discovery\Sensors\WirelessRsrpDiscovery;
|
||||
use LibreNMS\Interfaces\Discovery\Sensors\WirelessRsrqDiscovery;
|
||||
use LibreNMS\Interfaces\Discovery\Sensors\WirelessRssiDiscovery;
|
||||
use LibreNMS\Interfaces\Discovery\Sensors\WirelessSinrDiscovery;
|
||||
use LibreNMS\OS;
|
||||
|
||||
class RutosRutx extends OS implements
|
||||
WirelessRssiDiscovery,
|
||||
WirelessRsrpDiscovery,
|
||||
WirelessRsrqDiscovery,
|
||||
WirelessSinrDiscovery,
|
||||
WirelessCellDiscovery
|
||||
{
|
||||
public function discoverWirelessRssi()
|
||||
{
|
||||
$data = $this->getCacheTable('TELTONIKA-RUTX-MIB::modemTable');
|
||||
|
||||
$sensors = [];
|
||||
foreach ($data as $index => $entry) {
|
||||
$name = $this->getCacheByIndex('TELTONIKA-RUTX-MIB::mIndex');
|
||||
$sensors[] = new WirelessSensor(
|
||||
'rssi',
|
||||
$this->getDeviceId(),
|
||||
'.1.3.6.1.4.1.48690.2.2.1.12.' . $index,
|
||||
'rutos-rutx',
|
||||
$index,
|
||||
'Modem ' . $name[$index] . ' RSSI',
|
||||
$entry['mSignal']
|
||||
);
|
||||
}
|
||||
|
||||
return $sensors;
|
||||
}
|
||||
|
||||
public function discoverWirelessRsrp()
|
||||
{
|
||||
$data = $this->getCacheTable('TELTONIKA-RUTX-MIB::modemTable');
|
||||
|
||||
$sensors = [];
|
||||
foreach ($data as $index => $entry) {
|
||||
$name = $this->getCacheByIndex('TELTONIKA-RUTX-MIB::mIndex');
|
||||
$sensors[] = new WirelessSensor(
|
||||
'rsrp',
|
||||
$this->getDeviceId(),
|
||||
'.1.3.6.1.4.1.48690.2.2.1.20.' . $index,
|
||||
'rutos-rutx',
|
||||
$index,
|
||||
'Modem ' . $name[$index] . ' RSRP',
|
||||
$entry['mRSRP']
|
||||
);
|
||||
}
|
||||
|
||||
return $sensors;
|
||||
}
|
||||
|
||||
public function discoverWirelessRsrq()
|
||||
{
|
||||
$data = $this->getCacheTable('TELTONIKA-RUTX-MIB::modemTable');
|
||||
|
||||
$sensors = [];
|
||||
foreach ($data as $index => $entry) {
|
||||
$name = $this->getCacheByIndex('TELTONIKA-RUTX-MIB::mIndex');
|
||||
$sensors[] = new WirelessSensor(
|
||||
'rsrq',
|
||||
$this->getDeviceId(),
|
||||
'.1.3.6.1.4.1.48690.2.2.1.21.' . $index,
|
||||
'rutos-rutx',
|
||||
$index,
|
||||
'Modem ' . $name[$index] . ' RSRQ',
|
||||
$entry['mRSRQ']
|
||||
);
|
||||
}
|
||||
|
||||
return $sensors;
|
||||
}
|
||||
|
||||
public function discoverWirelessSinr()
|
||||
{
|
||||
$data = $this->getCacheTable('TELTONIKA-RUTX-MIB::modemTable');
|
||||
|
||||
$sensors = [];
|
||||
foreach ($data as $index => $entry) {
|
||||
$name = $this->getCacheByIndex('TELTONIKA-RUTX-MIB::mIndex');
|
||||
$sensors[] = new WirelessSensor(
|
||||
'sinr',
|
||||
$this->getDeviceId(),
|
||||
'.1.3.6.1.4.1.48690.2.2.1.19.' . $index,
|
||||
'rutos-rutx',
|
||||
$index,
|
||||
'Modem ' . $name[$index] . ' SINR',
|
||||
$entry['mSINR']
|
||||
);
|
||||
}
|
||||
|
||||
return $sensors;
|
||||
}
|
||||
|
||||
public function discoverWirelessCell()
|
||||
{
|
||||
$data = $this->getCacheTable('TELTONIKA-RUTX-MIB::modemTable');
|
||||
|
||||
$sensors = [];
|
||||
foreach ($data as $index => $entry) {
|
||||
$name = $this->getCacheByIndex('TELTONIKA-RUTX-MIB::mIndex');
|
||||
$sensors[] = new WirelessSensor(
|
||||
'cell',
|
||||
$this->getDeviceId(),
|
||||
'.1.3.6.1.4.1.48690.2.2.1.18.' . $index,
|
||||
'rutos-rutx',
|
||||
$index,
|
||||
'Modem ' . $name[$index] . ' CELL ID',
|
||||
$entry['CELLID']
|
||||
);
|
||||
}
|
||||
|
||||
return $sensors;
|
||||
}
|
||||
}
|
||||
@@ -25,6 +25,8 @@ modules:
|
||||
group: Modem
|
||||
index: "mTemperature.{{ $index }}"
|
||||
divisor: 10
|
||||
low_limit: -40
|
||||
high_limit: 75
|
||||
state:
|
||||
data:
|
||||
-
|
||||
@@ -104,3 +106,5 @@ modules:
|
||||
descr: "Signal Level"
|
||||
group: Mobile
|
||||
index: "mSignal.{{ $index }}"
|
||||
low_warn_limit: -85
|
||||
low_limit: -95
|
||||
|
||||
@@ -1283,6 +1283,216 @@
|
||||
"ifOutMulticastPkts_delta": null,
|
||||
"ifOutMulticastPkts_rate": null
|
||||
},
|
||||
{
|
||||
"port_descr_type": null,
|
||||
"port_descr_descr": null,
|
||||
"port_descr_circuit": null,
|
||||
"port_descr_speed": null,
|
||||
"port_descr_notes": null,
|
||||
"ifDescr": "wwan0",
|
||||
"ifName": "wwan0",
|
||||
"portName": null,
|
||||
"ifIndex": 13,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": null,
|
||||
"ifConnectorPresent": null,
|
||||
"ifPromiscuousMode": null,
|
||||
"ifOperStatus": "up",
|
||||
"ifOperStatus_prev": null,
|
||||
"ifAdminStatus": null,
|
||||
"ifAdminStatus_prev": null,
|
||||
"ifDuplex": null,
|
||||
"ifMtu": null,
|
||||
"ifType": "other",
|
||||
"ifAlias": "wwan0",
|
||||
"ifPhysAddress": null,
|
||||
"ifHardType": null,
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": "",
|
||||
"ifTrunk": null,
|
||||
"counter_in": null,
|
||||
"counter_out": null,
|
||||
"ignore": 0,
|
||||
"disabled": 0,
|
||||
"detailed": 0,
|
||||
"deleted": 0,
|
||||
"pagpOperationMode": null,
|
||||
"pagpPortState": null,
|
||||
"pagpPartnerDeviceId": null,
|
||||
"pagpPartnerLearnMethod": null,
|
||||
"pagpPartnerIfIndex": null,
|
||||
"pagpPartnerGroupIfIndex": null,
|
||||
"pagpPartnerDeviceName": null,
|
||||
"pagpEthcOperationMode": null,
|
||||
"pagpDeviceId": null,
|
||||
"pagpGroupIfIndex": null,
|
||||
"ifInUcastPkts": null,
|
||||
"ifInUcastPkts_prev": null,
|
||||
"ifInUcastPkts_delta": null,
|
||||
"ifInUcastPkts_rate": null,
|
||||
"ifOutUcastPkts": null,
|
||||
"ifOutUcastPkts_prev": null,
|
||||
"ifOutUcastPkts_delta": null,
|
||||
"ifOutUcastPkts_rate": null,
|
||||
"ifInErrors": null,
|
||||
"ifInErrors_prev": null,
|
||||
"ifInErrors_delta": null,
|
||||
"ifInErrors_rate": null,
|
||||
"ifOutErrors": null,
|
||||
"ifOutErrors_prev": null,
|
||||
"ifOutErrors_delta": null,
|
||||
"ifOutErrors_rate": null,
|
||||
"ifInOctets": null,
|
||||
"ifInOctets_prev": null,
|
||||
"ifInOctets_delta": null,
|
||||
"ifInOctets_rate": null,
|
||||
"ifOutOctets": null,
|
||||
"ifOutOctets_prev": null,
|
||||
"ifOutOctets_delta": null,
|
||||
"ifOutOctets_rate": null,
|
||||
"poll_prev": null,
|
||||
"ifInNUcastPkts": null,
|
||||
"ifInNUcastPkts_prev": null,
|
||||
"ifInNUcastPkts_delta": null,
|
||||
"ifInNUcastPkts_rate": null,
|
||||
"ifOutNUcastPkts": null,
|
||||
"ifOutNUcastPkts_prev": null,
|
||||
"ifOutNUcastPkts_delta": null,
|
||||
"ifOutNUcastPkts_rate": null,
|
||||
"ifInDiscards": null,
|
||||
"ifInDiscards_prev": null,
|
||||
"ifInDiscards_delta": null,
|
||||
"ifInDiscards_rate": null,
|
||||
"ifOutDiscards": null,
|
||||
"ifOutDiscards_prev": null,
|
||||
"ifOutDiscards_delta": null,
|
||||
"ifOutDiscards_rate": null,
|
||||
"ifInUnknownProtos": null,
|
||||
"ifInUnknownProtos_prev": null,
|
||||
"ifInUnknownProtos_delta": null,
|
||||
"ifInUnknownProtos_rate": null,
|
||||
"ifInBroadcastPkts": null,
|
||||
"ifInBroadcastPkts_prev": null,
|
||||
"ifInBroadcastPkts_delta": null,
|
||||
"ifInBroadcastPkts_rate": null,
|
||||
"ifOutBroadcastPkts": null,
|
||||
"ifOutBroadcastPkts_prev": null,
|
||||
"ifOutBroadcastPkts_delta": null,
|
||||
"ifOutBroadcastPkts_rate": null,
|
||||
"ifInMulticastPkts": null,
|
||||
"ifInMulticastPkts_prev": null,
|
||||
"ifInMulticastPkts_delta": null,
|
||||
"ifInMulticastPkts_rate": null,
|
||||
"ifOutMulticastPkts": null,
|
||||
"ifOutMulticastPkts_prev": null,
|
||||
"ifOutMulticastPkts_delta": null,
|
||||
"ifOutMulticastPkts_rate": null
|
||||
},
|
||||
{
|
||||
"port_descr_type": null,
|
||||
"port_descr_descr": null,
|
||||
"port_descr_circuit": null,
|
||||
"port_descr_speed": null,
|
||||
"port_descr_notes": null,
|
||||
"ifDescr": "br-lan",
|
||||
"ifName": "br-lan",
|
||||
"portName": null,
|
||||
"ifIndex": 19,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": null,
|
||||
"ifConnectorPresent": null,
|
||||
"ifPromiscuousMode": null,
|
||||
"ifOperStatus": "up",
|
||||
"ifOperStatus_prev": null,
|
||||
"ifAdminStatus": null,
|
||||
"ifAdminStatus_prev": null,
|
||||
"ifDuplex": null,
|
||||
"ifMtu": null,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "br-lan",
|
||||
"ifPhysAddress": null,
|
||||
"ifHardType": null,
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": "",
|
||||
"ifTrunk": null,
|
||||
"counter_in": null,
|
||||
"counter_out": null,
|
||||
"ignore": 0,
|
||||
"disabled": 0,
|
||||
"detailed": 0,
|
||||
"deleted": 0,
|
||||
"pagpOperationMode": null,
|
||||
"pagpPortState": null,
|
||||
"pagpPartnerDeviceId": null,
|
||||
"pagpPartnerLearnMethod": null,
|
||||
"pagpPartnerIfIndex": null,
|
||||
"pagpPartnerGroupIfIndex": null,
|
||||
"pagpPartnerDeviceName": null,
|
||||
"pagpEthcOperationMode": null,
|
||||
"pagpDeviceId": null,
|
||||
"pagpGroupIfIndex": null,
|
||||
"ifInUcastPkts": null,
|
||||
"ifInUcastPkts_prev": null,
|
||||
"ifInUcastPkts_delta": null,
|
||||
"ifInUcastPkts_rate": null,
|
||||
"ifOutUcastPkts": null,
|
||||
"ifOutUcastPkts_prev": null,
|
||||
"ifOutUcastPkts_delta": null,
|
||||
"ifOutUcastPkts_rate": null,
|
||||
"ifInErrors": null,
|
||||
"ifInErrors_prev": null,
|
||||
"ifInErrors_delta": null,
|
||||
"ifInErrors_rate": null,
|
||||
"ifOutErrors": null,
|
||||
"ifOutErrors_prev": null,
|
||||
"ifOutErrors_delta": null,
|
||||
"ifOutErrors_rate": null,
|
||||
"ifInOctets": null,
|
||||
"ifInOctets_prev": null,
|
||||
"ifInOctets_delta": null,
|
||||
"ifInOctets_rate": null,
|
||||
"ifOutOctets": null,
|
||||
"ifOutOctets_prev": null,
|
||||
"ifOutOctets_delta": null,
|
||||
"ifOutOctets_rate": null,
|
||||
"poll_prev": null,
|
||||
"ifInNUcastPkts": null,
|
||||
"ifInNUcastPkts_prev": null,
|
||||
"ifInNUcastPkts_delta": null,
|
||||
"ifInNUcastPkts_rate": null,
|
||||
"ifOutNUcastPkts": null,
|
||||
"ifOutNUcastPkts_prev": null,
|
||||
"ifOutNUcastPkts_delta": null,
|
||||
"ifOutNUcastPkts_rate": null,
|
||||
"ifInDiscards": null,
|
||||
"ifInDiscards_prev": null,
|
||||
"ifInDiscards_delta": null,
|
||||
"ifInDiscards_rate": null,
|
||||
"ifOutDiscards": null,
|
||||
"ifOutDiscards_prev": null,
|
||||
"ifOutDiscards_delta": null,
|
||||
"ifOutDiscards_rate": null,
|
||||
"ifInUnknownProtos": null,
|
||||
"ifInUnknownProtos_prev": null,
|
||||
"ifInUnknownProtos_delta": null,
|
||||
"ifInUnknownProtos_rate": null,
|
||||
"ifInBroadcastPkts": null,
|
||||
"ifInBroadcastPkts_prev": null,
|
||||
"ifInBroadcastPkts_delta": null,
|
||||
"ifInBroadcastPkts_rate": null,
|
||||
"ifOutBroadcastPkts": null,
|
||||
"ifOutBroadcastPkts_prev": null,
|
||||
"ifOutBroadcastPkts_delta": null,
|
||||
"ifOutBroadcastPkts_rate": null,
|
||||
"ifInMulticastPkts": null,
|
||||
"ifInMulticastPkts_prev": null,
|
||||
"ifInMulticastPkts_delta": null,
|
||||
"ifInMulticastPkts_rate": null,
|
||||
"ifOutMulticastPkts": null,
|
||||
"ifOutMulticastPkts_prev": null,
|
||||
"ifOutMulticastPkts_delta": null,
|
||||
"ifOutMulticastPkts_rate": null
|
||||
},
|
||||
{
|
||||
"port_descr_type": null,
|
||||
"port_descr_descr": null,
|
||||
@@ -2332,6 +2542,111 @@
|
||||
"ifOutMulticastPkts_prev": null,
|
||||
"ifOutMulticastPkts_delta": null,
|
||||
"ifOutMulticastPkts_rate": null
|
||||
},
|
||||
{
|
||||
"port_descr_type": null,
|
||||
"port_descr_descr": null,
|
||||
"port_descr_circuit": null,
|
||||
"port_descr_speed": null,
|
||||
"port_descr_notes": null,
|
||||
"ifDescr": "qmimux8",
|
||||
"ifName": "qmimux8",
|
||||
"portName": null,
|
||||
"ifIndex": 30,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed_prev": null,
|
||||
"ifConnectorPresent": null,
|
||||
"ifPromiscuousMode": null,
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": null,
|
||||
"ifAdminStatus": null,
|
||||
"ifAdminStatus_prev": null,
|
||||
"ifDuplex": null,
|
||||
"ifMtu": null,
|
||||
"ifType": "other",
|
||||
"ifAlias": "qmimux8",
|
||||
"ifPhysAddress": null,
|
||||
"ifHardType": null,
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": "",
|
||||
"ifTrunk": null,
|
||||
"counter_in": null,
|
||||
"counter_out": null,
|
||||
"ignore": 0,
|
||||
"disabled": 0,
|
||||
"detailed": 0,
|
||||
"deleted": 0,
|
||||
"pagpOperationMode": null,
|
||||
"pagpPortState": null,
|
||||
"pagpPartnerDeviceId": null,
|
||||
"pagpPartnerLearnMethod": null,
|
||||
"pagpPartnerIfIndex": null,
|
||||
"pagpPartnerGroupIfIndex": null,
|
||||
"pagpPartnerDeviceName": null,
|
||||
"pagpEthcOperationMode": null,
|
||||
"pagpDeviceId": null,
|
||||
"pagpGroupIfIndex": null,
|
||||
"ifInUcastPkts": null,
|
||||
"ifInUcastPkts_prev": null,
|
||||
"ifInUcastPkts_delta": null,
|
||||
"ifInUcastPkts_rate": null,
|
||||
"ifOutUcastPkts": null,
|
||||
"ifOutUcastPkts_prev": null,
|
||||
"ifOutUcastPkts_delta": null,
|
||||
"ifOutUcastPkts_rate": null,
|
||||
"ifInErrors": null,
|
||||
"ifInErrors_prev": null,
|
||||
"ifInErrors_delta": null,
|
||||
"ifInErrors_rate": null,
|
||||
"ifOutErrors": null,
|
||||
"ifOutErrors_prev": null,
|
||||
"ifOutErrors_delta": null,
|
||||
"ifOutErrors_rate": null,
|
||||
"ifInOctets": null,
|
||||
"ifInOctets_prev": null,
|
||||
"ifInOctets_delta": null,
|
||||
"ifInOctets_rate": null,
|
||||
"ifOutOctets": null,
|
||||
"ifOutOctets_prev": null,
|
||||
"ifOutOctets_delta": null,
|
||||
"ifOutOctets_rate": null,
|
||||
"poll_prev": null,
|
||||
"ifInNUcastPkts": null,
|
||||
"ifInNUcastPkts_prev": null,
|
||||
"ifInNUcastPkts_delta": null,
|
||||
"ifInNUcastPkts_rate": null,
|
||||
"ifOutNUcastPkts": null,
|
||||
"ifOutNUcastPkts_prev": null,
|
||||
"ifOutNUcastPkts_delta": null,
|
||||
"ifOutNUcastPkts_rate": null,
|
||||
"ifInDiscards": null,
|
||||
"ifInDiscards_prev": null,
|
||||
"ifInDiscards_delta": null,
|
||||
"ifInDiscards_rate": null,
|
||||
"ifOutDiscards": null,
|
||||
"ifOutDiscards_prev": null,
|
||||
"ifOutDiscards_delta": null,
|
||||
"ifOutDiscards_rate": null,
|
||||
"ifInUnknownProtos": null,
|
||||
"ifInUnknownProtos_prev": null,
|
||||
"ifInUnknownProtos_delta": null,
|
||||
"ifInUnknownProtos_rate": null,
|
||||
"ifInBroadcastPkts": null,
|
||||
"ifInBroadcastPkts_prev": null,
|
||||
"ifInBroadcastPkts_delta": null,
|
||||
"ifInBroadcastPkts_rate": null,
|
||||
"ifOutBroadcastPkts": null,
|
||||
"ifOutBroadcastPkts_prev": null,
|
||||
"ifOutBroadcastPkts_delta": null,
|
||||
"ifOutBroadcastPkts_rate": null,
|
||||
"ifInMulticastPkts": null,
|
||||
"ifInMulticastPkts_prev": null,
|
||||
"ifInMulticastPkts_delta": null,
|
||||
"ifInMulticastPkts_rate": null,
|
||||
"ifOutMulticastPkts": null,
|
||||
"ifOutMulticastPkts_prev": null,
|
||||
"ifOutMulticastPkts_delta": null,
|
||||
"ifOutMulticastPkts_rate": null
|
||||
}
|
||||
]
|
||||
},
|
||||
@@ -3597,6 +3912,216 @@
|
||||
"ifOutMulticastPkts_delta": null,
|
||||
"ifOutMulticastPkts_rate": null
|
||||
},
|
||||
{
|
||||
"port_descr_type": null,
|
||||
"port_descr_descr": null,
|
||||
"port_descr_circuit": null,
|
||||
"port_descr_speed": null,
|
||||
"port_descr_notes": null,
|
||||
"ifDescr": "wwan0",
|
||||
"ifName": "wwan0",
|
||||
"portName": null,
|
||||
"ifIndex": 13,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifConnectorPresent": "true",
|
||||
"ifPromiscuousMode": "false",
|
||||
"ifOperStatus": "up",
|
||||
"ifOperStatus_prev": "up",
|
||||
"ifAdminStatus": "up",
|
||||
"ifAdminStatus_prev": null,
|
||||
"ifDuplex": null,
|
||||
"ifMtu": 16384,
|
||||
"ifType": "other",
|
||||
"ifAlias": "wwan0",
|
||||
"ifPhysAddress": null,
|
||||
"ifHardType": null,
|
||||
"ifLastChange": 18335,
|
||||
"ifVlan": "",
|
||||
"ifTrunk": null,
|
||||
"counter_in": null,
|
||||
"counter_out": null,
|
||||
"ignore": 0,
|
||||
"disabled": 0,
|
||||
"detailed": 0,
|
||||
"deleted": 0,
|
||||
"pagpOperationMode": null,
|
||||
"pagpPortState": null,
|
||||
"pagpPartnerDeviceId": null,
|
||||
"pagpPartnerLearnMethod": null,
|
||||
"pagpPartnerIfIndex": null,
|
||||
"pagpPartnerGroupIfIndex": null,
|
||||
"pagpPartnerDeviceName": null,
|
||||
"pagpEthcOperationMode": null,
|
||||
"pagpDeviceId": null,
|
||||
"pagpGroupIfIndex": null,
|
||||
"ifInUcastPkts": 11208,
|
||||
"ifInUcastPkts_prev": 0,
|
||||
"ifInUcastPkts_delta": null,
|
||||
"ifInUcastPkts_rate": null,
|
||||
"ifOutUcastPkts": 14595,
|
||||
"ifOutUcastPkts_prev": 0,
|
||||
"ifOutUcastPkts_delta": null,
|
||||
"ifOutUcastPkts_rate": null,
|
||||
"ifInErrors": 0,
|
||||
"ifInErrors_prev": 0,
|
||||
"ifInErrors_delta": null,
|
||||
"ifInErrors_rate": null,
|
||||
"ifOutErrors": 0,
|
||||
"ifOutErrors_prev": 0,
|
||||
"ifOutErrors_delta": null,
|
||||
"ifOutErrors_rate": null,
|
||||
"ifInOctets": 6956416,
|
||||
"ifInOctets_prev": 0,
|
||||
"ifInOctets_delta": null,
|
||||
"ifInOctets_rate": null,
|
||||
"ifOutOctets": 7300922,
|
||||
"ifOutOctets_prev": 0,
|
||||
"ifOutOctets_delta": null,
|
||||
"ifOutOctets_rate": null,
|
||||
"poll_prev": null,
|
||||
"ifInNUcastPkts": 0,
|
||||
"ifInNUcastPkts_prev": 0,
|
||||
"ifInNUcastPkts_delta": null,
|
||||
"ifInNUcastPkts_rate": null,
|
||||
"ifOutNUcastPkts": 0,
|
||||
"ifOutNUcastPkts_prev": 0,
|
||||
"ifOutNUcastPkts_delta": null,
|
||||
"ifOutNUcastPkts_rate": null,
|
||||
"ifInDiscards": 11208,
|
||||
"ifInDiscards_prev": 0,
|
||||
"ifInDiscards_delta": null,
|
||||
"ifInDiscards_rate": null,
|
||||
"ifOutDiscards": 0,
|
||||
"ifOutDiscards_prev": 0,
|
||||
"ifOutDiscards_delta": null,
|
||||
"ifOutDiscards_rate": null,
|
||||
"ifInUnknownProtos": 0,
|
||||
"ifInUnknownProtos_prev": 0,
|
||||
"ifInUnknownProtos_delta": null,
|
||||
"ifInUnknownProtos_rate": null,
|
||||
"ifInBroadcastPkts": 0,
|
||||
"ifInBroadcastPkts_prev": 0,
|
||||
"ifInBroadcastPkts_delta": null,
|
||||
"ifInBroadcastPkts_rate": null,
|
||||
"ifOutBroadcastPkts": 0,
|
||||
"ifOutBroadcastPkts_prev": 0,
|
||||
"ifOutBroadcastPkts_delta": null,
|
||||
"ifOutBroadcastPkts_rate": null,
|
||||
"ifInMulticastPkts": 0,
|
||||
"ifInMulticastPkts_prev": 0,
|
||||
"ifInMulticastPkts_delta": null,
|
||||
"ifInMulticastPkts_rate": null,
|
||||
"ifOutMulticastPkts": 0,
|
||||
"ifOutMulticastPkts_prev": 0,
|
||||
"ifOutMulticastPkts_delta": null,
|
||||
"ifOutMulticastPkts_rate": null
|
||||
},
|
||||
{
|
||||
"port_descr_type": null,
|
||||
"port_descr_descr": null,
|
||||
"port_descr_circuit": null,
|
||||
"port_descr_speed": null,
|
||||
"port_descr_notes": null,
|
||||
"ifDescr": "br-lan",
|
||||
"ifName": "br-lan",
|
||||
"portName": null,
|
||||
"ifIndex": 19,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifConnectorPresent": "true",
|
||||
"ifPromiscuousMode": "false",
|
||||
"ifOperStatus": "up",
|
||||
"ifOperStatus_prev": "up",
|
||||
"ifAdminStatus": "up",
|
||||
"ifAdminStatus_prev": null,
|
||||
"ifDuplex": null,
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "br-lan",
|
||||
"ifPhysAddress": "001e422aa52b",
|
||||
"ifHardType": null,
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": "",
|
||||
"ifTrunk": null,
|
||||
"counter_in": null,
|
||||
"counter_out": null,
|
||||
"ignore": 0,
|
||||
"disabled": 0,
|
||||
"detailed": 0,
|
||||
"deleted": 0,
|
||||
"pagpOperationMode": null,
|
||||
"pagpPortState": null,
|
||||
"pagpPartnerDeviceId": null,
|
||||
"pagpPartnerLearnMethod": null,
|
||||
"pagpPartnerIfIndex": null,
|
||||
"pagpPartnerGroupIfIndex": null,
|
||||
"pagpPartnerDeviceName": null,
|
||||
"pagpEthcOperationMode": null,
|
||||
"pagpDeviceId": null,
|
||||
"pagpGroupIfIndex": null,
|
||||
"ifInUcastPkts": 247267,
|
||||
"ifInUcastPkts_prev": 0,
|
||||
"ifInUcastPkts_delta": null,
|
||||
"ifInUcastPkts_rate": null,
|
||||
"ifOutUcastPkts": 317459,
|
||||
"ifOutUcastPkts_prev": 0,
|
||||
"ifOutUcastPkts_delta": null,
|
||||
"ifOutUcastPkts_rate": null,
|
||||
"ifInErrors": 0,
|
||||
"ifInErrors_prev": 0,
|
||||
"ifInErrors_delta": null,
|
||||
"ifInErrors_rate": null,
|
||||
"ifOutErrors": 0,
|
||||
"ifOutErrors_prev": 0,
|
||||
"ifOutErrors_delta": null,
|
||||
"ifOutErrors_rate": null,
|
||||
"ifInOctets": 99923582,
|
||||
"ifInOctets_prev": 0,
|
||||
"ifInOctets_delta": null,
|
||||
"ifInOctets_rate": null,
|
||||
"ifOutOctets": 687302879,
|
||||
"ifOutOctets_prev": 0,
|
||||
"ifOutOctets_delta": null,
|
||||
"ifOutOctets_rate": null,
|
||||
"poll_prev": null,
|
||||
"ifInNUcastPkts": 0,
|
||||
"ifInNUcastPkts_prev": 0,
|
||||
"ifInNUcastPkts_delta": null,
|
||||
"ifInNUcastPkts_rate": null,
|
||||
"ifOutNUcastPkts": 0,
|
||||
"ifOutNUcastPkts_prev": 0,
|
||||
"ifOutNUcastPkts_delta": null,
|
||||
"ifOutNUcastPkts_rate": null,
|
||||
"ifInDiscards": 0,
|
||||
"ifInDiscards_prev": 0,
|
||||
"ifInDiscards_delta": null,
|
||||
"ifInDiscards_rate": null,
|
||||
"ifOutDiscards": 0,
|
||||
"ifOutDiscards_prev": 0,
|
||||
"ifOutDiscards_delta": null,
|
||||
"ifOutDiscards_rate": null,
|
||||
"ifInUnknownProtos": 0,
|
||||
"ifInUnknownProtos_prev": 0,
|
||||
"ifInUnknownProtos_delta": null,
|
||||
"ifInUnknownProtos_rate": null,
|
||||
"ifInBroadcastPkts": 0,
|
||||
"ifInBroadcastPkts_prev": 0,
|
||||
"ifInBroadcastPkts_delta": null,
|
||||
"ifInBroadcastPkts_rate": null,
|
||||
"ifOutBroadcastPkts": 0,
|
||||
"ifOutBroadcastPkts_prev": 0,
|
||||
"ifOutBroadcastPkts_delta": null,
|
||||
"ifOutBroadcastPkts_rate": null,
|
||||
"ifInMulticastPkts": 83,
|
||||
"ifInMulticastPkts_prev": 0,
|
||||
"ifInMulticastPkts_delta": null,
|
||||
"ifInMulticastPkts_rate": null,
|
||||
"ifOutMulticastPkts": 0,
|
||||
"ifOutMulticastPkts_prev": 0,
|
||||
"ifOutMulticastPkts_delta": null,
|
||||
"ifOutMulticastPkts_rate": null
|
||||
},
|
||||
{
|
||||
"port_descr_type": null,
|
||||
"port_descr_descr": null,
|
||||
@@ -4646,6 +5171,111 @@
|
||||
"ifOutMulticastPkts_prev": 0,
|
||||
"ifOutMulticastPkts_delta": null,
|
||||
"ifOutMulticastPkts_rate": null
|
||||
},
|
||||
{
|
||||
"port_descr_type": null,
|
||||
"port_descr_descr": null,
|
||||
"port_descr_circuit": null,
|
||||
"port_descr_speed": null,
|
||||
"port_descr_notes": null,
|
||||
"ifDescr": "qmimux8",
|
||||
"ifName": "qmimux8",
|
||||
"portName": null,
|
||||
"ifIndex": 30,
|
||||
"ifSpeed": 0,
|
||||
"ifSpeed_prev": null,
|
||||
"ifConnectorPresent": "true",
|
||||
"ifPromiscuousMode": "false",
|
||||
"ifOperStatus": "down",
|
||||
"ifOperStatus_prev": "down",
|
||||
"ifAdminStatus": "down",
|
||||
"ifAdminStatus_prev": null,
|
||||
"ifDuplex": null,
|
||||
"ifMtu": 1500,
|
||||
"ifType": "other",
|
||||
"ifAlias": "qmimux8",
|
||||
"ifPhysAddress": null,
|
||||
"ifHardType": null,
|
||||
"ifLastChange": 17130,
|
||||
"ifVlan": "",
|
||||
"ifTrunk": null,
|
||||
"counter_in": null,
|
||||
"counter_out": null,
|
||||
"ignore": 0,
|
||||
"disabled": 0,
|
||||
"detailed": 0,
|
||||
"deleted": 0,
|
||||
"pagpOperationMode": null,
|
||||
"pagpPortState": null,
|
||||
"pagpPartnerDeviceId": null,
|
||||
"pagpPartnerLearnMethod": null,
|
||||
"pagpPartnerIfIndex": null,
|
||||
"pagpPartnerGroupIfIndex": null,
|
||||
"pagpPartnerDeviceName": null,
|
||||
"pagpEthcOperationMode": null,
|
||||
"pagpDeviceId": null,
|
||||
"pagpGroupIfIndex": null,
|
||||
"ifInUcastPkts": 0,
|
||||
"ifInUcastPkts_prev": 0,
|
||||
"ifInUcastPkts_delta": null,
|
||||
"ifInUcastPkts_rate": null,
|
||||
"ifOutUcastPkts": 0,
|
||||
"ifOutUcastPkts_prev": 0,
|
||||
"ifOutUcastPkts_delta": null,
|
||||
"ifOutUcastPkts_rate": null,
|
||||
"ifInErrors": 0,
|
||||
"ifInErrors_prev": 0,
|
||||
"ifInErrors_delta": null,
|
||||
"ifInErrors_rate": null,
|
||||
"ifOutErrors": 0,
|
||||
"ifOutErrors_prev": 0,
|
||||
"ifOutErrors_delta": null,
|
||||
"ifOutErrors_rate": null,
|
||||
"ifInOctets": 0,
|
||||
"ifInOctets_prev": 0,
|
||||
"ifInOctets_delta": null,
|
||||
"ifInOctets_rate": null,
|
||||
"ifOutOctets": 0,
|
||||
"ifOutOctets_prev": 0,
|
||||
"ifOutOctets_delta": null,
|
||||
"ifOutOctets_rate": null,
|
||||
"poll_prev": null,
|
||||
"ifInNUcastPkts": 0,
|
||||
"ifInNUcastPkts_prev": 0,
|
||||
"ifInNUcastPkts_delta": null,
|
||||
"ifInNUcastPkts_rate": null,
|
||||
"ifOutNUcastPkts": 0,
|
||||
"ifOutNUcastPkts_prev": 0,
|
||||
"ifOutNUcastPkts_delta": null,
|
||||
"ifOutNUcastPkts_rate": null,
|
||||
"ifInDiscards": 0,
|
||||
"ifInDiscards_prev": 0,
|
||||
"ifInDiscards_delta": null,
|
||||
"ifInDiscards_rate": null,
|
||||
"ifOutDiscards": 0,
|
||||
"ifOutDiscards_prev": 0,
|
||||
"ifOutDiscards_delta": null,
|
||||
"ifOutDiscards_rate": null,
|
||||
"ifInUnknownProtos": 0,
|
||||
"ifInUnknownProtos_prev": 0,
|
||||
"ifInUnknownProtos_delta": null,
|
||||
"ifInUnknownProtos_rate": null,
|
||||
"ifInBroadcastPkts": 0,
|
||||
"ifInBroadcastPkts_prev": 0,
|
||||
"ifInBroadcastPkts_delta": null,
|
||||
"ifInBroadcastPkts_rate": null,
|
||||
"ifOutBroadcastPkts": 0,
|
||||
"ifOutBroadcastPkts_prev": 0,
|
||||
"ifOutBroadcastPkts_delta": null,
|
||||
"ifOutBroadcastPkts_rate": null,
|
||||
"ifInMulticastPkts": 0,
|
||||
"ifInMulticastPkts_prev": 0,
|
||||
"ifInMulticastPkts_delta": null,
|
||||
"ifInMulticastPkts_rate": null,
|
||||
"ifOutMulticastPkts": 0,
|
||||
"ifOutMulticastPkts_prev": 0,
|
||||
"ifOutMulticastPkts_delta": null,
|
||||
"ifOutMulticastPkts_rate": null
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -4897,8 +5527,8 @@
|
||||
"sensor_current": -65,
|
||||
"sensor_limit": -30,
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": -80,
|
||||
"sensor_limit_low_warn": null,
|
||||
"sensor_limit_low": -95,
|
||||
"sensor_limit_low_warn": -85,
|
||||
"sensor_alert": 1,
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": "1",
|
||||
@@ -4938,7 +5568,7 @@
|
||||
"sensor_oid": ".1.3.6.1.4.1.48690.2.2.1.11.1",
|
||||
"sensor_index": "1",
|
||||
"sensor_type": "NetState",
|
||||
"sensor_descr": "Mobile Net State (Cell ID 137197088)",
|
||||
"sensor_descr": "Mobile Net State (Cell ID 123456789)",
|
||||
"group": "Mobile",
|
||||
"sensor_divisor": 1,
|
||||
"sensor_multiplier": 1,
|
||||
@@ -5015,9 +5645,9 @@
|
||||
"sensor_divisor": 10,
|
||||
"sensor_multiplier": 1,
|
||||
"sensor_current": 32,
|
||||
"sensor_limit": 52,
|
||||
"sensor_limit": 75,
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": 22,
|
||||
"sensor_limit_low": -40,
|
||||
"sensor_limit_low_warn": null,
|
||||
"sensor_alert": 1,
|
||||
"sensor_custom": "No",
|
||||
@@ -5272,5 +5902,225 @@
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"wireless": {
|
||||
"discovery": {
|
||||
"wireless_sensors": [
|
||||
{
|
||||
"sensor_deleted": 0,
|
||||
"sensor_class": "sinr",
|
||||
"sensor_index": "1",
|
||||
"sensor_type": "rutos-rutx",
|
||||
"sensor_descr": "Modem 1 SINR",
|
||||
"sensor_divisor": 1,
|
||||
"sensor_multiplier": 1,
|
||||
"sensor_aggregator": "sum",
|
||||
"sensor_current": 16.1,
|
||||
"sensor_prev": null,
|
||||
"sensor_limit": null,
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": null,
|
||||
"sensor_limit_low_warn": null,
|
||||
"sensor_alert": 1,
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": null,
|
||||
"entPhysicalIndex_measured": null,
|
||||
"sensor_oids": "[\".1.3.6.1.4.1.48690.2.2.1.19.1\"]"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": 0,
|
||||
"sensor_class": "rsrp",
|
||||
"sensor_index": "1",
|
||||
"sensor_type": "rutos-rutx",
|
||||
"sensor_descr": "Modem 1 RSRP",
|
||||
"sensor_divisor": 1,
|
||||
"sensor_multiplier": 1,
|
||||
"sensor_aggregator": "sum",
|
||||
"sensor_current": -90,
|
||||
"sensor_prev": null,
|
||||
"sensor_limit": null,
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": null,
|
||||
"sensor_limit_low_warn": null,
|
||||
"sensor_alert": 1,
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": null,
|
||||
"entPhysicalIndex_measured": null,
|
||||
"sensor_oids": "[\".1.3.6.1.4.1.48690.2.2.1.20.1\"]"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": 0,
|
||||
"sensor_class": "rsrq",
|
||||
"sensor_index": "1",
|
||||
"sensor_type": "rutos-rutx",
|
||||
"sensor_descr": "Modem 1 RSRQ",
|
||||
"sensor_divisor": 1,
|
||||
"sensor_multiplier": 1,
|
||||
"sensor_aggregator": "sum",
|
||||
"sensor_current": -11,
|
||||
"sensor_prev": null,
|
||||
"sensor_limit": null,
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": null,
|
||||
"sensor_limit_low_warn": null,
|
||||
"sensor_alert": 1,
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": null,
|
||||
"entPhysicalIndex_measured": null,
|
||||
"sensor_oids": "[\".1.3.6.1.4.1.48690.2.2.1.21.1\"]"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": 0,
|
||||
"sensor_class": "rssi",
|
||||
"sensor_index": "1",
|
||||
"sensor_type": "rutos-rutx",
|
||||
"sensor_descr": "Modem 1 RSSI",
|
||||
"sensor_divisor": 1,
|
||||
"sensor_multiplier": 1,
|
||||
"sensor_aggregator": "sum",
|
||||
"sensor_current": -65,
|
||||
"sensor_prev": null,
|
||||
"sensor_limit": null,
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": null,
|
||||
"sensor_limit_low_warn": null,
|
||||
"sensor_alert": 1,
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": null,
|
||||
"entPhysicalIndex_measured": null,
|
||||
"sensor_oids": "[\".1.3.6.1.4.1.48690.2.2.1.12.1\"]"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": 0,
|
||||
"sensor_class": "cell",
|
||||
"sensor_index": "1",
|
||||
"sensor_type": "rutos-rutx",
|
||||
"sensor_descr": "Modem 1 CELL ID",
|
||||
"sensor_divisor": 1,
|
||||
"sensor_multiplier": 1,
|
||||
"sensor_aggregator": "sum",
|
||||
"sensor_current": 123456789,
|
||||
"sensor_prev": null,
|
||||
"sensor_limit": null,
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": null,
|
||||
"sensor_limit_low_warn": null,
|
||||
"sensor_alert": 1,
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": null,
|
||||
"entPhysicalIndex_measured": null,
|
||||
"sensor_oids": "[\".1.3.6.1.4.1.48690.2.2.1.18.1\"]"
|
||||
}
|
||||
]
|
||||
},
|
||||
"poller": {
|
||||
"wireless_sensors": [
|
||||
{
|
||||
"sensor_deleted": 0,
|
||||
"sensor_class": "sinr",
|
||||
"sensor_index": "1",
|
||||
"sensor_type": "rutos-rutx",
|
||||
"sensor_descr": "Modem 1 SINR",
|
||||
"sensor_divisor": 1,
|
||||
"sensor_multiplier": 1,
|
||||
"sensor_aggregator": "sum",
|
||||
"sensor_current": 16.1,
|
||||
"sensor_prev": 16.1,
|
||||
"sensor_limit": null,
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": null,
|
||||
"sensor_limit_low_warn": null,
|
||||
"sensor_alert": 1,
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": null,
|
||||
"entPhysicalIndex_measured": null,
|
||||
"sensor_oids": "[\".1.3.6.1.4.1.48690.2.2.1.19.1\"]"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": 0,
|
||||
"sensor_class": "rsrp",
|
||||
"sensor_index": "1",
|
||||
"sensor_type": "rutos-rutx",
|
||||
"sensor_descr": "Modem 1 RSRP",
|
||||
"sensor_divisor": 1,
|
||||
"sensor_multiplier": 1,
|
||||
"sensor_aggregator": "sum",
|
||||
"sensor_current": -90,
|
||||
"sensor_prev": -90,
|
||||
"sensor_limit": null,
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": null,
|
||||
"sensor_limit_low_warn": null,
|
||||
"sensor_alert": 1,
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": null,
|
||||
"entPhysicalIndex_measured": null,
|
||||
"sensor_oids": "[\".1.3.6.1.4.1.48690.2.2.1.20.1\"]"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": 0,
|
||||
"sensor_class": "rsrq",
|
||||
"sensor_index": "1",
|
||||
"sensor_type": "rutos-rutx",
|
||||
"sensor_descr": "Modem 1 RSRQ",
|
||||
"sensor_divisor": 1,
|
||||
"sensor_multiplier": 1,
|
||||
"sensor_aggregator": "sum",
|
||||
"sensor_current": -11,
|
||||
"sensor_prev": -11,
|
||||
"sensor_limit": null,
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": null,
|
||||
"sensor_limit_low_warn": null,
|
||||
"sensor_alert": 1,
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": null,
|
||||
"entPhysicalIndex_measured": null,
|
||||
"sensor_oids": "[\".1.3.6.1.4.1.48690.2.2.1.21.1\"]"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": 0,
|
||||
"sensor_class": "rssi",
|
||||
"sensor_index": "1",
|
||||
"sensor_type": "rutos-rutx",
|
||||
"sensor_descr": "Modem 1 RSSI",
|
||||
"sensor_divisor": 1,
|
||||
"sensor_multiplier": 1,
|
||||
"sensor_aggregator": "sum",
|
||||
"sensor_current": -65,
|
||||
"sensor_prev": -65,
|
||||
"sensor_limit": null,
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": null,
|
||||
"sensor_limit_low_warn": null,
|
||||
"sensor_alert": 1,
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": null,
|
||||
"entPhysicalIndex_measured": null,
|
||||
"sensor_oids": "[\".1.3.6.1.4.1.48690.2.2.1.12.1\"]"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": 0,
|
||||
"sensor_class": "cell",
|
||||
"sensor_index": "1",
|
||||
"sensor_type": "rutos-rutx",
|
||||
"sensor_descr": "Modem 1 CELL ID",
|
||||
"sensor_divisor": 1,
|
||||
"sensor_multiplier": 1,
|
||||
"sensor_aggregator": "sum",
|
||||
"sensor_current": 123456789,
|
||||
"sensor_prev": 123456789,
|
||||
"sensor_limit": null,
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": null,
|
||||
"sensor_limit_low_warn": null,
|
||||
"sensor_alert": 1,
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": null,
|
||||
"entPhysicalIndex_measured": null,
|
||||
"sensor_oids": "[\".1.3.6.1.4.1.48690.2.2.1.18.1\"]"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -16,6 +16,8 @@
|
||||
1.3.6.1.2.1.2.2.1.2.10|4|erspan0
|
||||
1.3.6.1.2.1.2.2.1.2.11|4|ip6gre0
|
||||
1.3.6.1.2.1.2.2.1.2.12|4|wwan0
|
||||
1.3.6.1.2.1.2.2.1.2.13|4|wwan0
|
||||
1.3.6.1.2.1.2.2.1.2.19|4|br-lan
|
||||
1.3.6.1.2.1.2.2.1.2.20|4|br-lan
|
||||
1.3.6.1.2.1.2.2.1.2.21|4|qmimux0
|
||||
1.3.6.1.2.1.2.2.1.2.22|4|qmimux1
|
||||
@@ -26,6 +28,7 @@
|
||||
1.3.6.1.2.1.2.2.1.2.27|4|qmimux6
|
||||
1.3.6.1.2.1.2.2.1.2.28|4|qmimux7
|
||||
1.3.6.1.2.1.2.2.1.2.29|4|qmimux8
|
||||
1.3.6.1.2.1.2.2.1.2.30|4|qmimux8
|
||||
1.3.6.1.2.1.2.2.1.3.1|2|24
|
||||
1.3.6.1.2.1.2.2.1.3.2|2|6
|
||||
1.3.6.1.2.1.2.2.1.3.3|2|6
|
||||
@@ -38,6 +41,8 @@
|
||||
1.3.6.1.2.1.2.2.1.3.10|2|6
|
||||
1.3.6.1.2.1.2.2.1.3.11|2|1
|
||||
1.3.6.1.2.1.2.2.1.3.12|2|1
|
||||
1.3.6.1.2.1.2.2.1.3.13|2|1
|
||||
1.3.6.1.2.1.2.2.1.3.19|2|6
|
||||
1.3.6.1.2.1.2.2.1.3.20|2|6
|
||||
1.3.6.1.2.1.2.2.1.3.21|2|1
|
||||
1.3.6.1.2.1.2.2.1.3.22|2|1
|
||||
@@ -48,6 +53,7 @@
|
||||
1.3.6.1.2.1.2.2.1.3.27|2|1
|
||||
1.3.6.1.2.1.2.2.1.3.28|2|1
|
||||
1.3.6.1.2.1.2.2.1.3.29|2|1
|
||||
1.3.6.1.2.1.2.2.1.3.30|2|1
|
||||
1.3.6.1.2.1.2.2.1.4.1|2|65536
|
||||
1.3.6.1.2.1.2.2.1.4.2|2|1500
|
||||
1.3.6.1.2.1.2.2.1.4.3|2|1500
|
||||
@@ -60,6 +66,8 @@
|
||||
1.3.6.1.2.1.2.2.1.4.10|2|1450
|
||||
1.3.6.1.2.1.2.2.1.4.11|2|1448
|
||||
1.3.6.1.2.1.2.2.1.4.12|2|16384
|
||||
1.3.6.1.2.1.2.2.1.4.13|2|16384
|
||||
1.3.6.1.2.1.2.2.1.4.19|2|1500
|
||||
1.3.6.1.2.1.2.2.1.4.20|2|1500
|
||||
1.3.6.1.2.1.2.2.1.4.21|2|1500
|
||||
1.3.6.1.2.1.2.2.1.4.22|2|1500
|
||||
@@ -70,6 +78,7 @@
|
||||
1.3.6.1.2.1.2.2.1.4.27|2|1500
|
||||
1.3.6.1.2.1.2.2.1.4.28|2|1500
|
||||
1.3.6.1.2.1.2.2.1.4.29|2|1500
|
||||
1.3.6.1.2.1.2.2.1.4.30|2|1500
|
||||
1.3.6.1.2.1.2.2.1.6.1|4|
|
||||
1.3.6.1.2.1.2.2.1.6.2|4x|001E422AA52B
|
||||
1.3.6.1.2.1.2.2.1.6.3|4x|001E422AA52C
|
||||
@@ -82,6 +91,8 @@
|
||||
1.3.6.1.2.1.2.2.1.6.10|4|
|
||||
1.3.6.1.2.1.2.2.1.6.11|4|
|
||||
1.3.6.1.2.1.2.2.1.6.12|4|
|
||||
1.3.6.1.2.1.2.2.1.6.13|4|
|
||||
1.3.6.1.2.1.2.2.1.6.19|4x|001E422AA52B
|
||||
1.3.6.1.2.1.2.2.1.6.20|4x|001E422AA52B
|
||||
1.3.6.1.2.1.2.2.1.6.21|4|
|
||||
1.3.6.1.2.1.2.2.1.6.22|4|
|
||||
@@ -92,6 +103,7 @@
|
||||
1.3.6.1.2.1.2.2.1.6.27|4|
|
||||
1.3.6.1.2.1.2.2.1.6.28|4|
|
||||
1.3.6.1.2.1.2.2.1.6.29|4|
|
||||
1.3.6.1.2.1.2.2.1.6.30|4|
|
||||
1.3.6.1.2.1.2.2.1.7.1|2|1
|
||||
1.3.6.1.2.1.2.2.1.7.2|2|1
|
||||
1.3.6.1.2.1.2.2.1.7.3|2|1
|
||||
@@ -104,6 +116,8 @@
|
||||
1.3.6.1.2.1.2.2.1.7.10|2|2
|
||||
1.3.6.1.2.1.2.2.1.7.11|2|2
|
||||
1.3.6.1.2.1.2.2.1.7.12|2|1
|
||||
1.3.6.1.2.1.2.2.1.7.13|2|1
|
||||
1.3.6.1.2.1.2.2.1.7.19|2|1
|
||||
1.3.6.1.2.1.2.2.1.7.20|2|1
|
||||
1.3.6.1.2.1.2.2.1.7.21|2|1
|
||||
1.3.6.1.2.1.2.2.1.7.22|2|2
|
||||
@@ -114,6 +128,7 @@
|
||||
1.3.6.1.2.1.2.2.1.7.27|2|2
|
||||
1.3.6.1.2.1.2.2.1.7.28|2|2
|
||||
1.3.6.1.2.1.2.2.1.7.29|2|2
|
||||
1.3.6.1.2.1.2.2.1.7.30|2|2
|
||||
1.3.6.1.2.1.2.2.1.8.1|2|1
|
||||
1.3.6.1.2.1.2.2.1.8.2|2|1
|
||||
1.3.6.1.2.1.2.2.1.8.3|2|2
|
||||
@@ -126,6 +141,8 @@
|
||||
1.3.6.1.2.1.2.2.1.8.10|2|2
|
||||
1.3.6.1.2.1.2.2.1.8.11|2|2
|
||||
1.3.6.1.2.1.2.2.1.8.12|2|1
|
||||
1.3.6.1.2.1.2.2.1.8.13|2|1
|
||||
1.3.6.1.2.1.2.2.1.8.19|2|1
|
||||
1.3.6.1.2.1.2.2.1.8.20|2|1
|
||||
1.3.6.1.2.1.2.2.1.8.21|2|1
|
||||
1.3.6.1.2.1.2.2.1.8.22|2|2
|
||||
@@ -136,6 +153,7 @@
|
||||
1.3.6.1.2.1.2.2.1.8.27|2|2
|
||||
1.3.6.1.2.1.2.2.1.8.28|2|2
|
||||
1.3.6.1.2.1.2.2.1.8.29|2|2
|
||||
1.3.6.1.2.1.2.2.1.8.30|2|2
|
||||
1.3.6.1.2.1.2.2.1.9.1|67|0
|
||||
1.3.6.1.2.1.2.2.1.9.2|67|0
|
||||
1.3.6.1.2.1.2.2.1.9.3|67|0
|
||||
@@ -148,6 +166,8 @@
|
||||
1.3.6.1.2.1.2.2.1.9.10|67|0
|
||||
1.3.6.1.2.1.2.2.1.9.11|67|0
|
||||
1.3.6.1.2.1.2.2.1.9.12|67|0
|
||||
1.3.6.1.2.1.2.2.1.9.13|67|18335
|
||||
1.3.6.1.2.1.2.2.1.9.19|67|0
|
||||
1.3.6.1.2.1.2.2.1.9.20|67|0
|
||||
1.3.6.1.2.1.2.2.1.9.21|67|0
|
||||
1.3.6.1.2.1.2.2.1.9.22|67|0
|
||||
@@ -158,6 +178,7 @@
|
||||
1.3.6.1.2.1.2.2.1.9.27|67|0
|
||||
1.3.6.1.2.1.2.2.1.9.28|67|0
|
||||
1.3.6.1.2.1.2.2.1.9.29|67|0
|
||||
1.3.6.1.2.1.2.2.1.9.30|67|17130
|
||||
1.3.6.1.2.1.2.2.1.13.1|65|0
|
||||
1.3.6.1.2.1.2.2.1.13.2|65|0
|
||||
1.3.6.1.2.1.2.2.1.13.3|65|0
|
||||
@@ -170,6 +191,8 @@
|
||||
1.3.6.1.2.1.2.2.1.13.10|65|0
|
||||
1.3.6.1.2.1.2.2.1.13.11|65|0
|
||||
1.3.6.1.2.1.2.2.1.13.12|65|102779
|
||||
1.3.6.1.2.1.2.2.1.13.13|65|11208
|
||||
1.3.6.1.2.1.2.2.1.13.19|65|0
|
||||
1.3.6.1.2.1.2.2.1.13.20|65|0
|
||||
1.3.6.1.2.1.2.2.1.13.21|65|0
|
||||
1.3.6.1.2.1.2.2.1.13.22|65|0
|
||||
@@ -180,6 +203,7 @@
|
||||
1.3.6.1.2.1.2.2.1.13.27|65|0
|
||||
1.3.6.1.2.1.2.2.1.13.28|65|0
|
||||
1.3.6.1.2.1.2.2.1.13.29|65|0
|
||||
1.3.6.1.2.1.2.2.1.13.30|65|0
|
||||
1.3.6.1.2.1.2.2.1.14.1|65|0
|
||||
1.3.6.1.2.1.2.2.1.14.2|65|0
|
||||
1.3.6.1.2.1.2.2.1.14.3|65|0
|
||||
@@ -192,6 +216,8 @@
|
||||
1.3.6.1.2.1.2.2.1.14.10|65|0
|
||||
1.3.6.1.2.1.2.2.1.14.11|65|0
|
||||
1.3.6.1.2.1.2.2.1.14.12|65|0
|
||||
1.3.6.1.2.1.2.2.1.14.13|65|0
|
||||
1.3.6.1.2.1.2.2.1.14.19|65|0
|
||||
1.3.6.1.2.1.2.2.1.14.20|65|0
|
||||
1.3.6.1.2.1.2.2.1.14.21|65|0
|
||||
1.3.6.1.2.1.2.2.1.14.22|65|0
|
||||
@@ -202,6 +228,7 @@
|
||||
1.3.6.1.2.1.2.2.1.14.27|65|0
|
||||
1.3.6.1.2.1.2.2.1.14.28|65|0
|
||||
1.3.6.1.2.1.2.2.1.14.29|65|0
|
||||
1.3.6.1.2.1.2.2.1.14.30|65|0
|
||||
1.3.6.1.2.1.2.2.1.19.1|65|0
|
||||
1.3.6.1.2.1.2.2.1.19.2|65|0
|
||||
1.3.6.1.2.1.2.2.1.19.3|65|0
|
||||
@@ -214,6 +241,8 @@
|
||||
1.3.6.1.2.1.2.2.1.19.10|65|0
|
||||
1.3.6.1.2.1.2.2.1.19.11|65|0
|
||||
1.3.6.1.2.1.2.2.1.19.12|65|0
|
||||
1.3.6.1.2.1.2.2.1.19.13|65|0
|
||||
1.3.6.1.2.1.2.2.1.19.19|65|0
|
||||
1.3.6.1.2.1.2.2.1.19.20|65|0
|
||||
1.3.6.1.2.1.2.2.1.19.21|65|0
|
||||
1.3.6.1.2.1.2.2.1.19.22|65|0
|
||||
@@ -224,6 +253,7 @@
|
||||
1.3.6.1.2.1.2.2.1.19.27|65|0
|
||||
1.3.6.1.2.1.2.2.1.19.28|65|0
|
||||
1.3.6.1.2.1.2.2.1.19.29|65|0
|
||||
1.3.6.1.2.1.2.2.1.19.30|65|0
|
||||
1.3.6.1.2.1.2.2.1.20.1|65|0
|
||||
1.3.6.1.2.1.2.2.1.20.2|65|0
|
||||
1.3.6.1.2.1.2.2.1.20.3|65|0
|
||||
@@ -236,6 +266,8 @@
|
||||
1.3.6.1.2.1.2.2.1.20.10|65|0
|
||||
1.3.6.1.2.1.2.2.1.20.11|65|0
|
||||
1.3.6.1.2.1.2.2.1.20.12|65|0
|
||||
1.3.6.1.2.1.2.2.1.20.13|65|0
|
||||
1.3.6.1.2.1.2.2.1.20.19|65|0
|
||||
1.3.6.1.2.1.2.2.1.20.20|65|0
|
||||
1.3.6.1.2.1.2.2.1.20.21|65|0
|
||||
1.3.6.1.2.1.2.2.1.20.22|65|0
|
||||
@@ -246,6 +278,7 @@
|
||||
1.3.6.1.2.1.2.2.1.20.27|65|0
|
||||
1.3.6.1.2.1.2.2.1.20.28|65|0
|
||||
1.3.6.1.2.1.2.2.1.20.29|65|0
|
||||
1.3.6.1.2.1.2.2.1.20.30|65|0
|
||||
1.3.6.1.2.1.4.3.0|65|0
|
||||
1.3.6.1.2.1.4.4.0|65|0
|
||||
1.3.6.1.2.1.4.5.0|65|0
|
||||
@@ -262,12 +295,25 @@
|
||||
1.3.6.1.2.1.4.17.0|65|0
|
||||
1.3.6.1.2.1.4.18.0|65|0
|
||||
1.3.6.1.2.1.4.19.0|65|0
|
||||
1.3.6.1.2.1.4.20.1.2.10.144.189.47|2|22
|
||||
1.3.6.1.2.1.4.20.1.2.10.215.6.98|2|21
|
||||
1.3.6.1.2.1.4.20.1.2.127.0.0.1|2|1
|
||||
1.3.6.1.2.1.4.20.1.2.172.28.1.1|2|20
|
||||
1.3.6.1.2.1.4.20.1.2.192.168.0.76|2|21
|
||||
1.3.6.1.2.1.4.20.1.3.10.144.189.47|64|255.255.255.255
|
||||
1.3.6.1.2.1.4.20.1.3.10.215.6.98|64|255.255.255.255
|
||||
1.3.6.1.2.1.4.20.1.3.127.0.0.1|64|255.0.0.0
|
||||
1.3.6.1.2.1.4.20.1.3.172.28.1.1|64|255.255.255.0
|
||||
1.3.6.1.2.1.4.20.1.3.192.168.0.76|64|255.255.255.0
|
||||
1.3.6.1.2.1.4.22.1.2.19.172.28.1.10|4x|78D0042D4C5C
|
||||
1.3.6.1.2.1.4.22.1.2.21.192.168.0.1|4x|18E829AE627B
|
||||
1.3.6.1.2.1.4.22.1.2.21.192.168.0.5|4x|001A8C668171
|
||||
1.3.6.1.2.1.4.35.1.4.19.1.4.172.28.1.10|4x|78D0042D4C5C
|
||||
1.3.6.1.2.1.4.35.1.4.19.2.16.254.128.0.0.0.0.0.0.44.168.119.41.158.145.188.248|4x|78D0042D4C5C
|
||||
1.3.6.1.2.1.4.35.1.4.21.1.4.192.168.0.1|4x|18E829AE627B
|
||||
1.3.6.1.2.1.4.35.1.4.21.1.4.192.168.0.5|4x|001A8C668171
|
||||
1.3.6.1.2.1.4.35.1.4.21.2.16.254.128.0.0.0.0.0.0.0.65.230.200.169.141.136.51|4x|3EAB8B3EC777
|
||||
1.3.6.1.2.1.4.35.1.4.21.2.16.254.128.0.0.0.0.0.0.108.252.155.255.254.236.100.185|4x|6EFC9BEC64B9
|
||||
1.3.6.1.2.1.5.1.0|65|0
|
||||
1.3.6.1.2.1.5.2.0|65|0
|
||||
1.3.6.1.2.1.5.3.0|65|0
|
||||
@@ -473,6 +519,8 @@
|
||||
1.3.6.1.2.1.25.3.2.1.1.262154|2|262154
|
||||
1.3.6.1.2.1.25.3.2.1.1.262155|2|262155
|
||||
1.3.6.1.2.1.25.3.2.1.1.262156|2|262156
|
||||
1.3.6.1.2.1.25.3.2.1.1.262157|2|262157
|
||||
1.3.6.1.2.1.25.3.2.1.1.262163|2|262163
|
||||
1.3.6.1.2.1.25.3.2.1.1.262164|2|262164
|
||||
1.3.6.1.2.1.25.3.2.1.1.262165|2|262165
|
||||
1.3.6.1.2.1.25.3.2.1.1.262166|2|262166
|
||||
@@ -483,6 +531,7 @@
|
||||
1.3.6.1.2.1.25.3.2.1.1.262171|2|262171
|
||||
1.3.6.1.2.1.25.3.2.1.1.262172|2|262172
|
||||
1.3.6.1.2.1.25.3.2.1.1.262173|2|262173
|
||||
1.3.6.1.2.1.25.3.2.1.1.262174|2|262174
|
||||
1.3.6.1.2.1.25.3.2.1.2.196608|6|1.3.6.1.2.1.25.3.1.3
|
||||
1.3.6.1.2.1.25.3.2.1.2.196609|6|1.3.6.1.2.1.25.3.1.3
|
||||
1.3.6.1.2.1.25.3.2.1.2.196610|6|1.3.6.1.2.1.25.3.1.3
|
||||
@@ -499,6 +548,8 @@
|
||||
1.3.6.1.2.1.25.3.2.1.2.262154|6|1.3.6.1.2.1.25.3.1.4
|
||||
1.3.6.1.2.1.25.3.2.1.2.262155|6|1.3.6.1.2.1.25.3.1.4
|
||||
1.3.6.1.2.1.25.3.2.1.2.262156|6|1.3.6.1.2.1.25.3.1.4
|
||||
1.3.6.1.2.1.25.3.2.1.2.262157|6|1.3.6.1.2.1.25.3.1.4
|
||||
1.3.6.1.2.1.25.3.2.1.2.262163|6|1.3.6.1.2.1.25.3.1.4
|
||||
1.3.6.1.2.1.25.3.2.1.2.262164|6|1.3.6.1.2.1.25.3.1.4
|
||||
1.3.6.1.2.1.25.3.2.1.2.262165|6|1.3.6.1.2.1.25.3.1.4
|
||||
1.3.6.1.2.1.25.3.2.1.2.262166|6|1.3.6.1.2.1.25.3.1.4
|
||||
@@ -509,6 +560,7 @@
|
||||
1.3.6.1.2.1.25.3.2.1.2.262171|6|1.3.6.1.2.1.25.3.1.4
|
||||
1.3.6.1.2.1.25.3.2.1.2.262172|6|1.3.6.1.2.1.25.3.1.4
|
||||
1.3.6.1.2.1.25.3.2.1.2.262173|6|1.3.6.1.2.1.25.3.1.4
|
||||
1.3.6.1.2.1.25.3.2.1.2.262174|6|1.3.6.1.2.1.25.3.1.4
|
||||
1.3.6.1.2.1.25.3.2.1.3.196608|4|
|
||||
1.3.6.1.2.1.25.3.2.1.3.196609|4|
|
||||
1.3.6.1.2.1.25.3.2.1.3.196610|4|
|
||||
@@ -525,6 +577,8 @@
|
||||
1.3.6.1.2.1.25.3.2.1.3.262154|4|network interface erspan0
|
||||
1.3.6.1.2.1.25.3.2.1.3.262155|4|network interface ip6gre0
|
||||
1.3.6.1.2.1.25.3.2.1.3.262156|4|network interface wwan0
|
||||
1.3.6.1.2.1.25.3.2.1.3.262157|4|network interface wwan0
|
||||
1.3.6.1.2.1.25.3.2.1.3.262163|4|network interface br-lan
|
||||
1.3.6.1.2.1.25.3.2.1.3.262164|4|network interface br-lan
|
||||
1.3.6.1.2.1.25.3.2.1.3.262165|4|network interface qmimux0
|
||||
1.3.6.1.2.1.25.3.2.1.3.262166|4|network interface qmimux1
|
||||
@@ -535,6 +589,7 @@
|
||||
1.3.6.1.2.1.25.3.2.1.3.262171|4|network interface qmimux6
|
||||
1.3.6.1.2.1.25.3.2.1.3.262172|4|network interface qmimux7
|
||||
1.3.6.1.2.1.25.3.2.1.3.262173|4|network interface qmimux8
|
||||
1.3.6.1.2.1.25.3.2.1.3.262174|4|network interface qmimux8
|
||||
1.3.6.1.2.1.25.3.2.1.4.196608|6|0.0
|
||||
1.3.6.1.2.1.25.3.2.1.4.196609|6|0.0
|
||||
1.3.6.1.2.1.25.3.2.1.4.196610|6|0.0
|
||||
@@ -551,6 +606,8 @@
|
||||
1.3.6.1.2.1.25.3.2.1.4.262154|6|0.0
|
||||
1.3.6.1.2.1.25.3.2.1.4.262155|6|0.0
|
||||
1.3.6.1.2.1.25.3.2.1.4.262156|6|0.0
|
||||
1.3.6.1.2.1.25.3.2.1.4.262157|6|0.0
|
||||
1.3.6.1.2.1.25.3.2.1.4.262163|6|0.0
|
||||
1.3.6.1.2.1.25.3.2.1.4.262164|6|0.0
|
||||
1.3.6.1.2.1.25.3.2.1.4.262165|6|0.0
|
||||
1.3.6.1.2.1.25.3.2.1.4.262166|6|0.0
|
||||
@@ -561,6 +618,7 @@
|
||||
1.3.6.1.2.1.25.3.2.1.4.262171|6|0.0
|
||||
1.3.6.1.2.1.25.3.2.1.4.262172|6|0.0
|
||||
1.3.6.1.2.1.25.3.2.1.4.262173|6|0.0
|
||||
1.3.6.1.2.1.25.3.2.1.4.262174|6|0.0
|
||||
1.3.6.1.2.1.25.3.2.1.5.196608|2|2
|
||||
1.3.6.1.2.1.25.3.2.1.5.196609|2|2
|
||||
1.3.6.1.2.1.25.3.2.1.5.196610|2|2
|
||||
@@ -577,6 +635,8 @@
|
||||
1.3.6.1.2.1.25.3.2.1.5.262154|2|5
|
||||
1.3.6.1.2.1.25.3.2.1.5.262155|2|5
|
||||
1.3.6.1.2.1.25.3.2.1.5.262156|2|2
|
||||
1.3.6.1.2.1.25.3.2.1.5.262157|2|2
|
||||
1.3.6.1.2.1.25.3.2.1.5.262163|2|2
|
||||
1.3.6.1.2.1.25.3.2.1.5.262164|2|2
|
||||
1.3.6.1.2.1.25.3.2.1.5.262165|2|2
|
||||
1.3.6.1.2.1.25.3.2.1.5.262166|2|5
|
||||
@@ -587,6 +647,7 @@
|
||||
1.3.6.1.2.1.25.3.2.1.5.262171|2|5
|
||||
1.3.6.1.2.1.25.3.2.1.5.262172|2|5
|
||||
1.3.6.1.2.1.25.3.2.1.5.262173|2|5
|
||||
1.3.6.1.2.1.25.3.2.1.5.262174|2|5
|
||||
1.3.6.1.2.1.25.3.2.1.6.262145|65|0
|
||||
1.3.6.1.2.1.25.3.2.1.6.262146|65|0
|
||||
1.3.6.1.2.1.25.3.2.1.6.262147|65|0
|
||||
@@ -599,6 +660,8 @@
|
||||
1.3.6.1.2.1.25.3.2.1.6.262154|65|0
|
||||
1.3.6.1.2.1.25.3.2.1.6.262155|65|0
|
||||
1.3.6.1.2.1.25.3.2.1.6.262156|65|0
|
||||
1.3.6.1.2.1.25.3.2.1.6.262157|65|0
|
||||
1.3.6.1.2.1.25.3.2.1.6.262163|65|0
|
||||
1.3.6.1.2.1.25.3.2.1.6.262164|65|0
|
||||
1.3.6.1.2.1.25.3.2.1.6.262165|65|0
|
||||
1.3.6.1.2.1.25.3.2.1.6.262166|65|0
|
||||
@@ -609,6 +672,7 @@
|
||||
1.3.6.1.2.1.25.3.2.1.6.262171|65|0
|
||||
1.3.6.1.2.1.25.3.2.1.6.262172|65|0
|
||||
1.3.6.1.2.1.25.3.2.1.6.262173|65|0
|
||||
1.3.6.1.2.1.25.3.2.1.6.262174|65|0
|
||||
1.3.6.1.2.1.25.3.3.1.1.196608|6|0.0
|
||||
1.3.6.1.2.1.25.3.3.1.1.196609|6|0.0
|
||||
1.3.6.1.2.1.25.3.3.1.1.196610|6|0.0
|
||||
@@ -629,6 +693,8 @@
|
||||
1.3.6.1.2.1.31.1.1.1.1.10|4|erspan0
|
||||
1.3.6.1.2.1.31.1.1.1.1.11|4|ip6gre0
|
||||
1.3.6.1.2.1.31.1.1.1.1.12|4|wwan0
|
||||
1.3.6.1.2.1.31.1.1.1.1.13|4|wwan0
|
||||
1.3.6.1.2.1.31.1.1.1.1.19|4|br-lan
|
||||
1.3.6.1.2.1.31.1.1.1.1.20|4|br-lan
|
||||
1.3.6.1.2.1.31.1.1.1.1.21|4|qmimux0
|
||||
1.3.6.1.2.1.31.1.1.1.1.22|4|qmimux1
|
||||
@@ -639,6 +705,7 @@
|
||||
1.3.6.1.2.1.31.1.1.1.1.27|4|qmimux6
|
||||
1.3.6.1.2.1.31.1.1.1.1.28|4|qmimux7
|
||||
1.3.6.1.2.1.31.1.1.1.1.29|4|qmimux8
|
||||
1.3.6.1.2.1.31.1.1.1.1.30|4|qmimux8
|
||||
1.3.6.1.2.1.31.1.1.1.2.1|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.2.2|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.2.3|65|0
|
||||
@@ -651,6 +718,8 @@
|
||||
1.3.6.1.2.1.31.1.1.1.2.10|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.2.11|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.2.12|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.2.13|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.2.19|65|83
|
||||
1.3.6.1.2.1.31.1.1.1.2.20|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.2.21|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.2.22|65|0
|
||||
@@ -661,6 +730,7 @@
|
||||
1.3.6.1.2.1.31.1.1.1.2.27|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.2.28|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.2.29|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.2.30|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.3.1|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.3.2|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.3.3|65|0
|
||||
@@ -673,6 +743,8 @@
|
||||
1.3.6.1.2.1.31.1.1.1.3.10|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.3.11|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.3.12|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.3.13|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.3.19|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.3.20|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.3.21|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.3.22|65|0
|
||||
@@ -683,6 +755,7 @@
|
||||
1.3.6.1.2.1.31.1.1.1.3.27|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.3.28|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.3.29|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.3.30|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.4.1|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.4.2|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.4.3|65|0
|
||||
@@ -695,6 +768,8 @@
|
||||
1.3.6.1.2.1.31.1.1.1.4.10|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.4.11|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.4.12|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.4.13|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.4.19|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.4.20|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.4.21|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.4.22|65|0
|
||||
@@ -705,6 +780,7 @@
|
||||
1.3.6.1.2.1.31.1.1.1.4.27|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.4.28|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.4.29|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.4.30|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.5.1|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.5.2|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.5.3|65|0
|
||||
@@ -717,6 +793,8 @@
|
||||
1.3.6.1.2.1.31.1.1.1.5.10|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.5.11|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.5.12|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.5.13|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.5.19|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.5.20|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.5.21|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.5.22|65|0
|
||||
@@ -727,6 +805,7 @@
|
||||
1.3.6.1.2.1.31.1.1.1.5.27|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.5.28|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.5.29|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.5.30|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.6.1|70|31186
|
||||
1.3.6.1.2.1.31.1.1.1.6.2|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.6.3|70|0
|
||||
@@ -739,6 +818,8 @@
|
||||
1.3.6.1.2.1.31.1.1.1.6.10|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.6.11|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.6.12|70|14787038
|
||||
1.3.6.1.2.1.31.1.1.1.6.13|70|6956416
|
||||
1.3.6.1.2.1.31.1.1.1.6.19|70|99923582
|
||||
1.3.6.1.2.1.31.1.1.1.6.20|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.6.21|70|15797161
|
||||
1.3.6.1.2.1.31.1.1.1.6.22|70|0
|
||||
@@ -749,6 +830,7 @@
|
||||
1.3.6.1.2.1.31.1.1.1.6.27|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.6.28|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.6.29|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.6.30|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.7.1|70|404
|
||||
1.3.6.1.2.1.31.1.1.1.7.2|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.7.3|70|0
|
||||
@@ -761,6 +843,8 @@
|
||||
1.3.6.1.2.1.31.1.1.1.7.10|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.7.11|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.7.12|70|102731
|
||||
1.3.6.1.2.1.31.1.1.1.7.13|70|11208
|
||||
1.3.6.1.2.1.31.1.1.1.7.19|70|247267
|
||||
1.3.6.1.2.1.31.1.1.1.7.20|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.7.21|70|106551
|
||||
1.3.6.1.2.1.31.1.1.1.7.22|70|0
|
||||
@@ -771,6 +855,7 @@
|
||||
1.3.6.1.2.1.31.1.1.1.7.27|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.7.28|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.7.29|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.7.30|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.8.1|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.8.2|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.8.3|70|0
|
||||
@@ -783,6 +868,8 @@
|
||||
1.3.6.1.2.1.31.1.1.1.8.10|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.8.11|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.8.12|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.8.13|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.8.19|70|83
|
||||
1.3.6.1.2.1.31.1.1.1.8.20|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.8.21|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.8.22|70|0
|
||||
@@ -793,6 +880,7 @@
|
||||
1.3.6.1.2.1.31.1.1.1.8.27|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.8.28|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.8.29|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.8.30|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.9.1|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.9.2|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.9.3|70|0
|
||||
@@ -805,6 +893,8 @@
|
||||
1.3.6.1.2.1.31.1.1.1.9.10|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.9.11|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.9.12|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.9.13|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.9.19|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.9.20|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.9.21|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.9.22|70|0
|
||||
@@ -815,6 +905,7 @@
|
||||
1.3.6.1.2.1.31.1.1.1.9.27|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.9.28|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.9.29|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.9.30|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.10.1|70|31186
|
||||
1.3.6.1.2.1.31.1.1.1.10.2|70|1272928
|
||||
1.3.6.1.2.1.31.1.1.1.10.3|70|0
|
||||
@@ -827,6 +918,8 @@
|
||||
1.3.6.1.2.1.31.1.1.1.10.10|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.10.11|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.10.12|70|25772121
|
||||
1.3.6.1.2.1.31.1.1.1.10.13|70|7300922
|
||||
1.3.6.1.2.1.31.1.1.1.10.19|70|687302879
|
||||
1.3.6.1.2.1.31.1.1.1.10.20|70|1272342
|
||||
1.3.6.1.2.1.31.1.1.1.10.21|70|25345545
|
||||
1.3.6.1.2.1.31.1.1.1.10.22|70|0
|
||||
@@ -837,6 +930,7 @@
|
||||
1.3.6.1.2.1.31.1.1.1.10.27|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.10.28|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.10.29|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.10.30|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.11.1|70|404
|
||||
1.3.6.1.2.1.31.1.1.1.11.2|70|30280
|
||||
1.3.6.1.2.1.31.1.1.1.11.3|70|0
|
||||
@@ -849,6 +943,8 @@
|
||||
1.3.6.1.2.1.31.1.1.1.11.10|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.11.11|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.11.12|70|106588
|
||||
1.3.6.1.2.1.31.1.1.1.11.13|70|14595
|
||||
1.3.6.1.2.1.31.1.1.1.11.19|70|317459
|
||||
1.3.6.1.2.1.31.1.1.1.11.20|70|30273
|
||||
1.3.6.1.2.1.31.1.1.1.11.21|70|106583
|
||||
1.3.6.1.2.1.31.1.1.1.11.22|70|0
|
||||
@@ -859,6 +955,7 @@
|
||||
1.3.6.1.2.1.31.1.1.1.11.27|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.11.28|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.11.29|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.11.30|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.12.1|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.12.2|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.12.3|70|0
|
||||
@@ -871,6 +968,8 @@
|
||||
1.3.6.1.2.1.31.1.1.1.12.10|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.12.11|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.12.12|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.12.13|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.12.19|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.12.20|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.12.21|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.12.22|70|0
|
||||
@@ -881,6 +980,7 @@
|
||||
1.3.6.1.2.1.31.1.1.1.12.27|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.12.28|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.12.29|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.12.30|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.13.1|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.13.2|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.13.3|70|0
|
||||
@@ -893,6 +993,8 @@
|
||||
1.3.6.1.2.1.31.1.1.1.13.10|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.13.11|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.13.12|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.13.13|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.13.19|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.13.20|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.13.21|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.13.22|70|0
|
||||
@@ -903,6 +1005,7 @@
|
||||
1.3.6.1.2.1.31.1.1.1.13.27|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.13.28|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.13.29|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.13.30|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.15.1|66|10
|
||||
1.3.6.1.2.1.31.1.1.1.15.2|66|1000
|
||||
1.3.6.1.2.1.31.1.1.1.15.3|66|0
|
||||
@@ -915,6 +1018,8 @@
|
||||
1.3.6.1.2.1.31.1.1.1.15.10|66|0
|
||||
1.3.6.1.2.1.31.1.1.1.15.11|66|0
|
||||
1.3.6.1.2.1.31.1.1.1.15.12|66|0
|
||||
1.3.6.1.2.1.31.1.1.1.15.13|66|0
|
||||
1.3.6.1.2.1.31.1.1.1.15.19|66|0
|
||||
1.3.6.1.2.1.31.1.1.1.15.20|66|0
|
||||
1.3.6.1.2.1.31.1.1.1.15.21|66|0
|
||||
1.3.6.1.2.1.31.1.1.1.15.22|66|0
|
||||
@@ -925,6 +1030,7 @@
|
||||
1.3.6.1.2.1.31.1.1.1.15.27|66|0
|
||||
1.3.6.1.2.1.31.1.1.1.15.28|66|0
|
||||
1.3.6.1.2.1.31.1.1.1.15.29|66|0
|
||||
1.3.6.1.2.1.31.1.1.1.15.30|66|0
|
||||
1.3.6.1.2.1.31.1.1.1.16.1|2|2
|
||||
1.3.6.1.2.1.31.1.1.1.16.2|2|2
|
||||
1.3.6.1.2.1.31.1.1.1.16.3|2|2
|
||||
@@ -937,6 +1043,8 @@
|
||||
1.3.6.1.2.1.31.1.1.1.16.10|2|2
|
||||
1.3.6.1.2.1.31.1.1.1.16.11|2|2
|
||||
1.3.6.1.2.1.31.1.1.1.16.12|2|2
|
||||
1.3.6.1.2.1.31.1.1.1.16.13|2|2
|
||||
1.3.6.1.2.1.31.1.1.1.16.19|2|2
|
||||
1.3.6.1.2.1.31.1.1.1.16.20|2|2
|
||||
1.3.6.1.2.1.31.1.1.1.16.21|2|2
|
||||
1.3.6.1.2.1.31.1.1.1.16.22|2|2
|
||||
@@ -947,6 +1055,7 @@
|
||||
1.3.6.1.2.1.31.1.1.1.16.27|2|2
|
||||
1.3.6.1.2.1.31.1.1.1.16.28|2|2
|
||||
1.3.6.1.2.1.31.1.1.1.16.29|2|2
|
||||
1.3.6.1.2.1.31.1.1.1.16.30|2|2
|
||||
1.3.6.1.2.1.31.1.1.1.17.1|2|2
|
||||
1.3.6.1.2.1.31.1.1.1.17.2|2|1
|
||||
1.3.6.1.2.1.31.1.1.1.17.3|2|1
|
||||
@@ -959,6 +1068,8 @@
|
||||
1.3.6.1.2.1.31.1.1.1.17.10|2|1
|
||||
1.3.6.1.2.1.31.1.1.1.17.11|2|1
|
||||
1.3.6.1.2.1.31.1.1.1.17.12|2|1
|
||||
1.3.6.1.2.1.31.1.1.1.17.13|2|1
|
||||
1.3.6.1.2.1.31.1.1.1.17.19|2|1
|
||||
1.3.6.1.2.1.31.1.1.1.17.20|2|1
|
||||
1.3.6.1.2.1.31.1.1.1.17.21|2|1
|
||||
1.3.6.1.2.1.31.1.1.1.17.22|2|1
|
||||
@@ -969,6 +1080,7 @@
|
||||
1.3.6.1.2.1.31.1.1.1.17.27|2|1
|
||||
1.3.6.1.2.1.31.1.1.1.17.28|2|1
|
||||
1.3.6.1.2.1.31.1.1.1.17.29|2|1
|
||||
1.3.6.1.2.1.31.1.1.1.17.30|2|1
|
||||
1.3.6.1.2.1.31.1.1.1.18.1|4|
|
||||
1.3.6.1.2.1.31.1.1.1.18.2|4|
|
||||
1.3.6.1.2.1.31.1.1.1.18.3|4|
|
||||
@@ -981,6 +1093,8 @@
|
||||
1.3.6.1.2.1.31.1.1.1.18.10|4|
|
||||
1.3.6.1.2.1.31.1.1.1.18.11|4|
|
||||
1.3.6.1.2.1.31.1.1.1.18.12|4|
|
||||
1.3.6.1.2.1.31.1.1.1.18.13|4|
|
||||
1.3.6.1.2.1.31.1.1.1.18.19|4|
|
||||
1.3.6.1.2.1.31.1.1.1.18.20|4|
|
||||
1.3.6.1.2.1.31.1.1.1.18.21|4|
|
||||
1.3.6.1.2.1.31.1.1.1.18.22|4|
|
||||
@@ -991,6 +1105,7 @@
|
||||
1.3.6.1.2.1.31.1.1.1.18.27|4|
|
||||
1.3.6.1.2.1.31.1.1.1.18.28|4|
|
||||
1.3.6.1.2.1.31.1.1.1.18.29|4|
|
||||
1.3.6.1.2.1.31.1.1.1.18.30|4|
|
||||
1.3.6.1.2.1.31.1.1.1.19.1|67|0
|
||||
1.3.6.1.2.1.31.1.1.1.19.2|67|0
|
||||
1.3.6.1.2.1.31.1.1.1.19.3|67|0
|
||||
@@ -1003,6 +1118,8 @@
|
||||
1.3.6.1.2.1.31.1.1.1.19.10|67|0
|
||||
1.3.6.1.2.1.31.1.1.1.19.11|67|0
|
||||
1.3.6.1.2.1.31.1.1.1.19.12|67|0
|
||||
1.3.6.1.2.1.31.1.1.1.19.13|67|0
|
||||
1.3.6.1.2.1.31.1.1.1.19.19|67|0
|
||||
1.3.6.1.2.1.31.1.1.1.19.20|67|0
|
||||
1.3.6.1.2.1.31.1.1.1.19.21|67|0
|
||||
1.3.6.1.2.1.31.1.1.1.19.22|67|0
|
||||
@@ -1013,6 +1130,7 @@
|
||||
1.3.6.1.2.1.31.1.1.1.19.27|67|0
|
||||
1.3.6.1.2.1.31.1.1.1.19.28|67|0
|
||||
1.3.6.1.2.1.31.1.1.1.19.29|67|0
|
||||
1.3.6.1.2.1.31.1.1.1.19.30|67|0
|
||||
1.3.6.1.4.1.2021.10.1.5.1|2|18
|
||||
1.3.6.1.4.1.2021.10.1.5.2|2|21
|
||||
1.3.6.1.4.1.2021.10.1.5.3|2|29
|
||||
@@ -1049,15 +1167,27 @@
|
||||
1.3.6.1.4.1.48690.1.2.0|4|Systemname
|
||||
1.3.6.1.4.1.48690.1.3.0|4|RUTX1100XXXX
|
||||
1.3.6.1.4.1.48690.1.6.0|4|RUTX_R_00.07.00
|
||||
1.3.6.1.4.1.48690.2.2.1.1.1|2|1
|
||||
1.3.6.1.4.1.48690.2.2.1.2.1|4|3-1
|
||||
1.3.6.1.4.1.48690.2.2.1.3.1|4|868759034948317
|
||||
1.3.6.1.4.1.48690.2.2.1.4.1|4|EG06
|
||||
1.3.6.1.4.1.48690.2.2.1.5.1|4|Quectel
|
||||
1.3.6.1.4.1.48690.2.2.1.6.1|4|EG06ELAR03A05M4G
|
||||
1.3.6.1.4.1.48690.2.2.1.7.1|4|868759034948317
|
||||
1.3.6.1.4.1.48690.2.2.1.8.1|4|505013464769644
|
||||
1.3.6.1.4.1.48690.2.2.1.9.1|4|inserted
|
||||
1.3.6.1.4.1.48690.2.2.1.10.1|4|READY
|
||||
1.3.6.1.4.1.48690.2.2.1.11.1|4|registered (home)
|
||||
1.3.6.1.4.1.48690.2.2.1.12.1|2|-65
|
||||
1.3.6.1.4.1.48690.2.2.1.13.1|4|Telstra
|
||||
1.3.6.1.4.1.48690.2.2.1.14.1|4|50501
|
||||
1.3.6.1.4.1.48690.2.2.1.15.1|4|Connected
|
||||
1.3.6.1.4.1.48690.2.2.1.16.1|4|LTE
|
||||
1.3.6.1.4.1.48690.2.2.1.17.1|2|320
|
||||
1.3.6.1.4.1.48690.2.2.1.18.1|4|137197088
|
||||
1.3.6.1.4.1.48690.2.2.1.18.1|4|123456789
|
||||
1.3.6.1.4.1.48690.2.2.1.19.1|4|16.1
|
||||
1.3.6.1.4.1.48690.2.2.1.20.1|4|-90
|
||||
1.3.6.1.4.1.48690.2.2.1.21.1|4|-11.0
|
||||
1.3.6.1.4.1.48690.3.1.0|4|-37.000000
|
||||
1.3.6.1.4.1.48690.3.2.0|4|144.000000
|
||||
1.3.6.1.4.1.48690.3.5.0|4|6
|
||||
|
||||
Reference in New Issue
Block a user