diff --git a/includes/definitions/discovery/rutos-rutx.yaml b/includes/definitions/discovery/rutos-rutx.yaml index d359c338fc..22145c4d1c 100644 --- a/includes/definitions/discovery/rutos-rutx.yaml +++ b/includes/definitions/discovery/rutos-rutx.yaml @@ -10,6 +10,7 @@ modules: - oid: - mOperator + - ioSystemName temperature: data: - @@ -23,6 +24,24 @@ modules: high_limit: 75 state: data: + - + oid: ioInput + num_oid: ".1.3.6.1.4.1.48690.6.2.1.7.{{ $index }}" + descr: I/O {{ $index }} Type + group: Inputs/Outputs + state_name: TELTONIKA-RUTX-MIB::ioInput + states: + - { descr: Digital Output, graph: 1, value: 0, generic: 0 } + - { descr: Digital Input, graph: 1, value: 1, generic: 0 } + - + oid: ioState + num_oid: ".1.3.6.1.4.1.48690.6.2.1.6.{{ $index }}" + descr: I/O {{ $index }} State ({{ $ioSystemName }}) + group: Inputs/Outputs + state_name: TELTONIKA-RUTX-MIB::ioState + states: + - { descr: Low, graph: 1, value: 0, generic: 0 } + - { descr: High, graph: 1, value: 1, generic: 2 } - oid: mSimState num_oid: ".1.3.6.1.4.1.48690.2.2.1.9.{{ $index }}" @@ -83,6 +102,30 @@ modules: - { descr: unknown, graph: 1, value: 5, generic: 3 } count: data: + - + oid: mReceivedToday + num_oid: ".1.3.6.1.4.1.48690.2.2.1.26.{{ $index }}" + descr: "Mobile bytes received today" + group: Mobile + index: "mReceivedToday.{{ $index }}" + - + oid: mSentToday + num_oid: ".1.3.6.1.4.1.48690.2.2.1.25.{{ $index }}" + descr: "Mobile bytes sent today" + group: Mobile + index: "mSentToday.{{ $index }}" + - + oid: mReceived + num_oid: ".1.3.6.1.4.1.48690.2.2.1.23.{{ $index }}" + descr: "Mobile total bytes received" + group: Mobile + index: "mReceived.{{ $index }}" + - + oid: mSent + num_oid: ".1.3.6.1.4.1.48690.2.2.1.22.{{ $index }}" + descr: "Mobile total bytes sent" + group: Mobile + index: "mSent.{{ $index }}" - oid: numSatellites num_oid: ".1.3.6.1.4.1.48690.3.5.{{ $index }}" diff --git a/mibs/teltonika/TELTONIKA-RUTX-MIB b/mibs/teltonika/TELTONIKA-RUTX-MIB index f5f61c918d..32aabc76c2 100644 --- a/mibs/teltonika/TELTONIKA-RUTX-MIB +++ b/mibs/teltonika/TELTONIKA-RUTX-MIB @@ -26,8 +26,8 @@ mobile OBJECT IDENTIFIER ::= { teltonika 2 } gps OBJECT IDENTIFIER ::= { teltonika 3 } notifications OBJECT IDENTIFIER ::= { teltonika 4 } hotspot OBJECT IDENTIFIER ::= { teltonika 5 } +io OBJECT IDENTIFIER ::= { teltonika 6 } mobileNotifications OBJECT IDENTIFIER ::= { notifications 1 } -mobileNotificationsObs OBJECT IDENTIFIER ::= { mobileNotifications 0 } ioNotifications OBJECT IDENTIFIER ::= { notifications 2 } ioNotificationsObs OBJECT IDENTIFIER ::= { ioNotifications 0 } @@ -134,7 +134,12 @@ ModemEntry ::= mCellID DisplayString, mSINR DisplayString, mRSRP DisplayString, - mRSRQ DisplayString + mRSRQ DisplayString, + mSent INTEGER, + mReceived INTEGER, + mIP DisplayString, + mSentToday INTEGER, + mReceivedToday INTEGER, } mIndex OBJECT-TYPE @@ -306,6 +311,46 @@ mRSRQ OBJECT-TYPE "LTE RSRQ level" ::= { modemEntry 21 } +mSent OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total bytes sent." + ::= { modemEntry 22 } + +mReceived OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total bytes received." + ::= { modemEntry 23 } + +mIP OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Modem IP address(es)" + ::= { modemEntry 24 } + +mSentToday OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Bytes sent today." + ::= { modemEntry 25 } + +mReceivedToday OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Bytes received today." + ::= { modemEntry 26 } + -- -- -- GPS @@ -541,6 +586,129 @@ hssURL OBJECT-TYPE "Original URL" ::= { hsSessionEntry 13 } +-- +-- I/O +-- + +ioCount OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Count of I/O" + ::= { io 1 } + +ioTable OBJECT-TYPE + SYNTAX SEQUENCE OF IOEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of I/O. The number of entries is given by the value of ioCount." + ::= { io 2 } + +ioEntry OBJECT-TYPE + SYNTAX IOEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry containing information of a particular I/O." + INDEX { ioIndex } + ::= { ioTable 1 } + +IOEntry ::= + SEQUENCE { + ioIndex INTEGER, + ioSystemName DisplayString, + ioName DisplayString, + ioType DisplayString, + ioBidirectional INTEGER, + ioState DisplayString, + ioInput INTEGER, + ioInverted INTEGER, + ioCurrent DisplayString, + ioPercentage DisplayString + } + +ioIndex OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A unique value, greater than zero, for each session." + ::= { ioEntry 1 } + +ioSystemName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name of the I/O." + ::= { ioEntry 2 } + +ioName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name of the I/O, as displayed in WebUI." + ::= { ioEntry 3 } + +ioType OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A description of I/O type." + ::= { ioEntry 4 } + +ioBidirectional OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Is I/O bidirectional?" + ::= { ioEntry 5 } + +ioState OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "State of I/O." + ::= { ioEntry 6 } + +ioInput OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Is I/O an input?" + ::= { ioEntry 7 } + +ioInverted OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Is value of I/O inverted?" + ::= { ioEntry 8 } + +ioCurrent OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current amount flowing though ACL." + ::= { ioEntry 9 } + +ioPercentage OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Percentage of ACL." + ::= { ioEntry 10 } + -- -- Traps -- @@ -569,30 +737,6 @@ digitalOutputNotification NOTIFICATION-TYPE "Digital output trap" ::= { ioNotifications 2 } -modemDescription OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Modem description" - ::= { mobileNotificationsObs 1 } - -signalStrength OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Modem signal strength" - ::= { mobileNotificationsObs 2 } - -connectionType OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Connection type" - ::= { mobileNotificationsObs 3 } - doutState OBJECT-TYPE SYNTAX DisplayString (SIZE (0..255)) MAX-ACCESS read-only diff --git a/tests/data/rutos-rutx_rutx11.json b/tests/data/rutos-rutx_rutx11.json index c33f4faa0b..c66cfc639b 100644 --- a/tests/data/rutos-rutx_rutx11.json +++ b/tests/data/rutos-rutx_rutx11.json @@ -1388,6 +1388,111 @@ "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": 14, + "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, @@ -4122,6 +4227,111 @@ "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": 14, + "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": 11932, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 9308, + "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": 14637841, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 694153, + "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": 68, + "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, @@ -5771,6 +5981,102 @@ "user_func": null, "state_name": null }, + { + "sensor_deleted": 0, + "sensor_class": "count", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.48690.2.2.1.23.1", + "sensor_index": "mReceived.1", + "sensor_type": "rutos-rutx", + "sensor_descr": "Mobile total bytes received", + "group": "Mobile", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2136706927, + "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": "count", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.48690.2.2.1.26.1", + "sensor_index": "mReceivedToday.1", + "sensor_type": "rutos-rutx", + "sensor_descr": "Mobile bytes received today", + "group": "Mobile", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 440409465, + "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": "count", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.48690.2.2.1.22.1", + "sensor_index": "mSent.1", + "sensor_type": "rutos-rutx", + "sensor_descr": "Mobile total bytes sent", + "group": "Mobile", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -1183791572, + "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": "count", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.48690.2.2.1.25.1", + "sensor_index": "mSentToday.1", + "sensor_type": "rutos-rutx", + "sensor_descr": "Mobile bytes sent today", + "group": "Mobile", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": -147731994, + "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": "count", @@ -5939,6 +6245,102 @@ "user_func": null, "state_name": "TELTONIKA-RUTX-MIB::ConnectionType" }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.48690.6.2.1.7.1", + "sensor_index": "1", + "sensor_type": "TELTONIKA-RUTX-MIB::ioInput", + "sensor_descr": "I/O 1 Type", + "group": "Inputs/Outputs", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 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_prev": null, + "user_func": null, + "state_name": "TELTONIKA-RUTX-MIB::ioInput" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.48690.6.2.1.7.2", + "sensor_index": "2", + "sensor_type": "TELTONIKA-RUTX-MIB::ioInput", + "sensor_descr": "I/O 2 Type", + "group": "Inputs/Outputs", + "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": "TELTONIKA-RUTX-MIB::ioInput" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.48690.6.2.1.6.1", + "sensor_index": "1", + "sensor_type": "TELTONIKA-RUTX-MIB::ioState", + "sensor_descr": "I/O 1 State (din1)", + "group": "Inputs/Outputs", + "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": "TELTONIKA-RUTX-MIB::ioState" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.48690.6.2.1.6.2", + "sensor_index": "2", + "sensor_type": "TELTONIKA-RUTX-MIB::ioState", + "sensor_descr": "I/O 2 State (dout1)", + "group": "Inputs/Outputs", + "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": "TELTONIKA-RUTX-MIB::ioState" + }, { "sensor_deleted": 0, "sensor_class": "state", @@ -6100,6 +6502,34 @@ "state_value": 5, "state_generic_value": 3 }, + { + "state_name": "TELTONIKA-RUTX-MIB::ioInput", + "state_descr": "Digital Output", + "state_draw_graph": 1, + "state_value": 0, + "state_generic_value": 0 + }, + { + "state_name": "TELTONIKA-RUTX-MIB::ioInput", + "state_descr": "Digital Input", + "state_draw_graph": 1, + "state_value": 1, + "state_generic_value": 0 + }, + { + "state_name": "TELTONIKA-RUTX-MIB::ioState", + "state_descr": "Low", + "state_draw_graph": 1, + "state_value": 0, + "state_generic_value": 0 + }, + { + "state_name": "TELTONIKA-RUTX-MIB::ioState", + "state_descr": "High", + "state_draw_graph": 1, + "state_value": 1, + "state_generic_value": 2 + }, { "state_name": "TELTONIKA-RUTX-MIB::NetState", "state_descr": "searching", @@ -6242,6 +6672,32 @@ "storage_perc": 0, "storage_perc_warn": 60, "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "35", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/", + "storage_size": 93360128, + "storage_units": 4096, + "storage_used": 3993600, + "storage_free": 0, + "storage_perc": 0, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "37", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/log", + "storage_size": 589824, + "storage_units": 4096, + "storage_used": 327680, + "storage_free": 0, + "storage_perc": 0, + "storage_perc_warn": 60, + "storage_deleted": 0 } ] }, @@ -6298,6 +6754,32 @@ "storage_perc": 58, "storage_perc_warn": 60, "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "35", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/", + "storage_size": 93360128, + "storage_units": 4096, + "storage_used": 3993600, + "storage_free": 89366528, + "storage_perc": 4, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "37", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/log", + "storage_size": 589824, + "storage_units": 4096, + "storage_used": 327680, + "storage_free": 262144, + "storage_perc": 56, + "storage_perc_warn": 60, + "storage_deleted": 0 } ] } diff --git a/tests/snmpsim/rutos-rutx_rutx11.snmprec b/tests/snmpsim/rutos-rutx_rutx11.snmprec index 285cdb15a2..de87d49315 100644 --- a/tests/snmpsim/rutos-rutx_rutx11.snmprec +++ b/tests/snmpsim/rutos-rutx_rutx11.snmprec @@ -17,6 +17,7 @@ 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.14|4|br-lan 1.3.6.1.2.1.2.2.1.2.16|4|br-lan 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 @@ -43,6 +44,7 @@ 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.14|2|6 1.3.6.1.2.1.2.2.1.3.16|2|6 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 @@ -69,6 +71,7 @@ 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.14|2|1500 1.3.6.1.2.1.2.2.1.4.16|2|1500 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 @@ -95,6 +98,7 @@ 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.14|4x|001E422AA52B 1.3.6.1.2.1.2.2.1.6.16|4x|001E422AA52B 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 @@ -121,6 +125,7 @@ 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.14|2|1 1.3.6.1.2.1.2.2.1.7.16|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 @@ -147,6 +152,7 @@ 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.14|2|1 1.3.6.1.2.1.2.2.1.8.16|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 @@ -173,6 +179,7 @@ 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.14|67|0 1.3.6.1.2.1.2.2.1.9.16|67|0 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 @@ -199,6 +206,7 @@ 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.14|65|0 1.3.6.1.2.1.2.2.1.13.16|65|0 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 @@ -225,6 +233,7 @@ 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.14|65|0 1.3.6.1.2.1.2.2.1.14.16|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 @@ -251,6 +260,7 @@ 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.14|65|0 1.3.6.1.2.1.2.2.1.19.16|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 @@ -277,6 +287,7 @@ 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.14|65|0 1.3.6.1.2.1.2.2.1.20.16|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 @@ -309,6 +320,7 @@ 1.3.6.1.2.1.4.20.1.2.10.97.54.98|2|22 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.10.232.219.172|2|11 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 @@ -316,16 +328,24 @@ 1.3.6.1.2.1.4.20.1.3.10.97.54.98|64|255.255.255.255 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.10.232.219.172|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.20.1.3.192.168.0.143|64|255.255.255.0 +1.3.6.1.2.1.4.22.1.2.14.172.28.1.10|4x|78D0042D4C5C +1.3.6.1.2.1.4.22.1.2.14.172.28.1.21|4x|ACCC8EF58289 +1.3.6.1.2.1.4.22.1.2.14.172.28.1.22|4x|ACCC8EF99CBD 1.3.6.1.2.1.4.22.1.2.16.172.28.1.10|4x|78D0042D4C5C 1.3.6.1.2.1.4.22.1.2.16.172.28.1.21|4x|E430222EDCEC 1.3.6.1.2.1.4.22.1.2.16.172.28.1.22|4x|E430222EDCEA 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.14.1.4.172.28.1.10|4x|78D0042D4C5C +1.3.6.1.2.1.4.35.1.4.14.1.4.172.28.1.21|4x|ACCC8EF58289 +1.3.6.1.2.1.4.35.1.4.14.1.4.172.28.1.22|4x|ACCC8EF99CBD +1.3.6.1.2.1.4.35.1.4.14.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.16.1.4.172.28.1.10|4x|78D0042D4C5C 1.3.6.1.2.1.4.35.1.4.16.1.4.172.28.1.21|4x|E430222EDCEC 1.3.6.1.2.1.4.35.1.4.16.1.4.172.28.1.22|4x|E430222EDCEA @@ -427,10 +447,30 @@ 1.3.6.1.2.1.6.10.0|65|0 1.3.6.1.2.1.6.11.0|65|0 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|2 1.3.6.1.2.1.7.1.0|65|0 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|0 +1.3.6.1.2.1.10.7.2.1.19.1.1.4|64|0.0.0.0 +1.3.6.1.2.1.10.7.2.1.19.1.1.5|64|0.0.0.0 +1.3.6.1.2.1.10.7.2.1.19.1.1.6|64|0.0.0.0 +1.3.6.1.2.1.10.7.2.1.19.1.2.4|64|0.0.0.0 +1.3.6.1.2.1.10.7.2.1.19.1.2.5|64|0.0.0.0 +1.3.6.1.2.1.10.7.2.1.19.1.2.6|64|0.0.0.0 +1.3.6.1.2.1.10.7.2.1.19.1.3.4|2|2 +1.3.6.1.2.1.10.7.2.1.19.1.3.5|2|2 +1.3.6.1.2.1.10.7.2.1.19.1.3.6|2|3 +1.3.6.1.2.1.10.7.2.1.19.1.4.4|2|0 +1.3.6.1.2.1.10.7.2.1.19.1.4.5|2|64 +1.3.6.1.2.1.10.7.2.1.19.1.4.6|2|0 +1.3.6.1.2.1.10.7.2.1.19.1.5.4|2|1 +1.3.6.1.2.1.10.7.2.1.19.1.5.5|2|1 +1.3.6.1.2.1.10.7.2.1.19.1.5.6|2|1 +1.3.6.1.2.1.10.7.2.1.19.1.6.4|2|0 +1.3.6.1.2.1.10.7.2.1.19.1.6.5|2|0 +1.3.6.1.2.1.10.7.2.1.19.1.6.6|2|0 1.3.6.1.2.1.11.1.0|65|3111 1.3.6.1.2.1.11.2.0|65|3112 1.3.6.1.2.1.11.3.0|65|0 @@ -472,60 +512,84 @@ 1.3.6.1.2.1.25.2.3.1.1.7|2|7 1.3.6.1.2.1.25.2.3.1.1.8|2|8 1.3.6.1.2.1.25.2.3.1.1.10|2|10 +1.3.6.1.2.1.25.2.3.1.1.11|2|11 1.3.6.1.2.1.25.2.3.1.1.31|2|31 1.3.6.1.2.1.25.2.3.1.1.32|2|32 1.3.6.1.2.1.25.2.3.1.1.33|2|33 1.3.6.1.2.1.25.2.3.1.1.34|2|34 +1.3.6.1.2.1.25.2.3.1.1.35|2|35 +1.3.6.1.2.1.25.2.3.1.1.36|2|36 +1.3.6.1.2.1.25.2.3.1.1.37|2|37 1.3.6.1.2.1.25.2.3.1.2.1|6|1.3.6.1.2.1.25.2.1.2 1.3.6.1.2.1.25.2.3.1.2.3|6|1.3.6.1.2.1.25.2.1.3 1.3.6.1.2.1.25.2.3.1.2.6|6|1.3.6.1.2.1.25.2.1.1 1.3.6.1.2.1.25.2.3.1.2.7|6|1.3.6.1.2.1.25.2.1.1 1.3.6.1.2.1.25.2.3.1.2.8|6|1.3.6.1.2.1.25.2.1.1 1.3.6.1.2.1.25.2.3.1.2.10|6|1.3.6.1.2.1.25.2.1.3 +1.3.6.1.2.1.25.2.3.1.2.11|6|1.3.6.1.2.1.25.2.1.1 1.3.6.1.2.1.25.2.3.1.2.31|6|1.3.6.1.2.1.25.2.1.4 1.3.6.1.2.1.25.2.3.1.2.32|6|1.3.6.1.2.1.25.2.1.4 1.3.6.1.2.1.25.2.3.1.2.33|6|1.3.6.1.2.1.25.2.1.4 1.3.6.1.2.1.25.2.3.1.2.34|6|1.3.6.1.2.1.25.2.1.4 +1.3.6.1.2.1.25.2.3.1.2.35|6|1.3.6.1.2.1.25.2.1.4 +1.3.6.1.2.1.25.2.3.1.2.36|6|1.3.6.1.2.1.25.2.1.4 +1.3.6.1.2.1.25.2.3.1.2.37|6|1.3.6.1.2.1.25.2.1.4 1.3.6.1.2.1.25.2.3.1.3.1|4|Physical memory 1.3.6.1.2.1.25.2.3.1.3.3|4|Virtual memory 1.3.6.1.2.1.25.2.3.1.3.6|4|Memory buffers 1.3.6.1.2.1.25.2.3.1.3.7|4|Cached memory 1.3.6.1.2.1.25.2.3.1.3.8|4|Shared memory 1.3.6.1.2.1.25.2.3.1.3.10|4|Swap space +1.3.6.1.2.1.25.2.3.1.3.11|4|Available memory 1.3.6.1.2.1.25.2.3.1.3.31|4|/rom 1.3.6.1.2.1.25.2.3.1.3.32|4|/overlay 1.3.6.1.2.1.25.2.3.1.3.33|4|/ 1.3.6.1.2.1.25.2.3.1.3.34|4|/log +1.3.6.1.2.1.25.2.3.1.3.35|4|/ +1.3.6.1.2.1.25.2.3.1.3.36|4|/sys/fs/bpf +1.3.6.1.2.1.25.2.3.1.3.37|4|/log 1.3.6.1.2.1.25.2.3.1.4.1|2|1024 1.3.6.1.2.1.25.2.3.1.4.3|2|1024 1.3.6.1.2.1.25.2.3.1.4.6|2|1024 1.3.6.1.2.1.25.2.3.1.4.7|2|1024 1.3.6.1.2.1.25.2.3.1.4.8|2|1024 1.3.6.1.2.1.25.2.3.1.4.10|2|1024 +1.3.6.1.2.1.25.2.3.1.4.11|2|1024 1.3.6.1.2.1.25.2.3.1.4.31|2|262144 1.3.6.1.2.1.25.2.3.1.4.32|2|4096 1.3.6.1.2.1.25.2.3.1.4.33|2|4096 1.3.6.1.2.1.25.2.3.1.4.34|2|4096 +1.3.6.1.2.1.25.2.3.1.4.35|2|4096 +1.3.6.1.2.1.25.2.3.1.4.36|2|4096 +1.3.6.1.2.1.25.2.3.1.4.37|2|4096 1.3.6.1.2.1.25.2.3.1.5.1|2|249924 1.3.6.1.2.1.25.2.3.1.5.3|2|249924 1.3.6.1.2.1.25.2.3.1.5.6|2|249924 1.3.6.1.2.1.25.2.3.1.5.7|2|29820 1.3.6.1.2.1.25.2.3.1.5.8|2|248 1.3.6.1.2.1.25.2.3.1.5.10|2|0 +1.3.6.1.2.1.25.2.3.1.5.11|2|138208 1.3.6.1.2.1.25.2.3.1.5.31|2|63 1.3.6.1.2.1.25.2.3.1.5.32|2|23080 1.3.6.1.2.1.25.2.3.1.5.33|2|23080 1.3.6.1.2.1.25.2.3.1.5.34|2|144 +1.3.6.1.2.1.25.2.3.1.5.35|2|22793 +1.3.6.1.2.1.25.2.3.1.5.36|2|0 +1.3.6.1.2.1.25.2.3.1.5.37|2|144 1.3.6.1.2.1.25.2.3.1.6.1|2|102896 1.3.6.1.2.1.25.2.3.1.6.3|2|102896 1.3.6.1.2.1.25.2.3.1.6.6|2|11176 1.3.6.1.2.1.25.2.3.1.6.7|2|29820 1.3.6.1.2.1.25.2.3.1.6.8|2|248 1.3.6.1.2.1.25.2.3.1.6.10|2|0 +1.3.6.1.2.1.25.2.3.1.6.11|2|0 1.3.6.1.2.1.25.2.3.1.6.31|2|63 1.3.6.1.2.1.25.2.3.1.6.32|2|153 1.3.6.1.2.1.25.2.3.1.6.33|2|153 1.3.6.1.2.1.25.2.3.1.6.34|2|83 +1.3.6.1.2.1.25.2.3.1.6.35|2|975 +1.3.6.1.2.1.25.2.3.1.6.36|2|0 +1.3.6.1.2.1.25.2.3.1.6.37|2|80 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.196609|2|196609 1.3.6.1.2.1.25.3.2.1.1.196610|2|196610 @@ -543,6 +607,7 @@ 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.262158|2|262158 1.3.6.1.2.1.25.3.2.1.1.262160|2|262160 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 @@ -573,6 +638,7 @@ 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.262158|6|1.3.6.1.2.1.25.3.1.4 1.3.6.1.2.1.25.3.2.1.2.262160|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 @@ -603,6 +669,7 @@ 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.262158|4|network interface br-lan 1.3.6.1.2.1.25.3.2.1.3.262160|4|network interface br-lan 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 @@ -633,6 +700,7 @@ 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.262158|6|0.0 1.3.6.1.2.1.25.3.2.1.4.262160|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 @@ -663,6 +731,7 @@ 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.262158|2|2 1.3.6.1.2.1.25.3.2.1.5.262160|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 @@ -689,6 +758,7 @@ 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.262158|65|0 1.3.6.1.2.1.25.3.2.1.6.262160|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 @@ -723,6 +793,7 @@ 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.14|4|br-lan 1.3.6.1.2.1.31.1.1.1.1.16|4|br-lan 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 @@ -749,6 +820,7 @@ 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.14|65|68 1.3.6.1.2.1.31.1.1.1.2.16|65|326 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 @@ -775,6 +847,7 @@ 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.14|65|0 1.3.6.1.2.1.31.1.1.1.3.16|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 @@ -801,6 +874,7 @@ 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.14|65|0 1.3.6.1.2.1.31.1.1.1.4.16|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 @@ -827,6 +901,7 @@ 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.14|65|0 1.3.6.1.2.1.31.1.1.1.5.16|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 @@ -853,6 +928,7 @@ 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.14|70|14637841 1.3.6.1.2.1.31.1.1.1.6.16|70|210137349 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 @@ -879,6 +955,7 @@ 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.14|70|11932 1.3.6.1.2.1.31.1.1.1.7.16|70|203447 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 @@ -905,6 +982,7 @@ 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.14|70|68 1.3.6.1.2.1.31.1.1.1.8.16|70|326 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 @@ -931,6 +1009,7 @@ 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.14|70|0 1.3.6.1.2.1.31.1.1.1.9.16|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 @@ -957,6 +1036,7 @@ 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.14|70|694153 1.3.6.1.2.1.31.1.1.1.10.16|70|13168114 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 @@ -983,6 +1063,7 @@ 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.14|70|9308 1.3.6.1.2.1.31.1.1.1.11.16|70|150811 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 @@ -1009,6 +1090,7 @@ 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.14|70|0 1.3.6.1.2.1.31.1.1.1.12.16|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 @@ -1035,6 +1117,7 @@ 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.14|70|0 1.3.6.1.2.1.31.1.1.1.13.16|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 @@ -1061,6 +1144,7 @@ 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.14|66|0 1.3.6.1.2.1.31.1.1.1.15.16|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 @@ -1087,6 +1171,7 @@ 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.14|2|2 1.3.6.1.2.1.31.1.1.1.16.16|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 @@ -1113,6 +1198,7 @@ 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.14|2|1 1.3.6.1.2.1.31.1.1.1.17.16|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 @@ -1139,6 +1225,7 @@ 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.14|4| 1.3.6.1.2.1.31.1.1.1.18.16|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| @@ -1165,6 +1252,7 @@ 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.14|67|0 1.3.6.1.2.1.31.1.1.1.19.16|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 @@ -1235,7 +1323,18 @@ 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.2.2.1.22.1|2|-1183791572 +1.3.6.1.4.1.48690.2.2.1.23.1|2|2136706927 +1.3.6.1.4.1.48690.2.2.1.24.1|4|10.111.111.111 +1.3.6.1.4.1.48690.2.2.1.25.1|2|-147731994 +1.3.6.1.4.1.48690.2.2.1.26.1|2|440409465 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 +1.3.6.1.4.1.48690.6.2.1.2.1|4|din1 +1.3.6.1.4.1.48690.6.2.1.2.2|4|dout1 +1.3.6.1.4.1.48690.6.2.1.6.1|4|Low +1.3.6.1.4.1.48690.6.2.1.6.2|4|Low +1.3.6.1.4.1.48690.6.2.1.7.1|2|1 +1.3.6.1.4.1.48690.6.2.1.7.2|2|0 1.3.6.1.6.3.10.2.1.3.0|2|2666