Fix Calix OS definitions (#8832)

* Fix Calix OS definitions

The main change is EXA (E7, etc) and B6 (Occam) devices are now their own OS

Now the follow OS exist:
exa: E7 EXA, E5-400, E5-48, E3-48, E3-8G
occamos: B6

Unchanged:
calix: E5-1**, E3-12C
axos: E7-2 AXOS, E9-2, E3-2, E5-520, E5-16F, E3-16F, E5-30x

* fix tests
exa_e7-2 seems like bogus data.

* additional tests, fix an error in the yaml

* Remove extra line return

* Add missed file
This commit is contained in:
Tony Murray 2018-07-23 12:44:53 -05:00 committed by GitHub
parent cfb6503cac
commit 8f4a041b8d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
24 changed files with 24867 additions and 373 deletions

View File

@ -1,5 +1,5 @@
os: calix
text: Calix
text: Calix Legacy
type: network
ifname: true
empty_ifdescr: true
@ -8,8 +8,4 @@ over:
- { graph: device_bits, text: 'Device Traffic' }
discovery:
- sysObjectID:
- .1.3.6.1.4.1.6321.1.2.2.5.3
- .1.3.6.1.4.1.6066.1.44
- .1.3.6.1.4.1.6066.1.45
- .1.3.6.1.4.1.6066.1.52
- .1.3.6.1.4.1.6321.1.2.3

View File

@ -0,0 +1,13 @@
os: exa
text: Calix E7
type: network
ifname: true
empty_ifdescr: true
icon: calix
mib_dir:
- calix
over:
- { graph: device_bits, text: 'Device Traffic' }
discovery:
- sysObjectID:
- .1.3.6.1.4.1.6321.1.2.2

View File

@ -0,0 +1,11 @@
os: occamos
text: Calix B6 System
type: network
icon: calix
mib_dir:
- calix
over:
- { graph: device_bits, text: 'Device Traffic' }
discovery:
- sysObjectID:
- .1.3.6.1.4.1.6066.1.

View File

@ -59,9 +59,3 @@ if (strstr($device['sysObjectID'], '.6321.1.2.3')) { // E5-1xx Series
$hardware = str_replace('"', '', $hardware);
}
}
// Device might not have a card 1 (or even card2 if it is an E7-20)
$version = strtok(snmp_walk($device, "e7CardSoftwareVersion.1", "-OQv", "E7-Calix-MIB"), PHP_EOL);
$hardware = "Calix " . $device['sysDescr'];
$features = str_replace(PHP_EOL, ', ', snmp_walk($device, "e7CardProvType", "-OQv", "E7-Calix-MIB"));
$serial = str_replace(PHP_EOL, ', ', snmp_walk($device, "e7CardSerialNumber", "-OQv", "E7-Calix-MIB"));

View File

@ -0,0 +1,7 @@
<?php
// Device might not have a card 1 (or even card2 if it is an E7-20)
$version = strtok(snmp_walk($device, "e7CardSoftwareVersion.1", "-OQv", "E7-Calix-MIB"), PHP_EOL);
$hardware = "Calix " . $device['sysDescr'];
$features = str_replace(PHP_EOL, ', ', snmp_walk($device, "e7CardProvType", "-OQv", "E7-Calix-MIB"));
$serial = str_replace(PHP_EOL, ', ', snmp_walk($device, "e7CardSerialNumber", "-OQv", "E7-Calix-MIB"));

View File

@ -0,0 +1,3 @@
<?php
$hardware = "Calix " . $device['sysDescr'];

2990
mibs/IEEE8021-CFMD8-MIB Normal file

File diff suppressed because it is too large Load Diff

View File

@ -1,123 +0,0 @@
-- WinAgents MIB Extraction Wizard
-- Extracted from rfc2856.txt 16.03.2005 20:21:52
HCNUM-TC DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, mib-2, Counter64
FROM SNMPv2-SMI
TEXTUAL-CONVENTION
FROM SNMPv2-TC;
hcnumTC MODULE-IDENTITY
LAST-UPDATED "200006080000Z"
ORGANIZATION "IETF OPS Area"
CONTACT-INFO
" E-mail: mibs@ops.ietf.org
Subscribe: majordomo@psg.com
with msg body: subscribe mibs
Andy Bierman
Cisco Systems Inc.
170 West Tasman Drive
San Jose, CA 95134 USA
+1 408-527-3711
abierman@cisco.com
Keith McCloghrie
Cisco Systems Inc.
170 West Tasman Drive
San Jose, CA 95134 USA
+1 408-526-5260
kzm@cisco.com
Randy Presuhn
BMC Software, Inc.
Office 1-3141
2141 North First Street
San Jose, California 95131 USA
+1 408 546-1006
rpresuhn@bmc.com"
DESCRIPTION
"A MIB module containing textual conventions
for high capacity data types. This module
addresses an immediate need for data types not directly
supported in the SMIv2. This short-term solution
is meant to be deprecated as a long-term solution
is deployed."
REVISION "200006080000Z"
DESCRIPTION
"Initial Version of the High Capacity Numbers
MIB module, published as RFC 2856."
::= { mib-2 78 }
CounterBasedGauge64 ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The CounterBasedGauge64 type represents a non-negative
integer, which may increase or decrease, but shall never
exceed a maximum value, nor fall below a minimum value. The
maximum value can not be greater than 2^64-1
(18446744073709551615 decimal), and the minimum value can
not be smaller than 0. The value of a CounterBasedGauge64
has its maximum value whenever the information being modeled
is greater than or equal to its maximum value, and has its
minimum value whenever the information being modeled is
smaller than or equal to its minimum value. If the
information being modeled subsequently decreases below
(increases above) the maximum (minimum) value, the
CounterBasedGauge64 also decreases (increases).
Note that this TC is not strictly supported in SMIv2,
because the 'always increasing' and 'counter wrap' semantics
associated with the Counter64 base type are not preserved.
It is possible that management applications which rely
solely upon the (Counter64) ASN.1 tag to determine object
semantics will mistakenly operate upon objects of this type
as they would for Counter64 objects.
This textual convention represents a limited and short-term
solution, and may be deprecated as a long term solution is
defined and deployed to replace it."
SYNTAX Counter64
ZeroBasedCounter64 ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"This TC describes an object which counts events with the
following semantics: objects of this type will be set to
zero(0) on creation and will thereafter count appropriate
events, wrapping back to zero(0) when the value 2^64 is
reached.
Provided that an application discovers the new object within
the minimum time to wrap it can use the initial value as a
delta since it last polled the table of which this object is
part. It is important for a management station to be aware
of this minimum time and the actual time between polls, and
to discard data if the actual time is too long or there is
no defined minimum time.
Typically this TC is used in tables where the INDEX space is
constantly changing and/or the TimeFilter mechanism is in
use.
Note that this textual convention does not retain all the
semantics of the Counter64 base type. Specifically, a
Counter64 has an arbitrary initial value, but objects
defined with this TC are required to start at the value
zero. This behavior is not likely to have any adverse
effects on management applications which are expecting
Counter64 semantics.
This textual convention represents a limited and short-term
solution, and may be deprecated as a long term solution is
defined and deployed to replace it."
SYNTAX Counter64
END

View File

@ -1,226 +0,0 @@
HC-PerfHist-TC-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY,
Counter64,
Unsigned32,
Integer32,
mib-2 FROM SNMPv2-SMI
TEXTUAL-CONVENTION FROM SNMPv2-TC;
hcPerfHistTCMIB MODULE-IDENTITY
LAST-UPDATED "200402030000Z" -- February 3, 2004
ORGANIZATION "ADSLMIB Working Group"
CONTACT-INFO "WG-email: adslmib@ietf.org
Info: https://www1.ietf.org/mailman/listinfo/adslmib
Chair: Mike Sneed
Sand Channel Systems
Postal: P.O. Box 37324
Raleigh NC 27627-7324
USA
Email: sneedmike@hotmail.com
Phone: +1 206 600 7022
Co-editor: Bob Ray
PESA Switching Systems, Inc.
Postal: 330-A Wynn Drive
Huntsville, AL 35805
USA
Email: rray@pesa.com
Phone: +1 256 726 9200 ext. 142
Co-editor: Rajesh Abbi
Alcatel USA
Postal: 2301 Sugar Bush Road
Raleigh, NC 27612-3339
USA
Email: Rajesh.Abbi@alcatel.com
Phone: +1 919 850 6194
"
DESCRIPTION
"This MIB Module provides Textual Conventions to be
used by systems supporting 15 minute based performance
history counts that require high-capacity counts.
Copyright (C) The Internet Society (2004). This version
of this MIB module is part of RFC 3705: see the RFC
itself for full legal notices."
REVISION "200402030000Z" -- February 3, 2004
DESCRIPTION "Initial version, published as RFC 3705."
::= { mib-2 107 }
HCPerfValidIntervals ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The number of near end intervals for which data was
collected. The value of an object with an
HCPerfValidIntervals syntax will be 96 unless the
measurement was (re-)started within the last 1440 minutes,
in which case the value will be the number of complete 15
minute intervals for which the agent has at least some data.
In certain cases (e.g., in the case where the agent is a
proxy) it is possible that some intervals are unavailable.
In this case, this interval is the maximum interval number
for which data is available."
SYNTAX Integer32 (0..96)
HCPerfInvalidIntervals ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The number of near end intervals for which no data is
available. The value of an object with an
HCPerfInvalidIntervals syntax will typically be zero except
in cases where the data for some intervals are not available
(e.g., in proxy situations)."
SYNTAX Integer32 (0..96)
HCPerfTimeElapsed ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The number of seconds that have elapsed since the beginning
of the current measurement period. If, for some reason,
such as an adjustment in the system's time-of-day clock or
the addition of a leap second, the duration of the current
interval exceeds the maximum value, the agent will return
the maximum value.
For 15 minute intervals, the range is limited to (0..899).
For 24 hour intervals, the range is limited to (0..86399)."
SYNTAX Integer32 (0..86399)
HCPerfIntervalThreshold ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"This convention defines a range of values that may be set
in a fault threshold alarm control. As the number of
seconds in a 15-minute interval numbers at most 900,
objects of this type may have a range of 0...900, where the
value of 0 disables the alarm."
SYNTAX Unsigned32 (0..900)
HCPerfCurrentCount ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"A gauge associated with a performance measurement in a
current 15 minute measurement interval. The value of an
object with an HCPerfCurrentCount syntax starts from zero
and is increased when associated events occur, until the
end of the 15 minute interval. At that time the value of
the gauge is stored in the first 15 minute history
interval, and the gauge is restarted at zero. In the case
where the agent has no valid data available for the
current interval, the corresponding object instance is not
available and upon a retrieval request a corresponding
error message shall be returned to indicate that this
instance does not exist.
This count represents a non-negative integer, which
may increase or decrease, but shall never exceed 2^64-1
(18446744073709551615 decimal), nor fall below 0. The
value of an object with HCPerfCurrentCount syntax
assumes its maximum value whenever the underlying count
exceeds 2^64-1. If the underlying count subsequently
decreases below 2^64-1 (due, e.g., to a retroactive
adjustment as a result of entering or exiting unavailable
time), then the object's value also decreases.
Note that this TC is not strictly supported in SMIv2,
because the 'always increasing' and 'counter wrap'
semantics associated with the Counter64 base type are not
preserved. It is possible that management applications
which rely solely upon the (Counter64) ASN.1 tag to
determine object semantics will mistakenly operate upon
objects of this type as they would for Counter64 objects.
This textual convention represents a limited and short-
term solution, and may be deprecated as a long term
solution is defined and deployed to replace it."
SYNTAX Counter64
HCPerfIntervalCount ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"A gauge associated with a performance measurement in
a previous 15 minute measurement interval. In the case
where the agent has no valid data available for a
particular interval, the corresponding object instance is
not available and upon a retrieval request a corresponding
error message shall be returned to indicate that this
instance does not exist.
Let X be an object with HCPerfIntervalCount syntax.
Let Y be an object with HCPerfCurrentCount syntax.
Let Z be an object with HCPerfTotalCount syntax.
Then, in a system supporting a history of n intervals with
X(1) and X(n) the most and least recent intervals
respectively, the following applies at the end of a 15
minute interval:
- discard the value of X(n)
- the value of X(i) becomes that of X(i-1)
for n >= i > 1
- the value of X(1) becomes that of Y.
- the value of Z, if supported, is adjusted.
This count represents a non-negative integer, which
may increase or decrease, but shall never exceed 2^64-1
(18446744073709551615 decimal), nor fall below 0. The
value of an object with HCPerfIntervalCount syntax
assumes its maximum value whenever the underlying count
exceeds 2^64-1. If the underlying count subsequently
decreases below 2^64-1 (due, e.g., to a retroactive
adjustment as a result of entering or exiting unavailable
time), then the value of the object also decreases.
Note that this TC is not strictly supported in SMIv2,
because the 'always increasing' and 'counter wrap'
semantics associated with the Counter64 base type are not
preserved. It is possible that management applications
which rely solely upon the (Counter64) ASN.1 tag to
determine object semantics will mistakenly operate upon
objects of this type as they would for Counter64 objects.
This textual convention represents a limited and short-
term solution, and may be deprecated as a long term
solution is defined and deployed to replace it."
SYNTAX Counter64
HCPerfTotalCount ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"A gauge representing the aggregate of previous valid 15
minute measurement intervals. Intervals for which no
valid data was available are not counted.
This count represents a non-negative integer, which
may increase or decrease, but shall never exceed 2^64-1
(18446744073709551615 decimal), nor fall below 0. The
value of an object with HCPerfTotalCount syntax
assumes its maximum value whenever the underlying count
exceeds 2^64-1. If the underlying count subsequently
decreases below 2^64-1 (due, e.g., to a retroactive
adjustment as a result of entering or exiting unavailable
time), then the object's value also decreases.
Note that this TC is not strictly supported in SMIv2,
because the 'always increasing' and 'counter wrap'
semantics associated with the Counter64 base type are not
preserved. It is possible that management applications
which rely solely upon the (Counter64) ASN.1 tag to
determine object semantics will mistakenly operate upon
objects of this type as they would for Counter64 objects.
This textual convention represents a limited and short-
term solution, and may be deprecated as a long term
solution is defined and deployed to replace it."
SYNTAX Counter64
END

