New OS: DHCPatriot (dhcpatriot)

This commit is contained in:
Geoffrey Ferk
2020-04-23 12:09:14 -05:00
parent 7264ab7ff7
commit 30656481d9
13 changed files with 3867 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

View File

@@ -0,0 +1,45 @@
os: dhcpatriot
type: server
group: unix
text: 'DHCPatriot'
ifXmcbc: true
ifname: true
over:
- { graph: device_processor, text: 'Processor Usage' }
- { graph: device_ucd_memory, text: 'Memory Usage' }
- { graph: device_storage, text: 'Storage Usage' }
poller_modules:
applications: false
bgp-peers: false
entity-physical: false
ipmi: false
mpls: false
ntp: false
ospf: false
stp: false
ucd-diskio: false
wireless: false
discovery_modules:
applications: false
bgp-peers: false
cisco-vrf-lite: false
discovery-protocols: false
entity-physical: false
fdb-table: false
libvirt-vminfo: false
mpls: false
ntp: false
ports-stack: false
stp: false
ucd-diskio: false
vlans: false
vmware-vminfo: false
wireless: false
discovery:
- sysObjectID:
- .1.3.6.1.4.1.8072.3.2.10
- sysDescr:
- 'FNGi'
processor_stacked: true
bad_if:
- sit0

View File

@@ -0,0 +1,90 @@
<?php
/*
*
* OIDs obtained from First Network Group Inc. DHCPatriot operations manual version 6.4.x
* Found here: http://www.network1.net/products/dhcpatriot/documentation/PDFs/v64xmanual-rev1.pdf
*
*/
$oids = array(
1 => array(
"type" => "dhcpatriotDatabaseThreads",
"descr" => "Database Threads",
"oid" => ".1.3.6.1.4.1.2021.50.45"
),
2 => array(
"type" => "dhcpatriotDatabaseQueriesPerSecond",
"descr" => "Database Queries Per Second",
"oid" => ".1.3.6.1.4.1.2021.50.46"
),
3 => array(
"type" => "dhcpatriotDHCPv4LeasesPerSecond",
"descr" => "DHCPv4 Leases Per Second",
"oid" => ".1.3.6.1.4.1.2021.50.70"
),
4 => array(
"type" => "dhcpatriotDHCPv6LeasesPerSecond",
"descr" => "DHCPv6 Leases Per Second",
"oid" => ".1.3.6.1.5.1.2021.50.140"
),
5 => array(
"type" => "dhcpatriotLicenseExpiration",
"descr" => "License Expiration Days Remaining",
"oid" => ".1.3.6.1.4.1.2021.51.12.4.1.2.7.76.73.67.69.78.83.69.1"
)
);
$class = 'count';
$divisor = 1;
$multiplier = 1;
$low_limit = null;
$low_warn_limit = null;
$warn_limit = null;
$high_limit = null;
$poller_type = 'snmp';
$entPhysicalIndex = null;
$entPhysicalIndex_measured = null;
$user_func = null;
$group = null;
$current_time = time();
foreach ($oids as $index => $entry) {
$oid = $entry['oid'];
$type = $entry['type'];
$descr = $entry['descr'];
$current = snmp_get($device, $oid, '-Oqv');
if ($type === 'dhcpatriotLicenseExpiration' && $current !== 'FULL:0') {
$epoch_time = explode(':', $current);
$current = round((intval($epoch_time[1]) - $current_time) / (60 * 60 * 24));
}
if (!empty($current) && $current !== 'FULL:0') {
discover_sensor(
$valid['sensor'],
$class,
$device,
$oid,
$index,
$type,
$descr,
$divisor,
$multiplier,
$low_limit,
$low_warn_limit,
$warn_limit,
$high_limit,
$current,
$poller_type,
$entPhysicalIndex,
$entPhysicalIndex_measured,
$user_func,
$group
);
}
}
unset($oids, $current_time, $class, $divisor, $multiplier, $low_limit, $low_warn_limit, $warn_limit, $high_limit, $poller_type, $entPhysicalIndex, $entPhysicalIndex_measured, $user_func, $group, $oid, $type, $descr, $current, $epoch_time);

View File

@@ -0,0 +1,100 @@
<?php
/*
*
* OIDs obtained from First Network Group Inc. DHCPatriot operations manual version 6.4.x
* Found here: http://www.network1.net/products/dhcpatriot/documentation/PDFs/v64xmanual-rev1.pdf
*
*/
/* Set base OID values */
$dhcp_networks_base_oid = '1.3.6.1.4.1.2021.50.110';
$pool_usage_base_oid = '1.3.6.1.4.1.2021.50.120';
$pool_size_base_oid = '1.3.6.1.4.1.2021.50.130';
/* Set dhcp index values for authenticated and standard DHCP networks */
$auth_dhcp_index = '1';
$standard_dhcp_index = '2';
/* Get configured networks from DHCPatriot and merge the arrays */
$auth_dhcp_networks = snmpwalk_array_num($device, $dhcp_networks_base_oid . '.' . $auth_dhcp_index, 2);
$standard_dhcp_networks = snmpwalk_array_num($device, $dhcp_networks_base_oid . '.' . $standard_dhcp_index, 2);
if (!is_array($standard_dhcp_networks) && is_array($auth_dhcp_networks) && !empty($auth_dhcp_networks)) {
$dhcp_networks = $auth_dhcp_networks;
}
if (!is_array($auth_dhcp_networks) && is_array($standard_dhcp_networks) && !empty($standard_dhcp_networks)) {
$dhcp_networks = $standard_dhcp_networks;
}
if (is_array($auth_dhcp_networks) && !empty($auth_dhcp_networks) && is_array($standard_dhcp_networks) && !empty($standard_dhcp_networks)) {
$dhcp_networks = array_merge_recursive($auth_dhcp_networks, $standard_dhcp_networks);
}
/* Set discover_sensor variables that are the same regardless of DHCP type */
$class = 'load';
$multiplier = 100;
$low_limit = null;
$low_warn_limit = null;
$warn_limit = 95;
$high_limit = 100;
$poller_type = 'snmp';
$entPhysicalIndex = null;
$entPhysicalIndex_measured = null;
$user_func = null;
if (is_array($dhcp_networks) && !empty($dhcp_networks)) {
if (is_array($dhcp_networks[$dhcp_networks_base_oid]) && !empty($dhcp_networks[$dhcp_networks_base_oid])) {
/* Loop through the DHCP type tier of the array grabbing the dhcp_type_index for later use */
foreach ($dhcp_networks[$dhcp_networks_base_oid] as $dhcp_type_index => $ignore_this) {
if (is_array($dhcp_networks[$dhcp_networks_base_oid][$dhcp_type_index]) && !empty($dhcp_networks[$dhcp_networks_base_oid][$dhcp_type_index])) {
/* Loop through the DHCP networks and set the network specific discover_sensor variables */
foreach ($dhcp_networks[$dhcp_networks_base_oid][$dhcp_type_index] as $index => $entry) {
if ($dhcp_type_index === intval($auth_dhcp_index)) {
$pool_usage = snmp_get($device, $pool_usage_base_oid . '.' . $auth_dhcp_index . '.' . $index, '-Oqv');
$pool_size = snmp_get($device, $pool_size_base_oid . '.' . $auth_dhcp_index . '.' . $index, '-Oqv');
$oid = '.' . $pool_usage_base_oid . '.' . $auth_dhcp_index . '.' . $index;
$type = 'dhcpatriotAuthDHCP';
$group = 'Authenticated DHCP';
}
if ($dhcp_type_index === intval($standard_dhcp_index)) {
$pool_usage = snmp_get($device, $pool_usage_base_oid . '.' . $standard_dhcp_index . '.' . $index, '-Oqv');
$pool_size = snmp_get($device, $pool_size_base_oid . '.' . $standard_dhcp_index . '.' . $index, '-Oqv');
$oid = '.' . $pool_usage_base_oid . '.' . $standard_dhcp_index . '.' . $index;
$type = 'dhcpatriotStandardDHCP';
$group = 'Standard DHCP';
}
$descr_tmp = explode('[', $entry);
$descr = $descr_tmp[0] . ' (' . $pool_usage . '/' . $pool_size . ')';
$divisor = $pool_size;
$current = (($pool_usage / $pool_size) * 100);
discover_sensor(
$valid['sensor'],
$class,
$device,
$oid,
$index,
$type,
$descr,
$divisor,
$multiplier,
$low_limit,
$low_warn_limit,
$warn_limit,
$high_limit,
$current,
$poller_type,
$entPhysicalIndex,
$entPhysicalIndex_measured,
$user_func,
$group
);
}
}
}
}
}
unset($dhcp_networks_base_oid, $pool_usage_base_oid, $pool_size_base_oid, $auth_dhcp_index, $standard_dhcp_index, $auth_dhcp_networks, $standard_dhcp_networks, $dhcp_networks, $class, $multiplier, $low_limit, $low_warn_limit, $warn_limit, $high_limit, $poller_type, $entPhysicalIndex, $entPhysicalIndex_measured, $user_func, $pool_usage, $pool_size, $oid, $type, $group, $descr_tmp, $descr, $divisor, $current);

