mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
newdevice: Added support for PowerWalker VFI (#12891)
* newdevice: Added support for PowerWalker VFI * discard powerwalker 500r from being discovered as cyberpower * add version_regex and correct num_oid: upsInputCurrent * update version_regex, add hardvare_regex
This commit is contained in:
@@ -9,6 +9,8 @@ discovery:
|
|||||||
-
|
-
|
||||||
sysObjectID:
|
sysObjectID:
|
||||||
- .1.3.6.1.4.1.3808
|
- .1.3.6.1.4.1.3808
|
||||||
|
sysDescr_except:
|
||||||
|
- 'Power Management Card'
|
||||||
poller_modules:
|
poller_modules:
|
||||||
ports: false
|
ports: false
|
||||||
discovery_modules:
|
discovery_modules:
|
||||||
|
156
includes/definitions/discovery/powerwalker-vfi.yaml
Normal file
156
includes/definitions/discovery/powerwalker-vfi.yaml
Normal file
@@ -0,0 +1,156 @@
|
|||||||
|
mib: UPS-MIB
|
||||||
|
modules:
|
||||||
|
os:
|
||||||
|
version: UPS-MIB::upsIdentUPSSoftwareVersion.0
|
||||||
|
version_regex: '/^(?<version>.*\w)|\.+$/'
|
||||||
|
hardware: UPS-MIB::upsIdentModel.0
|
||||||
|
hardware_regex: '/^(?<hardware>.*\w)|\.+$/'
|
||||||
|
sensors:
|
||||||
|
runtime:
|
||||||
|
data:
|
||||||
|
-
|
||||||
|
oid: upsEstimatedMinutesRemaining
|
||||||
|
num_oid: '.1.3.6.1.2.1.33.1.2.3.{{ $index }}'
|
||||||
|
index: 'upsEstimatedMinutesRemaining.{{ $index }}'
|
||||||
|
descr: Estimated time on battery
|
||||||
|
-
|
||||||
|
oid: upsSecondsOnBattery
|
||||||
|
num_oid: '.1.3.6.1.2.1.33.1.2.2.{{ $index }}'
|
||||||
|
index: 'upsSecondsOnBattery.{{ $index }}'
|
||||||
|
descr: Current time on battery
|
||||||
|
divisor: 60
|
||||||
|
charge:
|
||||||
|
data:
|
||||||
|
-
|
||||||
|
oid: upsEstimatedChargeRemaining
|
||||||
|
num_oid: '.1.3.6.1.2.1.33.1.2.4.{{ $index }}'
|
||||||
|
index: 'upsEstimatedChargeRemaining.{{ $index }}'
|
||||||
|
descr: Battery charge remaining
|
||||||
|
temperature:
|
||||||
|
data:
|
||||||
|
-
|
||||||
|
oid: upsBatteryTemperature
|
||||||
|
num_oid: '.1.3.6.1.2.1.33.1.2.7.{{ $index }}'
|
||||||
|
index: 'upsBatteryTemperature.{{ $index }}'
|
||||||
|
descr: Battery Temperature
|
||||||
|
voltage:
|
||||||
|
data:
|
||||||
|
-
|
||||||
|
oid: upsInputVoltage
|
||||||
|
num_oid: '.1.3.6.1.2.1.33.1.3.3.1.3.{{ $index }}'
|
||||||
|
index: 'upsInputVoltage.{{ $index }}'
|
||||||
|
descr: 'Input Phase {{ $subindex0 }}'
|
||||||
|
-
|
||||||
|
oid: upsOutputVoltage
|
||||||
|
num_oid: '.1.3.6.1.2.1.33.1.4.4.1.2.{{ $index }}'
|
||||||
|
index: 'upsOutputVoltage.{{ $index }}'
|
||||||
|
descr: 'Output Phase {{ $subindex0 }}'
|
||||||
|
-
|
||||||
|
oid: upsBypassVoltage
|
||||||
|
num_oid: '.1.3.6.1.2.1.33.1.5.3.1.2.{{ $index }}'
|
||||||
|
index: 'upsBypassputVoltage.{{ $index }}'
|
||||||
|
descr: 'Bypass Phase {{ $subindex0 }}'
|
||||||
|
-
|
||||||
|
oid: upsBatteryVoltage
|
||||||
|
num_oid: '.1.3.6.1.2.1.33.1.2.5.{{ $index }}'
|
||||||
|
index: 'upsBatteryVoltage.{{ $index }}'
|
||||||
|
descr: Battery Voltage
|
||||||
|
divisor: 10
|
||||||
|
current:
|
||||||
|
data:
|
||||||
|
-
|
||||||
|
oid: upsInputCurrent
|
||||||
|
num_oid: '.1.3.6.1.2.1.33.1.3.3.1.4.{{ $index }}'
|
||||||
|
index: 'upsInputCurrent.{{ $index }}'
|
||||||
|
descr: 'Input Phase {{ $subindex0 }}'
|
||||||
|
divisor: 10
|
||||||
|
-
|
||||||
|
oid: upsOutputCurrent
|
||||||
|
num_oid: '.1.3.6.1.2.1.33.1.4.4.1.3.{{ $index }}'
|
||||||
|
index: 'upsOutputCurrent.{{ $index }}'
|
||||||
|
descr: 'Output Phase {{ $subindex0 }}'
|
||||||
|
divisor: 10
|
||||||
|
-
|
||||||
|
oid: upsBypassCurrent
|
||||||
|
num_oid: '.1.3.6.1.2.1.33.1.5.3.1.3.{{ $index }}'
|
||||||
|
index: 'upsBypassputCurrent.{{ $index }}'
|
||||||
|
descr: 'Bypass Phase {{ $subindex0 }}'
|
||||||
|
divisor: 10
|
||||||
|
-
|
||||||
|
oid: upsBatteryCurrent
|
||||||
|
num_oid: '.1.3.6.1.2.1.33.1.2.6.{{ $index }}'
|
||||||
|
index: 'upsBatteryCurrent.{{ $index }}'
|
||||||
|
descr: Battery
|
||||||
|
divisor: 10
|
||||||
|
|
||||||
|
power:
|
||||||
|
data:
|
||||||
|
-
|
||||||
|
oid: upsInputTruePower
|
||||||
|
num_oid: '.1.3.6.1.2.1.33.1.3.3.1.5.{{ $index }}'
|
||||||
|
index: 'upsInputTruePower.{{ $index }}'
|
||||||
|
descr: 'System Input Watts {{ $subindex0 }}'
|
||||||
|
-
|
||||||
|
oid: upsOutputPower
|
||||||
|
num_oid: '.1.3.6.1.2.1.33.1.4.4.1.4.{{ $index }}'
|
||||||
|
index: 'upsOutputPower.{{ $index }}'
|
||||||
|
descr: 'System Output Watts {{ $subindex0 }}'
|
||||||
|
-
|
||||||
|
oid: upsBypassPower
|
||||||
|
num_oid: '.1.3.6.1.2.1.33.1.5.3.1.4.{{ $index }}'
|
||||||
|
index: 'upsBypassPower.{{ $index }}'
|
||||||
|
descr: 'System Bypass Watts {{ $subindex0 }}'
|
||||||
|
|
||||||
|
frequency:
|
||||||
|
data:
|
||||||
|
-
|
||||||
|
oid: upsInputFrequency
|
||||||
|
num_oid: '.1.3.6.1.2.1.33.1.3.3.1.2.{{ $index }}'
|
||||||
|
index: 'upsInputFrequency.{{ $index }}'
|
||||||
|
descr: 'Input Frequency {{ $subindex0 }}'
|
||||||
|
divisor: 10
|
||||||
|
-
|
||||||
|
oid: upsOutputFrequency
|
||||||
|
num_oid: '.1.3.6.1.2.1.33.1.4.2.{{ $index }}'
|
||||||
|
index: 'upsOutputFrequency.{{ $index }}'
|
||||||
|
descr: 'Output Frequency {{ $subindex0 }}'
|
||||||
|
divisor: 10
|
||||||
|
-
|
||||||
|
oid: upsBypassFrequency
|
||||||
|
num_oid: '.1.3.6.1.2.1.33.1.5.1.{{ $index }}'
|
||||||
|
index: 'upsBypassputFrequency.{{ $index }}'
|
||||||
|
descr: 'Bypass Frequency {{ $subindex0 }}'
|
||||||
|
divisor: 10
|
||||||
|
|
||||||
|
load:
|
||||||
|
data:
|
||||||
|
-
|
||||||
|
oid: upsOutputPercentLoad
|
||||||
|
num_oid: '.1.3.6.1.2.1.33.1.4.4.1.5.{{ $index }}'
|
||||||
|
index: 'upsOutputPercentLoad.{{ $index }}'
|
||||||
|
descr: 'Percentage Load {{ $subindex0 }}'
|
||||||
|
state:
|
||||||
|
data:
|
||||||
|
-
|
||||||
|
oid: upsBatteryStatus
|
||||||
|
num_oid: '.1.3.6.1.2.1.33.1.2.1.{{ $index }}'
|
||||||
|
descr: Battery Status
|
||||||
|
state_name: upsBatteryStatus
|
||||||
|
states:
|
||||||
|
- { descr: unknown, graph: 1, value: 1, generic: 3 }
|
||||||
|
- { descr: batteryNormal, graph: 1, value: 2, generic: 0 }
|
||||||
|
- { descr: batteryLow, graph: 1, value: 3, generic: 1 }
|
||||||
|
- { descr: batteryDepleted, graph: 1, value: 4, generic: 2 }
|
||||||
|
-
|
||||||
|
oid: upsOutputSource
|
||||||
|
num_oid: '.1.3.6.1.2.1.33.1.4.1.{{ $index }}'
|
||||||
|
descr: Output Source
|
||||||
|
state_name: upsOutputSource
|
||||||
|
states:
|
||||||
|
- { descr: other, graph: 1, value: 1, generic: 3 }
|
||||||
|
- { descr: none, graph: 1, value: 2, generic: 3 }
|
||||||
|
- { descr: normal, graph: 1, value: 3, generic: 0 }
|
||||||
|
- { descr: bypass, graph: 1, value: 4, generic: 1 }
|
||||||
|
- { descr: battery, graph: 1, value: 5, generic: 2 }
|
||||||
|
- { descr: booster, graph: 1, value: 6, generic: 2 }
|
||||||
|
- { descr: reducer, graph: 1, value: 7, generic: 2 }
|
21
includes/definitions/powerwalker-vfi.yaml
Normal file
21
includes/definitions/powerwalker-vfi.yaml
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
os: powerwalker-vfi
|
||||||
|
text: 'PowerWalker VFI'
|
||||||
|
type: power
|
||||||
|
icon: powerwalker
|
||||||
|
mib_dir: powerwalker-vfi
|
||||||
|
discovery:
|
||||||
|
-
|
||||||
|
sysObjectID: .1.3.6.1.4.1.3808.1.1.1
|
||||||
|
sysDescr: 'Power Management Card'
|
||||||
|
-
|
||||||
|
sysObjectID: .1.3.6.1.4.1.8072.3.2.10
|
||||||
|
sysDescr: 'Linux SNMP-System'
|
||||||
|
snmpget:
|
||||||
|
oid: .1.3.6.1.2.1.33.1.1.3.0
|
||||||
|
op: '!='
|
||||||
|
value: false
|
||||||
|
over:
|
||||||
|
- { graph: device_current, text: Current }
|
||||||
|
- { graph: device_voltage, text: Voltage }
|
||||||
|
- { graph: device_load, text: Load }
|
||||||
|
- { graph: device_power, text: Power }
|
1159
tests/data/powerwalker-vfi_20kcpgpf133.json
Normal file
1159
tests/data/powerwalker-vfi_20kcpgpf133.json
Normal file
File diff suppressed because it is too large
Load Diff
717
tests/data/powerwalker-vfi_500r1u.json
Normal file
717
tests/data/powerwalker-vfi_500r1u.json
Normal file
@@ -0,0 +1,717 @@
|
|||||||
|
{
|
||||||
|
"os": {
|
||||||
|
"discovery": {
|
||||||
|
"devices": [
|
||||||
|
{
|
||||||
|
"sysName": "<private>",
|
||||||
|
"sysObjectID": ".1.3.6.1.4.1.3808.1.1.1",
|
||||||
|
"sysDescr": "Power Management Card",
|
||||||
|
"sysContact": "<private>",
|
||||||
|
"version": "1.0.6",
|
||||||
|
"hardware": "500R",
|
||||||
|
"features": null,
|
||||||
|
"os": "powerwalker-vfi",
|
||||||
|
"type": "power",
|
||||||
|
"serial": null,
|
||||||
|
"icon": "powerwalker.png",
|
||||||
|
"location": "<private>"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"poller": "matches discovery"
|
||||||
|
},
|
||||||
|
"ports": {
|
||||||
|
"discovery": {
|
||||||
|
"ports": [
|
||||||
|
{
|
||||||
|
"port_descr_type": null,
|
||||||
|
"port_descr_descr": null,
|
||||||
|
"port_descr_circuit": null,
|
||||||
|
"port_descr_speed": null,
|
||||||
|
"port_descr_notes": null,
|
||||||
|
"ifDescr": "ag...",
|
||||||
|
"ifName": "ag...",
|
||||||
|
"portName": null,
|
||||||
|
"ifIndex": 1,
|
||||||
|
"ifSpeed": null,
|
||||||
|
"ifSpeed_prev": null,
|
||||||
|
"ifConnectorPresent": null,
|
||||||
|
"ifPromiscuousMode": null,
|
||||||
|
"ifHighSpeed": null,
|
||||||
|
"ifHighSpeed_prev": null,
|
||||||
|
"ifOperStatus": "up",
|
||||||
|
"ifOperStatus_prev": null,
|
||||||
|
"ifAdminStatus": null,
|
||||||
|
"ifAdminStatus_prev": null,
|
||||||
|
"ifDuplex": null,
|
||||||
|
"ifMtu": null,
|
||||||
|
"ifType": "0",
|
||||||
|
"ifAlias": "ag...",
|
||||||
|
"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
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"poller": {
|
||||||
|
"ports": [
|
||||||
|
{
|
||||||
|
"port_descr_type": null,
|
||||||
|
"port_descr_descr": null,
|
||||||
|
"port_descr_circuit": null,
|
||||||
|
"port_descr_speed": null,
|
||||||
|
"port_descr_notes": null,
|
||||||
|
"ifDescr": "ag...",
|
||||||
|
"ifName": "ag...",
|
||||||
|
"portName": null,
|
||||||
|
"ifIndex": 1,
|
||||||
|
"ifSpeed": 10000000,
|
||||||
|
"ifSpeed_prev": null,
|
||||||
|
"ifConnectorPresent": null,
|
||||||
|
"ifPromiscuousMode": null,
|
||||||
|
"ifHighSpeed": null,
|
||||||
|
"ifHighSpeed_prev": null,
|
||||||
|
"ifOperStatus": "up",
|
||||||
|
"ifOperStatus_prev": "up",
|
||||||
|
"ifAdminStatus": "7",
|
||||||
|
"ifAdminStatus_prev": null,
|
||||||
|
"ifDuplex": null,
|
||||||
|
"ifMtu": 1500,
|
||||||
|
"ifType": "0",
|
||||||
|
"ifAlias": "ag...",
|
||||||
|
"ifPhysAddress": "000c1503512b",
|
||||||
|
"ifHardType": null,
|
||||||
|
"ifLastChange": 8343900,
|
||||||
|
"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
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"sensors": {
|
||||||
|
"discovery": {
|
||||||
|
"sensors": [
|
||||||
|
{
|
||||||
|
"sensor_deleted": 0,
|
||||||
|
"sensor_class": "charge",
|
||||||
|
"poller_type": "snmp",
|
||||||
|
"sensor_oid": ".1.3.6.1.2.1.33.1.2.4.0",
|
||||||
|
"sensor_index": "upsEstimatedChargeRemaining.0",
|
||||||
|
"sensor_type": "powerwalker-vfi",
|
||||||
|
"sensor_descr": "Battery charge remaining",
|
||||||
|
"group": null,
|
||||||
|
"sensor_divisor": 1,
|
||||||
|
"sensor_multiplier": 1,
|
||||||
|
"sensor_current": 100,
|
||||||
|
"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_prev": null,
|
||||||
|
"user_func": null,
|
||||||
|
"state_name": null
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"sensor_deleted": 0,
|
||||||
|
"sensor_class": "current",
|
||||||
|
"poller_type": "snmp",
|
||||||
|
"sensor_oid": ".1.3.6.1.2.1.33.1.3.3.1.4.1",
|
||||||
|
"sensor_index": "upsInputCurrent.1",
|
||||||
|
"sensor_type": "powerwalker-vfi",
|
||||||
|
"sensor_descr": "Input Phase 1",
|
||||||
|
"group": null,
|
||||||
|
"sensor_divisor": 10,
|
||||||
|
"sensor_multiplier": 1,
|
||||||
|
"sensor_current": 0,
|
||||||
|
"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_prev": null,
|
||||||
|
"user_func": null,
|
||||||
|
"state_name": null
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"sensor_deleted": 0,
|
||||||
|
"sensor_class": "current",
|
||||||
|
"poller_type": "snmp",
|
||||||
|
"sensor_oid": ".1.3.6.1.2.1.33.1.4.4.1.3.1",
|
||||||
|
"sensor_index": "upsOutputCurrent.1",
|
||||||
|
"sensor_type": "powerwalker-vfi",
|
||||||
|
"sensor_descr": "Output Phase 1",
|
||||||
|
"group": null,
|
||||||
|
"sensor_divisor": 10,
|
||||||
|
"sensor_multiplier": 1,
|
||||||
|
"sensor_current": 0,
|
||||||
|
"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_prev": null,
|
||||||
|
"user_func": null,
|
||||||
|
"state_name": null
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"sensor_deleted": 0,
|
||||||
|
"sensor_class": "frequency",
|
||||||
|
"poller_type": "snmp",
|
||||||
|
"sensor_oid": ".1.3.6.1.2.1.33.1.5.1.0",
|
||||||
|
"sensor_index": "upsBypassputFrequency.0",
|
||||||
|
"sensor_type": "powerwalker-vfi",
|
||||||
|
"sensor_descr": "Bypass Frequency 0",
|
||||||
|
"group": null,
|
||||||
|
"sensor_divisor": 10,
|
||||||
|
"sensor_multiplier": 1,
|
||||||
|
"sensor_current": 50,
|
||||||
|
"sensor_limit": 52.5,
|
||||||
|
"sensor_limit_warn": null,
|
||||||
|
"sensor_limit_low": 47.5,
|
||||||
|
"sensor_limit_low_warn": null,
|
||||||
|
"sensor_alert": 1,
|
||||||
|
"sensor_custom": "No",
|
||||||
|
"entPhysicalIndex": null,
|
||||||
|
"entPhysicalIndex_measured": null,
|
||||||
|
"sensor_prev": null,
|
||||||
|
"user_func": null,
|
||||||
|
"state_name": null
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"sensor_deleted": 0,
|
||||||
|
"sensor_class": "frequency",
|
||||||
|
"poller_type": "snmp",
|
||||||
|
"sensor_oid": ".1.3.6.1.2.1.33.1.3.3.1.2.1",
|
||||||
|
"sensor_index": "upsInputFrequency.1",
|
||||||
|
"sensor_type": "powerwalker-vfi",
|
||||||
|
"sensor_descr": "Input Frequency 1",
|
||||||
|
"group": null,
|
||||||
|
"sensor_divisor": 10,
|
||||||
|
"sensor_multiplier": 1,
|
||||||
|
"sensor_current": 50,
|
||||||
|
"sensor_limit": 52.5,
|
||||||
|
"sensor_limit_warn": null,
|
||||||
|
"sensor_limit_low": 47.5,
|
||||||
|
"sensor_limit_low_warn": null,
|
||||||
|
"sensor_alert": 1,
|
||||||
|
"sensor_custom": "No",
|
||||||
|
"entPhysicalIndex": null,
|
||||||
|
"entPhysicalIndex_measured": null,
|
||||||
|
"sensor_prev": null,
|
||||||
|
"user_func": null,
|
||||||
|
"state_name": null
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"sensor_deleted": 0,
|
||||||
|
"sensor_class": "frequency",
|
||||||
|
"poller_type": "snmp",
|
||||||
|
"sensor_oid": ".1.3.6.1.2.1.33.1.4.2.0",
|
||||||
|
"sensor_index": "upsOutputFrequency.0",
|
||||||
|
"sensor_type": "powerwalker-vfi",
|
||||||
|
"sensor_descr": "Output Frequency 0",
|
||||||
|
"group": null,
|
||||||
|
"sensor_divisor": 10,
|
||||||
|
"sensor_multiplier": 1,
|
||||||
|
"sensor_current": 50,
|
||||||
|
"sensor_limit": 52.5,
|
||||||
|
"sensor_limit_warn": null,
|
||||||
|
"sensor_limit_low": 47.5,
|
||||||
|
"sensor_limit_low_warn": null,
|
||||||
|
"sensor_alert": 1,
|
||||||
|
"sensor_custom": "No",
|
||||||
|
"entPhysicalIndex": null,
|
||||||
|
"entPhysicalIndex_measured": null,
|
||||||
|
"sensor_prev": null,
|
||||||
|
"user_func": null,
|
||||||
|
"state_name": null
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"sensor_deleted": 0,
|
||||||
|
"sensor_class": "load",
|
||||||
|
"poller_type": "snmp",
|
||||||
|
"sensor_oid": ".1.3.6.1.2.1.33.1.4.4.1.5.1",
|
||||||
|
"sensor_index": "upsOutputPercentLoad.1",
|
||||||
|
"sensor_type": "powerwalker-vfi",
|
||||||
|
"sensor_descr": "Percentage Load 1",
|
||||||
|
"group": null,
|
||||||
|
"sensor_divisor": 1,
|
||||||
|
"sensor_multiplier": 1,
|
||||||
|
"sensor_current": 28,
|
||||||
|
"sensor_limit": 80,
|
||||||
|
"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_prev": null,
|
||||||
|
"user_func": null,
|
||||||
|
"state_name": null
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"sensor_deleted": 0,
|
||||||
|
"sensor_class": "power",
|
||||||
|
"poller_type": "snmp",
|
||||||
|
"sensor_oid": ".1.3.6.1.2.1.33.1.3.3.1.5.1",
|
||||||
|
"sensor_index": "upsInputTruePower.1",
|
||||||
|
"sensor_type": "powerwalker-vfi",
|
||||||
|
"sensor_descr": "System Input Watts 1",
|
||||||
|
"group": null,
|
||||||
|
"sensor_divisor": 1,
|
||||||
|
"sensor_multiplier": 1,
|
||||||
|
"sensor_current": 0,
|
||||||
|
"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_prev": null,
|
||||||
|
"user_func": null,
|
||||||
|
"state_name": null
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"sensor_deleted": 0,
|
||||||
|
"sensor_class": "power",
|
||||||
|
"poller_type": "snmp",
|
||||||
|
"sensor_oid": ".1.3.6.1.2.1.33.1.4.4.1.4.1",
|
||||||
|
"sensor_index": "upsOutputPower.1",
|
||||||
|
"sensor_type": "powerwalker-vfi",
|
||||||
|
"sensor_descr": "System Output Watts 1",
|
||||||
|
"group": null,
|
||||||
|
"sensor_divisor": 1,
|
||||||
|
"sensor_multiplier": 1,
|
||||||
|
"sensor_current": 0,
|
||||||
|
"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_prev": null,
|
||||||
|
"user_func": null,
|
||||||
|
"state_name": null
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"sensor_deleted": 0,
|
||||||
|
"sensor_class": "runtime",
|
||||||
|
"poller_type": "snmp",
|
||||||
|
"sensor_oid": ".1.3.6.1.2.1.33.1.2.3.0",
|
||||||
|
"sensor_index": "upsEstimatedMinutesRemaining.0",
|
||||||
|
"sensor_type": "powerwalker-vfi",
|
||||||
|
"sensor_descr": "Estimated time on battery",
|
||||||
|
"group": null,
|
||||||
|
"sensor_divisor": 1,
|
||||||
|
"sensor_multiplier": 1,
|
||||||
|
"sensor_current": 20,
|
||||||
|
"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_prev": null,
|
||||||
|
"user_func": null,
|
||||||
|
"state_name": null
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"sensor_deleted": 0,
|
||||||
|
"sensor_class": "runtime",
|
||||||
|
"poller_type": "snmp",
|
||||||
|
"sensor_oid": ".1.3.6.1.2.1.33.1.2.2.0",
|
||||||
|
"sensor_index": "upsSecondsOnBattery.0",
|
||||||
|
"sensor_type": "powerwalker-vfi",
|
||||||
|
"sensor_descr": "Current time on battery",
|
||||||
|
"group": null,
|
||||||
|
"sensor_divisor": 60,
|
||||||
|
"sensor_multiplier": 1,
|
||||||
|
"sensor_current": 0,
|
||||||
|
"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_prev": null,
|
||||||
|
"user_func": null,
|
||||||
|
"state_name": null
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"sensor_deleted": 0,
|
||||||
|
"sensor_class": "state",
|
||||||
|
"poller_type": "snmp",
|
||||||
|
"sensor_oid": ".1.3.6.1.2.1.33.1.2.1.0",
|
||||||
|
"sensor_index": "0",
|
||||||
|
"sensor_type": "upsBatteryStatus",
|
||||||
|
"sensor_descr": "Battery Status",
|
||||||
|
"group": null,
|
||||||
|
"sensor_divisor": 1,
|
||||||
|
"sensor_multiplier": 1,
|
||||||
|
"sensor_current": 2,
|
||||||
|
"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_prev": null,
|
||||||
|
"user_func": null,
|
||||||
|
"state_name": "upsBatteryStatus"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"sensor_deleted": 0,
|
||||||
|
"sensor_class": "state",
|
||||||
|
"poller_type": "snmp",
|
||||||
|
"sensor_oid": ".1.3.6.1.2.1.33.1.4.1.0",
|
||||||
|
"sensor_index": "0",
|
||||||
|
"sensor_type": "upsOutputSource",
|
||||||
|
"sensor_descr": "Output Source",
|
||||||
|
"group": null,
|
||||||
|
"sensor_divisor": 1,
|
||||||
|
"sensor_multiplier": 1,
|
||||||
|
"sensor_current": 3,
|
||||||
|
"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_prev": null,
|
||||||
|
"user_func": null,
|
||||||
|
"state_name": "upsOutputSource"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"sensor_deleted": 0,
|
||||||
|
"sensor_class": "voltage",
|
||||||
|
"poller_type": "snmp",
|
||||||
|
"sensor_oid": ".1.3.6.1.2.1.33.1.2.5.0",
|
||||||
|
"sensor_index": "upsBatteryVoltage.0",
|
||||||
|
"sensor_type": "powerwalker-vfi",
|
||||||
|
"sensor_descr": "Battery Voltage",
|
||||||
|
"group": null,
|
||||||
|
"sensor_divisor": 10,
|
||||||
|
"sensor_multiplier": 1,
|
||||||
|
"sensor_current": 13.6,
|
||||||
|
"sensor_limit": 15.64,
|
||||||
|
"sensor_limit_warn": null,
|
||||||
|
"sensor_limit_low": 11.56,
|
||||||
|
"sensor_limit_low_warn": null,
|
||||||
|
"sensor_alert": 1,
|
||||||
|
"sensor_custom": "No",
|
||||||
|
"entPhysicalIndex": null,
|
||||||
|
"entPhysicalIndex_measured": null,
|
||||||
|
"sensor_prev": null,
|
||||||
|
"user_func": null,
|
||||||
|
"state_name": null
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"sensor_deleted": 0,
|
||||||
|
"sensor_class": "voltage",
|
||||||
|
"poller_type": "snmp",
|
||||||
|
"sensor_oid": ".1.3.6.1.2.1.33.1.3.3.1.3.1",
|
||||||
|
"sensor_index": "upsInputVoltage.1",
|
||||||
|
"sensor_type": "powerwalker-vfi",
|
||||||
|
"sensor_descr": "Input Phase 1",
|
||||||
|
"group": null,
|
||||||
|
"sensor_divisor": 1,
|
||||||
|
"sensor_multiplier": 1,
|
||||||
|
"sensor_current": 227,
|
||||||
|
"sensor_limit": 261.05,
|
||||||
|
"sensor_limit_warn": null,
|
||||||
|
"sensor_limit_low": 192.95,
|
||||||
|
"sensor_limit_low_warn": null,
|
||||||
|
"sensor_alert": 1,
|
||||||
|
"sensor_custom": "No",
|
||||||
|
"entPhysicalIndex": null,
|
||||||
|
"entPhysicalIndex_measured": null,
|
||||||
|
"sensor_prev": null,
|
||||||
|
"user_func": null,
|
||||||
|
"state_name": null
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"sensor_deleted": 0,
|
||||||
|
"sensor_class": "voltage",
|
||||||
|
"poller_type": "snmp",
|
||||||
|
"sensor_oid": ".1.3.6.1.2.1.33.1.4.4.1.2.1",
|
||||||
|
"sensor_index": "upsOutputVoltage.1",
|
||||||
|
"sensor_type": "powerwalker-vfi",
|
||||||
|
"sensor_descr": "Output Phase 1",
|
||||||
|
"group": null,
|
||||||
|
"sensor_divisor": 1,
|
||||||
|
"sensor_multiplier": 1,
|
||||||
|
"sensor_current": 226,
|
||||||
|
"sensor_limit": 259.9,
|
||||||
|
"sensor_limit_warn": null,
|
||||||
|
"sensor_limit_low": 192.1,
|
||||||
|
"sensor_limit_low_warn": null,
|
||||||
|
"sensor_alert": 1,
|
||||||
|
"sensor_custom": "No",
|
||||||
|
"entPhysicalIndex": null,
|
||||||
|
"entPhysicalIndex_measured": null,
|
||||||
|
"sensor_prev": null,
|
||||||
|
"user_func": null,
|
||||||
|
"state_name": null
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"state_indexes": [
|
||||||
|
{
|
||||||
|
"state_name": "upsBatteryStatus",
|
||||||
|
"state_descr": "unknown",
|
||||||
|
"state_draw_graph": 1,
|
||||||
|
"state_value": 1,
|
||||||
|
"state_generic_value": 3
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"state_name": "upsBatteryStatus",
|
||||||
|
"state_descr": "batteryNormal",
|
||||||
|
"state_draw_graph": 1,
|
||||||
|
"state_value": 2,
|
||||||
|
"state_generic_value": 0
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"state_name": "upsBatteryStatus",
|
||||||
|
"state_descr": "batteryLow",
|
||||||
|
"state_draw_graph": 1,
|
||||||
|
"state_value": 3,
|
||||||
|
"state_generic_value": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"state_name": "upsBatteryStatus",
|
||||||
|
"state_descr": "batteryDepleted",
|
||||||
|
"state_draw_graph": 1,
|
||||||
|
"state_value": 4,
|
||||||
|
"state_generic_value": 2
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"state_name": "upsOutputSource",
|
||||||
|
"state_descr": "other",
|
||||||
|
"state_draw_graph": 1,
|
||||||
|
"state_value": 1,
|
||||||
|
"state_generic_value": 3
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"state_name": "upsOutputSource",
|
||||||
|
"state_descr": "none",
|
||||||
|
"state_draw_graph": 1,
|
||||||
|
"state_value": 2,
|
||||||
|
"state_generic_value": 3
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"state_name": "upsOutputSource",
|
||||||
|
"state_descr": "normal",
|
||||||
|
"state_draw_graph": 1,
|
||||||
|
"state_value": 3,
|
||||||
|
"state_generic_value": 0
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"state_name": "upsOutputSource",
|
||||||
|
"state_descr": "bypass",
|
||||||
|
"state_draw_graph": 1,
|
||||||
|
"state_value": 4,
|
||||||
|
"state_generic_value": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"state_name": "upsOutputSource",
|
||||||
|
"state_descr": "battery",
|
||||||
|
"state_draw_graph": 1,
|
||||||
|
"state_value": 5,
|
||||||
|
"state_generic_value": 2
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"state_name": "upsOutputSource",
|
||||||
|
"state_descr": "booster",
|
||||||
|
"state_draw_graph": 1,
|
||||||
|
"state_value": 6,
|
||||||
|
"state_generic_value": 2
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"state_name": "upsOutputSource",
|
||||||
|
"state_descr": "reducer",
|
||||||
|
"state_draw_graph": 1,
|
||||||
|
"state_value": 7,
|
||||||
|
"state_generic_value": 2
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"poller": "matches discovery"
|
||||||
|
}
|
||||||
|
}
|
183
tests/snmpsim/powerwalker-vfi_20kcpgpf133.snmprec
Normal file
183
tests/snmpsim/powerwalker-vfi_20kcpgpf133.snmprec
Normal file
@@ -0,0 +1,183 @@
|
|||||||
|
1.3.6.1.2.1.1.1.0|4|Linux SNMP-System
|
||||||
|
1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.8072.3.2.10
|
||||||
|
1.3.6.1.2.1.1.3.0|67|1070920176
|
||||||
|
1.3.6.1.2.1.1.4.0|4|<private>
|
||||||
|
1.3.6.1.2.1.1.5.0|4|<private>
|
||||||
|
1.3.6.1.2.1.4.31.1.1.3.1|65|12501336
|
||||||
|
1.3.6.1.2.1.4.31.1.1.3.2|65|4036
|
||||||
|
1.3.6.1.2.1.4.31.1.1.4.1|70|12501336
|
||||||
|
1.3.6.1.2.1.4.31.1.1.4.2|70|4036
|
||||||
|
1.3.6.1.2.1.4.31.1.1.5.1|65|2940151681
|
||||||
|
1.3.6.1.2.1.4.31.1.1.5.2|65|290360
|
||||||
|
1.3.6.1.2.1.4.31.1.1.6.1|70|2940151681
|
||||||
|
1.3.6.1.2.1.4.31.1.1.6.2|70|290360
|
||||||
|
1.3.6.1.2.1.4.31.1.1.7.1|65|0
|
||||||
|
1.3.6.1.2.1.4.31.1.1.7.2|65|0
|
||||||
|
1.3.6.1.2.1.4.31.1.1.8.1|65|0
|
||||||
|
1.3.6.1.2.1.4.31.1.1.8.2|65|0
|
||||||
|
1.3.6.1.2.1.4.31.1.1.9.1|65|34032
|
||||||
|
1.3.6.1.2.1.4.31.1.1.9.2|65|0
|
||||||
|
1.3.6.1.2.1.4.31.1.1.10.1|65|0
|
||||||
|
1.3.6.1.2.1.4.31.1.1.10.2|65|0
|
||||||
|
1.3.6.1.2.1.4.31.1.1.11.1|65|0
|
||||||
|
1.3.6.1.2.1.4.31.1.1.11.2|65|0
|
||||||
|
1.3.6.1.2.1.4.31.1.1.12.1|65|0
|
||||||
|
1.3.6.1.2.1.4.31.1.1.12.2|65|0
|
||||||
|
1.3.6.1.2.1.4.31.1.1.13.1|70|0
|
||||||
|
1.3.6.1.2.1.4.31.1.1.13.2|70|0
|
||||||
|
1.3.6.1.2.1.4.31.1.1.14.1|65|0
|
||||||
|
1.3.6.1.2.1.4.31.1.1.14.2|65|0
|
||||||
|
1.3.6.1.2.1.4.31.1.1.15.1|65|0
|
||||||
|
1.3.6.1.2.1.4.31.1.1.15.2|65|0
|
||||||
|
1.3.6.1.2.1.4.31.1.1.16.1|65|0
|
||||||
|
1.3.6.1.2.1.4.31.1.1.16.2|65|0
|
||||||
|
1.3.6.1.2.1.4.31.1.1.17.1|65|0
|
||||||
|
1.3.6.1.2.1.4.31.1.1.17.2|65|0
|
||||||
|
1.3.6.1.2.1.4.31.1.1.18.1|65|12467304
|
||||||
|
1.3.6.1.2.1.4.31.1.1.18.2|65|3991
|
||||||
|
1.3.6.1.2.1.4.31.1.1.19.1|70|12467304
|
||||||
|
1.3.6.1.2.1.4.31.1.1.19.2|70|3991
|
||||||
|
1.3.6.1.2.1.4.31.1.1.20.1|65|3537327
|
||||||
|
1.3.6.1.2.1.4.31.1.1.20.2|65|6
|
||||||
|
1.3.6.1.2.1.4.31.1.1.21.1|70|3537327
|
||||||
|
1.3.6.1.2.1.4.31.1.1.21.2|70|6
|
||||||
|
1.3.6.1.2.1.4.31.1.1.22.1|65|0
|
||||||
|
1.3.6.1.2.1.4.31.1.1.22.2|65|0
|
||||||
|
1.3.6.1.2.1.4.31.1.1.23.1|65|0
|
||||||
|
1.3.6.1.2.1.4.31.1.1.23.2|65|0
|
||||||
|
1.3.6.1.2.1.4.31.1.1.24.1|70|0
|
||||||
|
1.3.6.1.2.1.4.31.1.1.24.2|70|0
|
||||||
|
1.3.6.1.2.1.4.31.1.1.25.1|65|0
|
||||||
|
1.3.6.1.2.1.4.31.1.1.25.2|65|0
|
||||||
|
1.3.6.1.2.1.4.31.1.1.26.1|65|43640
|
||||||
|
1.3.6.1.2.1.4.31.1.1.26.2|65|0
|
||||||
|
1.3.6.1.2.1.4.31.1.1.27.1|65|43640
|
||||||
|
1.3.6.1.2.1.4.31.1.1.27.2|65|0
|
||||||
|
1.3.6.1.2.1.4.31.1.1.28.1|65|0
|
||||||
|
1.3.6.1.2.1.4.31.1.1.28.2|65|0
|
||||||
|
1.3.6.1.2.1.4.31.1.1.29.1|65|87280
|
||||||
|
1.3.6.1.2.1.4.31.1.1.29.2|65|0
|
||||||
|
1.3.6.1.2.1.4.31.1.1.30.1|65|3580967
|
||||||
|
1.3.6.1.2.1.4.31.1.1.30.2|65|6
|
||||||
|
1.3.6.1.2.1.4.31.1.1.31.1|70|3580967
|
||||||
|
1.3.6.1.2.1.4.31.1.1.31.2|70|6
|
||||||
|
1.3.6.1.2.1.4.31.1.1.32.1|65|655958315
|
||||||
|
1.3.6.1.2.1.4.31.1.1.32.2|65|384
|
||||||
|
1.3.6.1.2.1.4.31.1.1.33.1|70|655958315
|
||||||
|
1.3.6.1.2.1.4.31.1.1.33.2|70|384
|
||||||
|
1.3.6.1.2.1.4.31.1.1.34.1|65|0
|
||||||
|
1.3.6.1.2.1.4.31.1.1.34.2|65|4036
|
||||||
|
1.3.6.1.2.1.4.31.1.1.35.1|70|0
|
||||||
|
1.3.6.1.2.1.4.31.1.1.35.2|70|4036
|
||||||
|
1.3.6.1.2.1.4.31.1.1.36.1|65|0
|
||||||
|
1.3.6.1.2.1.4.31.1.1.36.2|65|290360
|
||||||
|
1.3.6.1.2.1.4.31.1.1.37.1|70|0
|
||||||
|
1.3.6.1.2.1.4.31.1.1.37.2|70|290360
|
||||||
|
1.3.6.1.2.1.4.31.1.1.38.1|65|2
|
||||||
|
1.3.6.1.2.1.4.31.1.1.38.2|65|8
|
||||||
|
1.3.6.1.2.1.4.31.1.1.39.1|70|2
|
||||||
|
1.3.6.1.2.1.4.31.1.1.39.2|70|8
|
||||||
|
1.3.6.1.2.1.4.31.1.1.40.1|65|80
|
||||||
|
1.3.6.1.2.1.4.31.1.1.40.2|65|536
|
||||||
|
1.3.6.1.2.1.4.31.1.1.41.1|70|80
|
||||||
|
1.3.6.1.2.1.4.31.1.1.41.2|70|536
|
||||||
|
1.3.6.1.2.1.4.31.1.1.42.1|65|8921243
|
||||||
|
1.3.6.1.2.1.4.31.1.1.43.1|70|8921243
|
||||||
|
1.3.6.1.2.1.4.31.1.1.44.1|65|0
|
||||||
|
1.3.6.1.2.1.4.31.1.1.45.1|70|0
|
||||||
|
1.3.6.1.2.1.4.31.1.1.46.1|67|0
|
||||||
|
1.3.6.1.2.1.4.31.1.1.46.2|67|0
|
||||||
|
1.3.6.1.2.1.4.31.1.1.47.1|66|60000
|
||||||
|
1.3.6.1.2.1.4.31.1.1.47.2|66|60000
|
||||||
|
1.3.6.1.2.1.25.1.1.0|67|1070920183
|
||||||
|
1.3.6.1.2.1.25.1.4.0|4|console=ttyAM0,115200n8 ubi.mtd=2 root=ubi0:rootfs rootfstype=ubifs rw gpmi fec_mac=60:19:29:10:27:19 ip=dhcp
|
||||||
|
1.3.6.1.2.1.25.1.5.0|66|0
|
||||||
|
1.3.6.1.2.1.25.1.6.0|66|40
|
||||||
|
1.3.6.1.2.1.25.3.2.1.1.196608|2|196608
|
||||||
|
1.3.6.1.2.1.25.3.2.1.1.262145|2|262145
|
||||||
|
1.3.6.1.2.1.25.3.2.1.1.262146|2|262146
|
||||||
|
1.3.6.1.2.1.25.3.2.1.1.262147|2|262147
|
||||||
|
1.3.6.1.2.1.25.3.2.1.1.262148|2|262148
|
||||||
|
1.3.6.1.2.1.25.3.2.1.1.262149|2|262149
|
||||||
|
1.3.6.1.2.1.25.3.2.1.1.786432|2|786432
|
||||||
|
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.262145|6|1.3.6.1.2.1.25.3.1.4
|
||||||
|
1.3.6.1.2.1.25.3.2.1.2.262146|6|1.3.6.1.2.1.25.3.1.4
|
||||||
|
1.3.6.1.2.1.25.3.2.1.2.262147|6|1.3.6.1.2.1.25.3.1.4
|
||||||
|
1.3.6.1.2.1.25.3.2.1.2.262148|6|1.3.6.1.2.1.25.3.1.4
|
||||||
|
1.3.6.1.2.1.25.3.2.1.2.262149|6|1.3.6.1.2.1.25.3.1.4
|
||||||
|
1.3.6.1.2.1.25.3.2.1.2.786432|6|1.3.6.1.2.1.25.3.1.12
|
||||||
|
1.3.6.1.2.1.25.3.2.1.3.196608|4|
|
||||||
|
1.3.6.1.2.1.25.3.2.1.3.262145|4|network interface lo
|
||||||
|
1.3.6.1.2.1.25.3.2.1.3.262146|4|network interface eth0
|
||||||
|
1.3.6.1.2.1.25.3.2.1.3.262147|4|network interface eth1
|
||||||
|
1.3.6.1.2.1.25.3.2.1.3.262148|4|network interface sit0
|
||||||
|
1.3.6.1.2.1.25.3.2.1.3.262149|4|network interface ip6tnl0
|
||||||
|
1.3.6.1.2.1.25.3.2.1.3.786432|4|Guessing that there's a floating point co-processor
|
||||||
|
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.262145|6|0.0
|
||||||
|
1.3.6.1.2.1.25.3.2.1.4.262146|6|0.0
|
||||||
|
1.3.6.1.2.1.25.3.2.1.4.262147|6|0.0
|
||||||
|
1.3.6.1.2.1.25.3.2.1.4.262148|6|0.0
|
||||||
|
1.3.6.1.2.1.25.3.2.1.4.262149|6|0.0
|
||||||
|
1.3.6.1.2.1.25.3.2.1.4.786432|6|0.0
|
||||||
|
1.3.6.1.2.1.25.3.2.1.5.262145|2|2
|
||||||
|
1.3.6.1.2.1.25.3.2.1.5.262146|2|2
|
||||||
|
1.3.6.1.2.1.25.3.2.1.5.262147|2|5
|
||||||
|
1.3.6.1.2.1.25.3.2.1.5.262148|2|5
|
||||||
|
1.3.6.1.2.1.25.3.2.1.5.262149|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
|
||||||
|
1.3.6.1.2.1.25.3.2.1.6.262148|65|0
|
||||||
|
1.3.6.1.2.1.25.3.2.1.6.262149|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.2.196608|2|100
|
||||||
|
1.3.6.1.2.1.33.1.1.2.0|4x|000000000000000000000000000000000a3030203030203030203030203030203030203030203030203030203030203030203030203030203030203030203030
|
||||||
|
1.3.6.1.2.1.33.1.1.3.0|4x|323736372C31302C323733382C31312E0a3533203331203030203030203030203030203030203030203030203030203030203030203030203030203030203030
|
||||||
|
1.3.6.1.2.1.33.1.1.4.0|4|1.1.4
|
||||||
|
1.3.6.1.2.1.33.1.2.1.0|2|2
|
||||||
|
1.3.6.1.2.1.33.1.2.2.0|2|0
|
||||||
|
1.3.6.1.2.1.33.1.2.3.0|2|131
|
||||||
|
1.3.6.1.2.1.33.1.2.4.0|2|100
|
||||||
|
1.3.6.1.2.1.33.1.2.5.0|2|2735
|
||||||
|
1.3.6.1.2.1.33.1.2.6.0|2|0
|
||||||
|
1.3.6.1.2.1.33.1.2.7.0|2|39
|
||||||
|
1.3.6.1.2.1.33.1.3.3.1.2.1|2|499
|
||||||
|
1.3.6.1.2.1.33.1.3.3.1.2.2|2|499
|
||||||
|
1.3.6.1.2.1.33.1.3.3.1.2.3|2|499
|
||||||
|
1.3.6.1.2.1.33.1.3.3.1.3.1|2|231
|
||||||
|
1.3.6.1.2.1.33.1.3.3.1.3.2|2|229
|
||||||
|
1.3.6.1.2.1.33.1.3.3.1.3.3|2|229
|
||||||
|
1.3.6.1.2.1.33.1.3.3.1.4.1|2|0
|
||||||
|
1.3.6.1.2.1.33.1.3.3.1.4.2|2|0
|
||||||
|
1.3.6.1.2.1.33.1.3.3.1.4.3|2|0
|
||||||
|
1.3.6.1.2.1.33.1.3.3.1.5.1|2|0
|
||||||
|
1.3.6.1.2.1.33.1.3.3.1.5.2|2|0
|
||||||
|
1.3.6.1.2.1.33.1.3.3.1.5.3|2|0
|
||||||
|
1.3.6.1.2.1.33.1.4.1.0|2|3
|
||||||
|
1.3.6.1.2.1.33.1.4.2.0|2|501
|
||||||
|
1.3.6.1.2.1.33.1.4.4.1.2.1|2|230
|
||||||
|
1.3.6.1.2.1.33.1.4.4.1.2.2|2|230
|
||||||
|
1.3.6.1.2.1.33.1.4.4.1.2.3|2|231
|
||||||
|
1.3.6.1.2.1.33.1.4.4.1.3.1|2|145
|
||||||
|
1.3.6.1.2.1.33.1.4.4.1.3.2|2|64
|
||||||
|
1.3.6.1.2.1.33.1.4.4.1.3.3|2|70
|
||||||
|
1.3.6.1.2.1.33.1.4.4.1.4.1|2|0
|
||||||
|
1.3.6.1.2.1.33.1.4.4.1.4.2|2|0
|
||||||
|
1.3.6.1.2.1.33.1.4.4.1.4.3|2|0
|
||||||
|
1.3.6.1.2.1.33.1.4.4.1.5.1|2|50
|
||||||
|
1.3.6.1.2.1.33.1.4.4.1.5.2|2|21
|
||||||
|
1.3.6.1.2.1.33.1.4.4.1.5.3|2|24
|
||||||
|
1.3.6.1.2.1.33.1.5.1.0|2|500
|
||||||
|
1.3.6.1.2.1.33.1.5.3.1.2.1|2|230
|
||||||
|
1.3.6.1.2.1.33.1.5.3.1.2.2|2|227
|
||||||
|
1.3.6.1.2.1.33.1.5.3.1.2.3|2|227
|
||||||
|
1.3.6.1.2.1.33.1.5.3.1.3.1|2|0
|
||||||
|
1.3.6.1.2.1.33.1.5.3.1.3.2|2|0
|
||||||
|
1.3.6.1.2.1.33.1.5.3.1.3.3|2|0
|
||||||
|
1.3.6.1.2.1.33.1.5.3.1.4.1|2|0
|
||||||
|
1.3.6.1.2.1.33.1.5.3.1.4.2|2|0
|
||||||
|
1.3.6.1.2.1.33.1.5.3.1.4.3|2|0
|
||||||
|
1.3.6.1.4.1.21111.1.1.1.6.0|4|2767,10,2738,11.S1
|
||||||
|
1.3.6.1.6.3.10.2.1.3.0|2|340361
|
156
tests/snmpsim/powerwalker-vfi_500r1u.snmprec
Normal file
156
tests/snmpsim/powerwalker-vfi_500r1u.snmprec
Normal file
@@ -0,0 +1,156 @@
|
|||||||
|
1.3.6.1.2.1.1.1.0|4|Power Management Card
|
||||||
|
1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.3808.1.1.1
|
||||||
|
1.3.6.1.2.1.1.3.0|67|1727317900
|
||||||
|
1.3.6.1.2.1.1.4.0|4|<private>
|
||||||
|
1.3.6.1.2.1.1.5.0|4|<private>
|
||||||
|
1.3.6.1.2.1.1.6.0|4|<private>
|
||||||
|
1.3.6.1.2.1.2.2.1.1.1|2|1
|
||||||
|
1.3.6.1.2.1.2.2.1.1.2|2|2
|
||||||
|
1.3.6.1.2.1.2.2.1.2.1|4x|6167010000
|
||||||
|
1.3.6.1.2.1.2.2.1.2.2|4x|0008351200
|
||||||
|
1.3.6.1.2.1.2.2.1.3.1|2|0
|
||||||
|
1.3.6.1.2.1.2.2.1.3.2|2|18
|
||||||
|
1.3.6.1.2.1.2.2.1.4.1|2|1500
|
||||||
|
1.3.6.1.2.1.2.2.1.4.2|2|4649
|
||||||
|
1.3.6.1.2.1.2.2.1.5.1|66|10000000
|
||||||
|
1.3.6.1.2.1.2.2.1.5.2|66|134222393
|
||||||
|
1.3.6.1.2.1.2.2.1.6.1|4x|000C1503512B
|
||||||
|
1.3.6.1.2.1.2.2.1.6.2|4|
|
||||||
|
1.3.6.1.2.1.2.2.1.7.1|2|7
|
||||||
|
1.3.6.1.2.1.2.2.1.7.2|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|2
|
||||||
|
1.3.6.1.2.1.2.2.1.9.1|67|8343900
|
||||||
|
1.3.6.1.2.1.2.2.1.9.2|67|134222397
|
||||||
|
1.3.6.1.2.1.2.2.1.10.1|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.10.2|65|134222401
|
||||||
|
1.3.6.1.2.1.2.2.1.11.1|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.11.2|65|134222405
|
||||||
|
1.3.6.1.2.1.2.2.1.12.1|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.12.2|65|134222409
|
||||||
|
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|134222413
|
||||||
|
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.15.1|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.15.2|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.16.1|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.16.2|65|134222417
|
||||||
|
1.3.6.1.2.1.2.2.1.17.1|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.17.2|65|134222421
|
||||||
|
1.3.6.1.2.1.2.2.1.18.1|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.18.2|65|134222425
|
||||||
|
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|134222429
|
||||||
|
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.21.1|66|0
|
||||||
|
1.3.6.1.2.1.2.2.1.21.2|66|0
|
||||||
|
1.3.6.1.2.1.2.2.1.22.1|6|0.0
|
||||||
|
1.3.6.1.2.1.2.2.1.22.2|6|0.0
|
||||||
|
1.3.6.1.2.1.4.3.0|65|5110326
|
||||||
|
1.3.6.1.2.1.4.4.0|65|0
|
||||||
|
1.3.6.1.2.1.4.5.0|65|0
|
||||||
|
1.3.6.1.2.1.4.6.0|65|0
|
||||||
|
1.3.6.1.2.1.4.7.0|65|0
|
||||||
|
1.3.6.1.2.1.4.8.0|65|0
|
||||||
|
1.3.6.1.2.1.4.9.0|65|5110325
|
||||||
|
1.3.6.1.2.1.4.10.0|65|5110275
|
||||||
|
1.3.6.1.2.1.4.11.0|65|0
|
||||||
|
1.3.6.1.2.1.4.12.0|65|11
|
||||||
|
1.3.6.1.2.1.4.14.0|65|0
|
||||||
|
1.3.6.1.2.1.4.15.0|65|0
|
||||||
|
1.3.6.1.2.1.4.16.0|65|0
|
||||||
|
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.66.107.3|2|1
|
||||||
|
1.3.6.1.2.1.4.20.1.3.10.66.107.3|64|255.255.255.0
|
||||||
|
1.3.6.1.2.1.4.22.1.2.1.10.66.107.1|4x|EC9B8B206F96
|
||||||
|
1.3.6.1.2.1.5.1.0|65|122488
|
||||||
|
1.3.6.1.2.1.5.2.0|65|0
|
||||||
|
1.3.6.1.2.1.5.3.0|65|0
|
||||||
|
1.3.6.1.2.1.5.4.0|65|0
|
||||||
|
1.3.6.1.2.1.5.5.0|65|0
|
||||||
|
1.3.6.1.2.1.5.6.0|65|0
|
||||||
|
1.3.6.1.2.1.5.7.0|65|0
|
||||||
|
1.3.6.1.2.1.5.8.0|65|0
|
||||||
|
1.3.6.1.2.1.5.9.0|65|0
|
||||||
|
1.3.6.1.2.1.5.10.0|65|0
|
||||||
|
1.3.6.1.2.1.5.11.0|65|0
|
||||||
|
1.3.6.1.2.1.5.12.0|65|0
|
||||||
|
1.3.6.1.2.1.5.13.0|65|0
|
||||||
|
1.3.6.1.2.1.5.14.0|65|122488
|
||||||
|
1.3.6.1.2.1.5.15.0|65|0
|
||||||
|
1.3.6.1.2.1.5.16.0|65|0
|
||||||
|
1.3.6.1.2.1.5.17.0|65|0
|
||||||
|
1.3.6.1.2.1.5.18.0|65|0
|
||||||
|
1.3.6.1.2.1.5.19.0|65|0
|
||||||
|
1.3.6.1.2.1.5.20.0|65|0
|
||||||
|
1.3.6.1.2.1.5.21.0|65|0
|
||||||
|
1.3.6.1.2.1.5.22.0|65|122488
|
||||||
|
1.3.6.1.2.1.5.23.0|65|0
|
||||||
|
1.3.6.1.2.1.5.24.0|65|0
|
||||||
|
1.3.6.1.2.1.5.25.0|65|0
|
||||||
|
1.3.6.1.2.1.5.26.0|65|0
|
||||||
|
1.3.6.1.2.1.6.5.0|65|0
|
||||||
|
1.3.6.1.2.1.6.6.0|65|287
|
||||||
|
1.3.6.1.2.1.6.7.0|65|0
|
||||||
|
1.3.6.1.2.1.6.8.0|65|280
|
||||||
|
1.3.6.1.2.1.6.9.0|66|0
|
||||||
|
1.3.6.1.2.1.6.10.0|65|2062
|
||||||
|
1.3.6.1.2.1.6.11.0|65|1709
|
||||||
|
1.3.6.1.2.1.6.12.0|65|0
|
||||||
|
1.3.6.1.2.1.6.14.0|65|0
|
||||||
|
1.3.6.1.2.1.6.15.0|65|41
|
||||||
|
1.3.6.1.2.1.7.1.0|65|4985830
|
||||||
|
1.3.6.1.2.1.7.2.0|65|0
|
||||||
|
1.3.6.1.2.1.7.3.0|65|0
|
||||||
|
1.3.6.1.2.1.7.4.0|65|4985849
|
||||||
|
1.3.6.1.2.1.11.1.0|65|4985688
|
||||||
|
1.3.6.1.2.1.11.2.0|65|4985688
|
||||||
|
1.3.6.1.2.1.11.3.0|65|0
|
||||||
|
1.3.6.1.2.1.11.4.0|65|0
|
||||||
|
1.3.6.1.2.1.11.5.0|65|0
|
||||||
|
1.3.6.1.2.1.11.6.0|65|0
|
||||||
|
1.3.6.1.2.1.11.8.0|65|0
|
||||||
|
1.3.6.1.2.1.11.9.0|65|0
|
||||||
|
1.3.6.1.2.1.11.10.0|65|0
|
||||||
|
1.3.6.1.2.1.11.11.0|65|0
|
||||||
|
1.3.6.1.2.1.11.12.0|65|0
|
||||||
|
1.3.6.1.2.1.11.13.0|65|7700950
|
||||||
|
1.3.6.1.2.1.11.14.0|65|0
|
||||||
|
1.3.6.1.2.1.11.15.0|65|1296059
|
||||||
|
1.3.6.1.2.1.11.16.0|65|3689643
|
||||||
|
1.3.6.1.2.1.11.17.0|65|0
|
||||||
|
1.3.6.1.2.1.11.18.0|65|0
|
||||||
|
1.3.6.1.2.1.11.19.0|65|0
|
||||||
|
1.3.6.1.2.1.11.20.0|65|57149
|
||||||
|
1.3.6.1.2.1.11.21.0|65|778554
|
||||||
|
1.3.6.1.2.1.11.22.0|65|0
|
||||||
|
1.3.6.1.2.1.11.24.0|65|0
|
||||||
|
1.3.6.1.2.1.11.25.0|65|0
|
||||||
|
1.3.6.1.2.1.11.26.0|65|0
|
||||||
|
1.3.6.1.2.1.11.27.0|65|0
|
||||||
|
1.3.6.1.2.1.11.28.0|65|4985712
|
||||||
|
1.3.6.1.2.1.11.29.0|65|0
|
||||||
|
1.3.6.1.2.1.11.30.0|2|2
|
||||||
|
1.3.6.1.2.1.33.1.1.2.0|4|500R
|
||||||
|
1.3.6.1.2.1.33.1.1.3.0|4|1.0.6
|
||||||
|
1.3.6.1.2.1.33.1.2.1.0|2|2
|
||||||
|
1.3.6.1.2.1.33.1.2.2.0|2|0
|
||||||
|
1.3.6.1.2.1.33.1.2.3.0|2|20
|
||||||
|
1.3.6.1.2.1.33.1.2.4.0|2|100
|
||||||
|
1.3.6.1.2.1.33.1.2.5.0|2|136
|
||||||
|
1.3.6.1.2.1.33.1.2.7.0|5|
|
||||||
|
1.3.6.1.2.1.33.1.3.3.1.2.1|2|500
|
||||||
|
1.3.6.1.2.1.33.1.3.3.1.3.1|2|227
|
||||||
|
1.3.6.1.2.1.33.1.3.3.1.4.1|2|0
|
||||||
|
1.3.6.1.2.1.33.1.3.3.1.5.1|2|0
|
||||||
|
1.3.6.1.2.1.33.1.4.1.0|2|3
|
||||||
|
1.3.6.1.2.1.33.1.4.2.0|2|500
|
||||||
|
1.3.6.1.2.1.33.1.4.4.1.2.1|2|226
|
||||||
|
1.3.6.1.2.1.33.1.4.4.1.3.1|2|0
|
||||||
|
1.3.6.1.2.1.33.1.4.4.1.4.1|2|0
|
||||||
|
1.3.6.1.2.1.33.1.4.4.1.5.1|2|28
|
||||||
|
1.3.6.1.2.1.33.1.5.1.0|2|500
|
Reference in New Issue
Block a user