8522
tests/data/exa_e7-2.json Normal file

File diff suppressed because it is too large Load Diff

View File

@ -11,7 +11,7 @@
"hardware": "",
"features": null,
"location": null,
"os": "calix",
"os": "occamos",
"type": "network",
"serial": null,
"icon": "calix.svg"
@ -29,7 +29,7 @@
"hardware": "Calix B6-256",
"features": null,
"location": "<private>",
"os": "calix",
"os": "occamos",
"type": "network",
"serial": null,
"icon": "calix.svg"

File diff suppressed because it is too large Load Diff

View File

@ -1,9 +1,2 @@
1.3.6.1.2.1.1.1.0|4|E7-2
1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.6321.1.2.2.5.3
1.3.6.1.2.1.1.3.0|67|3863736432
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.25.3.3.1.1.768|6|0.0
1.3.6.1.2.1.25.3.3.1.2.768|2|8
1.3.6.1.6.3.10.2.1.3.0|2|38637668
1.3.6.1.2.1.1.1.0|4|E5-121
1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.6321.1.2.3.4

View File

@ -1,2 +0,0 @@
1.3.6.1.2.1.1.1.0|4|E7-2
1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.6321.1.2.3

View File

@ -0,0 +1,9 @@
1.3.6.1.2.1.1.1.0|4|E7-2
1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.6321.1.2.2.5.3
1.3.6.1.2.1.1.3.0|67|3863736432
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.25.3.3.1.1.768|6|0.0
1.3.6.1.2.1.25.3.3.1.2.768|2|8
1.3.6.1.6.3.10.2.1.3.0|2|38637668

View File

