mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
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.
This commit is contained in:
77
includes/definitions/discovery/microsemitime.yaml
Normal file
77
includes/definitions/discovery/microsemitime.yaml
Normal file
@@ -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' }
|
@@ -1,6 +1,13 @@
|
|||||||
os: microsemitime
|
os: microsemitime
|
||||||
text: 'Microsemi Timing'
|
text: 'SyncServer'
|
||||||
type: timing
|
type: timing
|
||||||
icon: microsemi
|
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:
|
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
|
||||||
|
639
mibs/microsemi/SYMM-SMI
Normal file
639
mibs/microsemi/SYMM-SMI
Normal file
@@ -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<50> 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
|
2449
tests/data/microsemitime.json
Normal file
2449
tests/data/microsemitime.json
Normal file
File diff suppressed because it is too large
Load Diff
@@ -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.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|<private>
|
||||||
|
1.3.6.1.2.1.1.5.0|4|<private>
|
||||||
|
1.3.6.1.2.1.1.6.0|4|<private>
|
||||||
|
1.3.6.1.2.1.2.2.1.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
|
||||||
|
Reference in New Issue
Block a user