View File

@@ -0,0 +1,147 @@
<?php
/*
*
* OIDs obtained from First Network Group Inc. DHCPatriot operations manual version 6.4.x
* Found here: http://www.network1.net/products/dhcpatriot/documentation/PDFs/v64xmanual-rev1.pdf
*
*/
$oids = array(
1 => array(
"type" => "dhcpatriotServiceStatus",
"descr" => "System Software Health",
"oid" => ".1.3.6.1.4.1.2021.51.9.4.1.2.6.72.69.65.76.84.72.1"
),
2 => array(
"type" => "dhcpatriotServiceStatus",
"descr" => "DHCPv4",
"oid" => ".1.3.6.1.4.1.2021.52.6.4.1.2.4.68.72.67.80.1"
),
3 => array(
"type" => "dhcpatriotServiceStatus",
"descr" => "DHCPv6",
"oid" => ".1.3.6.1.4.1.2021.52.9.4.1.2.5.68.72.67.80.54.1"
),
4 => array(
"type" => "dhcpatriotServiceStatus",
"descr" => "DNS",
"oid" => ".1.3.6.1.4.1.2021.52.1.4.1.2.3.68.78.83.1"
),
5 => array(
"type" => "dhcpatriotServiceStatus",
"descr" => "HTTP",
"oid" => ".1.3.6.1.4.1.2021.52.2.4.1.2.4.72.84.84.80.1"
),
6 => array(
"type" => "dhcpatriotServiceStatus",
"descr" => "HTTPS",
"oid" => ".1.3.6.1.4.1.2021.52.3.4.1.2.5.72.84.84.80.83.1"
),
7 => array(
"type" => "dhcpatriotServiceStatus",
"descr" => "NTP",
"oid" => ".1.3.6.1.4.1.2021.52.4.4.1.2.3.78.84.80.1"
),
8 => array(
"type" => "dhcpatriotServiceStatus",
"descr" => "SSH",
"oid" => ".1.3.6.1.4.1.2021.52.5.4.1.2.3.83.83.72.1"
),
9 => array(
"type" => "dhcpatriotServiceStatus",
"descr" => "Database Status",
"oid" => ".1.3.6.1.4.1.2021.51.2.4.1.2.5.77.89.83.81.76.1"
),
10 => array(
"type" => "dhcpatriotServiceStatus",
"descr" => "Database Sync Status",
"oid" => ".1.3.6.1.4.1.2021.51.3.4.1.2.16.77.89.83.81.76.82.69.80.76.73.67.65.84.73.79.78.1"
),
11 => array(
"type" => "dhcpatriotSystemTime",
"descr" => "System Time",
"oid" => ".1.3.6.1.4.1.2021.51.13.4.1.2.4.84.73.77.69.1"
)
);
$class = 'state';
$divisor = 1;
$multiplier = 1;
$low_limit = null;
$low_warn_limit = null;
$warn_limit = null;
$high_limit = null;
$poller_type = 'snmp';
$entPhysicalIndex = null;
$entPhysicalIndex_measured = null;
$user_func = null;
$group = null;
$current_time = time();
foreach ($oids as $index => $entry) {
$oid = $oids[$index]['oid'];
$type = $oids[$index]['type'];
$descr = $oids[$index]['descr'];
$tmp_snmp_data = snmp_get($device, $oid, '-Oqv');
if ($type === 'dhcpatriotServiceStatus') {
$tmp_snmp_data = explode(':', $tmp_snmp_data);
$current = intval($tmp_snmp_data[1]);
if ((intval($tmp_snmp_data[0]) - $current_time) > 300) {
$current = 2;
}
if ($tmp_snmp_data[1] === '999') {
$current = 3;
}
$states = [
['value' => 1, 'generic' => 0, 'graph' => 0, 'descr' => 'serviceUp'],
['value' => 2, 'generic' => 1, 'graph' => 0, 'descr' => 'serviceNotUpdatedWithinLast5Min'],
['value' => 3, 'generic' => 2, 'graph' => 0, 'descr' => 'serviceDown'],
];
}
if ($type === 'dhcpatriotSystemTime') {
$current = 1;
if ((intval($tmp_snmp_data) - $current_time) > 300) {
$current = 3;
}
$states = [
['value' => 1, 'generic' => 0, 'graph' => 0, 'descr' => 'systemTimeOK'],
['value' => 3, 'generic' => 2, 'graph' => 0, 'descr' => 'systemTimeOutOfSync'],
];
}
create_state_index($type, $states);
discover_sensor(
$valid['sensor'],
$class,
$device,
$oid,
$index,
$type,
$descr,
$divisor,
$multiplier,
$low_limit,
$low_warn_limit,
$warn_limit,
$high_limit,
$current,
$poller_type,
$entPhysicalIndex,
$entPhysicalIndex_measured,
$user_func,
$group
);
create_sensor_to_state_index($device, $type, $index);
}
unset($current_time, $tmp_snmp_data, $states, $class, $oid, $index, $type, $descr, $divisor, $multiplier, $low_limit, $low_warn_limit, $warn_limit, $high_limit, $current, $poller_type, $entPhysicalIndex, $entPhysicalIndex_measured, $user_func, $group);

View File

@@ -0,0 +1,52 @@
<?php
/*
*
* OIDs obtained from First Network Group Inc. DHCPatriot operations manual version 6.4.x
* Found here: http://www.network1.net/products/dhcpatriot/documentation/PDFs/v64xmanual-rev1.pdf
*
*/
$class = 'temperature';
$oid = ".1.3.6.1.4.1.2021.50.3.101.1";
$index = 1;
$type = 'dhcpatriotTempCPU';
$descr = "CPU";
$divisor = 1;
$multiplier = 1;
$low_limit = 5;
$low_warn_limit = 10;
$high_warn_limit = 40;
$high_limit = 45;
$current = snmp_get($device, $oid, '-Oqv');
$poller_type = 'snmp';
$entPhysicalIndex = null;
$entPhysicalIndex_measured = null;
$user_func = null;
$group = null;
if (!empty($current) && is_numeric($current)) {
discover_sensor(
$valid['sensor'],
$class,
$device,
$oid,
$index,
$type,
$descr,
$divisor,
$multiplier,
$low_limit,
$low_warn_limit,
$high_warn_limit,
$high_limit,
$current,
$poller_type,
$entPhysicalIndex,
$entPhysicalIndex_measured,
$user_func,
$group
);
}
unset($class, $oid, $index, $type, $descr, $divisor, $multiplier, $low_limit, $low_warn_limit, $warn_limit, $high_limit, $current, $poller_type, $entPhysicalIndex, $entPhysicalIndex_measured, $user_func, $group);