@ -0,0 +1,537 @@
1.3.6.1.2.1.1.1.0|4|E7-2
1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.6321.1.2.2.5.3
1.3.6.1.2.1.1.3.0|67|3863736432
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.101|4|
1.3.6.1.2.1.2.2.1.2.102|4|
1.3.6.1.2.1.2.2.1.2.103|4|
1.3.6.1.2.1.2.2.1.2.104|4|
1.3.6.1.2.1.2.2.1.2.105|4|
1.3.6.1.2.1.2.2.1.2.106|4|
1.3.6.1.2.1.2.2.1.2.107|4|
1.3.6.1.2.1.2.2.1.2.108|4|
1.3.6.1.2.1.2.2.1.2.109|4|
1.3.6.1.2.1.2.2.1.2.110|4|
1.3.6.1.2.1.2.2.1.2.111|4|
1.3.6.1.2.1.2.2.1.2.112|4|
1.3.6.1.2.1.2.2.1.2.201|4|
1.3.6.1.2.1.2.2.1.2.202|4|
1.3.6.1.2.1.2.2.1.2.203|4|
1.3.6.1.2.1.2.2.1.2.204|4|
1.3.6.1.2.1.2.2.1.2.205|4|
1.3.6.1.2.1.2.2.1.2.206|4|
1.3.6.1.2.1.2.2.1.2.207|4|
1.3.6.1.2.1.2.2.1.2.208|4|
1.3.6.1.2.1.2.2.1.2.10101|4|
1.3.6.1.2.1.2.2.1.2.10102|4|
1.3.6.1.2.1.2.2.1.2.10103|4|
1.3.6.1.2.1.2.2.1.2.10104|4|
1.3.6.1.2.1.2.2.1.2.10201|4|
1.3.6.1.2.1.2.2.1.2.10202|4|
1.3.6.1.2.1.2.2.1.2.10203|4|
1.3.6.1.2.1.2.2.1.2.10204|4|
1.3.6.1.2.1.2.2.1.2.30201|4|
1.3.6.1.2.1.2.2.1.2.30202|4|West Feed
1.3.6.1.2.1.2.2.1.2.30203|4|
1.3.6.1.2.1.2.2.1.2.30204|4|
1.3.6.1.2.1.2.2.1.2.100001|4|
1.3.6.1.2.1.2.2.1.2.100002|4|
1.3.6.1.2.1.2.2.1.2.100003|4|
1.3.6.1.2.1.2.2.1.2.100004|4|
1.3.6.1.2.1.2.2.1.2.100033|4|West CO ONT
1.3.6.1.2.1.2.2.1.2.100034|4|
1.3.6.1.2.1.2.2.1.2.100035|4|
1.3.6.1.2.1.2.2.1.2.100036|4|
1.3.6.1.2.1.2.2.1.3.101|2|6
1.3.6.1.2.1.2.2.1.3.102|2|6
1.3.6.1.2.1.2.2.1.3.103|2|6
1.3.6.1.2.1.2.2.1.3.104|2|6
1.3.6.1.2.1.2.2.1.3.105|2|6
1.3.6.1.2.1.2.2.1.3.106|2|6
1.3.6.1.2.1.2.2.1.3.107|2|6
1.3.6.1.2.1.2.2.1.3.108|2|6
1.3.6.1.2.1.2.2.1.3.109|2|6
1.3.6.1.2.1.2.2.1.3.110|2|6
1.3.6.1.2.1.2.2.1.3.111|2|6
1.3.6.1.2.1.2.2.1.3.112|2|6
1.3.6.1.2.1.2.2.1.3.201|2|6
1.3.6.1.2.1.2.2.1.3.202|2|6
1.3.6.1.2.1.2.2.1.3.203|2|6
1.3.6.1.2.1.2.2.1.3.204|2|6
1.3.6.1.2.1.2.2.1.3.205|2|6
1.3.6.1.2.1.2.2.1.3.206|2|6
1.3.6.1.2.1.2.2.1.3.207|2|6
1.3.6.1.2.1.2.2.1.3.208|2|6
1.3.6.1.2.1.2.2.1.3.10101|2|6
1.3.6.1.2.1.2.2.1.3.10102|2|6
1.3.6.1.2.1.2.2.1.3.10103|2|6
1.3.6.1.2.1.2.2.1.3.10104|2|6
1.3.6.1.2.1.2.2.1.3.10201|2|6
1.3.6.1.2.1.2.2.1.3.10202|2|6
1.3.6.1.2.1.2.2.1.3.10203|2|6
1.3.6.1.2.1.2.2.1.3.10204|2|6
1.3.6.1.2.1.2.2.1.3.30201|2|250
1.3.6.1.2.1.2.2.1.3.30202|2|250
1.3.6.1.2.1.2.2.1.3.30203|2|250
1.3.6.1.2.1.2.2.1.3.30204|2|250
1.3.6.1.2.1.2.2.1.3.100001|2|6
1.3.6.1.2.1.2.2.1.3.100002|2|6
1.3.6.1.2.1.2.2.1.3.100003|2|6
1.3.6.1.2.1.2.2.1.3.100004|2|6
1.3.6.1.2.1.2.2.1.3.100033|2|6
1.3.6.1.2.1.2.2.1.3.100034|2|6
1.3.6.1.2.1.2.2.1.3.100035|2|6
1.3.6.1.2.1.2.2.1.3.100036|2|6
1.3.6.1.2.1.2.2.1.7.101|2|1
1.3.6.1.2.1.2.2.1.7.102|2|1
1.3.6.1.2.1.2.2.1.7.103|2|1
1.3.6.1.2.1.2.2.1.7.104|2|1
1.3.6.1.2.1.2.2.1.7.105|2|1
1.3.6.1.2.1.2.2.1.7.106|2|1
1.3.6.1.2.1.2.2.1.7.107|2|1
1.3.6.1.2.1.2.2.1.7.108|2|1
1.3.6.1.2.1.2.2.1.7.109|2|1
1.3.6.1.2.1.2.2.1.7.110|2|1
1.3.6.1.2.1.2.2.1.7.111|2|1
1.3.6.1.2.1.2.2.1.7.112|2|1
1.3.6.1.2.1.2.2.1.7.201|2|1
1.3.6.1.2.1.2.2.1.7.202|2|1
1.3.6.1.2.1.2.2.1.7.203|2|1
1.3.6.1.2.1.2.2.1.7.204|2|2
1.3.6.1.2.1.2.2.1.7.205|2|1
1.3.6.1.2.1.2.2.1.7.206|2|1
1.3.6.1.2.1.2.2.1.7.207|2|1
1.3.6.1.2.1.2.2.1.7.208|2|1
1.3.6.1.2.1.2.2.1.7.10101|2|1
1.3.6.1.2.1.2.2.1.7.10102|2|1
1.3.6.1.2.1.2.2.1.7.10103|2|2
1.3.6.1.2.1.2.2.1.7.10104|2|2
1.3.6.1.2.1.2.2.1.7.10201|2|1
1.3.6.1.2.1.2.2.1.7.10202|2|1
1.3.6.1.2.1.2.2.1.7.10203|2|2
1.3.6.1.2.1.2.2.1.7.10204|2|2
1.3.6.1.2.1.2.2.1.7.30201|2|1
1.3.6.1.2.1.2.2.1.7.30202|2|1
1.3.6.1.2.1.2.2.1.7.30203|2|2
1.3.6.1.2.1.2.2.1.7.30204|2|2
1.3.6.1.2.1.2.2.1.8.101|2|1
1.3.6.1.2.1.2.2.1.8.102|2|1
1.3.6.1.2.1.2.2.1.8.103|2|1
1.3.6.1.2.1.2.2.1.8.104|2|1
1.3.6.1.2.1.2.2.1.8.105|2|1
1.3.6.1.2.1.2.2.1.8.106|2|1
1.3.6.1.2.1.2.2.1.8.107|2|1
1.3.6.1.2.1.2.2.1.8.108|2|1
1.3.6.1.2.1.2.2.1.8.109|2|1
1.3.6.1.2.1.2.2.1.8.110|2|1
1.3.6.1.2.1.2.2.1.8.111|2|1
1.3.6.1.2.1.2.2.1.8.112|2|1
1.3.6.1.2.1.2.2.1.8.201|2|2
1.3.6.1.2.1.2.2.1.8.202|2|2
1.3.6.1.2.1.2.2.1.8.203|2|2
1.3.6.1.2.1.2.2.1.8.204|2|2
1.3.6.1.2.1.2.2.1.8.205|2|1
1.3.6.1.2.1.2.2.1.8.206|2|1
1.3.6.1.2.1.2.2.1.8.207|2|1
1.3.6.1.2.1.2.2.1.8.208|2|1
1.3.6.1.2.1.2.2.1.8.10101|2|1
1.3.6.1.2.1.2.2.1.8.10102|2|1
1.3.6.1.2.1.2.2.1.8.10103|2|2
1.3.6.1.2.1.2.2.1.8.10104|2|2
1.3.6.1.2.1.2.2.1.8.10201|2|1
1.3.6.1.2.1.2.2.1.8.10202|2|1
1.3.6.1.2.1.2.2.1.8.10203|2|2
1.3.6.1.2.1.2.2.1.8.10204|2|2
1.3.6.1.2.1.2.2.1.8.30201|2|1
1.3.6.1.2.1.2.2.1.8.30202|2|2
1.3.6.1.2.1.2.2.1.8.30203|2|2
1.3.6.1.2.1.2.2.1.8.30204|2|2
1.3.6.1.2.1.2.2.1.13.101|65|2
1.3.6.1.2.1.2.2.1.13.102|65|663780
1.3.6.1.2.1.2.2.1.13.103|65|493206
1.3.6.1.2.1.2.2.1.13.104|65|71
1.3.6.1.2.1.2.2.1.13.105|65|288
1.3.6.1.2.1.2.2.1.13.106|65|493395
1.3.6.1.2.1.2.2.1.13.107|65|1027173
1.3.6.1.2.1.2.2.1.13.108|65|0
1.3.6.1.2.1.2.2.1.13.109|65|8
1.3.6.1.2.1.2.2.1.13.110|65|320
1.3.6.1.2.1.2.2.1.13.111|65|76
1.3.6.1.2.1.2.2.1.13.112|65|1162386
1.3.6.1.2.1.2.2.1.13.205|65|10443
1.3.6.1.2.1.2.2.1.13.206|65|2295
1.3.6.1.2.1.2.2.1.13.207|65|0
1.3.6.1.2.1.2.2.1.13.208|65|1
1.3.6.1.2.1.2.2.1.13.10101|65|1232547
1.3.6.1.2.1.2.2.1.13.10102|65|228393
1.3.6.1.2.1.2.2.1.13.10201|65|1045776
1.3.6.1.2.1.2.2.1.13.10202|65|374550003
1.3.6.1.2.1.2.2.1.13.30201|65|0
1.3.6.1.2.1.2.2.1.14.101|65|0
1.3.6.1.2.1.2.2.1.14.102|65|0
1.3.6.1.2.1.2.2.1.14.103|65|4
1.3.6.1.2.1.2.2.1.14.104|65|0
1.3.6.1.2.1.2.2.1.14.105|65|0
1.3.6.1.2.1.2.2.1.14.106|65|0
1.3.6.1.2.1.2.2.1.14.107|65|0
1.3.6.1.2.1.2.2.1.14.108|65|0
1.3.6.1.2.1.2.2.1.14.109|65|0
1.3.6.1.2.1.2.2.1.14.110|65|0
1.3.6.1.2.1.2.2.1.14.111|65|0
1.3.6.1.2.1.2.2.1.14.112|65|0
1.3.6.1.2.1.2.2.1.14.205|65|0
1.3.6.1.2.1.2.2.1.14.206|65|0
1.3.6.1.2.1.2.2.1.14.207|65|0
1.3.6.1.2.1.2.2.1.14.208|65|0
1.3.6.1.2.1.2.2.1.14.10101|65|1
1.3.6.1.2.1.2.2.1.14.10102|65|0
1.3.6.1.2.1.2.2.1.14.10201|65|0
1.3.6.1.2.1.2.2.1.14.10202|65|0
1.3.6.1.2.1.2.2.1.14.30201|65|0
1.3.6.1.2.1.25.2.2.0|2|514820
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.7|2|7
1.3.6.1.2.1.25.2.3.1.2.1|6|1.3.6.1.2.1.25.2.1.2
1.3.6.1.2.1.25.2.3.1.2.7|6|1.3.6.1.2.1.25.2.1.1
1.3.6.1.2.1.25.2.3.1.3.1|4|Physical memory
1.3.6.1.2.1.25.2.3.1.3.7|4|Cached memory
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.7|2|1024
1.3.6.1.2.1.25.2.3.1.5.1|2|514820
1.3.6.1.2.1.25.2.3.1.5.7|2|304136
1.3.6.1.2.1.25.2.3.1.6.1|2|499260
1.3.6.1.2.1.25.3.3.1.1.768|6|0.0
1.3.6.1.2.1.25.3.3.1.2.768|2|8
1.3.6.1.2.1.31.1.1.1.1.101|4|Ethport 1/g1
1.3.6.1.2.1.31.1.1.1.1.102|4|Ethport 1/g2
1.3.6.1.2.1.31.1.1.1.1.103|4|Ethport 1/g3
1.3.6.1.2.1.31.1.1.1.1.104|4|Ethport 1/g4
1.3.6.1.2.1.31.1.1.1.1.105|4|Ethport 1/g5
1.3.6.1.2.1.31.1.1.1.1.106|4|Ethport 1/g6
1.3.6.1.2.1.31.1.1.1.1.107|4|Ethport 1/g7
1.3.6.1.2.1.31.1.1.1.1.108|4|Ethport 1/g8
1.3.6.1.2.1.31.1.1.1.1.109|4|Ethport 1/g9
1.3.6.1.2.1.31.1.1.1.1.110|4|Ethport 1/g10
1.3.6.1.2.1.31.1.1.1.1.111|4|Ethport 1/g11
1.3.6.1.2.1.31.1.1.1.1.112|4|Ethport 1/g12
1.3.6.1.2.1.31.1.1.1.1.201|4|Ethport 2/g1
1.3.6.1.2.1.31.1.1.1.1.202|4|Ethport 2/g2
1.3.6.1.2.1.31.1.1.1.1.203|4|Ethport 2/g3
1.3.6.1.2.1.31.1.1.1.1.204|4|Ethport 2/g4
1.3.6.1.2.1.31.1.1.1.1.205|4|Ethport 2/g5
1.3.6.1.2.1.31.1.1.1.1.206|4|Ethport 2/g6
1.3.6.1.2.1.31.1.1.1.1.207|4|Ethport 2/g7
1.3.6.1.2.1.31.1.1.1.1.208|4|Ethport 2/g8
1.3.6.1.2.1.31.1.1.1.1.10101|4|Ethport 1/x1
1.3.6.1.2.1.31.1.1.1.1.10102|4|Ethport 1/x2
1.3.6.1.2.1.31.1.1.1.1.10103|4|Ethport 1/x3
1.3.6.1.2.1.31.1.1.1.1.10104|4|Ethport 1/x4
1.3.6.1.2.1.31.1.1.1.1.10201|4|Ethport 2/x1
1.3.6.1.2.1.31.1.1.1.1.10202|4|Ethport 2/x2
1.3.6.1.2.1.31.1.1.1.1.10203|4|Ethport 2/x3
1.3.6.1.2.1.31.1.1.1.1.10204|4|Ethport 2/x4
1.3.6.1.2.1.31.1.1.1.1.30201|4|Gponport 2/1
1.3.6.1.2.1.31.1.1.1.1.30202|4|Gponport 2/2
1.3.6.1.2.1.31.1.1.1.1.30203|4|Gponport 2/3
1.3.6.1.2.1.31.1.1.1.1.30204|4|Gponport 2/4
1.3.6.1.2.1.31.1.1.1.1.100001|4|Ont 1/g1
1.3.6.1.2.1.31.1.1.1.1.100002|4|Ont 1/g2
1.3.6.1.2.1.31.1.1.1.1.100003|4|Ont 1/g3
1.3.6.1.2.1.31.1.1.1.1.100004|4|Ont 1/g4
1.3.6.1.2.1.31.1.1.1.1.100033|4|Ont 50562001/g1
1.3.6.1.2.1.31.1.1.1.1.100034|4|Ont 50562001/g2
1.3.6.1.2.1.31.1.1.1.1.100035|4|Ont 50562001/g3
1.3.6.1.2.1.31.1.1.1.1.100036|4|Ont 50562001/g4
1.3.6.1.2.1.31.1.1.1.2.101|65|56385799
1.3.6.1.2.1.31.1.1.1.2.102|65|62116244
1.3.6.1.2.1.31.1.1.1.2.103|65|1547918802
1.3.6.1.2.1.31.1.1.1.2.104|65|3
1.3.6.1.2.1.31.1.1.1.2.105|65|5
1.3.6.1.2.1.31.1.1.1.2.106|65|12213764
1.3.6.1.2.1.31.1.1.1.2.107|65|2406811
1.3.6.1.2.1.31.1.1.1.2.108|65|33984781
1.3.6.1.2.1.31.1.1.1.2.109|65|10657884
1.3.6.1.2.1.31.1.1.1.2.110|65|16090487
1.3.6.1.2.1.31.1.1.1.2.111|65|5519944
1.3.6.1.2.1.31.1.1.1.2.112|65|4722335
1.3.6.1.2.1.31.1.1.1.2.205|65|593632414
1.3.6.1.2.1.31.1.1.1.2.206|65|1025585
1.3.6.1.2.1.31.1.1.1.2.207|65|11434604
1.3.6.1.2.1.31.1.1.1.2.208|65|16601290
1.3.6.1.2.1.31.1.1.1.2.10101|65|2502138505
1.3.6.1.2.1.31.1.1.1.2.10102|65|1315602052
1.3.6.1.2.1.31.1.1.1.2.10201|65|727398028
1.3.6.1.2.1.31.1.1.1.2.10202|65|4222563631
1.3.6.1.2.1.31.1.1.1.2.30201|65|38
1.3.6.1.2.1.31.1.1.1.3.101|65|125468
1.3.6.1.2.1.31.1.1.1.3.102|65|15521628
1.3.6.1.2.1.31.1.1.1.3.103|65|3132895
1.3.6.1.2.1.31.1.1.1.3.104|65|58309
1.3.6.1.2.1.31.1.1.1.3.105|65|288
1.3.6.1.2.1.31.1.1.1.3.106|65|38703542
1.3.6.1.2.1.31.1.1.1.3.107|65|8
1.3.6.1.2.1.31.1.1.1.3.108|65|2355445
1.3.6.1.2.1.31.1.1.1.3.109|65|285338
1.3.6.1.2.1.31.1.1.1.3.110|65|2953527
1.3.6.1.2.1.31.1.1.1.3.111|65|993322
1.3.6.1.2.1.31.1.1.1.3.112|65|15096791
1.3.6.1.2.1.31.1.1.1.3.205|65|2444082
1.3.6.1.2.1.31.1.1.1.3.206|65|1184
1.3.6.1.2.1.31.1.1.1.3.207|65|26976338
1.3.6.1.2.1.31.1.1.1.3.208|65|993578
1.3.6.1.2.1.31.1.1.1.3.10101|65|95153176
1.3.6.1.2.1.31.1.1.1.3.10102|65|123498295
1.3.6.1.2.1.31.1.1.1.3.10201|65|93040935
1.3.6.1.2.1.31.1.1.1.3.10202|65|174224805
1.3.6.1.2.1.31.1.1.1.3.30201|65|162518
1.3.6.1.2.1.31.1.1.1.4.101|65|41924258
1.3.6.1.2.1.31.1.1.1.4.102|65|3464771728
1.3.6.1.2.1.31.1.1.1.4.103|65|40291830
1.3.6.1.2.1.31.1.1.1.4.104|65|6334376
1.3.6.1.2.1.31.1.1.1.4.105|65|6334303
1.3.6.1.2.1.31.1.1.1.4.106|65|6156173
1.3.6.1.2.1.31.1.1.1.4.107|65|16681765
1.3.6.1.2.1.31.1.1.1.4.108|65|24351824
1.3.6.1.2.1.31.1.1.1.4.109|65|35679069
1.3.6.1.2.1.31.1.1.1.4.110|65|16512924
1.3.6.1.2.1.31.1.1.1.4.111|65|3995256884
1.3.6.1.2.1.31.1.1.1.4.112|65|1031913
1.3.6.1.2.1.31.1.1.1.4.205|65|4218640510
1.3.6.1.2.1.31.1.1.1.4.206|65|12400613
1.3.6.1.2.1.31.1.1.1.4.207|65|7423534
1.3.6.1.2.1.31.1.1.1.4.208|65|14384146
1.3.6.1.2.1.31.1.1.1.4.10101|65|2751104250
1.3.6.1.2.1.31.1.1.1.4.10102|65|4211181964
1.3.6.1.2.1.31.1.1.1.4.10201|65|618061530
1.3.6.1.2.1.31.1.1.1.4.10202|65|1315959389
1.3.6.1.2.1.31.1.1.1.4.30201|65|37
1.3.6.1.2.1.31.1.1.1.5.101|65|4426
1.3.6.1.2.1.31.1.1.1.5.102|65|28214
1.3.6.1.2.1.31.1.1.1.5.103|65|10003664
1.3.6.1.2.1.31.1.1.1.5.104|65|14554032
1.3.6.1.2.1.31.1.1.1.5.105|65|14611763
1.3.6.1.2.1.31.1.1.1.5.106|65|37421
1.3.6.1.2.1.31.1.1.1.5.107|65|953090
1.3.6.1.2.1.31.1.1.1.5.108|65|12
1.3.6.1.2.1.31.1.1.1.5.109|65|41514257
1.3.6.1.2.1.31.1.1.1.5.110|65|30033281
1.3.6.1.2.1.31.1.1.1.5.111|65|26673263
1.3.6.1.2.1.31.1.1.1.5.112|65|119048
1.3.6.1.2.1.31.1.1.1.5.205|65|48858881
1.3.6.1.2.1.31.1.1.1.5.206|65|27670224
1.3.6.1.2.1.31.1.1.1.5.207|65|1458153
1.3.6.1.2.1.31.1.1.1.5.208|65|2866776
1.3.6.1.2.1.31.1.1.1.5.10101|65|199313837
1.3.6.1.2.1.31.1.1.1.5.10102|65|174240527
1.3.6.1.2.1.31.1.1.1.5.10201|65|201816482
1.3.6.1.2.1.31.1.1.1.5.10202|65|123565471
1.3.6.1.2.1.31.1.1.1.5.30201|65|162546
1.3.6.1.2.1.31.1.1.1.6.101|70|3879129996465
1.3.6.1.2.1.31.1.1.1.6.102|70|89526119636
1.3.6.1.2.1.31.1.1.1.6.103|70|936995818562896
1.3.6.1.2.1.31.1.1.1.6.104|70|953968833594
1.3.6.1.2.1.31.1.1.1.6.105|70|18752
1.3.6.1.2.1.31.1.1.1.6.106|70|12185064003
1.3.6.1.2.1.31.1.1.1.6.107|70|1153470776027
1.3.6.1.2.1.31.1.1.1.6.108|70|30924209622272
1.3.6.1.2.1.31.1.1.1.6.109|70|11898608251070
1.3.6.1.2.1.31.1.1.1.6.110|70|26879850103304
1.3.6.1.2.1.31.1.1.1.6.111|70|1168179104463
1.3.6.1.2.1.31.1.1.1.6.112|70|98897017050
1.3.6.1.2.1.31.1.1.1.6.205|70|6675544579432
1.3.6.1.2.1.31.1.1.1.6.206|70|123652693
1.3.6.1.2.1.31.1.1.1.6.207|70|911289045084
1.3.6.1.2.1.31.1.1.1.6.208|70|1007968836396
1.3.6.1.2.1.31.1.1.1.6.10101|70|1358049426279184
1.3.6.1.2.1.31.1.1.1.6.10102|70|223638947181827
1.3.6.1.2.1.31.1.1.1.6.10201|70|216792453094855
1.3.6.1.2.1.31.1.1.1.6.10202|70|2349945641299767
1.3.6.1.2.1.31.1.1.1.6.30201|70|7499270901054
1.3.6.1.2.1.31.1.1.1.7.101|70|4336681400
1.3.6.1.2.1.31.1.1.1.7.102|70|68348287
1.3.6.1.2.1.31.1.1.1.7.103|70|2810696419
1.3.6.1.2.1.31.1.1.1.7.104|70|5915283663
1.3.6.1.2.1.31.1.1.1.7.105|70|0
1.3.6.1.2.1.31.1.1.1.7.106|70|17315628
1.3.6.1.2.1.31.1.1.1.7.107|70|6841393985
1.3.6.1.2.1.31.1.1.1.7.108|70|33917649395
1.3.6.1.2.1.31.1.1.1.7.109|70|11262895355
1.3.6.1.2.1.31.1.1.1.7.110|70|21683932869
1.3.6.1.2.1.31.1.1.1.7.111|70|6875414562
1.3.6.1.2.1.31.1.1.1.7.112|70|429951721
1.3.6.1.2.1.31.1.1.1.7.205|70|74558748
1.3.6.1.2.1.31.1.1.1.7.206|70|2325
1.3.6.1.2.1.31.1.1.1.7.207|70|1771932787
1.3.6.1.2.1.31.1.1.1.7.208|70|1669614929
1.3.6.1.2.1.31.1.1.1.7.10101|70|1067313873798
1.3.6.1.2.1.31.1.1.1.7.10102|70|733304460765
1.3.6.1.2.1.31.1.1.1.7.10201|70|765742061687
1.3.6.1.2.1.31.1.1.1.7.10202|70|1107089881622
1.3.6.1.2.1.31.1.1.1.7.30201|70|29067023282
1.3.6.1.2.1.31.1.1.1.8.101|70|56385799
1.3.6.1.2.1.31.1.1.1.8.102|70|62116244
1.3.6.1.2.1.31.1.1.1.8.103|70|688742686162
1.3.6.1.2.1.31.1.1.1.8.104|70|3
1.3.6.1.2.1.31.1.1.1.8.105|70|5
1.3.6.1.2.1.31.1.1.1.8.106|70|12213765
1.3.6.1.2.1.31.1.1.1.8.107|70|2406811
1.3.6.1.2.1.31.1.1.1.8.108|70|33984781
1.3.6.1.2.1.31.1.1.1.8.109|70|10657884
1.3.6.1.2.1.31.1.1.1.8.110|70|16090487
1.3.6.1.2.1.31.1.1.1.8.111|70|5519944
1.3.6.1.2.1.31.1.1.1.8.112|70|4722335
1.3.6.1.2.1.31.1.1.1.8.205|70|4888599710
1.3.6.1.2.1.31.1.1.1.8.206|70|1025585
1.3.6.1.2.1.31.1.1.1.8.207|70|11434604
1.3.6.1.2.1.31.1.1.1.8.208|70|16601290
1.3.6.1.2.1.31.1.1.1.8.10101|70|6797105801
1.3.6.1.2.1.31.1.1.1.8.10102|70|9905537612
1.3.6.1.2.1.31.1.1.1.8.10201|70|5022365324
1.3.6.1.2.1.31.1.1.1.8.10202|70|695712298287
1.3.6.1.2.1.31.1.1.1.8.30201|70|38
1.3.6.1.2.1.31.1.1.1.9.101|70|125468
1.3.6.1.2.1.31.1.1.1.9.102|70|15521628
1.3.6.1.2.1.31.1.1.1.9.103|70|3132895
1.3.6.1.2.1.31.1.1.1.9.104|70|58309
1.3.6.1.2.1.31.1.1.1.9.105|70|288
1.3.6.1.2.1.31.1.1.1.9.106|70|38703542
1.3.6.1.2.1.31.1.1.1.9.107|70|8
1.3.6.1.2.1.31.1.1.1.9.108|70|2355445
1.3.6.1.2.1.31.1.1.1.9.109|70|285338
1.3.6.1.2.1.31.1.1.1.9.110|70|2953527
1.3.6.1.2.1.31.1.1.1.9.111|70|993322
1.3.6.1.2.1.31.1.1.1.9.112|70|15096791
1.3.6.1.2.1.31.1.1.1.9.205|70|2444082
1.3.6.1.2.1.31.1.1.1.9.206|70|1184
1.3.6.1.2.1.31.1.1.1.9.207|70|26976338
1.3.6.1.2.1.31.1.1.1.9.208|70|993578
1.3.6.1.2.1.31.1.1.1.9.10101|70|95153176
1.3.6.1.2.1.31.1.1.1.9.10102|70|123498309
1.3.6.1.2.1.31.1.1.1.9.10201|70|93040935
1.3.6.1.2.1.31.1.1.1.9.10202|70|174224805
1.3.6.1.2.1.31.1.1.1.9.30201|70|162518
1.3.6.1.2.1.31.1.1.1.10.101|70|871897541525
1.3.6.1.2.1.31.1.1.1.10.102|70|22266563477562
1.3.6.1.2.1.31.1.1.1.10.103|70|48992105159
1.3.6.1.2.1.31.1.1.1.10.104|70|828579074995
1.3.6.1.2.1.31.1.1.1.10.105|70|1488142511
1.3.6.1.2.1.31.1.1.1.10.106|70|4545691766
1.3.6.1.2.1.31.1.1.1.10.107|70|20471227003278
1.3.6.1.2.1.31.1.1.1.10.108|70|6326473893593
1.3.6.1.2.1.31.1.1.1.10.109|70|19535882371836
1.3.6.1.2.1.31.1.1.1.10.110|70|19677250313014
1.3.6.1.2.1.31.1.1.1.10.111|70|101717368748520
1.3.6.1.2.1.31.1.1.1.10.112|70|97039746494
1.3.6.1.2.1.31.1.1.1.10.205|70|239484857551298
1.3.6.1.2.1.31.1.1.1.10.206|70|7027634009
1.3.6.1.2.1.31.1.1.1.10.207|70|1077767443184
1.3.6.1.2.1.31.1.1.1.10.208|70|222155559647
1.3.6.1.2.1.31.1.1.1.10.10101|70|1044403422096123
1.3.6.1.2.1.31.1.1.1.10.10102|70|2349921136121502
1.3.6.1.2.1.31.1.1.1.10.10201|70|2279921474401289
1.3.6.1.2.1.31.1.1.1.10.10202|70|223642693227327
1.3.6.1.2.1.31.1.1.1.10.30201|70|7499338053150
1.3.6.1.2.1.31.1.1.1.11.101|70|3662329751
1.3.6.1.2.1.31.1.1.1.11.102|70|2524
1.3.6.1.2.1.31.1.1.1.11.103|70|207825118
1.3.6.1.2.1.31.1.1.1.11.104|70|5581519699
1.3.6.1.2.1.31.1.1.1.11.105|70|888
1.3.6.1.2.1.31.1.1.1.11.106|70|16395959
1.3.6.1.2.1.31.1.1.1.11.107|70|14816415986
1.3.6.1.2.1.31.1.1.1.11.108|70|25854476597
1.3.6.1.2.1.31.1.1.1.11.109|70|18140221660
1.3.6.1.2.1.31.1.1.1.11.110|70|19535639533
1.3.6.1.2.1.31.1.1.1.11.111|70|14815650983
1.3.6.1.2.1.31.1.1.1.11.112|70|421786394
1.3.6.1.2.1.31.1.1.1.11.205|70|304789941
1.3.6.1.2.1.31.1.1.1.11.206|70|4829536
1.3.6.1.2.1.31.1.1.1.11.207|70|2798341694
1.3.6.1.2.1.31.1.1.1.11.208|70|991100779
1.3.6.1.2.1.31.1.1.1.11.10101|70|684714916477
1.3.6.1.2.1.31.1.1.1.11.10102|70|1107122079702
1.3.6.1.2.1.31.1.1.1.11.10201|70|1139100611903
1.3.6.1.2.1.31.1.1.1.11.10202|70|733349948114
1.3.6.1.2.1.31.1.1.1.11.30201|70|29067283557
1.3.6.1.2.1.31.1.1.1.12.101|70|41924258
1.3.6.1.2.1.31.1.1.1.12.102|70|16349673616
1.3.6.1.2.1.31.1.1.1.12.103|70|40291830
1.3.6.1.2.1.31.1.1.1.12.104|70|6334376
1.3.6.1.2.1.31.1.1.1.12.105|70|6334303
1.3.6.1.2.1.31.1.1.1.12.106|70|6156173
1.3.6.1.2.1.31.1.1.1.12.107|70|16681765
1.3.6.1.2.1.31.1.1.1.12.108|70|24351826
1.3.6.1.2.1.31.1.1.1.12.109|70|35679069
1.3.6.1.2.1.31.1.1.1.12.110|70|16512924
1.3.6.1.2.1.31.1.1.1.12.111|70|59829831732
1.3.6.1.2.1.31.1.1.1.12.112|70|1031913
1.3.6.1.2.1.31.1.1.1.12.205|70|176017332350
1.3.6.1.2.1.31.1.1.1.12.206|70|12400614
1.3.6.1.2.1.31.1.1.1.12.207|70|7423534
1.3.6.1.2.1.31.1.1.1.12.208|70|14384146
1.3.6.1.2.1.31.1.1.1.12.10101|70|651291165946
1.3.6.1.2.1.31.1.1.1.12.10102|70|695700986735
1.3.6.1.2.1.31.1.1.1.12.10201|70|653453090522
1.3.6.1.2.1.31.1.1.1.12.10202|70|9905893981
1.3.6.1.2.1.31.1.1.1.12.30201|70|37
1.3.6.1.2.1.31.1.1.1.13.101|70|4426
1.3.6.1.2.1.31.1.1.1.13.102|70|28214
1.3.6.1.2.1.31.1.1.1.13.103|70|10003664
1.3.6.1.2.1.31.1.1.1.13.104|70|14554032
1.3.6.1.2.1.31.1.1.1.13.105|70|14611763
1.3.6.1.2.1.31.1.1.1.13.106|70|37421
1.3.6.1.2.1.31.1.1.1.13.107|70|953090
1.3.6.1.2.1.31.1.1.1.13.108|70|12
1.3.6.1.2.1.31.1.1.1.13.109|70|41514257
1.3.6.1.2.1.31.1.1.1.13.110|70|30033281
1.3.6.1.2.1.31.1.1.1.13.111|70|26673263
1.3.6.1.2.1.31.1.1.1.13.112|70|119048
1.3.6.1.2.1.31.1.1.1.13.205|70|48858881
1.3.6.1.2.1.31.1.1.1.13.206|70|27670226
1.3.6.1.2.1.31.1.1.1.13.207|70|1458153
1.3.6.1.2.1.31.1.1.1.13.208|70|2866776
1.3.6.1.2.1.31.1.1.1.13.10101|70|199313837
1.3.6.1.2.1.31.1.1.1.13.10102|70|174240552
1.3.6.1.2.1.31.1.1.1.13.10201|70|201816482
1.3.6.1.2.1.31.1.1.1.13.10202|70|123565471
1.3.6.1.2.1.31.1.1.1.13.30201|70|162546
1.3.6.1.2.1.31.1.1.1.15.101|66|1000
1.3.6.1.2.1.31.1.1.1.15.102|66|1000
1.3.6.1.2.1.31.1.1.1.15.103|66|1000
1.3.6.1.2.1.31.1.1.1.15.104|66|1000
1.3.6.1.2.1.31.1.1.1.15.105|66|1000
1.3.6.1.2.1.31.1.1.1.15.106|66|1000
1.3.6.1.2.1.31.1.1.1.15.107|66|1000
1.3.6.1.2.1.31.1.1.1.15.108|66|1000
1.3.6.1.2.1.31.1.1.1.15.109|66|1000
1.3.6.1.2.1.31.1.1.1.15.110|66|1000
1.3.6.1.2.1.31.1.1.1.15.111|66|1000
1.3.6.1.2.1.31.1.1.1.15.112|66|1000
1.3.6.1.2.1.31.1.1.1.15.201|66|1000
1.3.6.1.2.1.31.1.1.1.15.202|66|1000
1.3.6.1.2.1.31.1.1.1.15.203|66|1000
1.3.6.1.2.1.31.1.1.1.15.204|66|1000
1.3.6.1.2.1.31.1.1.1.15.205|66|1000
1.3.6.1.2.1.31.1.1.1.15.206|66|1000
1.3.6.1.2.1.31.1.1.1.15.207|66|1000
1.3.6.1.2.1.31.1.1.1.15.208|66|1000
1.3.6.1.2.1.31.1.1.1.15.10101|66|10000
1.3.6.1.2.1.31.1.1.1.15.10102|66|10000
1.3.6.1.2.1.31.1.1.1.15.10103|66|10000
1.3.6.1.2.1.31.1.1.1.15.10104|66|10000
1.3.6.1.2.1.31.1.1.1.15.10201|66|10000
1.3.6.1.2.1.31.1.1.1.15.10202|66|10000
1.3.6.1.2.1.31.1.1.1.15.10203|66|10000
1.3.6.1.2.1.31.1.1.1.15.10204|66|10000
1.3.6.1.2.1.31.1.1.1.15.30201|66|2500
1.3.6.1.2.1.31.1.1.1.15.30202|66|2500
1.3.6.1.2.1.31.1.1.1.15.30203|66|2500
1.3.6.1.2.1.31.1.1.1.15.30204|66|2500
1.3.6.1.4.1.6321.1.2.2.2.1.6.1.1.5.1.1|2|1020
1.3.6.1.4.1.6321.1.2.2.2.1.6.1.1.5.1.2|2|1017
1.3.6.1.4.1.6321.1.2.2.2.1.6.1.1.7.1.1|4|3.1.50.1
1.3.6.1.4.1.6321.1.2.2.2.1.6.1.1.7.1.2|4|3.1.50.1
1.3.6.1.4.1.6321.1.2.2.2.1.6.1.1.8.1.1|4|80394580923
1.3.6.1.4.1.6321.1.2.2.2.1.6.1.1.8.1.2|4|19845092849
1.3.6.1.6.3.10.2.1.3.0|2|38637668

