From ec15515aae945cfbbadf17182d2b052651190cad Mon Sep 17 00:00:00 2001 From: Andrew Holmes <4232981+neg2led@users.noreply.github.com> Date: Sun, 7 Mar 2021 08:10:04 +1100 Subject: [PATCH] support newer SyncServer (#12423) * update microsemitime.yaml to support newer SyncServer sysObjectId, add additional device information fields and sensors * fix test data. I keep forgetting that. --- .../definitions/discovery/microsemitime.yaml | 77 + includes/definitions/microsemitime.yaml | 11 +- mibs/microsemi/SYMM-SMI | 639 +++++ tests/data/microsemitime.json | 2449 +++++++++++++++++ tests/snmpsim/microsemitime.snmprec | 571 ++++ 5 files changed, 3745 insertions(+), 2 deletions(-) create mode 100644 includes/definitions/discovery/microsemitime.yaml create mode 100644 mibs/microsemi/SYMM-SMI create mode 100644 tests/data/microsemitime.json diff --git a/includes/definitions/discovery/microsemitime.yaml b/includes/definitions/discovery/microsemitime.yaml new file mode 100644 index 0000000000..0d2f535ec0 --- /dev/null +++ b/includes/definitions/discovery/microsemitime.yaml @@ -0,0 +1,77 @@ +mib: SYMM-SMI +modules: + os: + hardware: + - SYMM-SMI::ntpSysSystem.0 + - SYMM-SMI::etcModel.0 + hardware_template: '{{ SYMM-SMI::ntpSysSystem.0 }} {{ SYMM-SMI::etcModel.0 }}' + serial: SYMM-SMI::etcSerialNbr.0 + version: SYMM-SMI::etcVersion.0 + sensors: + count: + data: + - + oid: gpsUTCOffset + num_oid: '.1.3.6.1.4.1.9070.1.2.3.1.5.1.3.2.{{ $index }}' + descr: 'GPS UTC Offset' + state: + data: + - + oid: ntpSysMode + num_oid: '.1.3.6.1.4.1.9070.1.2.3.1.5.1.1.18.{{ $index }}' + descr: 'NTP Mode' + state_name: ntpSysMode + states: + - { value: 0, generic: 3, graph: 1, descr: 'unspecified' } + - { value: 1, generic: 0, graph: 1, descr: 'symmetric active' } + - { value: 2, generic: 0, graph: 1, descr: 'symmetric passive' } + - { value: 3, generic: 1, graph: 1, descr: 'client' } + - { value: 4, generic: 0, graph: 1, descr: 'server' } + - { value: 5, generic: 0, graph: 1, descr: 'broadcast' } + - { value: 6, generic: 3, graph: 1, descr: 'reserved for NTP control messages' } + - { value: 7, generic: 3, graph: 1, descr: 'reserved for private use' } + - + oid: tymingStatus + num_oid: '.1.3.6.1.4.1.9070.1.2.3.1.5.1.2.1.{{ $index }}' + descr: 'Hardware Clock State' + state_name: tymingStatus + states: + - { value: 0, generic: 0, graph: 1, descr: 'Good' } + - { value: 1, generic: 2, graph: 1, descr: 'Bad' } + - + oid: gpsHealth + num_oid: '.1.3.6.1.4.1.9070.1.2.3.1.5.1.3.3.{{ $index }}' + descr: 'GPS Receiver Health' + state_name: gpsHealth + states: + - { value: 0, generic: 2, graph: 1, descr: 'Receiver Down' } + - { value: 1, generic: 2, graph: 1, descr: 'Unknown Mode' } + - { value: 2, generic: 1, graph: 1, descr: 'Acquiring Signal' } + - { value: 3, generic: 1, graph: 1, descr: 'Bad Geometry' } + - { value: 4, generic: 0, graph: 1, descr: 'Propagate Mode' } + - { value: 5, generic: 0, graph: 1, descr: '2D Solution' } + - { value: 6, generic: 0, graph: 1, descr: '3D Solution' } + - { value: 7, generic: 0, graph: 1, descr: 'Position Hold' } + - { value: 8, generic: 0, graph: 1, descr: 'Time Valid' } + - + oid: tymingSource + num_oid: '.1.3.6.1.4.1.9070.1.2.3.1.5.1.2.2.{{ $index }}' + descr: 'Hardware Clock Source' + state_name: tymingSource + states: + - { value: 0, generic: 2, graph: 1, descr: 'None' } + - { value: 1, generic: 0, graph: 1, descr: 'GPS' } + - { value: 4, generic: 0, graph: 1, descr: 'GPS' } + - { value: 8, generic: 0, graph: 1, descr: 'IRIG' } + - { value: 16, generic: 0, graph: 1, descr: 'External 1PPS' } + - { value: 24, generic: 0, graph: 1, descr: 'External 10MHz' } + - { value: 31, generic: 1, graph: 1, descr: 'Free-run' } + - + oid: gpsMode + num_oid: '.1.3.6.1.4.1.9070.1.2.3.1.5.1.3.5.{{ $index }}' + descr: 'GPS Receiver Mode' + state_name: gpsMode + states: + - { value: 0, generic: 0, graph: 1, descr: 'Receiver Mode: Survey' } + - { value: 1, generic: 0, graph: 1, descr: 'Receiver Mode: Dynamic' } + - { value: 2, generic: 0, graph: 1, descr: 'Receiver Mode: Hold' } diff --git a/includes/definitions/microsemitime.yaml b/includes/definitions/microsemitime.yaml index b081f2a17f..7b941d87fd 100644 --- a/includes/definitions/microsemitime.yaml +++ b/includes/definitions/microsemitime.yaml @@ -1,6 +1,13 @@ os: microsemitime -text: 'Microsemi Timing' +text: 'SyncServer' type: timing icon: microsemi +mib_dir: microsemi +over: + - { graph: device_bits, text: 'Device Traffic' } + - { graph: device_processor, text: 'CPU Usage' } + - { graph: device_mempool, text: 'Memory Usage' } discovery: - - { sysObjectID: [.1.3.6.1.4.1.39165.1.6] } + - sysObjectID: + - .1.3.6.1.4.1.39165.1.6 + - .1.3.6.1.4.1.9070.1.2 diff --git a/mibs/microsemi/SYMM-SMI b/mibs/microsemi/SYMM-SMI new file mode 100644 index 0000000000..e0f99c8d08 --- /dev/null +++ b/mibs/microsemi/SYMM-SMI @@ -0,0 +1,639 @@ +SYMM-SMI DEFINITIONS ::= BEGIN + +IMPORTS +OBJECT-TYPE, +MODULE-IDENTITY, +OBJECT-IDENTITY +FROM RFC-1212 +DisplayString +FROM RFC1213-MIB +TRAP-TYPE +FROM RFC-1215 +enterprises, +Integer32, Unsigned32 +FROM RFC1155-SMI; + +symmetricom MODULE-IDENTITY + LAST-UPDATED "200906111200Z" + ORGANIZATION "Symmetricom, Inc." + CONTACT-INFO + " + Symmetricom, Inc. + 2300 Orchard Parkway + San Jose, CA 95131" + DESCRIPTION + "This is the MIB Module for Symmetricom's enterprise specific + parameters." + REVISION "200906111200Z" + DESCRIPTION "rbb - Cleaning up errors in the mib metadata" + ::= {enterprises 9070 } --assigned by IANA + +symmNetworkManagement OBJECT-IDENTITY + STATUS current + DESCRIPTION + "This is the root object identifier for all MIBS under the + Symmetricom tree." + ::= { symmetricom 1 } + +symmCmipManagement OBJECT-IDENTITY + STATUS current + DESCRIPTION + "This is the root object identifier for CMIP based objects." + ::= { symmNetworkManagement 1 } + +symmSnmpManagement OBJECT-IDENTITY + STATUS current + DESCRIPTION + "This is the root object identifier for SNMP based objects." + ::= { symmNetworkManagement 2 } + +symmTimePictra OBJECT-IDENTITY + STATUS current + DESCRIPTION + "This is reserved for objects related to Symmetricom's TimePictra + products." + ::= { symmSnmpManagement 1 } + +symmBroadband OBJECT-IDENTITY + STATUS current + DESCRIPTION + "The subtree that contains objects related to Symmetricom's GoWide + products." + ::= { symmSnmpManagement 2 } + +symmTTM OBJECT-IDENTITY + STATUS current + DESCRIPTION + "The subtree that contains objects related to Symmetricom's + Timing, Test and Measurement products." + ::= { symmSnmpManagement 3 } + +products OBJECT IDENTIFIER ::= {symmTTM 1} +experiment OBJECT IDENTIFIER ::= {symmTTM 99} + +ts2000 OBJECT IDENTIFIER ::= {products 1} +nts OBJECT IDENTIFIER ::= {products 2} +ts2100 OBJECT IDENTIFIER ::= {products 3} +s100 OBJECT IDENTIFIER ::= {products 4} +syncserver OBJECT IDENTIFIER ::= {products 5} +xli OBJECT IDENTIFIER ::= {products 6} + +version OBJECT IDENTIFIER ::= {syncserver 1} + +ntpSystem OBJECT IDENTIFIER ::= {version 1} +tyming OBJECT IDENTIFIER ::= {version 2} +gps OBJECT IDENTIFIER ::= {version 3} +dialup OBJECT IDENTIFIER ::= {version 4} +net OBJECT IDENTIFIER ::= {version 5} +etc OBJECT IDENTIFIER ::= {version 6} + +ntpSysLeap OBJECT-TYPE + SYNTAX INTEGER { + noWarning(0), + addSecond(1), + subtractSecond(2), + alarm(3)} + ACCESS read-only + STATUS current + DESCRIPTION + "NTP Leap Indicator. This is a two-bit code + warning of an impending leap second to be inserted + into the NTP timescale. The bits are set before + 23:59 on the day of insertion and reset after 00:00 + on the following day. This causes the number of + seconds (rollover interval) in the day of insertion + to be increased or decreased by one. In the case + of primary servers the bits are set by operator + intervention, while in the case of secondary servers + the bits are set by the protocol. The two bits, + bit 0 and bit 1, respectively, are coded as follows: + =================================================== + 00 no warning + 01 last minute has 61 seconds + 10 last minute has 59 seconds + 11 alarm condition(clock not synchronized) + =================================================== + In all except the alarm condition(11), NTP itself + does nothing with these bits, except pass them on to + the time-conversion routines that are not part of + NTP. The alarm condition occurs when, for whatever + reason, the local clock is not synchronized, such + as when first coming up or after an extended period + when no primary reference source is available." +::= {ntpSystem 1} + +ntpSysStratum OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current NTP stratum level. This is an integer + indicating the stratum of the local clock with + values defined as follows: + ================================================ + 0 unspecified + 1 primary reference (e.g., calibrated atomic + clock, radio clock) + 2-255 secondary reference (via NTP) + ================================================" +::= {ntpSystem 2} + +ntpSysPrecision OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current NTP precision value. This is a signed + integer indicating the precision of the various + clocks, in seconds to the nearest power of two. + The value must be rounded to the next larger power + of two; for instance, a 50-Hz (20ms) or 60-Hz (16.17ms) + power-frequency clock would be assigned the value + -5 (31.25ms), while a 1000-Hz (1ms) crystal-controlled + clock would be assigned the value -9 (1.95ms)." +::= {ntpSystem 3} + +ntpSysRootDelay OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total roundtrip delay to the primary reference + source at the root of the synchronization + subnet, in seconds. Also known as root distance." +::= {ntpSystem 4} + +ntpSysRootDispersion OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Maximum error relative to the primary reference + source at the root of the synchronization subnet, + in seconds. Only positive values greater than + zero are possible." +::= {ntpSystem 5} + +ntpSysRefID OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..40)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "NTP Reference Clock Identifier. This is a + 32 bit code identifying the particular reference + clock. In the case of stratum 0 (unspecified) or + stratum 1 (primary reference), this is a four- + octet, left-justified, zero-padded ASCII string. + While not enumerated as part of the NTP spec, the + following are suggested ASCII identifiers: + ============================================== + DCN DCN routing protocol + NIST NIST public modem + TSP TSP time protocol + DTS Digital Time Service + ATOM Atomic clock (calibrated) + VLF VLF radio (OMEGA,etc.) + callsign Generic radio + LORC LORAN-C radionavigation + GOES GOES UHF environment satellite + GPS GPS UHF satellite positioning + ============================================== + + The following ref ids are used by the SyncServer: + ============================================== + GPS GPS satellite) + IRIG IRIG B timecode + PPS Ext. 1 PPS input + E10M Ext. 10 MHz input + FREE Internal Clock + FLY Internal Clock after the Hardware + Clock reference is lost + ==============================================" +::= {ntpSystem 6} + +ntpSysRefTime OBJECT-TYPE + SYNTAX DisplayString (SIZE(1..40)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "NTP Reference Timestamp. This is the time, + in timestamp format (converted to DisplayString), + when the local clock was last updated. If the + local clock has never been synchronized, the value + is zero." +::= {ntpSystem 7} + +ntpSysPoll OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Minimum interval between transmitted messages, in + seconds as a power of two. For instance, a value + of six indicates a minimum interval of 64 seconds." +::= {ntpSystem 8} + +ntpSysPeer OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current synchronization source. In stratum > 1 this + variable returns the decimal representation of the + IPv4 address of its current peer. In stratum = 1 this + variable returns the decimal representation of the + hardware clock which is 2981759." +::= {ntpSystem 9} + +ntpSysPhase OBJECT-TYPE + SYNTAX DisplayString (SIZE(1..40)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "System clock offset from the selected source." +::= {ntpSystem 10} + +ntpSysFreq OBJECT-TYPE + SYNTAX DisplayString (SIZE(1..40)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "System clock frequency correction from ntpd." +::= {ntpSystem 11} + +ntpSysError OBJECT-TYPE + SYNTAX DisplayString (SIZE(1..40)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current system error from ntpd." +::= {ntpSystem 12} + +ntpSysClock OBJECT-TYPE + SYNTAX DisplayString (SIZE(1..40)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current system time from ntpd. This is usually + derived from the hardware clock but could be + from any other ntp source." +::= {ntpSystem 13} + +ntpSysSystem OBJECT-TYPE + SYNTAX DisplayString (SIZE(1..80)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description of the current system." +::= {ntpSystem 14} + +ntpSysProcessor OBJECT-TYPE + SYNTAX DisplayString (SIZE(1..40)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Type of local processor." +::= {ntpSystem 15} + +ntpSysNotrust OBJECT-TYPE + SYNTAX INTEGER (0..1) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Force authentication." +::= {ntpSystem 16} + +ntpSysPktsReceived OBJECT-TYPE + SYNTAX INTEGER (0..32768) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This variable is a rollover counter which reflects + the number of ntp packets received by the SyncServer. + It is valid for all versions of the SyncServer." +::= {ntpSystem 17} + +ntpSysMode OBJECT-TYPE + SYNTAX INTEGER { + unspecified (0), + symactive (1), + sympassive (2), + client (3), + server (4), + broadcast (5), + reservedctl (6), + reservedpriv (7)} + ACCESS read-only + STATUS mandatory + DESCRIPTION + "An integer indicating the NTP association mode + and are coded as follows: + ============================================ + 0 unspecified + 1 symmetric active + 2 symmetric passive + 3 client + 4 server + 5 broadcast + 6 reserved for NTP control messages + 7 reserved for private use + ============================================" +::= {ntpSystem 18} + +ntpSysVersion OBJECT-TYPE + SYNTAX DisplayString (SIZE(1..80)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The version of the NTP daemon on the system." +::= {ntpSystem 19} + +tymingStatus OBJECT-TYPE + SYNTAX DisplayString (SIZE(1..80)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates what status the Hardware Clock considers + itself to be as a timing source defined as follows: + ============================================ + Good HW Clock has a valid time reference. + Bad HW Clock has no valid time reference. + ============================================" +::= {tyming 1} + +tymingSource OBJECT-TYPE + SYNTAX DisplayString (SIZE(1..40)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The time or frequency source currently in use + by the Hardware Clock defined as follows: + ============================================ + 0 None + 1 GPS + 8 IRIG + 16 External 1PPS + 24 External 10 MHz + 31 Freerun + ============================================" +::= {tyming 2} + +tymingTime OBJECT-TYPE + SYNTAX DisplayString (SIZE(1..40)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The time according to the Hardware Clock in + the format of: + + WWW MMM dd hh:mm:ss yyyy + + defined as follows: + ============================================ + WWW weekday + MMM character month + dd day of month + hh:mm:ss time + yyyy year + + Example Thu Sep 21 23:46:09 2006 + ============================================" +::= {tyming 3} + +tymingVersion OBJECT-TYPE + SYNTAX DisplayString (SIZE(1..40)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The version of the software on the SyncServer's + Hardware Clock." +::= {tyming 4} + +tymingFlyPeriod OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This variable is not currently used and returns zero." + ::= {tyming 5} + +gpsPosition OBJECT-TYPE + SYNTAX DisplayString (SIZE(1..80)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Returns the current position in the format of: + + A BB CC DD EEE F GGG HH II JJJ KK + + defined as follows: + =============================================== + A sign of the latitude + (1 = North, -1 = South) + BB degrees of the latitude + CC minutes of the latitude + DD seconds of the latitude + EEE milliseconds of the latitude + F sign of the longitude + (1 = East, -1 = West) + GGG degrees of the longitude + HH minutes of the longitude + II seconds of the longitude + JJJ milliseconds of the longitude + KK altitude in meters + ===============================================" +::= {gps 1} + +gpsUTCOffset OBJECT-TYPE + SYNTAX INTEGER (0..127) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This variable is reserved for future use." +::= {gps 2} + +gpsHealth OBJECT-TYPE + SYNTAX DisplayString (SIZE(1..80)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is the GPS’ receiver health status defined as + follows: + ====================================================== + 0 = Receiver Down The Hardware Clock can't + communicate with the receiver. + + 1 = Unknown Mode An undefined mode of the GPS + receiver. + + 2 = Acquiring Signal The receiver is attempting to + track a GPS signal. + + 3 = Bad Geometry The geometry of the tracked + satellites is unsatisfactory for + a position solution. + + 4 = Propagate Mode A position estimation mode used + in highly dynamic environments. + + 5 = 2d Solution The receiver is able to perform + position fixes for latitude and + longitude but does not have + enough satellites for altitude. + + 6 = 3d Solution The receiver is now able to + perform position fixes for + latitude, longitude and altitude. + + 7 = Position Hold Position fixes are no longer + attempted, and the user entered + or surveyed position is used. + + 8 = Time Valid The receiver has valid timing + information from GPS satellites + (including current leap second + information). This is the final + state for all configured GPS modes. + ======================================================" +::= {gps 3} + +gpsSatlist OBJECT-TYPE + SYNTAX DisplayString (SIZE(1..128)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Displays the GPS satellite tracking information in the + format of: + + N,X1,Y1,Z1,...,XN,YN,ZN + + defined as follows: + ====================================================== + N Number of satellites. If one or more satellites + are available, Xi,Yi,Zi follows N. + + Xi Satellite vehicle number. + + Yi Satellite signal strength in dBW where less + than -200 dBW means no signal. + + Zi Zi can be either T or C. T(racking) means the + SyncServer receives the information from the + satellite but the information is not used in its + timing solution. C(urrent) means the SyncServer + currently uses satellite information in its + timing solution. + + Examples + + For no satellites: + 0 + + For one satellite with vehicle number 16: + 1,16,C,-158 + + For six satellites: + 6,12,C,-156,14,C,-155,8,T,-162,24,C,-158,18,C,161,6,C,-160 + ======================================================" +::= {gps 4} + +gpsMode OBJECT-TYPE + SYNTAX DisplayString (SIZE(1..80)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The mode of the GPS receiver defined as follows: + ====================================================== + Receiver Mode: Survey. + + The receiver is surveying and averaging its position. + When it has finished surveying, the receiver switches + to Position Hold mode. Survey mode and Position Hold + mode are appropriate for static applications, such as a + typical server room environment. This is the default mode + when the SyncServer starts. + + Receiver Mode: Dynamic. + + The GPS receiver surveys continuously to determine its + position and doesn't switch to another mode. This mode + must be initiated by a user, and is appropriate for mobile + applications such as ships, land vehicles, and aircraft. + The degree of accuracy this mode offers is fine for NTP + time over networks, but is less than optimal for the IRIG-B, + 1 PPS, 10 MHz outputs available on some SyncServer models. + + Receiver Mode: Hold. + + The GPS receiver has completed Survey mode and switched to + this mode, or the user has manually entered a position and + forced it into this mode. The accuracy and stability of the + SyncServer's timing outputs are optimal when the receiver + has its exact position and is in this mode. + ======================================================" +::= {gps 5} + +etcVersion OBJECT-TYPE + SYNTAX DisplayString (SIZE(1..80)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Version info for SyncServer system." +::= {etc 1} + +etcSerialNbr OBJECT-TYPE + SYNTAX DisplayString (SIZE(1..40)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unique serial number factory programmed into each unit." +::= {etc 2} + +etcModel OBJECT-TYPE + SYNTAX DisplayString (SIZE(1..40)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Model type factory programmed into each unit." +::= {etc 3} + +etcUpgrade OBJECT-TYPE + SYNTAX DisplayString (SIZE(1..1024)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Describes whether or not an upgrade is available from + the upgrade server described as follows: + ====================================================== + 0 No upgrade is available. + 1 An upgrade is available. + ======================================================" +::= {etc 4} + +etcUpgradeServer OBJECT-TYPE + SYNTAX DisplayString (SIZE(1..1024)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Address of the server where new upgrades can be + downloaded." +::= {etc 5} + +etcAlarmString OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..1024)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Defines the format for the system alarm traps. This is + only valid embedded in a trap message." +::= {etc 6} + +etcAlarm TRAP-TYPE + ENTERPRISE symmetricom + VARIABLES {etcAlarmString} + DESCRIPTION + "The trap provides notification of Hardware Clock, NTP, + system, and network alarms events. The user can configure + which alarms send traps on the ADMIN - Alarms page." +::= 0 + +END diff --git a/tests/data/microsemitime.json b/tests/data/microsemitime.json new file mode 100644 index 0000000000..f160fa2ffc --- /dev/null +++ b/tests/data/microsemitime.json @@ -0,0 +1,2449 @@ +{ + "os": { + "discovery": { + "devices": [ + { + "sysName": "", + "sysObjectID": ".1.3.6.1.4.1.39165.1.6", + "sysDescr": "Linux SyncServer 2.6.10_mvl401-pc_target.Gryphon.2.10.2009.1201126 #18 Thu Mar 10 10:31:17 PST 2016 i686", + "sysContact": null, + "version": "2.83.2", + "hardware": "Symmetricom SyncServer S350", + "features": null, + "os": "microsemitime", + "type": "timing", + "serial": "1126A67238", + "icon": "microsemi.png", + "location": "" + } + ] + }, + "poller": { + "devices": [ + { + "sysName": "", + "sysObjectID": ".1.3.6.1.4.1.39165.1.6", + "sysDescr": "Linux SyncServer 2.6.10_mvl401-pc_target.Gryphon.2.10.2009.1201126 #18 Thu Mar 10 10:31:17 PST 2016 i686", + "sysContact": "", + "version": "2.83.2", + "hardware": "Symmetricom SyncServer S350", + "features": null, + "os": "microsemitime", + "type": "timing", + "serial": "1126A67238", + "icon": "microsemi.png", + "location": "" + } + ] + } + }, + "ports": { + "discovery": { + "ports": [ + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "lo", + "ifName": "lo", + "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": "softwareLoopback", + "ifAlias": "lo", + "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": "sit0", + "ifName": "sit0", + "portName": null, + "ifIndex": 2, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "tunnel", + "ifAlias": "sit0", + "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": "bond0", + "ifName": "bond0", + "portName": null, + "ifIndex": 3, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "bond0", + "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": "eth0", + "ifName": "eth0", + "portName": null, + "ifIndex": 4, + "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": "ethernetCsmacd", + "ifAlias": "eth0", + "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": "eth1", + "ifName": "eth1", + "portName": null, + "ifIndex": 5, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "eth1", + "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": "eth2", + "ifName": "eth2", + "portName": null, + "ifIndex": 6, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "eth2", + "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": "eth3", + "ifName": "eth3", + "portName": null, + "ifIndex": 7, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "eth3", + "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": "lo", + "ifName": "lo", + "portName": null, + "ifIndex": 1, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": null, + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 16436, + "ifType": "softwareLoopback", + "ifAlias": "lo", + "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": 11806473, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 11806473, + "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": 958361956, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 958361956, + "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 + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "sit0", + "ifName": "sit0", + "portName": null, + "ifIndex": 2, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": null, + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1480, + "ifType": "tunnel", + "ifAlias": "sit0", + "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": 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 + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "bond0", + "ifName": "bond0", + "portName": null, + "ifIndex": 3, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": null, + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "bond0", + "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": 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 + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "eth0", + "ifName": "eth0", + "portName": null, + "ifIndex": 4, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": null, + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "eth0", + "ifPhysAddress": "00a0690b6170", + "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": 191506, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 119551, + "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": 21817382, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 30568056, + "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 + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "eth1", + "ifName": "eth1", + "portName": null, + "ifIndex": 5, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": null, + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "eth1", + "ifPhysAddress": "00a0690b6171", + "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": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 486202, + "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": 43672328, + "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 + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "eth2", + "ifName": "eth2", + "portName": null, + "ifIndex": 6, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": null, + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "eth2", + "ifPhysAddress": "00a0690b6172", + "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": 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 + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "eth3", + "ifName": "eth3", + "portName": null, + "ifIndex": 7, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": null, + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "eth3", + "ifPhysAddress": "00a0690b6173", + "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": 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 + } + ] + } + }, + "processors": { + "discovery": { + "processors": [ + { + "entPhysicalIndex": 0, + "hrDeviceIndex": 0, + "processor_oid": ".1.3.6.1.4.1.2021.11.11.0", + "processor_index": "0", + "processor_type": "ucd-old", + "processor_usage": 8, + "processor_descr": "CPU", + "processor_precision": -1, + "processor_perc_warn": 75 + } + ] + }, + "poller": "matches discovery" + }, + "mempools": { + "discovery": { + "mempools": [ + { + "mempool_index": "2", + "entPhysicalIndex": null, + "mempool_type": "hrstorage", + "mempool_class": "system", + "mempool_precision": 1024, + "mempool_descr": "Real Memory", + "mempool_perc": 23, + "mempool_perc_oid": null, + "mempool_used": 120225792, + "mempool_used_oid": ".1.3.6.1.2.1.25.2.3.1.6.2", + "mempool_free": 399036416, + "mempool_free_oid": null, + "mempool_total": 519262208, + "mempool_total_oid": null, + "mempool_largestfree": null, + "mempool_lowestfree": null, + "mempool_deleted": 0, + "mempool_perc_warn": 90 + } + ] + }, + "poller": "matches discovery" + }, + "route": { + "discovery": { + "route": [ + { + "context_name": "", + "inetCidrRouteIfIndex": 5, + "inetCidrRouteType": 4, + "inetCidrRouteProto": 2, + "inetCidrRouteNextHopAS": 0, + "inetCidrRouteMetric1": 0, + "inetCidrRouteDestType": "ipv4", + "inetCidrRouteDest": "0.0.0.0", + "inetCidrRouteNextHopType": "ipv4", + "inetCidrRouteNextHop": "10.61.1.1", + "inetCidrRoutePolicy": "zeroDotZero", + "inetCidrRoutePfxLen": 0 + }, + { + "context_name": "", + "inetCidrRouteIfIndex": 7, + "inetCidrRouteType": 4, + "inetCidrRouteProto": 2, + "inetCidrRouteNextHopAS": 0, + "inetCidrRouteMetric1": 0, + "inetCidrRouteDestType": "ipv4", + "inetCidrRouteDest": "0.0.0.0", + "inetCidrRouteNextHopType": "ipv4", + "inetCidrRouteNextHop": "172.21.40.1", + "inetCidrRoutePolicy": "zeroDotZero", + "inetCidrRoutePfxLen": 0 + } + ] + } + }, + "sensors": { + "discovery": { + "sensors": [ + { + "sensor_deleted": 0, + "sensor_class": "count", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9070.1.2.3.1.5.1.3.2.0", + "sensor_index": "0", + "sensor_type": "microsemitime", + "sensor_descr": "GPS UTC Offset", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 18, + "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.4.1.9070.1.2.3.1.5.1.3.3.0", + "sensor_index": "0", + "sensor_type": "gpsHealth", + "sensor_descr": "GPS Receiver Health", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 8, + "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": "gpsHealth" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9070.1.2.3.1.5.1.3.5.0", + "sensor_index": "0", + "sensor_type": "gpsMode", + "sensor_descr": "GPS Receiver Mode", + "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": "gpsMode" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9070.1.2.3.1.5.1.1.18.0", + "sensor_index": "0", + "sensor_type": "ntpSysMode", + "sensor_descr": "NTP Mode", + "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": "ntpSysMode" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9070.1.2.3.1.5.1.2.2.0", + "sensor_index": "0", + "sensor_type": "tymingSource", + "sensor_descr": "Hardware Clock Source", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 4, + "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": "tymingSource" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9070.1.2.3.1.5.1.2.1.0", + "sensor_index": "0", + "sensor_type": "tymingStatus", + "sensor_descr": "Hardware Clock State", + "group": null, + "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": "tymingStatus" + } + ], + "state_indexes": [ + { + "state_name": "gpsHealth", + "state_descr": "Receiver Down", + "state_draw_graph": 1, + "state_value": 0, + "state_generic_value": 2 + }, + { + "state_name": "gpsHealth", + "state_descr": "Unknown Mode", + "state_draw_graph": 1, + "state_value": 1, + "state_generic_value": 2 + }, + { + "state_name": "gpsHealth", + "state_descr": "Acquiring Signal", + "state_draw_graph": 1, + "state_value": 2, + "state_generic_value": 1 + }, + { + "state_name": "gpsHealth", + "state_descr": "Bad Geometry", + "state_draw_graph": 1, + "state_value": 3, + "state_generic_value": 1 + }, + { + "state_name": "gpsHealth", + "state_descr": "Propagate Mode", + "state_draw_graph": 1, + "state_value": 4, + "state_generic_value": 0 + }, + { + "state_name": "gpsHealth", + "state_descr": "2D Solution", + "state_draw_graph": 1, + "state_value": 5, + "state_generic_value": 0 + }, + { + "state_name": "gpsHealth", + "state_descr": "3D Solution", + "state_draw_graph": 1, + "state_value": 6, + "state_generic_value": 0 + }, + { + "state_name": "gpsHealth", + "state_descr": "Position Hold", + "state_draw_graph": 1, + "state_value": 7, + "state_generic_value": 0 + }, + { + "state_name": "gpsHealth", + "state_descr": "Time Valid", + "state_draw_graph": 1, + "state_value": 8, + "state_generic_value": 0 + }, + { + "state_name": "gpsMode", + "state_descr": "Receiver Mode: Survey", + "state_draw_graph": 1, + "state_value": 0, + "state_generic_value": 0 + }, + { + "state_name": "gpsMode", + "state_descr": "Receiver Mode: Dynamic", + "state_draw_graph": 1, + "state_value": 1, + "state_generic_value": 0 + }, + { + "state_name": "gpsMode", + "state_descr": "Receiver Mode: Hold", + "state_draw_graph": 1, + "state_value": 2, + "state_generic_value": 0 + }, + { + "state_name": "ntpSysMode", + "state_descr": "unspecified", + "state_draw_graph": 1, + "state_value": 0, + "state_generic_value": 3 + }, + { + "state_name": "ntpSysMode", + "state_descr": "symmetric active", + "state_draw_graph": 1, + "state_value": 1, + "state_generic_value": 0 + }, + { + "state_name": "ntpSysMode", + "state_descr": "symmetric passive", + "state_draw_graph": 1, + "state_value": 2, + "state_generic_value": 0 + }, + { + "state_name": "ntpSysMode", + "state_descr": "client", + "state_draw_graph": 1, + "state_value": 3, + "state_generic_value": 1 + }, + { + "state_name": "ntpSysMode", + "state_descr": "server", + "state_draw_graph": 1, + "state_value": 4, + "state_generic_value": 0 + }, + { + "state_name": "ntpSysMode", + "state_descr": "broadcast", + "state_draw_graph": 1, + "state_value": 5, + "state_generic_value": 0 + }, + { + "state_name": "ntpSysMode", + "state_descr": "reserved for NTP control messages", + "state_draw_graph": 1, + "state_value": 6, + "state_generic_value": 3 + }, + { + "state_name": "ntpSysMode", + "state_descr": "reserved for private use", + "state_draw_graph": 1, + "state_value": 7, + "state_generic_value": 3 + }, + { + "state_name": "tymingSource", + "state_descr": "None", + "state_draw_graph": 1, + "state_value": 0, + "state_generic_value": 2 + }, + { + "state_name": "tymingSource", + "state_descr": "GPS", + "state_draw_graph": 1, + "state_value": 1, + "state_generic_value": 0 + }, + { + "state_name": "tymingSource", + "state_descr": "GPS", + "state_draw_graph": 1, + "state_value": 4, + "state_generic_value": 0 + }, + { + "state_name": "tymingSource", + "state_descr": "IRIG", + "state_draw_graph": 1, + "state_value": 8, + "state_generic_value": 0 + }, + { + "state_name": "tymingSource", + "state_descr": "External 1PPS", + "state_draw_graph": 1, + "state_value": 16, + "state_generic_value": 0 + }, + { + "state_name": "tymingSource", + "state_descr": "External 10MHz", + "state_draw_graph": 1, + "state_value": 24, + "state_generic_value": 0 + }, + { + "state_name": "tymingSource", + "state_descr": "Free-run", + "state_draw_graph": 1, + "state_value": 31, + "state_generic_value": 1 + }, + { + "state_name": "tymingStatus", + "state_descr": "Good", + "state_draw_graph": 1, + "state_value": 0, + "state_generic_value": 0 + }, + { + "state_name": "tymingStatus", + "state_descr": "Bad", + "state_draw_graph": 1, + "state_value": 1, + "state_generic_value": 2 + } + ] + }, + "poller": { + "sensors": [ + { + "sensor_deleted": 0, + "sensor_class": "count", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9070.1.2.3.1.5.1.3.2.0", + "sensor_index": "0", + "sensor_type": "microsemitime", + "sensor_descr": "GPS UTC Offset", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 18, + "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.4.1.9070.1.2.3.1.5.1.3.3.0", + "sensor_index": "0", + "sensor_type": "gpsHealth", + "sensor_descr": "GPS Receiver Health", + "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": 8, + "user_func": null, + "state_name": "gpsHealth" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9070.1.2.3.1.5.1.3.5.0", + "sensor_index": "0", + "sensor_type": "gpsMode", + "sensor_descr": "GPS Receiver Mode", + "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": "gpsMode" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9070.1.2.3.1.5.1.1.18.0", + "sensor_index": "0", + "sensor_type": "ntpSysMode", + "sensor_descr": "NTP Mode", + "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": "ntpSysMode" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9070.1.2.3.1.5.1.2.2.0", + "sensor_index": "0", + "sensor_type": "tymingSource", + "sensor_descr": "Hardware Clock Source", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 4, + "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": "tymingSource" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.9070.1.2.3.1.5.1.2.1.0", + "sensor_index": "0", + "sensor_type": "tymingStatus", + "sensor_descr": "Hardware Clock State", + "group": null, + "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": "tymingStatus" + } + ], + "state_indexes": [ + { + "state_name": "gpsHealth", + "state_descr": "Receiver Down", + "state_draw_graph": 1, + "state_value": 0, + "state_generic_value": 2 + }, + { + "state_name": "gpsHealth", + "state_descr": "Unknown Mode", + "state_draw_graph": 1, + "state_value": 1, + "state_generic_value": 2 + }, + { + "state_name": "gpsHealth", + "state_descr": "Acquiring Signal", + "state_draw_graph": 1, + "state_value": 2, + "state_generic_value": 1 + }, + { + "state_name": "gpsHealth", + "state_descr": "Bad Geometry", + "state_draw_graph": 1, + "state_value": 3, + "state_generic_value": 1 + }, + { + "state_name": "gpsHealth", + "state_descr": "Propagate Mode", + "state_draw_graph": 1, + "state_value": 4, + "state_generic_value": 0 + }, + { + "state_name": "gpsHealth", + "state_descr": "2D Solution", + "state_draw_graph": 1, + "state_value": 5, + "state_generic_value": 0 + }, + { + "state_name": "gpsHealth", + "state_descr": "3D Solution", + "state_draw_graph": 1, + "state_value": 6, + "state_generic_value": 0 + }, + { + "state_name": "gpsHealth", + "state_descr": "Position Hold", + "state_draw_graph": 1, + "state_value": 7, + "state_generic_value": 0 + }, + { + "state_name": "gpsHealth", + "state_descr": "Time Valid", + "state_draw_graph": 1, + "state_value": 8, + "state_generic_value": 0 + }, + { + "state_name": "gpsMode", + "state_descr": "Receiver Mode: Survey", + "state_draw_graph": 1, + "state_value": 0, + "state_generic_value": 0 + }, + { + "state_name": "gpsMode", + "state_descr": "Receiver Mode: Dynamic", + "state_draw_graph": 1, + "state_value": 1, + "state_generic_value": 0 + }, + { + "state_name": "gpsMode", + "state_descr": "Receiver Mode: Hold", + "state_draw_graph": 1, + "state_value": 2, + "state_generic_value": 0 + }, + { + "state_name": "ntpSysMode", + "state_descr": "unspecified", + "state_draw_graph": 1, + "state_value": 0, + "state_generic_value": 3 + }, + { + "state_name": "ntpSysMode", + "state_descr": "symmetric active", + "state_draw_graph": 1, + "state_value": 1, + "state_generic_value": 0 + }, + { + "state_name": "ntpSysMode", + "state_descr": "symmetric passive", + "state_draw_graph": 1, + "state_value": 2, + "state_generic_value": 0 + }, + { + "state_name": "ntpSysMode", + "state_descr": "client", + "state_draw_graph": 1, + "state_value": 3, + "state_generic_value": 1 + }, + { + "state_name": "ntpSysMode", + "state_descr": "server", + "state_draw_graph": 1, + "state_value": 4, + "state_generic_value": 0 + }, + { + "state_name": "ntpSysMode", + "state_descr": "broadcast", + "state_draw_graph": 1, + "state_value": 5, + "state_generic_value": 0 + }, + { + "state_name": "ntpSysMode", + "state_descr": "reserved for NTP control messages", + "state_draw_graph": 1, + "state_value": 6, + "state_generic_value": 3 + }, + { + "state_name": "ntpSysMode", + "state_descr": "reserved for private use", + "state_draw_graph": 1, + "state_value": 7, + "state_generic_value": 3 + }, + { + "state_name": "tymingSource", + "state_descr": "None", + "state_draw_graph": 1, + "state_value": 0, + "state_generic_value": 2 + }, + { + "state_name": "tymingSource", + "state_descr": "GPS", + "state_draw_graph": 1, + "state_value": 1, + "state_generic_value": 0 + }, + { + "state_name": "tymingSource", + "state_descr": "GPS", + "state_draw_graph": 1, + "state_value": 4, + "state_generic_value": 0 + }, + { + "state_name": "tymingSource", + "state_descr": "IRIG", + "state_draw_graph": 1, + "state_value": 8, + "state_generic_value": 0 + }, + { + "state_name": "tymingSource", + "state_descr": "External 1PPS", + "state_draw_graph": 1, + "state_value": 16, + "state_generic_value": 0 + }, + { + "state_name": "tymingSource", + "state_descr": "External 10MHz", + "state_draw_graph": 1, + "state_value": 24, + "state_generic_value": 0 + }, + { + "state_name": "tymingSource", + "state_descr": "Free-run", + "state_draw_graph": 1, + "state_value": 31, + "state_generic_value": 1 + }, + { + "state_name": "tymingStatus", + "state_descr": "Good", + "state_draw_graph": 1, + "state_value": 0, + "state_generic_value": 0 + }, + { + "state_name": "tymingStatus", + "state_descr": "Bad", + "state_draw_graph": 1, + "state_value": 1, + "state_generic_value": 2 + } + ] + } + }, + "storage": { + "discovery": { + "storage": [ + { + "storage_mib": "hrstorage", + "storage_index": "4", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/", + "storage_size": 183419904, + "storage_units": 1024, + "storage_used": 122861568, + "storage_free": 0, + "storage_perc": 0, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "5", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/", + "storage_size": 183419904, + "storage_units": 1024, + "storage_used": 122861568, + "storage_free": 0, + "storage_perc": 0, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "8", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/mnt/upgrade", + "storage_size": 101775360, + "storage_units": 1024, + "storage_used": 2082816, + "storage_free": 0, + "storage_perc": 0, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "9", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/postgres", + "storage_size": 496232448, + "storage_units": 1024, + "storage_used": 48333824, + "storage_free": 0, + "storage_perc": 0, + "storage_perc_warn": 60, + "storage_deleted": 0 + } + ] + }, + "poller": { + "storage": [ + { + "storage_mib": "hrstorage", + "storage_index": "4", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/", + "storage_size": 183419904, + "storage_units": 1024, + "storage_used": 122861568, + "storage_free": 60558336, + "storage_perc": 67, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "5", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/", + "storage_size": 183419904, + "storage_units": 1024, + "storage_used": 122861568, + "storage_free": 60558336, + "storage_perc": 67, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "8", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/mnt/upgrade", + "storage_size": 101775360, + "storage_units": 1024, + "storage_used": 2082816, + "storage_free": 99692544, + "storage_perc": 2, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "9", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/postgres", + "storage_size": 496232448, + "storage_units": 1024, + "storage_used": 48333824, + "storage_free": 447898624, + "storage_perc": 10, + "storage_perc_warn": 60, + "storage_deleted": 0 + } + ] + } + } +} diff --git a/tests/snmpsim/microsemitime.snmprec b/tests/snmpsim/microsemitime.snmprec index fdbe69a1a6..5b43e2e7db 100644 --- a/tests/snmpsim/microsemitime.snmprec +++ b/tests/snmpsim/microsemitime.snmprec @@ -1 +1,572 @@ +1.3.6.1.2.1.1.1.0|4|Linux SyncServer 2.6.10_mvl401-pc_target.Gryphon.2.10.2009.1201126 #18 Thu Mar 10 10:31:17 PST 2016 i686 1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.39165.1.6 +1.3.6.1.2.1.1.3.0|67|24017471 +1.3.6.1.2.1.1.4.0|4| +1.3.6.1.2.1.1.5.0|4| +1.3.6.1.2.1.1.6.0|4| +1.3.6.1.2.1.2.2.1.2.1|4|lo +1.3.6.1.2.1.2.2.1.2.2|4|sit0 +1.3.6.1.2.1.2.2.1.2.3|4|bond0 +1.3.6.1.2.1.2.2.1.2.4|4|eth0 +1.3.6.1.2.1.2.2.1.2.5|4|eth1 +1.3.6.1.2.1.2.2.1.2.6|4|eth2 +1.3.6.1.2.1.2.2.1.2.7|4|eth3 +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|131 +1.3.6.1.2.1.2.2.1.3.3|2|6 +1.3.6.1.2.1.2.2.1.3.4|2|6 +1.3.6.1.2.1.2.2.1.3.5|2|6 +1.3.6.1.2.1.2.2.1.3.6|2|6 +1.3.6.1.2.1.2.2.1.3.7|2|6 +1.3.6.1.2.1.2.2.1.4.1|2|16436 +1.3.6.1.2.1.2.2.1.4.2|2|1480 +1.3.6.1.2.1.2.2.1.4.3|2|1500 +1.3.6.1.2.1.2.2.1.4.4|2|1500 +1.3.6.1.2.1.2.2.1.4.5|2|1500 +1.3.6.1.2.1.2.2.1.4.6|2|1500 +1.3.6.1.2.1.2.2.1.4.7|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|4| +1.3.6.1.2.1.2.2.1.6.3|4| +1.3.6.1.2.1.2.2.1.6.4|4x|00A0690B6170 +1.3.6.1.2.1.2.2.1.6.5|4x|00A0690B6171 +1.3.6.1.2.1.2.2.1.6.6|4x|00A0690B6172 +1.3.6.1.2.1.2.2.1.6.7|4x|00A0690B6173 +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|2 +1.3.6.1.2.1.2.2.1.7.3|2|2 +1.3.6.1.2.1.2.2.1.7.4|2|1 +1.3.6.1.2.1.2.2.1.7.5|2|1 +1.3.6.1.2.1.2.2.1.7.6|2|2 +1.3.6.1.2.1.2.2.1.7.7|2|1 +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.8.3|2|2 +1.3.6.1.2.1.2.2.1.8.4|2|1 +1.3.6.1.2.1.2.2.1.8.5|2|2 +1.3.6.1.2.1.2.2.1.8.6|2|2 +1.3.6.1.2.1.2.2.1.8.7|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 +1.3.6.1.2.1.2.2.1.9.4|67|0 +1.3.6.1.2.1.2.2.1.9.5|67|0 +1.3.6.1.2.1.2.2.1.9.6|67|0 +1.3.6.1.2.1.2.2.1.9.7|67|0 +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 +1.3.6.1.2.1.2.2.1.13.4|65|0 +1.3.6.1.2.1.2.2.1.13.5|65|0 +1.3.6.1.2.1.2.2.1.13.6|65|0 +1.3.6.1.2.1.2.2.1.13.7|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 +1.3.6.1.2.1.2.2.1.14.4|65|0 +1.3.6.1.2.1.2.2.1.14.5|65|0 +1.3.6.1.2.1.2.2.1.14.6|65|0 +1.3.6.1.2.1.2.2.1.14.7|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 +1.3.6.1.2.1.2.2.1.19.4|65|0 +1.3.6.1.2.1.2.2.1.19.5|65|0 +1.3.6.1.2.1.2.2.1.19.6|65|0 +1.3.6.1.2.1.2.2.1.19.7|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 +1.3.6.1.2.1.2.2.1.20.4|65|0 +1.3.6.1.2.1.2.2.1.20.5|65|0 +1.3.6.1.2.1.2.2.1.20.6|65|0 +1.3.6.1.2.1.2.2.1.20.7|65|0 +1.3.6.1.2.1.4.20.1.1.10.61.1.24|64|10.61.1.24 +1.3.6.1.2.1.4.20.1.2.10.61.1.24|2|4 +1.3.6.1.2.1.4.20.1.2.10.61.1.25|2|5 +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.21.40.180|2|7 +1.3.6.1.2.1.4.20.1.3.10.61.1.24|64|255.255.255.0 +1.3.6.1.2.1.4.20.1.3.10.61.1.25|64|255.255.255.0 +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.21.40.180|64|255.255.255.0 +1.3.6.1.2.1.4.22.1.2.4.10.61.1.1|4x|000B86AA4E00 +1.3.6.1.2.1.4.22.1.2.4.10.61.1.20|4x|B827EB5E995B +1.3.6.1.2.1.4.24.6.0|66|8 +1.3.6.1.2.1.4.24.7.1.7.1.4.0.0.0.0.0.2.0.0.1.4.10.61.1.1|2|5 +1.3.6.1.2.1.4.24.7.1.7.1.4.0.0.0.0.0.2.0.0.1.4.172.21.40.1|2|7 +1.3.6.1.2.1.4.24.7.1.7.1.4.10.61.1.0.24.1.4.1.4.0.0.0.0|2|4 +1.3.6.1.2.1.4.24.7.1.7.1.4.10.61.1.0.24.1.5.1.4.0.0.0.0|2|5 +1.3.6.1.2.1.4.24.7.1.7.1.4.172.21.40.0.24.1.7.1.4.0.0.0.0|2|7 +1.3.6.1.2.1.4.24.7.1.7.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1.128.1.9.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|2|1 +1.3.6.1.2.1.4.24.7.1.7.2.16.254.128.0.0.0.0.0.0.2.160.105.255.254.11.97.112.128.1.10.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|2|1 +1.3.6.1.2.1.4.24.7.1.7.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.1.7.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|2|4 +1.3.6.1.2.1.4.24.7.1.8.1.4.0.0.0.0.0.2.0.0.1.4.10.61.1.1|2|4 +1.3.6.1.2.1.4.24.7.1.8.1.4.0.0.0.0.0.2.0.0.1.4.172.21.40.1|2|4 +1.3.6.1.2.1.4.24.7.1.8.1.4.10.61.1.0.24.1.4.1.4.0.0.0.0|2|3 +1.3.6.1.2.1.4.24.7.1.8.1.4.10.61.1.0.24.1.5.1.4.0.0.0.0|2|3 +1.3.6.1.2.1.4.24.7.1.8.1.4.172.21.40.0.24.1.7.1.4.0.0.0.0|2|3 +1.3.6.1.2.1.4.24.7.1.8.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1.128.1.9.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|2|3 +1.3.6.1.2.1.4.24.7.1.8.2.16.254.128.0.0.0.0.0.0.2.160.105.255.254.11.97.112.128.1.10.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|2|3 +1.3.6.1.2.1.4.24.7.1.8.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.1.7.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|2|3 +1.3.6.1.2.1.4.24.7.1.9.1.4.0.0.0.0.0.2.0.0.1.4.10.61.1.1|2|2 +1.3.6.1.2.1.4.24.7.1.9.1.4.0.0.0.0.0.2.0.0.1.4.172.21.40.1|2|2 +1.3.6.1.2.1.4.24.7.1.9.1.4.10.61.1.0.24.1.4.1.4.0.0.0.0|2|2 +1.3.6.1.2.1.4.24.7.1.9.1.4.10.61.1.0.24.1.5.1.4.0.0.0.0|2|2 +1.3.6.1.2.1.4.24.7.1.9.1.4.172.21.40.0.24.1.7.1.4.0.0.0.0|2|2 +1.3.6.1.2.1.4.24.7.1.9.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1.128.1.9.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|2|2 +1.3.6.1.2.1.4.24.7.1.9.2.16.254.128.0.0.0.0.0.0.2.160.105.255.254.11.97.112.128.1.10.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|2|2 +1.3.6.1.2.1.4.24.7.1.9.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.1.7.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|2|2 +1.3.6.1.2.1.4.24.7.1.10.1.4.0.0.0.0.0.2.0.0.1.4.10.61.1.1|66|0 +1.3.6.1.2.1.4.24.7.1.10.1.4.0.0.0.0.0.2.0.0.1.4.172.21.40.1|66|0 +1.3.6.1.2.1.4.24.7.1.10.1.4.10.61.1.0.24.1.4.1.4.0.0.0.0|66|0 +1.3.6.1.2.1.4.24.7.1.10.1.4.10.61.1.0.24.1.5.1.4.0.0.0.0|66|0 +1.3.6.1.2.1.4.24.7.1.10.1.4.172.21.40.0.24.1.7.1.4.0.0.0.0|66|0 +1.3.6.1.2.1.4.24.7.1.10.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1.128.1.9.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|66|0 +1.3.6.1.2.1.4.24.7.1.10.2.16.254.128.0.0.0.0.0.0.2.160.105.255.254.11.97.112.128.1.10.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|66|0 +1.3.6.1.2.1.4.24.7.1.10.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.1.7.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|66|0 +1.3.6.1.2.1.4.24.7.1.11.1.4.0.0.0.0.0.2.0.0.1.4.10.61.1.1|66|0 +1.3.6.1.2.1.4.24.7.1.11.1.4.0.0.0.0.0.2.0.0.1.4.172.21.40.1|66|0 +1.3.6.1.2.1.4.24.7.1.11.1.4.10.61.1.0.24.1.4.1.4.0.0.0.0|66|0 +1.3.6.1.2.1.4.24.7.1.11.1.4.10.61.1.0.24.1.5.1.4.0.0.0.0|66|0 +1.3.6.1.2.1.4.24.7.1.11.1.4.172.21.40.0.24.1.7.1.4.0.0.0.0|66|0 +1.3.6.1.2.1.4.24.7.1.11.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1.128.1.9.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|66|0 +1.3.6.1.2.1.4.24.7.1.11.2.16.254.128.0.0.0.0.0.0.2.160.105.255.254.11.97.112.128.1.10.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|66|0 +1.3.6.1.2.1.4.24.7.1.11.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.1.7.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|66|0 +1.3.6.1.2.1.4.24.7.1.12.1.4.0.0.0.0.0.2.0.0.1.4.10.61.1.1|2|0 +1.3.6.1.2.1.4.24.7.1.12.1.4.0.0.0.0.0.2.0.0.1.4.172.21.40.1|2|0 +1.3.6.1.2.1.4.24.7.1.12.1.4.10.61.1.0.24.1.4.1.4.0.0.0.0|2|0 +1.3.6.1.2.1.4.24.7.1.12.1.4.10.61.1.0.24.1.5.1.4.0.0.0.0|2|0 +1.3.6.1.2.1.4.24.7.1.12.1.4.172.21.40.0.24.1.7.1.4.0.0.0.0|2|0 +1.3.6.1.2.1.4.24.7.1.12.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1.128.1.9.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|2|0 +1.3.6.1.2.1.4.24.7.1.12.2.16.254.128.0.0.0.0.0.0.2.160.105.255.254.11.97.112.128.1.10.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|2|0 +1.3.6.1.2.1.4.24.7.1.12.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.1.7.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|2|256 +1.3.6.1.2.1.4.24.7.1.13.1.4.0.0.0.0.0.2.0.0.1.4.10.61.1.1|2|-1 +1.3.6.1.2.1.4.24.7.1.13.1.4.0.0.0.0.0.2.0.0.1.4.172.21.40.1|2|-1 +1.3.6.1.2.1.4.24.7.1.13.1.4.10.61.1.0.24.1.4.1.4.0.0.0.0|2|-1 +1.3.6.1.2.1.4.24.7.1.13.1.4.10.61.1.0.24.1.5.1.4.0.0.0.0|2|-1 +1.3.6.1.2.1.4.24.7.1.13.1.4.172.21.40.0.24.1.7.1.4.0.0.0.0|2|-1 +1.3.6.1.2.1.4.24.7.1.13.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1.128.1.9.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|2|-1 +1.3.6.1.2.1.4.24.7.1.13.2.16.254.128.0.0.0.0.0.0.2.160.105.255.254.11.97.112.128.1.10.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|2|-1 +1.3.6.1.2.1.4.24.7.1.13.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.1.7.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|2|-1 +1.3.6.1.2.1.4.24.7.1.14.1.4.0.0.0.0.0.2.0.0.1.4.10.61.1.1|2|-1 +1.3.6.1.2.1.4.24.7.1.14.1.4.0.0.0.0.0.2.0.0.1.4.172.21.40.1|2|-1 +1.3.6.1.2.1.4.24.7.1.14.1.4.10.61.1.0.24.1.4.1.4.0.0.0.0|2|-1 +1.3.6.1.2.1.4.24.7.1.14.1.4.10.61.1.0.24.1.5.1.4.0.0.0.0|2|-1 +1.3.6.1.2.1.4.24.7.1.14.1.4.172.21.40.0.24.1.7.1.4.0.0.0.0|2|-1 +1.3.6.1.2.1.4.24.7.1.14.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1.128.1.9.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|2|-1 +1.3.6.1.2.1.4.24.7.1.14.2.16.254.128.0.0.0.0.0.0.2.160.105.255.254.11.97.112.128.1.10.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|2|-1 +1.3.6.1.2.1.4.24.7.1.14.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.1.7.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|2|-1 +1.3.6.1.2.1.4.24.7.1.15.1.4.0.0.0.0.0.2.0.0.1.4.10.61.1.1|2|-1 +1.3.6.1.2.1.4.24.7.1.15.1.4.0.0.0.0.0.2.0.0.1.4.172.21.40.1|2|-1 +1.3.6.1.2.1.4.24.7.1.15.1.4.10.61.1.0.24.1.4.1.4.0.0.0.0|2|-1 +1.3.6.1.2.1.4.24.7.1.15.1.4.10.61.1.0.24.1.5.1.4.0.0.0.0|2|-1 +1.3.6.1.2.1.4.24.7.1.15.1.4.172.21.40.0.24.1.7.1.4.0.0.0.0|2|-1 +1.3.6.1.2.1.4.24.7.1.15.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1.128.1.9.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|2|-1 +1.3.6.1.2.1.4.24.7.1.15.2.16.254.128.0.0.0.0.0.0.2.160.105.255.254.11.97.112.128.1.10.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|2|-1 +1.3.6.1.2.1.4.24.7.1.15.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.1.7.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|2|-1 +1.3.6.1.2.1.4.24.7.1.16.1.4.0.0.0.0.0.2.0.0.1.4.10.61.1.1|2|-1 +1.3.6.1.2.1.4.24.7.1.16.1.4.0.0.0.0.0.2.0.0.1.4.172.21.40.1|2|-1 +1.3.6.1.2.1.4.24.7.1.16.1.4.10.61.1.0.24.1.4.1.4.0.0.0.0|2|-1 +1.3.6.1.2.1.4.24.7.1.16.1.4.10.61.1.0.24.1.5.1.4.0.0.0.0|2|-1 +1.3.6.1.2.1.4.24.7.1.16.1.4.172.21.40.0.24.1.7.1.4.0.0.0.0|2|-1 +1.3.6.1.2.1.4.24.7.1.16.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1.128.1.9.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|2|-1 +1.3.6.1.2.1.4.24.7.1.16.2.16.254.128.0.0.0.0.0.0.2.160.105.255.254.11.97.112.128.1.10.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|2|-1 +1.3.6.1.2.1.4.24.7.1.16.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.1.7.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|2|-1 +1.3.6.1.2.1.4.24.7.1.17.1.4.0.0.0.0.0.2.0.0.1.4.10.61.1.1|2|1 +1.3.6.1.2.1.4.24.7.1.17.1.4.0.0.0.0.0.2.0.0.1.4.172.21.40.1|2|1 +1.3.6.1.2.1.4.24.7.1.17.1.4.10.61.1.0.24.1.4.1.4.0.0.0.0|2|1 +1.3.6.1.2.1.4.24.7.1.17.1.4.10.61.1.0.24.1.5.1.4.0.0.0.0|2|1 +1.3.6.1.2.1.4.24.7.1.17.1.4.172.21.40.0.24.1.7.1.4.0.0.0.0|2|1 +1.3.6.1.2.1.4.24.7.1.17.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1.128.1.9.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|2|1 +1.3.6.1.2.1.4.24.7.1.17.2.16.254.128.0.0.0.0.0.0.2.160.105.255.254.11.97.112.128.1.10.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|2|1 +1.3.6.1.2.1.4.24.7.1.17.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.1.7.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0|2|1 +1.3.6.1.2.1.4.31.1.1.3.1|65|11920440 +1.3.6.1.2.1.4.31.1.1.3.2|65|364 +1.3.6.1.2.1.4.31.1.1.4.1|70|11920440 +1.3.6.1.2.1.4.31.1.1.4.2|70|364 +1.3.6.1.2.1.4.31.1.1.6.1|70|0 +1.3.6.1.2.1.4.31.1.1.6.2|70|0 +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.9.1|65|0 +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.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|11914070 +1.3.6.1.2.1.4.31.1.1.18.2|65|364 +1.3.6.1.2.1.4.31.1.1.19.1|70|11914070 +1.3.6.1.2.1.4.31.1.1.19.2|70|364 +1.3.6.1.2.1.4.31.1.1.20.1|65|11918339 +1.3.6.1.2.1.4.31.1.1.20.2|65|379 +1.3.6.1.2.1.4.31.1.1.21.1|70|11918339 +1.3.6.1.2.1.4.31.1.1.21.2|70|379 +1.3.6.1.2.1.4.31.1.1.22.1|65|14 +1.3.6.1.2.1.4.31.1.1.22.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|10 +1.3.6.1.2.1.4.31.1.1.25.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|0 +1.3.6.1.2.1.4.31.1.1.29.2|65|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|30000 +1.3.6.1.2.1.4.31.1.1.47.2|66|30000 +1.3.6.1.2.1.4.34.1.3.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1|2|1 +1.3.6.1.2.1.4.34.1.3.2.16.254.128.0.0.0.0.0.0.2.160.105.255.254.11.97.112|2|4 +1.3.6.1.2.1.4.34.1.5.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1|6|1.3.6.1.2.1.4.32.1.5.1.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1.128 +1.3.6.1.2.1.4.34.1.5.2.16.254.128.0.0.0.0.0.0.2.160.105.255.254.11.97.112|6|1.3.6.1.2.1.4.32.1.5.4.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64 +1.3.6.1.2.1.4.34.1.6.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1|2|2 +1.3.6.1.2.1.4.34.1.6.2.16.254.128.0.0.0.0.0.0.2.160.105.255.254.11.97.112|2|5 +1.3.6.1.2.1.4.35.1.4.4.1.4.10.61.1.1|4x|000B86AA4E00 +1.3.6.1.2.1.4.35.1.4.4.1.4.10.61.1.20|4x|B827EB5E995B +1.3.6.1.2.1.5.1.0|65|13610 +1.3.6.1.2.1.5.2.0|65|0 +1.3.6.1.2.1.5.3.0|65|6336 +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|7274 +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|13611 +1.3.6.1.2.1.5.15.0|65|0 +1.3.6.1.2.1.5.16.0|65|6337 +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|7274 +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.13.1.1.0.0.0.0.22.0.0.0.0.0|2|2 +1.3.6.1.2.1.6.14.0|65|0 +1.3.6.1.2.1.6.15.0|65|17 +1.3.6.1.2.1.7.5.1.1.0.0.0.0.123|64|0.0.0.0 +1.3.6.1.2.1.11.1.0|65|80874 +1.3.6.1.2.1.11.2.0|65|53561 +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|443766 +1.3.6.1.2.1.11.14.0|65|0 +1.3.6.1.2.1.11.15.0|65|10163 +1.3.6.1.2.1.11.16.0|65|3260 +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|0 +1.3.6.1.2.1.11.21.0|65|0 +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|53563 +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.11.31.0|65|0 +1.3.6.1.2.1.11.32.0|65|0 +1.3.6.1.2.1.25.1.1.0|67|24027920 +1.3.6.1.2.1.25.1.5.0|66|0 +1.3.6.1.2.1.25.1.6.0|66|112 +1.3.6.1.2.1.25.2.2.0|2|507092 +1.3.6.1.2.1.25.2.3.1.1.1|2|1 +1.3.6.1.2.1.25.2.3.1.1.2|2|2 +1.3.6.1.2.1.25.2.3.1.1.3|2|3 +1.3.6.1.2.1.25.2.3.1.1.4|2|4 +1.3.6.1.2.1.25.2.3.1.1.5|2|5 +1.3.6.1.2.1.25.2.3.1.1.6|2|6 +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.9|2|9 +1.3.6.1.2.1.25.2.3.1.2.1|6|1.3.6.1.2.1.25.2.1.1 +1.3.6.1.2.1.25.2.3.1.2.2|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.4|6|1.3.6.1.2.1.25.2.1.4 +1.3.6.1.2.1.25.2.3.1.2.5|6|1.3.6.1.2.1.25.2.1.4 +1.3.6.1.2.1.25.2.3.1.2.6|6|1.3.6.1.2.1.25.2.1.4 +1.3.6.1.2.1.25.2.3.1.2.7|6|1.3.6.1.2.1.25.2.1.4 +1.3.6.1.2.1.25.2.3.1.2.8|6|1.3.6.1.2.1.25.2.1.4 +1.3.6.1.2.1.25.2.3.1.2.9|6|1.3.6.1.2.1.25.2.1.4 +1.3.6.1.2.1.25.2.3.1.3.1|4|Memory Buffers +1.3.6.1.2.1.25.2.3.1.3.2|4|Real Memory +1.3.6.1.2.1.25.2.3.1.3.3|4|Swap Space +1.3.6.1.2.1.25.2.3.1.3.4|4|/ +1.3.6.1.2.1.25.2.3.1.3.5|4|/ +1.3.6.1.2.1.25.2.3.1.3.6|4|/sys +1.3.6.1.2.1.25.2.3.1.3.7|4|/proc/bus/usb +1.3.6.1.2.1.25.2.3.1.3.8|4|/mnt/upgrade +1.3.6.1.2.1.25.2.3.1.3.9|4|/postgres +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.2|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.4|2|1024 +1.3.6.1.2.1.25.2.3.1.4.5|2|1024 +1.3.6.1.2.1.25.2.3.1.4.6|2|4096 +1.3.6.1.2.1.25.2.3.1.4.7|2|4096 +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.9|2|1024 +1.3.6.1.2.1.25.2.3.1.5.1|2|507092 +1.3.6.1.2.1.25.2.3.1.5.2|2|507092 +1.3.6.1.2.1.25.2.3.1.5.3|2|0 +1.3.6.1.2.1.25.2.3.1.5.4|2|179121 +1.3.6.1.2.1.25.2.3.1.5.5|2|179121 +1.3.6.1.2.1.25.2.3.1.5.6|2|0 +1.3.6.1.2.1.25.2.3.1.5.7|2|0 +1.3.6.1.2.1.25.2.3.1.5.8|2|99390 +1.3.6.1.2.1.25.2.3.1.5.9|2|484602 +1.3.6.1.2.1.25.2.3.1.6.1|2|13904 +1.3.6.1.2.1.25.2.3.1.6.2|2|117408 +1.3.6.1.2.1.25.2.3.1.6.3|2|0 +1.3.6.1.2.1.25.2.3.1.6.4|2|119982 +1.3.6.1.2.1.25.2.3.1.6.5|2|119982 +1.3.6.1.2.1.25.2.3.1.6.6|2|0 +1.3.6.1.2.1.25.2.3.1.6.7|2|0 +1.3.6.1.2.1.25.2.3.1.6.8|2|2034 +1.3.6.1.2.1.25.2.3.1.6.9|2|47201 +1.3.6.1.2.1.25.3.2.1.1.768|2|768 +1.3.6.1.2.1.25.3.2.1.1.1025|2|1025 +1.3.6.1.2.1.25.3.2.1.1.1026|2|1026 +1.3.6.1.2.1.25.3.2.1.1.1027|2|1027 +1.3.6.1.2.1.25.3.2.1.1.1028|2|1028 +1.3.6.1.2.1.25.3.2.1.1.1029|2|1029 +1.3.6.1.2.1.25.3.2.1.1.1030|2|1030 +1.3.6.1.2.1.25.3.2.1.1.1031|2|1031 +1.3.6.1.2.1.25.3.2.1.1.1536|2|1536 +1.3.6.1.2.1.25.3.2.1.1.1538|2|1538 +1.3.6.1.2.1.25.3.2.1.1.3072|2|3072 +1.3.6.1.2.1.25.3.2.1.2.768|6|1.3.6.1.2.1.25.3.1.3 +1.3.6.1.2.1.25.3.2.1.2.1025|6|1.3.6.1.2.1.25.3.1.4 +1.3.6.1.2.1.25.3.2.1.2.1026|6|1.3.6.1.2.1.25.3.1.4 +1.3.6.1.2.1.25.3.2.1.2.1027|6|1.3.6.1.2.1.25.3.1.4 +1.3.6.1.2.1.25.3.2.1.2.1028|6|1.3.6.1.2.1.25.3.1.4 +1.3.6.1.2.1.25.3.2.1.2.1029|6|1.3.6.1.2.1.25.3.1.4 +1.3.6.1.2.1.25.3.2.1.2.1030|6|1.3.6.1.2.1.25.3.1.4 +1.3.6.1.2.1.25.3.2.1.2.1031|6|1.3.6.1.2.1.25.3.1.4 +1.3.6.1.2.1.25.3.2.1.2.1536|6|1.3.6.1.2.1.25.3.1.6 +1.3.6.1.2.1.25.3.2.1.2.1538|6|1.3.6.1.2.1.25.3.1.6 +1.3.6.1.2.1.25.3.2.1.2.3072|6|1.3.6.1.2.1.25.3.1.12 +1.3.6.1.2.1.25.3.2.1.3.768|4|GenuineIntel: Intel(R) Celeron(R) M processor 800MHz +1.3.6.1.2.1.25.3.2.1.3.1025|4|network interface lo +1.3.6.1.2.1.25.3.2.1.3.1026|4|network interface sit0 +1.3.6.1.2.1.25.3.2.1.3.1027|4|network interface bond0 +1.3.6.1.2.1.25.3.2.1.3.1028|4|network interface eth0 +1.3.6.1.2.1.25.3.2.1.3.1029|4|network interface eth1 +1.3.6.1.2.1.25.3.2.1.3.1030|4|network interface eth2 +1.3.6.1.2.1.25.3.2.1.3.1031|4|network interface eth3 +1.3.6.1.2.1.25.3.2.1.3.1536|4|Delkin Devices CFX512I4G1-DAAEG00 +1.3.6.1.2.1.25.3.2.1.3.1538|4|Delkin Devices CFX512I4G1-DAAEG00 +1.3.6.1.2.1.25.3.2.1.3.3072|4|Guessing that there's a floating point co-processor +1.3.6.1.2.1.25.3.2.1.4.768|6|0.0 +1.3.6.1.2.1.25.3.2.1.4.1025|6|0.0 +1.3.6.1.2.1.25.3.2.1.4.1026|6|0.0 +1.3.6.1.2.1.25.3.2.1.4.1027|6|0.0 +1.3.6.1.2.1.25.3.2.1.4.1028|6|0.0 +1.3.6.1.2.1.25.3.2.1.4.1029|6|0.0 +1.3.6.1.2.1.25.3.2.1.4.1030|6|0.0 +1.3.6.1.2.1.25.3.2.1.4.1031|6|0.0 +1.3.6.1.2.1.25.3.2.1.4.1536|6|0.0 +1.3.6.1.2.1.25.3.2.1.4.1538|6|0.0 +1.3.6.1.2.1.25.3.2.1.4.3072|6|0.0 +1.3.6.1.2.1.25.3.3.1.1.768|6|0.0 +1.3.6.1.2.1.31.1.1.1.1.1|4|lo +1.3.6.1.2.1.31.1.1.1.1.2|4|sit0 +1.3.6.1.2.1.31.1.1.1.1.3|4|bond0 +1.3.6.1.2.1.31.1.1.1.1.4|4|eth0 +1.3.6.1.2.1.31.1.1.1.1.5|4|eth1 +1.3.6.1.2.1.31.1.1.1.1.6|4|eth2 +1.3.6.1.2.1.31.1.1.1.1.7|4|eth3 +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 +1.3.6.1.2.1.31.1.1.1.2.4|65|0 +1.3.6.1.2.1.31.1.1.1.2.5|65|0 +1.3.6.1.2.1.31.1.1.1.2.6|65|0 +1.3.6.1.2.1.31.1.1.1.2.7|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 +1.3.6.1.2.1.31.1.1.1.3.4|65|0 +1.3.6.1.2.1.31.1.1.1.3.5|65|0 +1.3.6.1.2.1.31.1.1.1.3.6|65|0 +1.3.6.1.2.1.31.1.1.1.3.7|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 +1.3.6.1.2.1.31.1.1.1.4.4|65|0 +1.3.6.1.2.1.31.1.1.1.4.5|65|0 +1.3.6.1.2.1.31.1.1.1.4.6|65|0 +1.3.6.1.2.1.31.1.1.1.4.7|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 +1.3.6.1.2.1.31.1.1.1.5.4|65|0 +1.3.6.1.2.1.31.1.1.1.5.5|65|0 +1.3.6.1.2.1.31.1.1.1.5.6|65|0 +1.3.6.1.2.1.31.1.1.1.5.7|65|0 +1.3.6.1.2.1.31.1.1.1.6.1|70|958361956 +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 +1.3.6.1.2.1.31.1.1.1.6.4|70|21817382 +1.3.6.1.2.1.31.1.1.1.6.5|70|0 +1.3.6.1.2.1.31.1.1.1.6.6|70|0 +1.3.6.1.2.1.31.1.1.1.6.7|70|0 +1.3.6.1.2.1.31.1.1.1.7.1|70|11806473 +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 +1.3.6.1.2.1.31.1.1.1.7.4|70|191506 +1.3.6.1.2.1.31.1.1.1.7.5|70|0 +1.3.6.1.2.1.31.1.1.1.7.6|70|0 +1.3.6.1.2.1.31.1.1.1.7.7|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 +1.3.6.1.2.1.31.1.1.1.8.4|70|0 +1.3.6.1.2.1.31.1.1.1.8.5|70|0 +1.3.6.1.2.1.31.1.1.1.8.6|70|0 +1.3.6.1.2.1.31.1.1.1.8.7|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 +1.3.6.1.2.1.31.1.1.1.9.4|70|0 +1.3.6.1.2.1.31.1.1.1.9.5|70|0 +1.3.6.1.2.1.31.1.1.1.9.6|70|0 +1.3.6.1.2.1.31.1.1.1.9.7|70|0 +1.3.6.1.2.1.31.1.1.1.10.1|70|958361956 +1.3.6.1.2.1.31.1.1.1.10.2|70|0 +1.3.6.1.2.1.31.1.1.1.10.3|70|0 +1.3.6.1.2.1.31.1.1.1.10.4|70|30568056 +1.3.6.1.2.1.31.1.1.1.10.5|70|43672328 +1.3.6.1.2.1.31.1.1.1.10.6|70|0 +1.3.6.1.2.1.31.1.1.1.10.7|70|0 +1.3.6.1.2.1.31.1.1.1.11.1|70|11806473 +1.3.6.1.2.1.31.1.1.1.11.2|70|0 +1.3.6.1.2.1.31.1.1.1.11.3|70|0 +1.3.6.1.2.1.31.1.1.1.11.4|70|119551 +1.3.6.1.2.1.31.1.1.1.11.5|70|486202 +1.3.6.1.2.1.31.1.1.1.11.6|70|0 +1.3.6.1.2.1.31.1.1.1.11.7|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 +1.3.6.1.2.1.31.1.1.1.12.4|70|0 +1.3.6.1.2.1.31.1.1.1.12.5|70|0 +1.3.6.1.2.1.31.1.1.1.12.6|70|0 +1.3.6.1.2.1.31.1.1.1.12.7|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 +1.3.6.1.2.1.31.1.1.1.13.4|70|0 +1.3.6.1.2.1.31.1.1.1.13.5|70|0 +1.3.6.1.2.1.31.1.1.1.13.6|70|0 +1.3.6.1.2.1.31.1.1.1.13.7|70|0 +1.3.6.1.2.1.31.1.1.1.14.1|2|0 +1.3.6.1.2.1.31.1.1.1.14.2|2|0 +1.3.6.1.2.1.31.1.1.1.14.3|2|0 +1.3.6.1.2.1.31.1.1.1.14.4|2|0 +1.3.6.1.2.1.31.1.1.1.14.5|2|0 +1.3.6.1.2.1.31.1.1.1.14.6|2|0 +1.3.6.1.2.1.31.1.1.1.14.7|2|0 +1.3.6.1.2.1.31.1.1.1.15.1|66|0 +1.3.6.1.2.1.31.1.1.1.15.2|66|0 +1.3.6.1.2.1.31.1.1.1.15.3|66|0 +1.3.6.1.2.1.31.1.1.1.15.4|66|0 +1.3.6.1.2.1.31.1.1.1.15.5|66|0 +1.3.6.1.2.1.31.1.1.1.15.6|66|0 +1.3.6.1.2.1.31.1.1.1.15.7|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 +1.3.6.1.2.1.31.1.1.1.16.4|2|2 +1.3.6.1.2.1.31.1.1.1.16.5|2|2 +1.3.6.1.2.1.31.1.1.1.16.6|2|2 +1.3.6.1.2.1.31.1.1.1.16.7|2|2 +1.3.6.1.2.1.31.1.1.1.17.1|2|0 +1.3.6.1.2.1.31.1.1.1.17.2|2|0 +1.3.6.1.2.1.31.1.1.1.17.3|2|0 +1.3.6.1.2.1.31.1.1.1.17.4|2|0 +1.3.6.1.2.1.31.1.1.1.17.5|2|0 +1.3.6.1.2.1.31.1.1.1.17.6|2|0 +1.3.6.1.2.1.31.1.1.1.17.7|2|0 +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| +1.3.6.1.2.1.31.1.1.1.18.4|4| +1.3.6.1.2.1.31.1.1.1.18.5|4| +1.3.6.1.2.1.31.1.1.1.18.6|4| +1.3.6.1.2.1.31.1.1.1.18.7|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 +1.3.6.1.2.1.31.1.1.1.19.4|67|0 +1.3.6.1.2.1.31.1.1.1.19.5|67|0 +1.3.6.1.2.1.31.1.1.1.19.6|67|0 +1.3.6.1.2.1.31.1.1.1.19.7|67|0 +1.3.6.1.4.1.2021.10.1.5.1|2|23 +1.3.6.1.4.1.2021.10.1.5.2|2|20 +1.3.6.1.4.1.2021.10.1.5.3|2|17 +1.3.6.1.4.1.2021.11.1.0|2|1 +1.3.6.1.4.1.2021.11.2.0|4|systemStats +1.3.6.1.4.1.2021.11.3.0|2|0 +1.3.6.1.4.1.2021.11.4.0|2|0 +1.3.6.1.4.1.2021.11.5.0|2|0 +1.3.6.1.4.1.2021.11.6.0|2|2 +1.3.6.1.4.1.2021.11.7.0|2|116 +1.3.6.1.4.1.2021.11.8.0|2|84 +1.3.6.1.4.1.2021.11.9.0|2|3 +1.3.6.1.4.1.2021.11.10.0|2|3 +1.3.6.1.4.1.2021.11.11.0|2|92 +1.3.6.1.4.1.2021.11.50.0|65|638819 +1.3.6.1.4.1.2021.11.51.0|65|0 +1.3.6.1.4.1.2021.11.52.0|65|827172 +1.3.6.1.4.1.2021.11.53.0|65|22462384 +1.3.6.1.4.1.2021.11.54.0|65|92238 +1.3.6.1.4.1.2021.11.55.0|65|807076 +1.3.6.1.4.1.2021.11.56.0|65|1391 +1.3.6.1.4.1.2021.11.57.0|65|1013508 +1.3.6.1.4.1.2021.11.58.0|65|73904 +1.3.6.1.4.1.2021.11.59.0|65|242585623 +1.3.6.1.4.1.2021.11.60.0|65|105999013 +1.3.6.1.4.1.2021.11.61.0|65|18705 +1.3.6.1.4.1.2021.11.62.0|65|0 +1.3.6.1.4.1.2021.11.63.0|65|0 +1.3.6.1.4.1.9070.1.2.3.1.5.1.1.14.0|4|Symmetricom SyncServer +1.3.6.1.4.1.9070.1.2.3.1.5.1.1.18.0|2|3 +1.3.6.1.4.1.9070.1.2.3.1.5.1.2.1.0|4|Bad +1.3.6.1.4.1.9070.1.2.3.1.5.1.2.2.0|4|4 +1.3.6.1.4.1.9070.1.2.3.1.5.1.3.2.0|2|18 +1.3.6.1.4.1.9070.1.2.3.1.5.1.3.3.0|4|Receiver Health: 8 +1.3.6.1.4.1.9070.1.2.3.1.5.1.3.5.0|4|Receiver Mode: Hold +1.3.6.1.4.1.9070.1.2.3.1.5.1.6.1.0|4|2.83.2 +1.3.6.1.4.1.9070.1.2.3.1.5.1.6.2.0|4|1126A67238 +1.3.6.1.4.1.9070.1.2.3.1.5.1.6.3.0|4|S350 +1.3.6.1.6.3.10.2.1.3.0|2|240186