View File

@@ -0,0 +1,27 @@
<?php
/*
*
* OIDs obtained from First Network Group Inc. DHCPatriot operations manual version 6.4.x
* Found here: http://www.network1.net/products/dhcpatriot/documentation/PDFs/v64xmanual-rev1.pdf
*
*/
$ft_tmp = trim(snmp_get($device, ".1.3.6.1.4.1.2021.51.12.4.1.2.7.76.73.67.69.78.83.69.1", "-Oqv"), '" ');
if (!empty($ft_tmp)) {
if (str_contains($ft_tmp, "FULL:0")) {
$features = "Non-Expiry License";
}
if (str_contains($ft_tmp, "LIMITED:")) {
$ft_epoch = str_replace("LIMITED:", "", $ft_tmp);
$ft_dt = new DateTime("@$ft_epoch");
$features = "License Expires ".$ft_dt->format('Y-m-d');
}
}
$hardware = trim(snmp_get($device, ".1.3.6.1.4.1.2021.52.7.4.1.2.5.77.79.68.69.76.1", "-Oqv"), '" ');
$serial = trim(snmp_get($device, ".1.3.6.1.4.1.2021.52.8.4.1.2.6.83.69.82.73.65.76.1", "-Oqv"), '" ');
$version = trim(snmp_get($device, ".1.3.6.1.4.1.2021.51.11.4.1.2.7.86.69.82.83.73.79.78.1", "-Oqv"), '" ');
unset($ft_tmp, $ft_epoch, $ft_dt);

View File

@@ -0,0 +1,14 @@
<?php
/*
*
* OIDs obtained from First Network Group Inc. DHCPatriot operations manual version 6.4.x
* Found here: http://www.network1.net/products/dhcpatriot/documentation/PDFs/v64xmanual-rev1.pdf
*
*/
if ($sensor['sensor_type'] === 'dhcpatriotLicenseExpiration') {
$current_time = time();
$epoch_time = explode(':', $sensor_value);
$sensor_value = round((intval($epoch_time[1]) - $current_time) / (60 * 60 * 24));
}

View File

@@ -0,0 +1,43 @@
<?php
/*
*
* OIDs obtained from First Network Group Inc. DHCPatriot operations manual version 6.4.x
* Found here: http://www.network1.net/products/dhcpatriot/documentation/PDFs/v64xmanual-rev1.pdf
*
*/
/* Set base OID value */
$pool_size_base_oid = '1.3.6.1.4.1.2021.50.130';
/* Set dhcp index values for authenticated and standard DHCP networks */
$auth_dhcp_index = '1';
$standard_dhcp_index = '2';
if ($sensor['sensor_type'] === 'dhcpatriotAuthDHCP') {
$pool_size = snmp_get($device, $pool_size_base_oid . '.' . $auth_dhcp_index . '.' . $sensor['sensor_index'], '-Oqv');
}
if ($sensor['sensor_type'] === 'dhcpatriotStandardDHCP') {
$pool_size = snmp_get($device, $pool_size_base_oid . '.' . $standard_dhcp_index . '.' . $sensor['sensor_index'], '-Oqv');
}
$prev_divisor = $sensor['sensor_divisor'];
$new_divisor = $pool_size;
$prev_descr = $sensor['sensor_descr'];
$descr_tmp = explode('(', $sensor['sensor_descr']);
$new_descr = $descr_tmp[0] . '(' . $sensor_value . '/' . $pool_size . ')';
if ($new_descr != $prev_descr) {
$sensor['sensor_descr'] = $new_descr;
$updated = dbUpdate(array('sensor_descr' => $new_descr), 'sensors', '`sensor_id` = ?', array($sensor['sensor_id']));
}
if ($new_divisor != $prev_divisor) {
$sensor['sensor_divisor'] = $new_divisor;
$updated = dbUpdate(array('sensor_divisor' => $new_divisor), 'sensors', '`sensor_id` = ?', array($sensor['sensor_id']));
log_event('Sensor Divisor Updated: ' . $sensor['sensor_class'] . ' ' . $sensor['sensor_type'] . ' ' . $sensor['sensor_index'] . ' ' . $sensor['sensor_descr'] . ' old_divisor=' . $prev_divisor . ' new_divisor=' . $sensor['sensor_divisor'], $device, 'sensor', 3, $sensor['sensor_id']);
}
unset($pool_size_base_oid, $auth_dhcp_index, $standard_dhcp_index, $pool_size, $prev_divisor, $new_divisor, $descr_tmp, $prev_descr, $new_descr, $update, $updated);

View File

@@ -0,0 +1,31 @@
<?php
/*
*
* OIDs obtained from First Network Group Inc. DHCPatriot operations manual version 6.4.x
* Found here: http://www.network1.net/products/dhcpatriot/documentation/PDFs/v64xmanual-rev1.pdf
*
*/
if ($sensor['sensor_type'] === 'dhcpatriotServiceStatus') {
$current_time = time();
$sensor_value_tmp = explode(':', $sensor_value);
$sensor_value = intval($sensor_value_tmp[1]);
if (abs(intval($sensor_value_tmp[0]) - $current_time) > 300) {
$sensor_value = 2;
}
if ($sensor_value_tmp[1] === '999') {
$sensor_value = 3;
}
}
if ($sensor['sensor_type'] === 'dhcpatriotSystemTime') {
$current_time = time();
$sensor_value_tmp = $sensor_value;
$sensor_value = 1;
if (abs(intval($sensor_value_tmp) - $current_time) > 300) {
$sensor_value = 3;
}
}
unset($current_time, $sensor_value_tmp);