View File

@ -0,0 +1,528 @@
1.3.6.1.2.1.1.1.0|4|BLC 6252 02
1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.6066.1.30
1.3.6.1.2.1.1.3.0|67|17817065
1.3.6.1.2.1.1.4.0|4|<private>
1.3.6.1.2.1.1.5.0|4|<private>
1.3.6.1.2.1.1.6.0|4|<private>
1.3.6.1.2.1.2.2.1.1.5|2|5
1.3.6.1.2.1.2.2.1.1.6|2|6
1.3.6.1.2.1.2.2.1.1.7|2|7
1.3.6.1.2.1.2.2.1.1.8|2|8
1.3.6.1.2.1.2.2.1.1.9|2|9
1.3.6.1.2.1.2.2.1.1.10|2|10
1.3.6.1.2.1.2.2.1.1.11|2|11
1.3.6.1.2.1.2.2.1.1.12|2|12
1.3.6.1.2.1.2.2.1.1.13|2|13
1.3.6.1.2.1.2.2.1.1.14|2|14
1.3.6.1.2.1.2.2.1.1.18|2|18
1.3.6.1.2.1.2.2.1.1.19|2|19
1.3.6.1.2.1.2.2.1.1.20|2|20
1.3.6.1.2.1.2.2.1.1.21|2|21
1.3.6.1.2.1.2.2.1.1.22|2|22
1.3.6.1.2.1.2.2.1.1.23|2|23
1.3.6.1.2.1.2.2.1.1.24|2|24
1.3.6.1.2.1.2.2.1.1.25|2|25
1.3.6.1.2.1.2.2.1.1.26|2|26
1.3.6.1.2.1.2.2.1.1.27|2|27
1.3.6.1.2.1.2.2.1.1.28|2|28
1.3.6.1.2.1.2.2.1.1.29|2|29
1.3.6.1.2.1.2.2.1.1.30|2|30
1.3.6.1.2.1.2.2.1.1.31|2|31
1.3.6.1.2.1.2.2.1.1.32|2|32
1.3.6.1.2.1.2.2.1.1.33|2|33
1.3.6.1.2.1.2.2.1.1.34|2|34
1.3.6.1.2.1.2.2.1.1.35|2|35
1.3.6.1.2.1.2.2.1.1.36|2|36
1.3.6.1.2.1.2.2.1.1.37|2|37
1.3.6.1.2.1.2.2.1.1.38|2|38
1.3.6.1.2.1.2.2.1.1.39|2|39
1.3.6.1.2.1.2.2.1.1.40|2|40
1.3.6.1.2.1.2.2.1.1.41|2|41
1.3.6.1.2.1.2.2.1.1.42|2|42
1.3.6.1.2.1.2.2.1.1.43|2|43
1.3.6.1.2.1.2.2.1.1.44|2|44
1.3.6.1.2.1.2.2.1.1.45|2|45
1.3.6.1.2.1.2.2.1.1.46|2|46
1.3.6.1.2.1.2.2.1.1.47|2|47
1.3.6.1.2.1.2.2.1.1.48|2|48
1.3.6.1.2.1.2.2.1.1.49|2|49
1.3.6.1.2.1.2.2.1.1.50|2|50
1.3.6.1.2.1.2.2.1.1.51|2|51
1.3.6.1.2.1.2.2.1.1.52|2|52
1.3.6.1.2.1.2.2.1.1.53|2|53
1.3.6.1.2.1.2.2.1.1.54|2|54
1.3.6.1.2.1.2.2.1.1.55|2|55
1.3.6.1.2.1.2.2.1.1.56|2|56
1.3.6.1.2.1.2.2.1.1.57|2|57
1.3.6.1.2.1.2.2.1.1.58|2|58
1.3.6.1.2.1.2.2.1.1.59|2|59
1.3.6.1.2.1.2.2.1.1.60|2|60
1.3.6.1.2.1.2.2.1.1.61|2|61
1.3.6.1.2.1.2.2.1.1.62|2|62
1.3.6.1.2.1.2.2.1.1.63|2|63
1.3.6.1.2.1.2.2.1.1.64|2|64
1.3.6.1.2.1.2.2.1.1.65|2|65
1.3.6.1.2.1.2.2.1.2.5|4|GigabitEthernet 1/9
1.3.6.1.2.1.2.2.1.2.6|4|GigabitEthernet 1/10
1.3.6.1.2.1.2.2.1.2.7|4|GigabitEthernet 1/7
1.3.6.1.2.1.2.2.1.2.8|4|GigabitEthernet 1/8
1.3.6.1.2.1.2.2.1.2.9|4|GigabitEthernet 1/1
1.3.6.1.2.1.2.2.1.2.10|4|GigabitEthernet 1/2
1.3.6.1.2.1.2.2.1.2.11|4|GigabitEthernet 1/4
1.3.6.1.2.1.2.2.1.2.12|4|GigabitEthernet 1/6
1.3.6.1.2.1.2.2.1.2.13|4|GigabitEthernet 1/3
1.3.6.1.2.1.2.2.1.2.14|4|GigabitEthernet 1/5
1.3.6.1.2.1.2.2.1.2.18|4|DSL-FullRate 1/19
1.3.6.1.2.1.2.2.1.2.19|4|DSL-FullRate 1/20
1.3.6.1.2.1.2.2.1.2.20|4|DSL-FullRate 1/21
1.3.6.1.2.1.2.2.1.2.21|4|DSL-FullRate 1/22
1.3.6.1.2.1.2.2.1.2.22|4|DSL-FullRate 1/23
1.3.6.1.2.1.2.2.1.2.23|4|DSL-FullRate 1/24
1.3.6.1.2.1.2.2.1.2.24|4|DSL-FullRate 1/13
1.3.6.1.2.1.2.2.1.2.25|4|DSL-FullRate 1/14
1.3.6.1.2.1.2.2.1.2.26|4|DSL-FullRate 1/15
1.3.6.1.2.1.2.2.1.2.27|4|DSL-FullRate 1/16
1.3.6.1.2.1.2.2.1.2.28|4|DSL-FullRate 1/17
1.3.6.1.2.1.2.2.1.2.29|4|DSL-FullRate 1/18
1.3.6.1.2.1.2.2.1.2.30|4|DSL-FullRate 1/7
1.3.6.1.2.1.2.2.1.2.31|4|DSL-FullRate 1/8
1.3.6.1.2.1.2.2.1.2.32|4|DSL-FullRate 1/9
1.3.6.1.2.1.2.2.1.2.33|4|DSL-FullRate 1/10
1.3.6.1.2.1.2.2.1.2.34|4|DSL-FullRate 1/11
1.3.6.1.2.1.2.2.1.2.35|4|DSL-FullRate 1/12
1.3.6.1.2.1.2.2.1.2.36|4|DSL-FullRate 1/1
1.3.6.1.2.1.2.2.1.2.37|4|DSL-FullRate 1/2
1.3.6.1.2.1.2.2.1.2.38|4|DSL-FullRate 1/3
1.3.6.1.2.1.2.2.1.2.39|4|DSL-FullRate 1/4
1.3.6.1.2.1.2.2.1.2.40|4|DSL-FullRate 1/5
1.3.6.1.2.1.2.2.1.2.41|4|DSL-FullRate 1/6
1.3.6.1.2.1.2.2.1.2.42|4|DSL-FullRate 1/43
1.3.6.1.2.1.2.2.1.2.43|4|DSL-FullRate 1/44
1.3.6.1.2.1.2.2.1.2.44|4|DSL-FullRate 1/45
1.3.6.1.2.1.2.2.1.2.45|4|DSL-FullRate 1/46
1.3.6.1.2.1.2.2.1.2.46|4|DSL-FullRate 1/47
1.3.6.1.2.1.2.2.1.2.47|4|DSL-FullRate 1/48
1.3.6.1.2.1.2.2.1.2.48|4|DSL-FullRate 1/37
1.3.6.1.2.1.2.2.1.2.49|4|DSL-FullRate 1/38
1.3.6.1.2.1.2.2.1.2.50|4|DSL-FullRate 1/39
1.3.6.1.2.1.2.2.1.2.51|4|DSL-FullRate 1/40
1.3.6.1.2.1.2.2.1.2.52|4|DSL-FullRate 1/41
1.3.6.1.2.1.2.2.1.2.53|4|DSL-FullRate 1/42
1.3.6.1.2.1.2.2.1.2.54|4|DSL-FullRate 1/31
1.3.6.1.2.1.2.2.1.2.55|4|DSL-FullRate 1/32
1.3.6.1.2.1.2.2.1.2.56|4|DSL-FullRate 1/33
1.3.6.1.2.1.2.2.1.2.57|4|DSL-FullRate 1/34
1.3.6.1.2.1.2.2.1.2.58|4|DSL-FullRate 1/35
1.3.6.1.2.1.2.2.1.2.59|4|DSL-FullRate 1/36
1.3.6.1.2.1.2.2.1.2.60|4|DSL-FullRate 1/25
1.3.6.1.2.1.2.2.1.2.61|4|DSL-FullRate 1/26
1.3.6.1.2.1.2.2.1.2.62|4|DSL-FullRate 1/27
1.3.6.1.2.1.2.2.1.2.63|4|DSL-FullRate 1/28
1.3.6.1.2.1.2.2.1.2.64|4|DSL-FullRate 1/29
1.3.6.1.2.1.2.2.1.2.65|4|DSL-FullRate 1/30
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.3.8|2|6
1.3.6.1.2.1.2.2.1.3.9|2|6
1.3.6.1.2.1.2.2.1.3.10|2|6
1.3.6.1.2.1.2.2.1.3.11|2|6
1.3.6.1.2.1.2.2.1.3.12|2|6
1.3.6.1.2.1.2.2.1.3.13|2|6
1.3.6.1.2.1.2.2.1.3.14|2|6
1.3.6.1.2.1.2.2.1.3.18|2|94
1.3.6.1.2.1.2.2.1.3.19|2|94
1.3.6.1.2.1.2.2.1.3.20|2|94
1.3.6.1.2.1.2.2.1.3.21|2|94
1.3.6.1.2.1.2.2.1.3.22|2|94
1.3.6.1.2.1.2.2.1.3.23|2|94
1.3.6.1.2.1.2.2.1.3.24|2|94
1.3.6.1.2.1.2.2.1.3.25|2|94
1.3.6.1.2.1.2.2.1.3.26|2|94
1.3.6.1.2.1.2.2.1.3.27|2|94
1.3.6.1.2.1.2.2.1.3.28|2|94
1.3.6.1.2.1.2.2.1.3.29|2|94
1.3.6.1.2.1.2.2.1.3.30|2|94
1.3.6.1.2.1.2.2.1.3.31|2|94
1.3.6.1.2.1.2.2.1.3.32|2|94
1.3.6.1.2.1.2.2.1.3.33|2|94
1.3.6.1.2.1.2.2.1.3.34|2|94
1.3.6.1.2.1.2.2.1.3.35|2|94
1.3.6.1.2.1.2.2.1.3.36|2|94
1.3.6.1.2.1.2.2.1.3.37|2|94
1.3.6.1.2.1.2.2.1.3.38|2|94
1.3.6.1.2.1.2.2.1.3.39|2|94
1.3.6.1.2.1.2.2.1.3.40|2|94
1.3.6.1.2.1.2.2.1.3.41|2|94
1.3.6.1.2.1.2.2.1.3.42|2|94
1.3.6.1.2.1.2.2.1.3.43|2|94
1.3.6.1.2.1.2.2.1.3.44|2|94
1.3.6.1.2.1.2.2.1.3.45|2|94
1.3.6.1.2.1.2.2.1.3.46|2|94
1.3.6.1.2.1.2.2.1.3.47|2|94
1.3.6.1.2.1.2.2.1.3.48|2|94
1.3.6.1.2.1.2.2.1.3.49|2|94
1.3.6.1.2.1.2.2.1.3.50|2|94
1.3.6.1.2.1.2.2.1.3.51|2|94
1.3.6.1.2.1.2.2.1.3.52|2|94
1.3.6.1.2.1.2.2.1.3.53|2|94
1.3.6.1.2.1.2.2.1.3.54|2|94
1.3.6.1.2.1.2.2.1.3.55|2|94
1.3.6.1.2.1.2.2.1.3.56|2|94
1.3.6.1.2.1.2.2.1.3.57|2|94
1.3.6.1.2.1.2.2.1.3.58|2|94
1.3.6.1.2.1.2.2.1.3.59|2|94
1.3.6.1.2.1.2.2.1.3.60|2|94
1.3.6.1.2.1.2.2.1.3.61|2|94
1.3.6.1.2.1.2.2.1.3.62|2|94
1.3.6.1.2.1.2.2.1.3.63|2|94
1.3.6.1.2.1.2.2.1.3.64|2|94
1.3.6.1.2.1.2.2.1.3.65|2|94
1.3.6.1.2.1.2.2.1.4.5|2|1600
1.3.6.1.2.1.2.2.1.4.6|2|1600
1.3.6.1.2.1.2.2.1.4.7|2|9000
1.3.6.1.2.1.2.2.1.4.8|2|9000
1.3.6.1.2.1.2.2.1.4.9|2|1600
1.3.6.1.2.1.2.2.1.4.10|2|1600
1.3.6.1.2.1.2.2.1.4.11|2|9000
1.3.6.1.2.1.2.2.1.4.12|2|1600
1.3.6.1.2.1.2.2.1.4.13|2|9000
1.3.6.1.2.1.2.2.1.4.14|2|1600
1.3.6.1.2.1.2.2.1.4.18|2|1500
1.3.6.1.2.1.2.2.1.4.19|2|1500
1.3.6.1.2.1.2.2.1.4.20|2|1500
1.3.6.1.2.1.2.2.1.4.21|2|1500
1.3.6.1.2.1.2.2.1.4.22|2|1500
1.3.6.1.2.1.2.2.1.4.23|2|1500
1.3.6.1.2.1.2.2.1.4.24|2|1500
1.3.6.1.2.1.2.2.1.4.25|2|1500
1.3.6.1.2.1.2.2.1.4.26|2|1500
1.3.6.1.2.1.2.2.1.4.27|2|1500
1.3.6.1.2.1.2.2.1.4.28|2|1500
1.3.6.1.2.1.2.2.1.4.29|2|1500
1.3.6.1.2.1.2.2.1.4.30|2|1500
1.3.6.1.2.1.2.2.1.4.31|2|1500
1.3.6.1.2.1.2.2.1.4.32|2|1500
1.3.6.1.2.1.2.2.1.4.33|2|1500
1.3.6.1.2.1.2.2.1.4.34|2|1500
1.3.6.1.2.1.2.2.1.4.35|2|1500
1.3.6.1.2.1.2.2.1.4.36|2|1500
1.3.6.1.2.1.2.2.1.4.37|2|1500
1.3.6.1.2.1.2.2.1.4.38|2|1500
1.3.6.1.2.1.2.2.1.4.39|2|1500
1.3.6.1.2.1.2.2.1.4.40|2|1500
1.3.6.1.2.1.2.2.1.4.41|2|1500
1.3.6.1.2.1.2.2.1.4.42|2|1500
1.3.6.1.2.1.2.2.1.4.43|2|1500
1.3.6.1.2.1.2.2.1.4.44|2|1500
1.3.6.1.2.1.2.2.1.4.45|2|1500
1.3.6.1.2.1.2.2.1.4.46|2|1500
1.3.6.1.2.1.2.2.1.4.47|2|1500
1.3.6.1.2.1.2.2.1.4.48|2|1500
1.3.6.1.2.1.2.2.1.4.49|2|1500
1.3.6.1.2.1.2.2.1.4.50|2|1500
1.3.6.1.2.1.2.2.1.4.51|2|1500
1.3.6.1.2.1.2.2.1.4.52|2|1500
1.3.6.1.2.1.2.2.1.4.53|2|1500
1.3.6.1.2.1.2.2.1.4.54|2|1500
1.3.6.1.2.1.2.2.1.4.55|2|1500
1.3.6.1.2.1.2.2.1.4.56|2|1500
1.3.6.1.2.1.2.2.1.4.57|2|1500
1.3.6.1.2.1.2.2.1.4.58|2|1500
1.3.6.1.2.1.2.2.1.4.59|2|1500
1.3.6.1.2.1.2.2.1.4.60|2|1500
1.3.6.1.2.1.2.2.1.4.61|2|1500
1.3.6.1.2.1.2.2.1.4.62|2|1500
1.3.6.1.2.1.2.2.1.4.63|2|1500
1.3.6.1.2.1.2.2.1.4.64|2|1500
1.3.6.1.2.1.2.2.1.4.65|2|1500
1.3.6.1.2.1.2.2.1.5.5|66|1000000000
1.3.6.1.2.1.2.2.1.5.6|66|1000000000
1.3.6.1.2.1.2.2.1.5.7|66|1000000000
1.3.6.1.2.1.2.2.1.5.8|66|1000000000
1.3.6.1.2.1.2.2.1.5.9|66|1000000000
1.3.6.1.2.1.2.2.1.5.10|66|1000000000
1.3.6.1.2.1.2.2.1.5.11|66|1000000000
1.3.6.1.2.1.2.2.1.5.12|66|1000000000
1.3.6.1.2.1.2.2.1.5.13|66|1000000000
1.3.6.1.2.1.2.2.1.5.14|66|1000000000
1.3.6.1.2.1.2.2.1.5.18|66|0
1.3.6.1.2.1.2.2.1.5.19|66|0
1.3.6.1.2.1.2.2.1.5.20|66|0
1.3.6.1.2.1.2.2.1.5.21|66|0
1.3.6.1.2.1.2.2.1.5.22|66|0
1.3.6.1.2.1.2.2.1.5.23|66|0
1.3.6.1.2.1.2.2.1.5.24|66|0
1.3.6.1.2.1.2.2.1.5.25|66|0
1.3.6.1.2.1.2.2.1.5.26|66|0
1.3.6.1.2.1.2.2.1.5.27|66|0
1.3.6.1.2.1.2.2.1.5.28|66|0
1.3.6.1.2.1.2.2.1.5.29|66|0
1.3.6.1.2.1.2.2.1.5.30|66|12000000
1.3.6.1.2.1.2.2.1.5.31|66|0
1.3.6.1.2.1.2.2.1.5.32|66|0
1.3.6.1.2.1.2.2.1.5.33|66|0
1.3.6.1.2.1.2.2.1.5.34|66|0
1.3.6.1.2.1.2.2.1.5.35|66|0
1.3.6.1.2.1.2.2.1.5.36|66|0
1.3.6.1.2.1.2.2.1.5.37|66|0
1.3.6.1.2.1.2.2.1.5.38|66|11996000
1.3.6.1.2.1.2.2.1.5.39|66|0
1.3.6.1.2.1.2.2.1.5.40|66|12000000
1.3.6.1.2.1.2.2.1.5.41|66|0
1.3.6.1.2.1.2.2.1.5.42|66|0
1.3.6.1.2.1.2.2.1.5.43|66|0
1.3.6.1.2.1.2.2.1.5.44|66|0
1.3.6.1.2.1.2.2.1.5.45|66|0
1.3.6.1.2.1.2.2.1.5.46|66|0
1.3.6.1.2.1.2.2.1.5.47|66|0
1.3.6.1.2.1.2.2.1.5.48|66|0
1.3.6.1.2.1.2.2.1.5.49|66|0
1.3.6.1.2.1.2.2.1.5.50|66|0
1.3.6.1.2.1.2.2.1.5.51|66|0
1.3.6.1.2.1.2.2.1.5.52|66|0
1.3.6.1.2.1.2.2.1.5.53|66|0
1.3.6.1.2.1.2.2.1.5.54|66|0
1.3.6.1.2.1.2.2.1.5.55|66|0
1.3.6.1.2.1.2.2.1.5.56|66|0
1.3.6.1.2.1.2.2.1.5.57|66|0
1.3.6.1.2.1.2.2.1.5.58|66|0
1.3.6.1.2.1.2.2.1.5.59|66|0
1.3.6.1.2.1.2.2.1.5.60|66|0
1.3.6.1.2.1.2.2.1.5.61|66|0
1.3.6.1.2.1.2.2.1.5.62|66|0
1.3.6.1.2.1.2.2.1.5.63|66|0
1.3.6.1.2.1.2.2.1.5.64|66|0
1.3.6.1.2.1.2.2.1.5.65|66|0
1.3.6.1.2.1.2.2.1.6.5|4|30:30:3a:30:32:3a:38:36:3a:30:31:3a:38:34:3a:38:36
1.3.6.1.2.1.2.2.1.6.6|4|30:30:3a:30:32:3a:38:36:3a:30:31:3a:38:34:3a:38:36
1.3.6.1.2.1.2.2.1.6.7|4|30:30:3a:30:32:3a:38:36:3a:30:31:3a:38:34:3a:38:36
1.3.6.1.2.1.2.2.1.6.8|4|30:30:3a:30:32:3a:38:36:3a:30:31:3a:38:34:3a:38:36
1.3.6.1.2.1.2.2.1.6.9|4|30:30:3a:30:32:3a:38:36:3a:30:31:3a:38:34:3a:38:36
1.3.6.1.2.1.2.2.1.6.10|4|30:30:3a:30:32:3a:38:36:3a:30:31:3a:38:34:3a:38:36
1.3.6.1.2.1.2.2.1.6.11|4|30:30:3a:30:32:3a:38:36:3a:30:31:3a:38:34:3a:38:36
1.3.6.1.2.1.2.2.1.6.12|4|30:30:3a:30:32:3a:38:36:3a:30:31:3a:38:34:3a:38:36
1.3.6.1.2.1.2.2.1.6.13|4|30:30:3a:30:32:3a:38:36:3a:30:31:3a:38:34:3a:38:36
1.3.6.1.2.1.2.2.1.6.14|4|30:30:3a:30:32:3a:38:36:3a:30:31:3a:38:34:3a:38:36
1.3.6.1.2.1.2.2.1.6.18|4|
1.3.6.1.2.1.2.2.1.6.19|4|
1.3.6.1.2.1.2.2.1.6.20|4|
1.3.6.1.2.1.2.2.1.6.21|4|
1.3.6.1.2.1.2.2.1.6.22|4|
1.3.6.1.2.1.2.2.1.6.23|4|
1.3.6.1.2.1.2.2.1.6.24|4|
1.3.6.1.2.1.2.2.1.6.25|4|
1.3.6.1.2.1.2.2.1.6.26|4|
1.3.6.1.2.1.2.2.1.6.27|4|
1.3.6.1.2.1.2.2.1.6.28|4|
1.3.6.1.2.1.2.2.1.6.29|4|
1.3.6.1.2.1.2.2.1.6.30|4|
1.3.6.1.2.1.2.2.1.6.31|4|
1.3.6.1.2.1.2.2.1.6.32|4|
1.3.6.1.2.1.2.2.1.6.33|4|
1.3.6.1.2.1.2.2.1.6.34|4|
1.3.6.1.2.1.2.2.1.6.35|4|
1.3.6.1.2.1.2.2.1.6.36|4|
1.3.6.1.2.1.2.2.1.6.37|4|
1.3.6.1.2.1.2.2.1.6.38|4|
1.3.6.1.2.1.2.2.1.6.39|4|
1.3.6.1.2.1.2.2.1.6.40|4|
1.3.6.1.2.1.2.2.1.6.41|4|
1.3.6.1.2.1.2.2.1.6.42|4|
1.3.6.1.2.1.2.2.1.6.43|4|
1.3.6.1.2.1.2.2.1.6.44|4|
1.3.6.1.2.1.2.2.1.6.45|4|
1.3.6.1.2.1.2.2.1.6.46|4|
1.3.6.1.2.1.2.2.1.6.47|4|
1.3.6.1.2.1.2.2.1.6.48|4|
1.3.6.1.2.1.2.2.1.6.49|4|
1.3.6.1.2.1.2.2.1.6.50|4|
1.3.6.1.2.1.2.2.1.6.51|4|
1.3.6.1.2.1.2.2.1.6.52|4|
1.3.6.1.2.1.2.2.1.6.53|4|
1.3.6.1.2.1.2.2.1.6.54|4|
1.3.6.1.2.1.2.2.1.6.55|4|
1.3.6.1.2.1.2.2.1.6.56|4|
1.3.6.1.2.1.2.2.1.6.57|4|
1.3.6.1.2.1.2.2.1.6.58|4|
1.3.6.1.2.1.2.2.1.6.59|4|
1.3.6.1.2.1.2.2.1.6.60|4|
1.3.6.1.2.1.2.2.1.6.61|4|
1.3.6.1.2.1.2.2.1.6.62|4|
1.3.6.1.2.1.2.2.1.6.63|4|
1.3.6.1.2.1.2.2.1.6.64|4|
1.3.6.1.2.1.2.2.1.6.65|4|
1.3.6.1.2.1.2.2.1.7.5|2|2
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|2
1.3.6.1.2.1.2.2.1.7.8|2|2
1.3.6.1.2.1.2.2.1.7.9|2|1
1.3.6.1.2.1.2.2.1.7.10|2|1
1.3.6.1.2.1.2.2.1.7.11|2|2
1.3.6.1.2.1.2.2.1.7.12|2|2
1.3.6.1.2.1.2.2.1.7.13|2|2
1.3.6.1.2.1.2.2.1.7.14|2|2
1.3.6.1.2.1.2.2.1.7.18|2|2
1.3.6.1.2.1.2.2.1.7.19|2|2
1.3.6.1.2.1.2.2.1.7.20|2|2
1.3.6.1.2.1.2.2.1.7.21|2|2
1.3.6.1.2.1.2.2.1.7.22|2|2
1.3.6.1.2.1.2.2.1.7.23|2|2
1.3.6.1.2.1.2.2.1.7.24|2|2
1.3.6.1.2.1.2.2.1.7.25|2|2
1.3.6.1.2.1.2.2.1.7.26|2|2
1.3.6.1.2.1.2.2.1.7.27|2|2
1.3.6.1.2.1.2.2.1.7.28|2|2
1.3.6.1.2.1.2.2.1.7.29|2|2
1.3.6.1.2.1.2.2.1.7.30|2|1
1.3.6.1.2.1.2.2.1.7.31|2|1
1.3.6.1.2.1.2.2.1.7.32|2|1
1.3.6.1.2.1.2.2.1.7.33|2|2
1.3.6.1.2.1.2.2.1.7.34|2|2
1.3.6.1.2.1.2.2.1.7.35|2|2
1.3.6.1.2.1.2.2.1.7.36|2|1
1.3.6.1.2.1.2.2.1.7.37|2|1
1.3.6.1.2.1.2.2.1.7.38|2|1
1.3.6.1.2.1.2.2.1.7.39|2|1
1.3.6.1.2.1.2.2.1.7.40|2|1
1.3.6.1.2.1.2.2.1.7.41|2|1
1.3.6.1.2.1.2.2.1.7.42|2|2
1.3.6.1.2.1.2.2.1.7.43|2|2
1.3.6.1.2.1.2.2.1.7.44|2|2
1.3.6.1.2.1.2.2.1.7.45|2|2
1.3.6.1.2.1.2.2.1.7.46|2|2
1.3.6.1.2.1.2.2.1.7.47|2|2
1.3.6.1.2.1.2.2.1.7.48|2|2
1.3.6.1.2.1.2.2.1.7.49|2|2
1.3.6.1.2.1.2.2.1.7.50|2|2
1.3.6.1.2.1.2.2.1.7.51|2|2
1.3.6.1.2.1.2.2.1.7.52|2|2
1.3.6.1.2.1.2.2.1.7.53|2|2
1.3.6.1.2.1.2.2.1.7.54|2|2
1.3.6.1.2.1.2.2.1.7.55|2|2
1.3.6.1.2.1.2.2.1.7.56|2|2
1.3.6.1.2.1.2.2.1.7.57|2|2
1.3.6.1.2.1.2.2.1.7.58|2|2
1.3.6.1.2.1.2.2.1.7.59|2|2
1.3.6.1.2.1.2.2.1.7.60|2|2
1.3.6.1.2.1.2.2.1.7.61|2|2
1.3.6.1.2.1.2.2.1.7.62|2|2
1.3.6.1.2.1.2.2.1.7.63|2|2
1.3.6.1.2.1.2.2.1.7.64|2|2
1.3.6.1.2.1.2.2.1.7.65|2|2
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.8.8|2|2
1.3.6.1.2.1.2.2.1.8.9|2|1
1.3.6.1.2.1.2.2.1.8.10|2|1
1.3.6.1.2.1.2.2.1.8.11|2|1
1.3.6.1.2.1.2.2.1.8.12|2|2
1.3.6.1.2.1.2.2.1.8.13|2|1
1.3.6.1.2.1.2.2.1.8.14|2|2
1.3.6.1.2.1.2.2.1.8.18|2|2
1.3.6.1.2.1.2.2.1.8.19|2|2
1.3.6.1.2.1.2.2.1.8.20|2|2
1.3.6.1.2.1.2.2.1.8.21|2|2
1.3.6.1.2.1.2.2.1.8.22|2|2
1.3.6.1.2.1.2.2.1.8.23|2|2
1.3.6.1.2.1.2.2.1.8.24|2|2
1.3.6.1.2.1.2.2.1.8.25|2|2
1.3.6.1.2.1.2.2.1.8.26|2|2
1.3.6.1.2.1.2.2.1.8.27|2|2
1.3.6.1.2.1.2.2.1.8.28|2|2
1.3.6.1.2.1.2.2.1.8.29|2|2
1.3.6.1.2.1.2.2.1.8.30|2|1
1.3.6.1.2.1.2.2.1.8.31|2|2
1.3.6.1.2.1.2.2.1.8.32|2|2
1.3.6.1.2.1.2.2.1.8.33|2|2
1.3.6.1.2.1.2.2.1.8.34|2|2
1.3.6.1.2.1.2.2.1.8.35|2|2
1.3.6.1.2.1.2.2.1.8.36|2|2
1.3.6.1.2.1.2.2.1.8.37|2|2
1.3.6.1.2.1.2.2.1.8.38|2|1
1.3.6.1.2.1.2.2.1.8.39|2|2
1.3.6.1.2.1.2.2.1.8.40|2|1
1.3.6.1.2.1.2.2.1.8.41|2|2
1.3.6.1.2.1.2.2.1.8.42|2|2
1.3.6.1.2.1.2.2.1.8.43|2|2
1.3.6.1.2.1.2.2.1.8.44|2|2
1.3.6.1.2.1.2.2.1.8.45|2|2
1.3.6.1.2.1.2.2.1.8.46|2|2
1.3.6.1.2.1.2.2.1.8.47|2|2
1.3.6.1.2.1.2.2.1.8.48|2|2
1.3.6.1.2.1.2.2.1.8.49|2|2
1.3.6.1.2.1.2.2.1.8.50|2|2
1.3.6.1.2.1.2.2.1.8.51|2|2
1.3.6.1.2.1.2.2.1.8.52|2|2
1.3.6.1.2.1.2.2.1.8.53|2|2
1.3.6.1.2.1.2.2.1.8.54|2|2
1.3.6.1.2.1.2.2.1.8.55|2|2
1.3.6.1.2.1.2.2.1.8.56|2|2
1.3.6.1.2.1.2.2.1.8.57|2|2
1.3.6.1.2.1.2.2.1.8.58|2|2
1.3.6.1.2.1.2.2.1.8.59|2|2
1.3.6.1.2.1.2.2.1.8.60|2|2
1.3.6.1.2.1.2.2.1.8.61|2|2
1.3.6.1.2.1.2.2.1.8.62|2|2
1.3.6.1.2.1.2.2.1.8.63|2|2
1.3.6.1.2.1.2.2.1.8.64|2|2
1.3.6.1.2.1.2.2.1.8.65|2|2
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.9.8|67|0
1.3.6.1.2.1.2.2.1.9.9|67|2724567254
1.3.6.1.2.1.2.2.1.9.10|67|2724566245
1.3.6.1.2.1.2.2.1.9.11|67|0
1.3.6.1.2.1.2.2.1.9.12|67|0
1.3.6.1.2.1.2.2.1.9.13|67|0
1.3.6.1.2.1.2.2.1.9.14|67|0
1.3.6.1.2.1.2.2.1.9.18|67|0
1.3.6.1.2.1.2.2.1.9.19|67|0
1.3.6.1.2.1.2.2.1.9.20|67|0
1.3.6.1.2.1.2.2.1.9.21|67|0
1.3.6.1.2.1.2.2.1.9.22|67|0
1.3.6.1.2.1.2.2.1.9.23|67|0
1.3.6.1.2.1.2.2.1.9.24|67|0
1.3.6.1.2.1.2.2.1.9.25|67|0
1.3.6.1.2.1.2.2.1.9.26|67|0
1.3.6.1.2.1.2.2.1.9.27|67|0
1.3.6.1.2.1.2.2.1.9.28|67|0
1.3.6.1.2.1.2.2.1.9.29|67|0
1.3.6.1.2.1.2.2.1.9.30|67|0
1.3.6.1.2.1.2.2.1.9.31|67|0
1.3.6.1.2.1.2.2.1.9.32|67|0
1.3.6.1.2.1.2.2.1.9.33|67|0
1.3.6.1.2.1.2.2.1.9.34|67|0
1.3.6.1.2.1.2.2.1.9.35|67|0
1.3.6.1.2.1.2.2.1.9.36|67|0
1.3.6.1.2.1.2.2.1.9.37|67|0
1.3.6.1.2.1.2.2.1.9.38|67|0
1.3.6.1.2.1.2.2.1.9.39|67|0
1.3.6.1.2.1.2.2.1.9.40|67|0
1.3.6.1.2.1.2.2.1.9.41|67|0
1.3.6.1.2.1.2.2.1.9.42|67|0
1.3.6.1.2.1.2.2.1.9.43|67|0
1.3.6.1.2.1.2.2.1.9.44|67|0
1.3.6.1.2.1.2.2.1.9.45|67|0
1.3.6.1.2.1.2.2.1.9.46|67|0
1.3.6.1.2.1.2.2.1.9.47|67|0
1.3.6.1.2.1.2.2.1.9.48|67|0
1.3.6.1.2.1.2.2.1.9.49|67|0
1.3.6.1.2.1.2.2.1.9.50|67|0
1.3.6.1.2.1.2.2.1.9.51|67|0
1.3.6.1.2.1.2.2.1.9.52|67|0
1.3.6.1.2.1.2.2.1.9.53|67|0
1.3.6.1.2.1.2.2.1.9.54|67|0
1.3.6.1.2.1.2.2.1.9.55|67|0
1.3.6.1.2.1.2.2.1.9.56|67|0
1.3.6.1.2.1.2.2.1.9.57|67|0
1.3.6.1.2.1.2.2.1.9.58|67|0
1.3.6.1.2.1.2.2.1.9.59|67|0
1.3.6.1.2.1.2.2.1.9.60|67|0
1.3.6.1.2.1.2.2.1.9.61|67|0
1.3.6.1.2.1.2.2.1.9.62|67|0
1.3.6.1.2.1.2.2.1.9.63|67|0
1.3.6.1.2.1.2.2.1.9.64|67|0
1.3.6.1.2.1.2.2.1.9.65|67|0