2629
tests/data/dhcpatriot.json Normal file

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,689 @@
1.3.6.1.2.1.1.1.0|4|Linux patriot-1 3.19.0-FNGi-ModularOS-2.0.0 #1 SMP Thu Aug 9 14:02:24 UTC 2018 x86_64
1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.8072.3.2.10
1.3.6.1.2.1.1.3.0|67|6123599
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|Device 8086:10d3
1.3.6.1.2.1.2.2.1.2.4|4|Device 8086:10d3
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.4.1|2|65536
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.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|4x|0025903A3C70
1.3.6.1.2.1.2.2.1.6.4|4x|0025903A3C71
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|1
1.3.6.1.2.1.2.2.1.7.4|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|1
1.3.6.1.2.1.2.2.1.8.4|2|1
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.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.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.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.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.4.3.0|65|303467440
1.3.6.1.2.1.4.4.0|65|0
1.3.6.1.2.1.4.5.0|65|5
1.3.6.1.2.1.4.6.0|65|0
1.3.6.1.2.1.4.7.0|65|0
1.3.6.1.2.1.4.8.0|65|0
1.3.6.1.2.1.4.9.0|65|302948240
1.3.6.1.2.1.4.10.0|65|294161602
1.3.6.1.2.1.4.11.0|65|0
1.3.6.1.2.1.4.12.0|65|0
1.3.6.1.2.1.4.14.0|65|0
1.3.6.1.2.1.4.15.0|65|0
1.3.6.1.2.1.4.16.0|65|0
1.3.6.1.2.1.4.17.0|65|0
1.3.6.1.2.1.4.18.0|65|0
1.3.6.1.2.1.4.19.0|65|0
1.3.6.1.2.1.4.20.1.2.10.0.0.1|2|4
1.3.6.1.2.1.4.20.1.2.192.168.1.122|2|3
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.3.10.0.0.1|64|255.255.255.0
1.3.6.1.2.1.4.20.1.3.192.168.1.122|64|255.255.255.248
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.22.1.2.3.192.168.1.121|4x|000CDBF64300
1.3.6.1.2.1.4.22.1.2.3.192.168.1.123|4x|0025903A3CA0
1.3.6.1.2.1.4.22.1.2.4.10.0.0.2|4x|0025903A3CA1
1.3.6.1.2.1.4.24.6.0|66|12
1.3.6.1.2.1.4.24.7.1.7.1.4.0.0.0.0.0.2.0.0.1.4.192.168.1.121|2|3
1.3.6.1.2.1.4.24.7.1.7.1.4.10.0.0.0.24.3.0.0.4.1.4.0.0.0.0|2|4
1.3.6.1.2.1.4.24.7.1.7.1.4.192.168.1.120.29.3.0.0.3.1.4.0.0.0.0|2|3
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.0.0.3.0.0.12.2.16.253.43.201.236.37.10.0.0.0.0.0.0.0.0.170.161|2|3
1.3.6.1.2.1.4.24.7.1.7.2.16.253.43.201.236.37.10.0.0.0.0.0.0.0.0.0.0.64.3.0.0.5.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.7.2.16.253.43.201.236.37.10.0.0.0.0.0.0.0.0.255.241.128.3.0.0.4.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.0.0.0.0.0.0.0.0.64.3.0.0.8.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.7.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.9.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.7.2.16.254.128.0.0.0.0.0.0.2.37.144.255.254.58.60.112.128.3.0.0.6.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.37.144.255.254.58.60.113.128.3.0.0.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.7.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.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.7.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.11.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.192.168.1.121|2|4
1.3.6.1.2.1.4.24.7.1.8.1.4.10.0.0.0.24.3.0.0.4.1.4.0.0.0.0|2|3
1.3.6.1.2.1.4.24.7.1.8.1.4.192.168.1.120.29.3.0.0.3.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.0.0.3.0.0.12.2.16.253.43.201.236.37.10.0.0.0.0.0.0.0.0.170.161|2|4
1.3.6.1.2.1.4.24.7.1.8.2.16.253.43.201.236.37.10.0.0.0.0.0.0.0.0.0.0.64.3.0.0.5.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.253.43.201.236.37.10.0.0.0.0.0.0.0.0.255.241.128.3.0.0.4.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.0.0.0.0.0.0.0.0.64.3.0.0.8.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.0.0.0.0.0.0.0.0.64.3.0.0.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.37.144.255.254.58.60.112.128.3.0.0.6.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.37.144.255.254.58.60.113.128.3.0.0.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.8.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.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.3.0.0.11.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.192.168.1.121|2|2
1.3.6.1.2.1.4.24.7.1.9.1.4.10.0.0.0.24.3.0.0.4.1.4.0.0.0.0|2|2
1.3.6.1.2.1.4.24.7.1.9.1.4.192.168.1.120.29.3.0.0.3.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.0.0.3.0.0.12.2.16.253.43.201.236.37.10.0.0.0.0.0.0.0.0.170.161|2|2
1.3.6.1.2.1.4.24.7.1.9.2.16.253.43.201.236.37.10.0.0.0.0.0.0.0.0.0.0.64.3.0.0.5.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.253.43.201.236.37.10.0.0.0.0.0.0.0.0.255.241.128.3.0.0.4.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.0.0.0.0.0.0.0.0.64.3.0.0.8.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.0.0.0.0.0.0.0.0.64.3.0.0.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.37.144.255.254.58.60.112.128.3.0.0.6.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.37.144.255.254.58.60.113.128.3.0.0.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.9.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.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.3.0.0.11.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.192.168.1.121|66|0
1.3.6.1.2.1.4.24.7.1.10.1.4.10.0.0.0.24.3.0.0.4.1.4.0.0.0.0|66|0
1.3.6.1.2.1.4.24.7.1.10.1.4.192.168.1.120.29.3.0.0.3.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.0.0.3.0.0.12.2.16.253.43.201.236.37.10.0.0.0.0.0.0.0.0.170.161|66|0
1.3.6.1.2.1.4.24.7.1.10.2.16.253.43.201.236.37.10.0.0.0.0.0.0.0.0.0.0.64.3.0.0.5.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.253.43.201.236.37.10.0.0.0.0.0.0.0.0.255.241.128.3.0.0.4.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.0.0.0.0.0.0.0.0.64.3.0.0.8.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.0.0.0.0.0.0.0.0.64.3.0.0.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.37.144.255.254.58.60.112.128.3.0.0.6.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.37.144.255.254.58.60.113.128.3.0.0.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.10.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.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.3.0.0.11.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.192.168.1.121|66|0
1.3.6.1.2.1.4.24.7.1.11.1.4.10.0.0.0.24.3.0.0.4.1.4.0.0.0.0|66|0
1.3.6.1.2.1.4.24.7.1.11.1.4.192.168.1.120.29.3.0.0.3.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.0.0.3.0.0.12.2.16.253.43.201.236.37.10.0.0.0.0.0.0.0.0.170.161|66|0
1.3.6.1.2.1.4.24.7.1.11.2.16.253.43.201.236.37.10.0.0.0.0.0.0.0.0.0.0.64.3.0.0.5.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.253.43.201.236.37.10.0.0.0.0.0.0.0.0.255.241.128.3.0.0.4.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.0.0.0.0.0.0.0.0.64.3.0.0.8.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.0.0.0.0.0.0.0.0.64.3.0.0.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.37.144.255.254.58.60.112.128.3.0.0.6.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.37.144.255.254.58.60.113.128.3.0.0.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.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.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.3.0.0.11.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.192.168.1.121|2|0
1.3.6.1.2.1.4.24.7.1.12.1.4.10.0.0.0.24.3.0.0.4.1.4.0.0.0.0|2|0
1.3.6.1.2.1.4.24.7.1.12.1.4.192.168.1.120.29.3.0.0.3.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.0.0.3.0.0.12.2.16.253.43.201.236.37.10.0.0.0.0.0.0.0.0.170.161|2|1024
1.3.6.1.2.1.4.24.7.1.12.2.16.253.43.201.236.37.10.0.0.0.0.0.0.0.0.0.0.64.3.0.0.5.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.12.2.16.253.43.201.236.37.10.0.0.0.0.0.0.0.0.255.241.128.3.0.0.4.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.0.0.0.0.0.0.0.0.64.3.0.0.8.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.12.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64.3.0.0.9.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.12.2.16.254.128.0.0.0.0.0.0.2.37.144.255.254.58.60.112.128.3.0.0.6.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.37.144.255.254.58.60.113.128.3.0.0.7.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.3.0.0.10.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.12.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.11.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.192.168.1.121|2|-1
1.3.6.1.2.1.4.24.7.1.13.1.4.10.0.0.0.24.3.0.0.4.1.4.0.0.0.0|2|-1
1.3.6.1.2.1.4.24.7.1.13.1.4.192.168.1.120.29.3.0.0.3.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.0.0.3.0.0.12.2.16.253.43.201.236.37.10.0.0.0.0.0.0.0.0.170.161|2|-1
1.3.6.1.2.1.4.24.7.1.13.2.16.253.43.201.236.37.10.0.0.0.0.0.0.0.0.0.0.64.3.0.0.5.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.253.43.201.236.37.10.0.0.0.0.0.0.0.0.255.241.128.3.0.0.4.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.0.0.0.0.0.0.0.0.64.3.0.0.8.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.0.0.0.0.0.0.0.0.64.3.0.0.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.37.144.255.254.58.60.112.128.3.0.0.6.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.37.144.255.254.58.60.113.128.3.0.0.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.13.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.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.3.0.0.11.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.192.168.1.121|2|-1
1.3.6.1.2.1.4.24.7.1.14.1.4.10.0.0.0.24.3.0.0.4.1.4.0.0.0.0|2|-1
1.3.6.1.2.1.4.24.7.1.14.1.4.192.168.1.120.29.3.0.0.3.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.0.0.3.0.0.12.2.16.253.43.201.236.37.10.0.0.0.0.0.0.0.0.170.161|2|-1
1.3.6.1.2.1.4.24.7.1.14.2.16.253.43.201.236.37.10.0.0.0.0.0.0.0.0.0.0.64.3.0.0.5.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.253.43.201.236.37.10.0.0.0.0.0.0.0.0.255.241.128.3.0.0.4.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.0.0.0.0.0.0.0.0.64.3.0.0.8.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.0.0.0.0.0.0.0.0.64.3.0.0.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.37.144.255.254.58.60.112.128.3.0.0.6.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.37.144.255.254.58.60.113.128.3.0.0.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.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.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.3.0.0.11.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.192.168.1.121|2|-1
1.3.6.1.2.1.4.24.7.1.15.1.4.10.0.0.0.24.3.0.0.4.1.4.0.0.0.0|2|-1
1.3.6.1.2.1.4.24.7.1.15.1.4.192.168.1.120.29.3.0.0.3.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.0.0.3.0.0.12.2.16.253.43.201.236.37.10.0.0.0.0.0.0.0.0.170.161|2|-1
1.3.6.1.2.1.4.24.7.1.15.2.16.253.43.201.236.37.10.0.0.0.0.0.0.0.0.0.0.64.3.0.0.5.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.253.43.201.236.37.10.0.0.0.0.0.0.0.0.255.241.128.3.0.0.4.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.0.0.0.0.0.0.0.0.64.3.0.0.8.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.0.0.0.0.0.0.0.0.64.3.0.0.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.37.144.255.254.58.60.112.128.3.0.0.6.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.37.144.255.254.58.60.113.128.3.0.0.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.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.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.3.0.0.11.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.192.168.1.121|2|-1
1.3.6.1.2.1.4.24.7.1.16.1.4.10.0.0.0.24.3.0.0.4.1.4.0.0.0.0|2|-1
1.3.6.1.2.1.4.24.7.1.16.1.4.192.168.1.120.29.3.0.0.3.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.0.0.3.0.0.12.2.16.253.43.201.236.37.10.0.0.0.0.0.0.0.0.170.161|2|-1
1.3.6.1.2.1.4.24.7.1.16.2.16.253.43.201.236.37.10.0.0.0.0.0.0.0.0.0.0.64.3.0.0.5.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.253.43.201.236.37.10.0.0.0.0.0.0.0.0.255.241.128.3.0.0.4.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.0.0.0.0.0.0.0.0.64.3.0.0.8.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.0.0.0.0.0.0.0.0.64.3.0.0.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.37.144.255.254.58.60.112.128.3.0.0.6.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.37.144.255.254.58.60.113.128.3.0.0.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.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.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.3.0.0.11.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.192.168.1.121|2|1
1.3.6.1.2.1.4.24.7.1.17.1.4.10.0.0.0.24.3.0.0.4.1.4.0.0.0.0|2|1
1.3.6.1.2.1.4.24.7.1.17.1.4.192.168.1.120.29.3.0.0.3.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.0.0.3.0.0.12.2.16.253.43.201.236.37.10.0.0.0.0.0.0.0.0.170.161|2|1
1.3.6.1.2.1.4.24.7.1.17.2.16.253.43.201.236.37.10.0.0.0.0.0.0.0.0.0.0.64.3.0.0.5.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.253.43.201.236.37.10.0.0.0.0.0.0.0.0.255.241.128.3.0.0.4.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.0.0.0.0.0.0.0.0.64.3.0.0.8.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.0.0.0.0.0.0.0.0.64.3.0.0.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.37.144.255.254.58.60.112.128.3.0.0.6.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.37.144.255.254.58.60.113.128.3.0.0.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.2.16.255.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.3.0.0.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.3.0.0.11.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|303465593
1.3.6.1.2.1.4.31.1.1.3.2|65|48520
1.3.6.1.2.1.4.31.1.1.4.1|70|303465593
1.3.6.1.2.1.4.31.1.1.4.2|70|48520
1.3.6.1.2.1.4.31.1.1.5.1|65|2893597053
1.3.6.1.2.1.4.31.1.1.5.2|65|2429090
1.3.6.1.2.1.4.31.1.1.6.1|70|54433204605
1.3.6.1.2.1.4.31.1.1.6.2|70|2429090
1.3.6.1.2.1.4.31.1.1.7.1|65|0
1.3.6.1.2.1.4.31.1.1.7.2|65|0
1.3.6.1.2.1.4.31.1.1.8.1|65|0
1.3.6.1.2.1.4.31.1.1.8.2|65|48520
1.3.6.1.2.1.4.31.1.1.9.1|65|5
1.3.6.1.2.1.4.31.1.1.9.2|65|0
1.3.6.1.2.1.4.31.1.1.10.1|65|0
1.3.6.1.2.1.4.31.1.1.10.2|65|0
1.3.6.1.2.1.4.31.1.1.11.1|65|0
1.3.6.1.2.1.4.31.1.1.11.2|65|0
1.3.6.1.2.1.4.31.1.1.12.1|65|0
1.3.6.1.2.1.4.31.1.1.12.2|65|48520
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|48520
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|302946399
1.3.6.1.2.1.4.31.1.1.18.2|65|48520
1.3.6.1.2.1.4.31.1.1.19.1|70|302946399
1.3.6.1.2.1.4.31.1.1.19.2|70|48520
1.3.6.1.2.1.4.31.1.1.20.1|65|294159725
1.3.6.1.2.1.4.31.1.1.20.2|65|49113
1.3.6.1.2.1.4.31.1.1.21.1|70|294159725
1.3.6.1.2.1.4.31.1.1.21.2|70|49113
1.3.6.1.2.1.4.31.1.1.22.1|65|0
1.3.6.1.2.1.4.31.1.1.22.2|65|0
1.3.6.1.2.1.4.31.1.1.23.1|65|0
1.3.6.1.2.1.4.31.1.1.23.2|65|0
1.3.6.1.2.1.4.31.1.1.24.1|70|0
1.3.6.1.2.1.4.31.1.1.24.2|70|0
1.3.6.1.2.1.4.31.1.1.25.1|65|0
1.3.6.1.2.1.4.31.1.1.25.2|65|4
1.3.6.1.2.1.4.31.1.1.26.1|65|0
1.3.6.1.2.1.4.31.1.1.26.2|65|0
1.3.6.1.2.1.4.31.1.1.27.1|65|0
1.3.6.1.2.1.4.31.1.1.27.2|65|0
1.3.6.1.2.1.4.31.1.1.28.1|65|0
1.3.6.1.2.1.4.31.1.1.28.2|65|0
1.3.6.1.2.1.4.31.1.1.29.1|65|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.30.1|65|294159725
1.3.6.1.2.1.4.31.1.1.30.2|65|49109
1.3.6.1.2.1.4.31.1.1.31.1|70|294159725
1.3.6.1.2.1.4.31.1.1.31.2|70|49109
1.3.6.1.2.1.4.31.1.1.32.1|65|1346627374
1.3.6.1.2.1.4.31.1.1.32.2|65|2485562
1.3.6.1.2.1.4.31.1.1.33.1|70|52886234926
1.3.6.1.2.1.4.31.1.1.33.2|70|2485562
1.3.6.1.2.1.4.31.1.1.34.1|65|0
1.3.6.1.2.1.4.31.1.1.34.2|65|0
1.3.6.1.2.1.4.31.1.1.35.1|70|0
1.3.6.1.2.1.4.31.1.1.35.2|70|0
1.3.6.1.2.1.4.31.1.1.36.1|65|0
1.3.6.1.2.1.4.31.1.1.36.2|65|0
1.3.6.1.2.1.4.31.1.1.37.1|70|0
1.3.6.1.2.1.4.31.1.1.37.2|70|0
1.3.6.1.2.1.4.31.1.1.38.1|65|0
1.3.6.1.2.1.4.31.1.1.38.2|65|1173
1.3.6.1.2.1.4.31.1.1.39.1|70|0
1.3.6.1.2.1.4.31.1.1.39.2|70|1173
1.3.6.1.2.1.4.31.1.1.40.1|65|0
1.3.6.1.2.1.4.31.1.1.40.2|65|112072
1.3.6.1.2.1.4.31.1.1.41.1|70|0
1.3.6.1.2.1.4.31.1.1.41.2|70|112072
1.3.6.1.2.1.4.31.1.1.42.1|65|8785
1.3.6.1.2.1.4.31.1.1.43.1|70|8785
1.3.6.1.2.1.4.31.1.1.44.1|65|0
1.3.6.1.2.1.4.31.1.1.45.1|70|0
1.3.6.1.2.1.4.31.1.1.46.1|67|0
1.3.6.1.2.1.4.31.1.1.46.2|67|0
1.3.6.1.2.1.4.31.1.1.47.1|66|60000
1.3.6.1.2.1.4.31.1.1.47.2|66|60000
1.3.6.1.2.1.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.253.43.201.236.37.10.0.0.0.0.0.0.0.0.255.241|2|3
1.3.6.1.2.1.4.34.1.3.2.16.254.128.0.0.0.0.0.0.2.37.144.255.254.58.60.112|2|3
1.3.6.1.2.1.4.34.1.3.2.16.254.128.0.0.0.0.0.0.2.37.144.255.254.58.60.113|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.253.43.201.236.37.10.0.0.0.0.0.0.0.0.255.241|6|1.3.6.1.2.1.4.32.1.5.3.2.16.253.43.201.236.37.10.0.0.0.0.0.0.0.0.0.0.64
1.3.6.1.2.1.4.34.1.5.2.16.254.128.0.0.0.0.0.0.2.37.144.255.254.58.60.112|6|1.3.6.1.2.1.4.32.1.5.3.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.5.2.16.254.128.0.0.0.0.0.0.2.37.144.255.254.58.60.113|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.253.43.201.236.37.10.0.0.0.0.0.0.0.0.255.241|2|2
1.3.6.1.2.1.4.34.1.6.2.16.254.128.0.0.0.0.0.0.2.37.144.255.254.58.60.112|2|5
1.3.6.1.2.1.4.34.1.6.2.16.254.128.0.0.0.0.0.0.2.37.144.255.254.58.60.113|2|5
1.3.6.1.2.1.4.35.1.4.3.1.4.192.168.1.121|4x|000CDBF64300
1.3.6.1.2.1.4.35.1.4.3.1.4.192.168.1.123|4x|0025903A3CA0
1.3.6.1.2.1.4.35.1.4.4.1.4.10.0.0.2|4x|0025903A3CA1
1.3.6.1.2.1.5.1.0|65|3965891
1.3.6.1.2.1.5.2.0|65|131
1.3.6.1.2.1.5.3.0|65|1
1.3.6.1.2.1.5.4.0|65|48103
1.3.6.1.2.1.5.5.0|65|27
1.3.6.1.2.1.5.6.0|65|0
1.3.6.1.2.1.5.7.0|65|0
1.3.6.1.2.1.5.8.0|65|0
1.3.6.1.2.1.5.9.0|65|3917737
1.3.6.1.2.1.5.10.0|65|23
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|0
1.3.6.1.2.1.5.15.0|65|3921345
1.3.6.1.2.1.5.16.0|65|0
1.3.6.1.2.1.5.17.0|65|3608
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|0
1.3.6.1.2.1.5.23.0|65|3917737
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.5.29.1.2.1|65|3965891
1.3.6.1.2.1.5.29.1.2.2|65|0
1.3.6.1.2.1.5.29.1.3.1|65|131
1.3.6.1.2.1.5.29.1.3.2|65|0
1.3.6.1.2.1.5.29.1.4.1|65|0
1.3.6.1.2.1.5.29.1.4.2|65|588
1.3.6.1.2.1.5.29.1.5.1|65|3921345
1.3.6.1.2.1.5.29.1.5.2|65|0
1.3.6.1.2.1.5.30.1.3.1.0|65|23
1.3.6.1.2.1.5.30.1.3.1.3|65|48103
1.3.6.1.2.1.5.30.1.3.1.8|65|3917737
1.3.6.1.2.1.5.30.1.3.1.11|65|27
1.3.6.1.2.1.5.30.1.4.1.0|65|3917737
1.3.6.1.2.1.5.30.1.4.1.3|65|3608
1.3.6.1.2.1.5.30.1.4.2.133|65|5
1.3.6.1.2.1.5.30.1.4.2.135|65|3
1.3.6.1.2.1.5.30.1.4.2.143|65|580
1.3.6.1.2.1.6.5.0|65|231435
1.3.6.1.2.1.6.6.0|65|400742
1.3.6.1.2.1.6.7.0|65|605
1.3.6.1.2.1.6.8.0|65|313
1.3.6.1.2.1.6.9.0|66|31
1.3.6.1.2.1.6.10.0|65|278924837
1.3.6.1.2.1.6.11.0|65|279122988
1.3.6.1.2.1.6.12.0|65|15575
1.3.6.1.2.1.6.14.0|65|0
1.3.6.1.2.1.6.15.0|65|4499
1.3.6.1.2.1.6.19.1.7.1.4.10.0.0.1.519.1.4.10.0.0.2.54379|2|5
1.3.6.1.2.1.7.1.0|65|20078092
1.3.6.1.2.1.7.2.0|65|7206
1.3.6.1.2.1.7.3.0|65|12097
1.3.6.1.2.1.7.4.0|65|16323220
1.3.6.1.2.1.11.1.0|65|106214
1.3.6.1.2.1.11.2.0|65|106213
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|226435
1.3.6.1.2.1.11.14.0|65|0
1.3.6.1.2.1.11.15.0|65|21560
1.3.6.1.2.1.11.16.0|65|73728
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|3051
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|106215
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|503878305
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|4054400
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.3|2|3
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.10|2|10
1.3.6.1.2.1.25.2.3.1.1.32|2|32
1.3.6.1.2.1.25.2.3.1.1.36|2|36
1.3.6.1.2.1.25.2.3.1.2.1|6|1.3.6.1.2.1.25.2.1.2
1.3.6.1.2.1.25.2.3.1.2.3|6|1.3.6.1.2.1.25.2.1.3
1.3.6.1.2.1.25.2.3.1.2.6|6|1.3.6.1.2.1.25.2.1.1
1.3.6.1.2.1.25.2.3.1.2.7|6|1.3.6.1.2.1.25.2.1.1
1.3.6.1.2.1.25.2.3.1.2.8|6|1.3.6.1.2.1.25.2.1.1
1.3.6.1.2.1.25.2.3.1.2.10|6|1.3.6.1.2.1.25.2.1.3
1.3.6.1.2.1.25.2.3.1.2.32|6|1.3.6.1.2.1.25.2.1.4
1.3.6.1.2.1.25.2.3.1.2.36|6|1.3.6.1.2.1.25.2.1.4
1.3.6.1.2.1.25.2.3.1.3.1|4|Physical memory
1.3.6.1.2.1.25.2.3.1.3.3|4|Virtual memory
1.3.6.1.2.1.25.2.3.1.3.6|4|Memory buffers
1.3.6.1.2.1.25.2.3.1.3.7|4|Cached memory
1.3.6.1.2.1.25.2.3.1.3.8|4|Shared memory
1.3.6.1.2.1.25.2.3.1.3.10|4|Swap space
1.3.6.1.2.1.25.2.3.1.3.32|4|/var
1.3.6.1.2.1.25.2.3.1.3.36|4|/run
1.3.6.1.2.1.25.2.3.1.4.1|2|1024
1.3.6.1.2.1.25.2.3.1.4.3|2|1024
1.3.6.1.2.1.25.2.3.1.4.6|2|1024
1.3.6.1.2.1.25.2.3.1.4.7|2|1024
1.3.6.1.2.1.25.2.3.1.4.8|2|1024
1.3.6.1.2.1.25.2.3.1.4.10|2|1024
1.3.6.1.2.1.25.2.3.1.4.32|2|4096
1.3.6.1.2.1.25.2.3.1.4.36|2|4096
1.3.6.1.2.1.25.2.3.1.5.1|2|4054400
1.3.6.1.2.1.25.2.3.1.5.3|2|12448356
1.3.6.1.2.1.25.2.3.1.5.6|2|4054400
1.3.6.1.2.1.25.2.3.1.5.7|2|3231892
1.3.6.1.2.1.25.2.3.1.5.8|2|948
1.3.6.1.2.1.25.2.3.1.5.10|2|8393956
1.3.6.1.2.1.25.2.3.1.5.32|2|117560020
1.3.6.1.2.1.25.2.3.1.5.36|2|506800
1.3.6.1.2.1.25.2.3.1.6.1|2|3932352
1.3.6.1.2.1.25.2.3.1.6.3|2|4003592
1.3.6.1.2.1.25.2.3.1.6.6|2|160248
1.3.6.1.2.1.25.2.3.1.6.7|2|3231892
1.3.6.1.2.1.25.2.3.1.6.8|2|948
1.3.6.1.2.1.25.2.3.1.6.10|2|71240
1.3.6.1.2.1.25.2.3.1.6.32|2|3757713
1.3.6.1.2.1.25.2.3.1.6.36|2|106
1.3.6.1.2.1.25.3.2.1.1.196608|2|196608
1.3.6.1.2.1.25.3.2.1.1.196609|2|196609
1.3.6.1.2.1.25.3.2.1.1.196610|2|196610
1.3.6.1.2.1.25.3.2.1.1.196611|2|196611
1.3.6.1.2.1.25.3.2.1.1.262145|2|262145
1.3.6.1.2.1.25.3.2.1.1.262146|2|262146
1.3.6.1.2.1.25.3.2.1.1.262147|2|262147
1.3.6.1.2.1.25.3.2.1.1.262148|2|262148
1.3.6.1.2.1.25.3.2.1.1.393232|2|393232
1.3.6.1.2.1.25.3.2.1.1.786432|2|786432
1.3.6.1.2.1.25.3.2.1.2.196608|6|1.3.6.1.2.1.25.3.1.3
1.3.6.1.2.1.25.3.2.1.2.196609|6|1.3.6.1.2.1.25.3.1.3
1.3.6.1.2.1.25.3.2.1.2.196610|6|1.3.6.1.2.1.25.3.1.3
1.3.6.1.2.1.25.3.2.1.2.196611|6|1.3.6.1.2.1.25.3.1.3
1.3.6.1.2.1.25.3.2.1.2.262145|6|1.3.6.1.2.1.25.3.1.4
1.3.6.1.2.1.25.3.2.1.2.262146|6|1.3.6.1.2.1.25.3.1.4
1.3.6.1.2.1.25.3.2.1.2.262147|6|1.3.6.1.2.1.25.3.1.4
1.3.6.1.2.1.25.3.2.1.2.262148|6|1.3.6.1.2.1.25.3.1.4
1.3.6.1.2.1.25.3.2.1.2.393232|6|1.3.6.1.2.1.25.3.1.6
1.3.6.1.2.1.25.3.2.1.2.786432|6|1.3.6.1.2.1.25.3.1.12
1.3.6.1.2.1.25.3.2.1.3.196608|4|GenuineIntel: Intel(R) Xeon(R) CPU X3430 @ 2.40GHz
1.3.6.1.2.1.25.3.2.1.3.196609|4|GenuineIntel: Intel(R) Xeon(R) CPU X3430 @ 2.40GHz
1.3.6.1.2.1.25.3.2.1.3.196610|4|GenuineIntel: Intel(R) Xeon(R) CPU X3430 @ 2.40GHz
1.3.6.1.2.1.25.3.2.1.3.196611|4|GenuineIntel: Intel(R) Xeon(R) CPU X3430 @ 2.40GHz
1.3.6.1.2.1.25.3.2.1.3.262145|4|network interface lo
1.3.6.1.2.1.25.3.2.1.3.262146|4|network interface sit0
1.3.6.1.2.1.25.3.2.1.3.262147|4|network interface eth0
1.3.6.1.2.1.25.3.2.1.3.262148|4|network interface eth1
1.3.6.1.2.1.25.3.2.1.3.393232|4|SCSI disk (/dev/sda)
1.3.6.1.2.1.25.3.2.1.3.786432|4|Guessing that there's a floating point co-processor
1.3.6.1.2.1.25.3.2.1.4.196608|6|0.0
1.3.6.1.2.1.25.3.2.1.4.196609|6|0.0
1.3.6.1.2.1.25.3.2.1.4.196610|6|0.0
1.3.6.1.2.1.25.3.2.1.4.196611|6|0.0
1.3.6.1.2.1.25.3.2.1.4.262145|6|0.0
1.3.6.1.2.1.25.3.2.1.4.262146|6|0.0
1.3.6.1.2.1.25.3.2.1.4.262147|6|0.0
1.3.6.1.2.1.25.3.2.1.4.262148|6|0.0
1.3.6.1.2.1.25.3.2.1.4.393232|6|0.0
1.3.6.1.2.1.25.3.2.1.4.786432|6|0.0
1.3.6.1.2.1.25.3.2.1.5.196608|2|2
1.3.6.1.2.1.25.3.2.1.5.196609|2|2
1.3.6.1.2.1.25.3.2.1.5.196610|2|2
1.3.6.1.2.1.25.3.2.1.5.196611|2|2
1.3.6.1.2.1.25.3.2.1.5.262145|2|2
1.3.6.1.2.1.25.3.2.1.5.262146|2|5
1.3.6.1.2.1.25.3.2.1.5.262147|2|2
1.3.6.1.2.1.25.3.2.1.5.262148|2|2
1.3.6.1.2.1.25.3.2.1.6.262145|65|0
1.3.6.1.2.1.25.3.2.1.6.262146|65|0
1.3.6.1.2.1.25.3.2.1.6.262147|65|0
1.3.6.1.2.1.25.3.2.1.6.262148|65|0
1.3.6.1.2.1.25.3.3.1.1.196608|6|0.0
1.3.6.1.2.1.25.3.3.1.1.196609|6|0.0
1.3.6.1.2.1.25.3.3.1.1.196610|6|0.0
1.3.6.1.2.1.25.3.3.1.1.196611|6|0.0
1.3.6.1.2.1.25.3.3.1.2.196608|2|3
1.3.6.1.2.1.25.3.3.1.2.196609|2|2
1.3.6.1.2.1.25.3.3.1.2.196610|2|22
1.3.6.1.2.1.25.3.3.1.2.196611|2|2
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|eth0
1.3.6.1.2.1.31.1.1.1.1.4|4|eth1
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.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.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.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.6.1|70|11872246026
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|7858121853
1.3.6.1.2.1.31.1.1.1.6.4|70|39245162388
1.3.6.1.2.1.31.1.1.1.7.1|70|93510915
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|28122352
1.3.6.1.2.1.31.1.1.1.7.4|70|192999735
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.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.10.1|70|11872246026
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|4527063313
1.3.6.1.2.1.31.1.1.1.10.4|70|40469111518
1.3.6.1.2.1.31.1.1.1.11.1|70|93510915
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|20551847
1.3.6.1.2.1.31.1.1.1.11.4|70|185342314
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.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.15.1|66|10
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|1000
1.3.6.1.2.1.31.1.1.1.15.4|66|1000
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.17.1|2|2
1.3.6.1.2.1.31.1.1.1.17.2|2|1
1.3.6.1.2.1.31.1.1.1.17.3|2|1
1.3.6.1.2.1.31.1.1.1.17.4|2|1
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.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.4.1.2021.4.3.0|2|8393956
1.3.6.1.4.1.2021.4.4.0|2|8322716
1.3.6.1.4.1.2021.4.5.0|2|4054400
1.3.6.1.4.1.2021.4.6.0|2|121164
1.3.6.1.4.1.2021.4.11.0|2|8443880
1.3.6.1.4.1.2021.4.13.0|2|948
1.3.6.1.4.1.2021.4.14.0|2|160248
1.3.6.1.4.1.2021.4.15.0|2|3231928
1.3.6.1.4.1.2021.10.1.5.1|2|17
1.3.6.1.4.1.2021.10.1.5.2|2|9
1.3.6.1.4.1.2021.10.1.5.3|2|12
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|401
1.3.6.1.4.1.2021.11.6.0|2|0
1.3.6.1.4.1.2021.11.7.0|2|258
1.3.6.1.4.1.2021.11.8.0|2|359
1.3.6.1.4.1.2021.11.9.0|2|5
1.3.6.1.4.1.2021.11.10.0|2|0
1.3.6.1.4.1.2021.11.11.0|2|93
1.3.6.1.4.1.2021.11.50.0|65|6288903
1.3.6.1.4.1.2021.11.51.0|65|0
1.3.6.1.4.1.2021.11.52.0|65|3810287
1.3.6.1.4.1.2021.11.53.0|65|2001074318
1.3.6.1.4.1.2021.11.54.0|65|3658483
1.3.6.1.4.1.2021.11.55.0|65|0
1.3.6.1.4.1.2021.11.56.0|65|2233
1.3.6.1.4.1.2021.11.57.0|65|2944448042
1.3.6.1.4.1.2021.11.58.0|65|35045668
1.3.6.1.4.1.2021.11.59.0|65|1136347788
1.3.6.1.4.1.2021.11.60.0|65|1413937101
1.3.6.1.4.1.2021.11.61.0|65|1687100
1.3.6.1.4.1.2021.11.62.0|65|18
1.3.6.1.4.1.2021.11.63.0|65|17810
1.3.6.1.4.1.2021.11.64.0|65|0
1.3.6.1.4.1.2021.11.65.0|65|0
1.3.6.1.4.1.2021.11.66.0|65|0
1.3.6.1.4.1.2021.11.67.0|2|4
1.3.6.1.4.1.2021.50.3.101.1|2|31
1.3.6.1.4.1.2021.50.45|2|9
1.3.6.1.4.1.2021.50.46|2|17
1.3.6.1.4.1.2021.50.70|2|1
1.3.6.1.4.1.2021.50.110.1.1|4|rural-dsl[1]
1.3.6.1.4.1.2021.50.110.1.30|4|MVTC[30]
1.3.6.1.4.1.2021.50.110.1.31|4|FixedWirelessLamberton[31]
1.3.6.1.4.1.2021.50.110.1.32|4|FixedWirelessSanborn[32]
1.3.6.1.4.1.2021.50.110.1.33|4|FixedWirelessStorden[33]
1.3.6.1.4.1.2021.50.110.1.34|4|FixedWirelessWalnutGrove[34]
1.3.6.1.4.1.2021.50.110.1.35|4|FixedWirelessWabasso[35]
1.3.6.1.4.1.2021.50.110.1.36|4|AureliaRing2[36]
1.3.6.1.4.1.2021.50.110.1.37|4|FixedWirelessStGeorge[37]
1.3.6.1.4.1.2021.50.110.1.38|4|FixedWirelessDassel[38]
1.3.6.1.4.1.2021.50.110.1.39|4|FixedWirelessMinnieBelle[39]
1.3.6.1.4.1.2021.50.110.1.40|4|FixedWirelessLitchfield[40]
1.3.6.1.4.1.2021.50.110.1.41|4|FixedWirelessHector[41]
1.3.6.1.4.1.2021.50.110.1.42|4|FixedWirelessBuffaloLake[42]
1.3.6.1.4.1.2021.50.110.1.43|4|AureliaRing1[43]
1.3.6.1.4.1.2021.50.110.2.1|4|SEOccam[1]
1.3.6.1.4.1.2021.50.120.1.1|2|6957
1.3.6.1.4.1.2021.50.120.1.30|2|661
1.3.6.1.4.1.2021.50.120.1.31|2|77
1.3.6.1.4.1.2021.50.120.1.32|2|12
1.3.6.1.4.1.2021.50.120.1.33|2|6
1.3.6.1.4.1.2021.50.120.1.34|2|10
1.3.6.1.4.1.2021.50.120.1.35|2|10
1.3.6.1.4.1.2021.50.120.1.36|2|1
1.3.6.1.4.1.2021.50.120.1.37|2|10
1.3.6.1.4.1.2021.50.120.1.38|2|3
1.3.6.1.4.1.2021.50.120.1.39|2|0
1.3.6.1.4.1.2021.50.120.1.40|2|1
1.3.6.1.4.1.2021.50.120.1.41|2|0
1.3.6.1.4.1.2021.50.120.1.42|2|0
1.3.6.1.4.1.2021.50.120.1.43|2|460
1.3.6.1.4.1.2021.50.120.2.1|2|0
1.3.6.1.4.1.2021.50.130.1.1|2|7911
1.3.6.1.4.1.2021.50.130.1.30|2|1892
1.3.6.1.4.1.2021.50.130.1.31|2|123
1.3.6.1.4.1.2021.50.130.1.32|2|123
1.3.6.1.4.1.2021.50.130.1.33|2|123
1.3.6.1.4.1.2021.50.130.1.34|2|123
1.3.6.1.4.1.2021.50.130.1.35|2|123
1.3.6.1.4.1.2021.50.130.1.36|2|251
1.3.6.1.4.1.2021.50.130.1.37|2|123
1.3.6.1.4.1.2021.50.130.1.38|2|123
1.3.6.1.4.1.2021.50.130.1.39|2|123
1.3.6.1.4.1.2021.50.130.1.40|2|123
1.3.6.1.4.1.2021.50.130.1.41|2|123
1.3.6.1.4.1.2021.50.130.1.42|2|123
1.3.6.1.4.1.2021.50.130.1.43|2|502
1.3.6.1.4.1.2021.50.130.2.1|2|1409
1.3.6.1.4.1.2021.51.2.4.1.2.5.77.89.83.81.76.1|4|1587661212:1
1.3.6.1.4.1.2021.51.3.4.1.2.16.77.89.83.81.76.82.69.80.76.73.67.65.84.73.79.78.1|4|1587661212:1
1.3.6.1.4.1.2021.51.9.4.1.2.6.72.69.65.76.84.72.1|4|1587661212:1
1.3.6.1.4.1.2021.51.11.4.1.2.7.86.69.82.83.73.79.78.1|4|6.4.0
1.3.6.1.4.1.2021.51.12.4.1.2.7.76.73.67.69.78.83.69.1|4|FULL:0
1.3.6.1.4.1.2021.51.13.4.1.2.4.84.73.77.69.1|4|1587661251
1.3.6.1.4.1.2021.52.1.4.1.2.3.68.78.83.1|4|1587661212:1
1.3.6.1.4.1.2021.52.2.4.1.2.4.72.84.84.80.1|4|1587661212:1
1.3.6.1.4.1.2021.52.3.4.1.2.5.72.84.84.80.83.1|4|1587661212:1
1.3.6.1.4.1.2021.52.4.4.1.2.3.78.84.80.1|4|1587661218:1
1.3.6.1.4.1.2021.52.5.4.1.2.3.83.83.72.1|4|1587661218:1
1.3.6.1.4.1.2021.52.6.4.1.2.4.68.72.67.80.1|4|1587661218:1
1.3.6.1.4.1.2021.52.7.4.1.2.5.77.79.68.69.76.1|4|MODEL
1.3.6.1.4.1.2021.52.8.4.1.2.6.83.69.82.73.65.76.1|4|SERIALNUMBER
1.3.6.1.4.1.2021.52.9.4.1.2.5.68.72.67.80.54.1|4|1587661218:1
1.3.6.1.6.3.10.2.1.3.0|2|61236