mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
device: Added support for ArbOS (#8055)
This commit is contained in:
committed by
Neil Lathwood
parent
9a0b06e4de
commit
77e192208a
BIN
html/images/os/arbor.png
Normal file
BIN
html/images/os/arbor.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 9.4 KiB |
19
html/includes/graphs/device/arbos_flows.inc.php
Normal file
19
html/includes/graphs/device/arbos_flows.inc.php
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
$rrd_filename = rrd_name($device['hostname'], 'arbos_flows');
|
||||||
|
|
||||||
|
require 'includes/graphs/common.inc.php';
|
||||||
|
|
||||||
|
$ds = 'flows';
|
||||||
|
|
||||||
|
$colour_area = '9999cc';
|
||||||
|
$colour_line = '0000cc';
|
||||||
|
|
||||||
|
$colour_area_max = '9999cc';
|
||||||
|
|
||||||
|
$graph_max = 1;
|
||||||
|
$graph_min = 0;
|
||||||
|
|
||||||
|
$unit_text = 'flows';
|
||||||
|
|
||||||
|
require 'includes/graphs/generic_simplex.inc.php';
|
@@ -519,6 +519,11 @@ $config['graph_types']['device']['secureplatform_sessions']['section'] = 'firewa
|
|||||||
$config['graph_types']['device']['secureplatform_sessions']['order'] = 0;
|
$config['graph_types']['device']['secureplatform_sessions']['order'] = 0;
|
||||||
$config['graph_types']['device']['secureplatform_sessions']['descr'] = 'Active connections';
|
$config['graph_types']['device']['secureplatform_sessions']['descr'] = 'Active connections';
|
||||||
|
|
||||||
|
//arbos specific graphs
|
||||||
|
$config['graph_types']['device']['arbos_flows']['section'] = 'graphs';
|
||||||
|
$config['graph_types']['device']['arbos_flows']['order'] = '0';
|
||||||
|
$config['graph_types']['device']['arbos_flows']['descr'] = 'Accumulative flow count per SP device';
|
||||||
|
|
||||||
// Device Types
|
// Device Types
|
||||||
$i = 0;
|
$i = 0;
|
||||||
$config['device_types'][$i]['text'] = 'Servers';
|
$config['device_types'][$i]['text'] = 'Servers';
|
||||||
|
14
includes/definitions/arbos.yaml
Normal file
14
includes/definitions/arbos.yaml
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
os: arbos
|
||||||
|
text: 'ArbOS'
|
||||||
|
type: network
|
||||||
|
icon: arbor
|
||||||
|
group: arbor
|
||||||
|
over:
|
||||||
|
- { graph: device_bits, text: 'Device Traffic' }
|
||||||
|
- { graph: device_processor, text: 'CPU Usage' }
|
||||||
|
- { graph: device_mempool, text: 'Memory Usage' }
|
||||||
|
discovery:
|
||||||
|
- sysObjectID:
|
||||||
|
- .1.3.6.1.4.1.9694.1.4
|
||||||
|
mib_dir:
|
||||||
|
- arbornet
|
20
includes/polling/os/arbos.inc.php
Normal file
20
includes/polling/os/arbos.inc.php
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
use LibreNMS\RRD\RrdDefinition;
|
||||||
|
|
||||||
|
$oids = snmp_get_multi($device, 'deviceTotalFlows.0', '-OQUs', 'PEAKFLOW-SP-MIB');
|
||||||
|
|
||||||
|
$flows = $oids[0]['deviceTotalFlows'];
|
||||||
|
|
||||||
|
if (is_numeric($flows)) {
|
||||||
|
$rrd_def = RrdDefinition::make()->addDataset('flows', 'GAUGE', 0, 3000000);
|
||||||
|
|
||||||
|
$fields = array(
|
||||||
|
'flows' => $flows,
|
||||||
|
);
|
||||||
|
|
||||||
|
$tags = compact('rrd_def');
|
||||||
|
data_update($device, 'arbos_flows', $tags, $fields);
|
||||||
|
|
||||||
|
$graphs['arbos_flows'] = true;
|
||||||
|
}
|
610
mibs/arbornet/ARBORNET-PEAKFLOW-DOS-MIB
Normal file
610
mibs/arbornet/ARBORNET-PEAKFLOW-DOS-MIB
Normal file
@@ -0,0 +1,610 @@
|
|||||||
|
--
|
||||||
|
--
|
||||||
|
-- ARBOR NETWORKS
|
||||||
|
--
|
||||||
|
--
|
||||||
|
--
|
||||||
|
-- File: ARBORNET-PDOS.txt
|
||||||
|
-- Created: May, 2001
|
||||||
|
-- Purpose: Peakflow DoS MIB
|
||||||
|
-- describe any data which we provide
|
||||||
|
-- describe any traps which we send
|
||||||
|
--
|
||||||
|
--
|
||||||
|
|
||||||
|
PEAKFLOW-DOS-MIB DEFINITIONS ::= BEGIN
|
||||||
|
|
||||||
|
|
||||||
|
IMPORTS
|
||||||
|
MODULE-IDENTITY,
|
||||||
|
OBJECT-TYPE,
|
||||||
|
NOTIFICATION-TYPE,
|
||||||
|
TimeTicks,
|
||||||
|
Integer32,
|
||||||
|
Unsigned32,
|
||||||
|
IpAddress
|
||||||
|
FROM SNMPv2-SMI
|
||||||
|
DisplayString
|
||||||
|
FROM SNMPv2-TC
|
||||||
|
arbornetworksProducts
|
||||||
|
FROM ARBOR-SMI;
|
||||||
|
|
||||||
|
|
||||||
|
-- =================================================================================
|
||||||
|
|
||||||
|
peakflowDosMIB MODULE-IDENTITY
|
||||||
|
LAST-UPDATED "201406240000Z" -- June 24, 2014
|
||||||
|
ORGANIZATION "Arbor Networks, Inc."
|
||||||
|
CONTACT-INFO
|
||||||
|
" Arbor Networks, Inc.
|
||||||
|
Arbor Technical Assistance Center
|
||||||
|
|
||||||
|
Postal: 76 Blanchard Road
|
||||||
|
Burlington, MA 01803
|
||||||
|
USA
|
||||||
|
|
||||||
|
Tel: +1 866 212 7267 (toll free)
|
||||||
|
+1 781 362 4300
|
||||||
|
Email: support@arbor.net "
|
||||||
|
|
||||||
|
DESCRIPTION
|
||||||
|
"Peakflow DoS MIB"
|
||||||
|
|
||||||
|
-- Revision log, reverse chrono
|
||||||
|
REVISION "201511170000Z" -- November 17, 2015
|
||||||
|
DESCRIPTION "Add pdosAnomalyIpVersion to Anomaly notifications"
|
||||||
|
|
||||||
|
REVISION "201406240000Z" -- June 24, 2014
|
||||||
|
DESCRIPTION "Add pdosAnomalyIpVersion"
|
||||||
|
|
||||||
|
REVISION "201308190000Z" -- August 19, 2013
|
||||||
|
DESCRIPTION "Updated contact information"
|
||||||
|
|
||||||
|
REVISION "201005200000Z" -- May 20, 2010
|
||||||
|
DESCRIPTION "Correct values of max-access for objets."
|
||||||
|
|
||||||
|
REVISION "200903300000Z" -- March 30, 2009
|
||||||
|
DESCRIPTION "Update contact group name."
|
||||||
|
|
||||||
|
REVISION "200811130000Z" -- November 13, 2008
|
||||||
|
DESCRIPTION "Update company address."
|
||||||
|
|
||||||
|
REVISION "200805080000Z" -- May 8, 2008
|
||||||
|
DESCRIPTION "Updated SIZE of pdosAnomalyTcpFlags to be (0..8)."
|
||||||
|
|
||||||
|
REVISION "200804240000Z" -- April 24, 2008
|
||||||
|
DESCRIPTION "Add pdosAnomalyProto to dnsMisuseAnomaly trap"
|
||||||
|
|
||||||
|
REVISION "200801080000Z" -- January 8, 2008
|
||||||
|
DESCRIPTION "Clean up use of pdosAnomalyProto and pdosTcpFlags"
|
||||||
|
|
||||||
|
REVISION "200712140000Z" -- December 14, 2007
|
||||||
|
DESCRIPTION "Add udpMisuseAnomaly."
|
||||||
|
|
||||||
|
REVISION "200511230000Z" -- November 23, 2005
|
||||||
|
DESCRIPTION "Update status of obsolete OIDs."
|
||||||
|
|
||||||
|
REVISION "200509120000Z" -- September 12, 2005
|
||||||
|
DESCRIPTION "Apply fixes from validation."
|
||||||
|
|
||||||
|
REVISION "200508260000Z" -- August 26, 2005
|
||||||
|
DESCRIPTION "Adjust trap variable order to match what is sent."
|
||||||
|
|
||||||
|
REVISION "200505090000Z" -- May 9, 2005
|
||||||
|
DESCRIPTION "Add pdosAnomalyClassification to add DoS alert
|
||||||
|
classification."
|
||||||
|
|
||||||
|
REVISION "200502110000Z" -- February 11, 2005
|
||||||
|
DESCRIPTION "Increase size of interfaces entry from 512 to 1024
|
||||||
|
characters"
|
||||||
|
|
||||||
|
REVISION "200411100000Z" -- November 10, 2004
|
||||||
|
DESCRIPTION "Add pdosAnomalyRouterInterfacesChange to add input/output
|
||||||
|
interfaces."
|
||||||
|
|
||||||
|
REVISION "200410260000Z" -- October 26, 2004
|
||||||
|
DESCRIPTION "Change pdosAnomalyLinkPercent to an Unsigned32 with no
|
||||||
|
range support."
|
||||||
|
|
||||||
|
REVISION "200105010000Z" -- May 1, 2001
|
||||||
|
DESCRIPTION "Initial writing and import."
|
||||||
|
|
||||||
|
::= { arbornetworksProducts 1 }
|
||||||
|
|
||||||
|
|
||||||
|
peakflowDosCMI OBJECT IDENTIFIER ::= { peakflowDosMIB 1 }
|
||||||
|
peakflowDosMgr OBJECT IDENTIFIER ::= { peakflowDosMIB 2 }
|
||||||
|
peakflowDosTraps OBJECT IDENTIFIER ::= { peakflowDosMIB 3 }
|
||||||
|
|
||||||
|
|
||||||
|
-- =================================================================================
|
||||||
|
|
||||||
|
|
||||||
|
-- =================================================================================
|
||||||
|
--
|
||||||
|
-- decorated data
|
||||||
|
--
|
||||||
|
|
||||||
|
|
||||||
|
pdosUrl OBJECT-TYPE
|
||||||
|
SYNTAX DisplayString (SIZE (1..256))
|
||||||
|
MAX-ACCESS accessible-for-notify
|
||||||
|
STATUS current
|
||||||
|
DESCRIPTION
|
||||||
|
"This URL is a back reference to the Peakflow SP leader
|
||||||
|
that has details about the anomaly."
|
||||||
|
::= { peakflowDosCMI 1 }
|
||||||
|
|
||||||
|
pdosAnomalyId OBJECT-TYPE
|
||||||
|
SYNTAX Integer32
|
||||||
|
MAX-ACCESS accessible-for-notify
|
||||||
|
STATUS current
|
||||||
|
DESCRIPTION
|
||||||
|
"Identifies the Peakflow anomaly"
|
||||||
|
::= { peakflowDosCMI 2 }
|
||||||
|
|
||||||
|
pdosAnomalyDirection OBJECT-TYPE
|
||||||
|
SYNTAX DisplayString (SIZE (1..64))
|
||||||
|
MAX-ACCESS accessible-for-notify
|
||||||
|
STATUS current
|
||||||
|
DESCRIPTION
|
||||||
|
"Description of anomaly direction"
|
||||||
|
::= { peakflowDosCMI 3 }
|
||||||
|
|
||||||
|
pdosAnomalyResource OBJECT-TYPE
|
||||||
|
SYNTAX DisplayString (SIZE (1..256))
|
||||||
|
MAX-ACCESS accessible-for-notify
|
||||||
|
STATUS current
|
||||||
|
DESCRIPTION
|
||||||
|
"Description of anomaly resource"
|
||||||
|
::= { peakflowDosCMI 4 }
|
||||||
|
|
||||||
|
pdosHeartbeatSource OBJECT-TYPE
|
||||||
|
SYNTAX DisplayString (SIZE (1..256))
|
||||||
|
MAX-ACCESS accessible-for-notify
|
||||||
|
STATUS obsolete
|
||||||
|
DESCRIPTION
|
||||||
|
"Describes the collection which lost heartbeat"
|
||||||
|
::= { peakflowDosCMI 5 }
|
||||||
|
|
||||||
|
internalErrorLocation OBJECT-TYPE
|
||||||
|
SYNTAX DisplayString (SIZE (1..256))
|
||||||
|
MAX-ACCESS accessible-for-notify
|
||||||
|
STATUS obsolete
|
||||||
|
DESCRIPTION
|
||||||
|
"Describes the location of the internal error"
|
||||||
|
::= { peakflowDosCMI 6 }
|
||||||
|
|
||||||
|
internalErrorReason OBJECT-TYPE
|
||||||
|
SYNTAX DisplayString (SIZE (1..256))
|
||||||
|
MAX-ACCESS accessible-for-notify
|
||||||
|
STATUS obsolete
|
||||||
|
DESCRIPTION
|
||||||
|
"Describes the location of the internal error"
|
||||||
|
::= { peakflowDosCMI 7 }
|
||||||
|
|
||||||
|
pdosAnomalyProto OBJECT-TYPE
|
||||||
|
SYNTAX DisplayString (SIZE (1..256))
|
||||||
|
MAX-ACCESS accessible-for-notify
|
||||||
|
STATUS current
|
||||||
|
DESCRIPTION
|
||||||
|
"IP protocols associated with the anomaly"
|
||||||
|
::= { peakflowDosCMI 8 }
|
||||||
|
|
||||||
|
pdosAnomalyLinkPercent OBJECT-TYPE
|
||||||
|
SYNTAX Unsigned32
|
||||||
|
MAX-ACCESS accessible-for-notify
|
||||||
|
STATUS current
|
||||||
|
DESCRIPTION
|
||||||
|
"Percent of link usage by an anomaly"
|
||||||
|
::= { peakflowDosCMI 9 }
|
||||||
|
|
||||||
|
pdosAnomalyAlertCnt OBJECT-TYPE
|
||||||
|
SYNTAX Integer32
|
||||||
|
MAX-ACCESS accessible-for-notify
|
||||||
|
STATUS obsolete -- OBSOLETE
|
||||||
|
DESCRIPTION
|
||||||
|
"Number of times a notification has been issued
|
||||||
|
for this anomaly"
|
||||||
|
::= { peakflowDosCMI 10 }
|
||||||
|
|
||||||
|
pdosAnomalyStart OBJECT-TYPE
|
||||||
|
SYNTAX DisplayString (SIZE (1..64))
|
||||||
|
MAX-ACCESS accessible-for-notify
|
||||||
|
STATUS current
|
||||||
|
DESCRIPTION
|
||||||
|
"Textual description of the time the anomaly started"
|
||||||
|
::= { peakflowDosCMI 11 }
|
||||||
|
|
||||||
|
pdosAnomalyDuration OBJECT-TYPE
|
||||||
|
SYNTAX TimeTicks
|
||||||
|
MAX-ACCESS accessible-for-notify
|
||||||
|
STATUS current
|
||||||
|
DESCRIPTION
|
||||||
|
"Duration (in centiseconds) since the start of the
|
||||||
|
anomaly"
|
||||||
|
::= { peakflowDosCMI 12 }
|
||||||
|
|
||||||
|
pdosAnomalyTcpFlags OBJECT-TYPE
|
||||||
|
SYNTAX DisplayString (SIZE (0..8))
|
||||||
|
MAX-ACCESS accessible-for-notify
|
||||||
|
STATUS current
|
||||||
|
DESCRIPTION
|
||||||
|
"TCP flags associated with the anomaly signature"
|
||||||
|
::= { peakflowDosCMI 13 }
|
||||||
|
|
||||||
|
pdosAnomalyRouter OBJECT-TYPE
|
||||||
|
SYNTAX IpAddress
|
||||||
|
MAX-ACCESS accessible-for-notify
|
||||||
|
STATUS current
|
||||||
|
DESCRIPTION
|
||||||
|
"The router which is either not sending NetFlow
|
||||||
|
or has resumed sending NetFlow"
|
||||||
|
::= { peakflowDosCMI 14 }
|
||||||
|
|
||||||
|
pdosAnomalyRouterInterfaces OBJECT-TYPE
|
||||||
|
SYNTAX DisplayString (SIZE (1..1024))
|
||||||
|
MAX-ACCESS accessible-for-notify
|
||||||
|
STATUS current
|
||||||
|
DESCRIPTION
|
||||||
|
"Router interfaces involved in the anomaly"
|
||||||
|
::= { peakflowDosCMI 15 }
|
||||||
|
|
||||||
|
pdosAnomalyClassification OBJECT-TYPE
|
||||||
|
SYNTAX DisplayString (SIZE (1..8))
|
||||||
|
MAX-ACCESS accessible-for-notify
|
||||||
|
STATUS current
|
||||||
|
DESCRIPTION
|
||||||
|
"Classification of the anomaly -- high, medium, or low."
|
||||||
|
::= { peakflowDosCMI 16 }
|
||||||
|
|
||||||
|
pdosAnomalyIpVersion OBJECT-TYPE
|
||||||
|
SYNTAX Integer32
|
||||||
|
MAX-ACCESS accessible-for-notify
|
||||||
|
STATUS current
|
||||||
|
DESCRIPTION
|
||||||
|
"IP version of the anomaly"
|
||||||
|
::= { peakflowDosCMI 17 }
|
||||||
|
|
||||||
|
-- =================================================================================
|
||||||
|
-- Notifications:
|
||||||
|
--
|
||||||
|
|
||||||
|
peakflowDosTrapsEnumerate OBJECT IDENTIFIER ::= { peakflowDosTraps 0 }
|
||||||
|
|
||||||
|
bandwidthAnomaly NOTIFICATION-TYPE
|
||||||
|
OBJECTS {
|
||||||
|
pdosAnomalyId,
|
||||||
|
pdosAnomalyDirection,
|
||||||
|
pdosAnomalyIpVersion,
|
||||||
|
pdosAnomalyResource,
|
||||||
|
pdosAnomalyLinkPercent,
|
||||||
|
pdosAnomalyClassification,
|
||||||
|
pdosAnomalyStart,
|
||||||
|
pdosAnomalyDuration,
|
||||||
|
pdosAnomalyRouterInterfaces,
|
||||||
|
pdosUrl
|
||||||
|
}
|
||||||
|
STATUS current
|
||||||
|
DESCRIPTION
|
||||||
|
"Bandwidth anomaly detected by Peakflow"
|
||||||
|
::= { peakflowDosTrapsEnumerate 1 }
|
||||||
|
|
||||||
|
tcpflagsAnomaly NOTIFICATION-TYPE
|
||||||
|
OBJECTS {
|
||||||
|
pdosAnomalyId,
|
||||||
|
pdosAnomalyDirection,
|
||||||
|
pdosAnomalyIpVersion,
|
||||||
|
pdosAnomalyResource,
|
||||||
|
pdosAnomalyLinkPercent,
|
||||||
|
pdosAnomalyClassification,
|
||||||
|
pdosAnomalyStart,
|
||||||
|
pdosAnomalyDuration,
|
||||||
|
pdosAnomalyRouterInterfaces,
|
||||||
|
pdosUrl,
|
||||||
|
pdosAnomalyTcpFlags
|
||||||
|
}
|
||||||
|
STATUS obsolete
|
||||||
|
DESCRIPTION
|
||||||
|
"TCP flags anomaly detected by Peakflow"
|
||||||
|
::= { peakflowDosTrapsEnumerate 2 }
|
||||||
|
|
||||||
|
protocolAnomaly NOTIFICATION-TYPE
|
||||||
|
OBJECTS {
|
||||||
|
pdosAnomalyId,
|
||||||
|
pdosAnomalyDirection,
|
||||||
|
pdosAnomalyIpVersion,
|
||||||
|
pdosAnomalyResource,
|
||||||
|
pdosAnomalyLinkPercent,
|
||||||
|
pdosAnomalyClassification,
|
||||||
|
pdosAnomalyStart,
|
||||||
|
pdosAnomalyDuration,
|
||||||
|
pdosAnomalyRouterInterfaces,
|
||||||
|
pdosUrl,
|
||||||
|
pdosAnomalyProto
|
||||||
|
}
|
||||||
|
STATUS current
|
||||||
|
DESCRIPTION
|
||||||
|
"Protocol anomaly detected by Peakflow"
|
||||||
|
::= { peakflowDosTrapsEnumerate 3 }
|
||||||
|
|
||||||
|
heartbeatLoss NOTIFICATION-TYPE
|
||||||
|
OBJECTS {
|
||||||
|
pdosHeartbeatSource
|
||||||
|
}
|
||||||
|
STATUS obsolete
|
||||||
|
DESCRIPTION
|
||||||
|
"Missing heartbeat from SP device to leader"
|
||||||
|
::= { peakflowDosTrapsEnumerate 4 }
|
||||||
|
|
||||||
|
internalError NOTIFICATION-TYPE
|
||||||
|
OBJECTS {
|
||||||
|
internalErrorLocation,
|
||||||
|
internalErrorReason
|
||||||
|
}
|
||||||
|
STATUS obsolete
|
||||||
|
DESCRIPTION
|
||||||
|
"Internal inconsistency or error"
|
||||||
|
::= { peakflowDosTrapsEnumerate 5 }
|
||||||
|
|
||||||
|
-- Not all anomaly types have proto or flags.
|
||||||
|
anomalyDone NOTIFICATION-TYPE
|
||||||
|
OBJECTS {
|
||||||
|
pdosAnomalyId,
|
||||||
|
pdosAnomalyDirection,
|
||||||
|
pdosAnomalyIpVersion,
|
||||||
|
pdosAnomalyResource,
|
||||||
|
pdosAnomalyLinkPercent,
|
||||||
|
pdosAnomalyClassification,
|
||||||
|
pdosAnomalyStart,
|
||||||
|
pdosAnomalyDuration,
|
||||||
|
pdosAnomalyRouterInterfaces,
|
||||||
|
pdosUrl
|
||||||
|
}
|
||||||
|
STATUS current
|
||||||
|
DESCRIPTION
|
||||||
|
"Some previously detected anomaly is no longer active"
|
||||||
|
::= { peakflowDosTrapsEnumerate 6 }
|
||||||
|
|
||||||
|
netflowMissing NOTIFICATION-TYPE
|
||||||
|
OBJECTS {
|
||||||
|
pdosAnomalyRouter
|
||||||
|
}
|
||||||
|
STATUS obsolete
|
||||||
|
DESCRIPTION
|
||||||
|
"NetFlow has not been received from a NetFlow
|
||||||
|
transmitting router"
|
||||||
|
::= { peakflowDosTrapsEnumerate 7 }
|
||||||
|
|
||||||
|
netflowMissingDone NOTIFICATION-TYPE
|
||||||
|
OBJECTS {
|
||||||
|
pdosAnomalyRouter
|
||||||
|
}
|
||||||
|
STATUS obsolete
|
||||||
|
DESCRIPTION
|
||||||
|
"NetFlow has resumed from a router which previously
|
||||||
|
was not forwarding NetFlow data"
|
||||||
|
::= { peakflowDosTrapsEnumerate 8 }
|
||||||
|
|
||||||
|
icmpMisuseAnomaly NOTIFICATION-TYPE
|
||||||
|
OBJECTS {
|
||||||
|
pdosAnomalyId,
|
||||||
|
pdosAnomalyDirection,
|
||||||
|
pdosAnomalyIpVersion,
|
||||||
|
pdosAnomalyResource,
|
||||||
|
pdosAnomalyLinkPercent,
|
||||||
|
pdosAnomalyClassification,
|
||||||
|
pdosAnomalyStart,
|
||||||
|
pdosAnomalyDuration,
|
||||||
|
pdosAnomalyRouterInterfaces,
|
||||||
|
pdosUrl,
|
||||||
|
pdosAnomalyProto
|
||||||
|
}
|
||||||
|
STATUS current
|
||||||
|
DESCRIPTION
|
||||||
|
"ICMP misuse anomaly detected by Peakflow"
|
||||||
|
::= { peakflowDosTrapsEnumerate 9 }
|
||||||
|
|
||||||
|
tcpNullMisuseAnomaly NOTIFICATION-TYPE
|
||||||
|
OBJECTS {
|
||||||
|
pdosAnomalyId,
|
||||||
|
pdosAnomalyDirection,
|
||||||
|
pdosAnomalyIpVersion,
|
||||||
|
pdosAnomalyResource,
|
||||||
|
pdosAnomalyLinkPercent,
|
||||||
|
pdosAnomalyClassification,
|
||||||
|
pdosAnomalyStart,
|
||||||
|
pdosAnomalyDuration,
|
||||||
|
pdosAnomalyRouterInterfaces,
|
||||||
|
pdosUrl,
|
||||||
|
pdosAnomalyProto,
|
||||||
|
pdosAnomalyTcpFlags
|
||||||
|
}
|
||||||
|
STATUS current
|
||||||
|
DESCRIPTION
|
||||||
|
"TCP Null misuse anomaly detected by Peakflow"
|
||||||
|
::= { peakflowDosTrapsEnumerate 10 }
|
||||||
|
|
||||||
|
tcpSynMisuseAnomaly NOTIFICATION-TYPE
|
||||||
|
OBJECTS {
|
||||||
|
pdosAnomalyId,
|
||||||
|
pdosAnomalyDirection,
|
||||||
|
pdosAnomalyIpVersion,
|
||||||
|
pdosAnomalyResource,
|
||||||
|
pdosAnomalyLinkPercent,
|
||||||
|
pdosAnomalyClassification,
|
||||||
|
pdosAnomalyStart,
|
||||||
|
pdosAnomalyDuration,
|
||||||
|
pdosAnomalyRouterInterfaces,
|
||||||
|
pdosUrl,
|
||||||
|
pdosAnomalyProto,
|
||||||
|
pdosAnomalyTcpFlags
|
||||||
|
}
|
||||||
|
STATUS current
|
||||||
|
DESCRIPTION
|
||||||
|
"TCP SYN misuse anomaly detected by Peakflow"
|
||||||
|
::= { peakflowDosTrapsEnumerate 11 }
|
||||||
|
|
||||||
|
ipNullMisuseAnomaly NOTIFICATION-TYPE
|
||||||
|
OBJECTS {
|
||||||
|
pdosAnomalyId,
|
||||||
|
pdosAnomalyDirection,
|
||||||
|
pdosAnomalyIpVersion,
|
||||||
|
pdosAnomalyResource,
|
||||||
|
pdosAnomalyLinkPercent,
|
||||||
|
pdosAnomalyClassification,
|
||||||
|
pdosAnomalyStart,
|
||||||
|
pdosAnomalyDuration,
|
||||||
|
pdosAnomalyRouterInterfaces,
|
||||||
|
pdosUrl
|
||||||
|
}
|
||||||
|
STATUS current
|
||||||
|
DESCRIPTION
|
||||||
|
"IP Null misuse anomaly detected by Peakflow"
|
||||||
|
::= { peakflowDosTrapsEnumerate 12 }
|
||||||
|
|
||||||
|
ipFragMisuseAnomaly NOTIFICATION-TYPE
|
||||||
|
OBJECTS {
|
||||||
|
pdosAnomalyId,
|
||||||
|
pdosAnomalyDirection,
|
||||||
|
pdosAnomalyIpVersion,
|
||||||
|
pdosAnomalyResource,
|
||||||
|
pdosAnomalyLinkPercent,
|
||||||
|
pdosAnomalyClassification,
|
||||||
|
pdosAnomalyStart,
|
||||||
|
pdosAnomalyDuration,
|
||||||
|
pdosAnomalyRouterInterfaces,
|
||||||
|
pdosUrl,
|
||||||
|
pdosAnomalyProto
|
||||||
|
}
|
||||||
|
STATUS current
|
||||||
|
DESCRIPTION
|
||||||
|
"IP Fragment misuse anomaly detected by Peakflow"
|
||||||
|
::= { peakflowDosTrapsEnumerate 13 }
|
||||||
|
|
||||||
|
ipPrivateMisuseAnomaly NOTIFICATION-TYPE
|
||||||
|
OBJECTS {
|
||||||
|
pdosAnomalyId,
|
||||||
|
pdosAnomalyDirection,
|
||||||
|
pdosAnomalyIpVersion,
|
||||||
|
pdosAnomalyResource,
|
||||||
|
pdosAnomalyLinkPercent,
|
||||||
|
pdosAnomalyClassification,
|
||||||
|
pdosAnomalyStart,
|
||||||
|
pdosAnomalyDuration,
|
||||||
|
pdosAnomalyRouterInterfaces,
|
||||||
|
pdosUrl
|
||||||
|
}
|
||||||
|
STATUS current
|
||||||
|
DESCRIPTION
|
||||||
|
"IP Private misuse anomaly detected by Peakflow"
|
||||||
|
::= { peakflowDosTrapsEnumerate 14 }
|
||||||
|
|
||||||
|
heartbeatLossDone NOTIFICATION-TYPE
|
||||||
|
OBJECTS {
|
||||||
|
pdosHeartbeatSource
|
||||||
|
}
|
||||||
|
STATUS obsolete
|
||||||
|
DESCRIPTION
|
||||||
|
"Heartbeat from SP device to leader now works"
|
||||||
|
::= { peakflowDosTrapsEnumerate 15 }
|
||||||
|
|
||||||
|
tcpRstMisuseAnomaly NOTIFICATION-TYPE
|
||||||
|
OBJECTS {
|
||||||
|
pdosAnomalyId,
|
||||||
|
pdosAnomalyDirection,
|
||||||
|
pdosAnomalyIpVersion,
|
||||||
|
pdosAnomalyResource,
|
||||||
|
pdosAnomalyLinkPercent,
|
||||||
|
pdosAnomalyClassification,
|
||||||
|
pdosAnomalyStart,
|
||||||
|
pdosAnomalyDuration,
|
||||||
|
pdosAnomalyRouterInterfaces,
|
||||||
|
pdosUrl,
|
||||||
|
pdosAnomalyProto,
|
||||||
|
pdosAnomalyTcpFlags
|
||||||
|
}
|
||||||
|
STATUS current
|
||||||
|
DESCRIPTION
|
||||||
|
"TCP RST misuse anomaly detected by Peakflow"
|
||||||
|
::= { peakflowDosTrapsEnumerate 16 }
|
||||||
|
|
||||||
|
totalTrafficMisuseAnomaly NOTIFICATION-TYPE
|
||||||
|
OBJECTS {
|
||||||
|
pdosAnomalyId,
|
||||||
|
pdosAnomalyDirection,
|
||||||
|
pdosAnomalyIpVersion,
|
||||||
|
pdosAnomalyResource,
|
||||||
|
pdosAnomalyLinkPercent,
|
||||||
|
pdosAnomalyClassification,
|
||||||
|
pdosAnomalyStart,
|
||||||
|
pdosAnomalyDuration,
|
||||||
|
pdosAnomalyRouterInterfaces,
|
||||||
|
pdosUrl
|
||||||
|
}
|
||||||
|
STATUS current
|
||||||
|
DESCRIPTION
|
||||||
|
"Total Traffic misuse anomaly detected by Peakflow"
|
||||||
|
::= { peakflowDosTrapsEnumerate 17 }
|
||||||
|
|
||||||
|
fingerprintAnomaly NOTIFICATION-TYPE
|
||||||
|
OBJECTS {
|
||||||
|
pdosAnomalyId,
|
||||||
|
pdosAnomalyDirection,
|
||||||
|
pdosAnomalyIpVersion,
|
||||||
|
pdosAnomalyResource,
|
||||||
|
pdosAnomalyLinkPercent,
|
||||||
|
pdosAnomalyClassification,
|
||||||
|
pdosAnomalyStart,
|
||||||
|
pdosAnomalyDuration,
|
||||||
|
pdosAnomalyRouterInterfaces,
|
||||||
|
pdosUrl
|
||||||
|
}
|
||||||
|
STATUS current
|
||||||
|
DESCRIPTION
|
||||||
|
"Fingerprint anomaly detected by Peakflow"
|
||||||
|
::= { peakflowDosTrapsEnumerate 18 }
|
||||||
|
|
||||||
|
dnsMisuseAnomaly NOTIFICATION-TYPE
|
||||||
|
OBJECTS {
|
||||||
|
pdosAnomalyId,
|
||||||
|
pdosAnomalyDirection,
|
||||||
|
pdosAnomalyIpVersion,
|
||||||
|
pdosAnomalyResource,
|
||||||
|
pdosAnomalyLinkPercent,
|
||||||
|
pdosAnomalyClassification,
|
||||||
|
pdosAnomalyStart,
|
||||||
|
pdosAnomalyDuration,
|
||||||
|
pdosAnomalyRouterInterfaces,
|
||||||
|
pdosUrl,
|
||||||
|
pdosAnomalyProto
|
||||||
|
}
|
||||||
|
STATUS current
|
||||||
|
DESCRIPTION
|
||||||
|
"DNS misuse anomaly detected by Peakflow"
|
||||||
|
::= { peakflowDosTrapsEnumerate 19 }
|
||||||
|
|
||||||
|
udpMisuseAnomaly NOTIFICATION-TYPE
|
||||||
|
OBJECTS {
|
||||||
|
pdosAnomalyId,
|
||||||
|
pdosAnomalyDirection,
|
||||||
|
pdosAnomalyIpVersion,
|
||||||
|
pdosAnomalyResource,
|
||||||
|
pdosAnomalyLinkPercent,
|
||||||
|
pdosAnomalyClassification,
|
||||||
|
pdosAnomalyStart,
|
||||||
|
pdosAnomalyDuration,
|
||||||
|
pdosAnomalyRouterInterfaces,
|
||||||
|
pdosUrl,
|
||||||
|
pdosAnomalyProto
|
||||||
|
}
|
||||||
|
STATUS current
|
||||||
|
DESCRIPTION
|
||||||
|
"UDP misuse anomaly detected by Peakflow"
|
||||||
|
::= { peakflowDosTrapsEnumerate 20 }
|
||||||
|
|
||||||
|
|
||||||
|
-- =================================================================================
|
||||||
|
|
||||||
|
END
|
||||||
|
|
1775
mibs/arbornet/ARBORNET-PEAKFLOW-SP-MIB
Normal file
1775
mibs/arbornet/ARBORNET-PEAKFLOW-SP-MIB
Normal file
File diff suppressed because it is too large
Load Diff
1056
mibs/arbornet/ARBORNET-PEAKFLOW-TMS-MIB
Normal file
1056
mibs/arbornet/ARBORNET-PEAKFLOW-TMS-MIB
Normal file
File diff suppressed because it is too large
Load Diff
91
mibs/arbornet/ARBORNET-SMI
Normal file
91
mibs/arbornet/ARBORNET-SMI
Normal file
@@ -0,0 +1,91 @@
|
|||||||
|
--
|
||||||
|
--
|
||||||
|
-- ARBOR NETWORKS (c) 2001-2011
|
||||||
|
--
|
||||||
|
--
|
||||||
|
--
|
||||||
|
-- File: ARBORNET-SMI.txt
|
||||||
|
-- Created: May, 2001
|
||||||
|
-- Purpose:
|
||||||
|
-- arbornet smi... defined major subcomponents
|
||||||
|
--
|
||||||
|
-- This is the MIB extentions used by arbor networks
|
||||||
|
-- to describe generated traps. It will be further
|
||||||
|
-- modified to include new traps, and also to possibly
|
||||||
|
-- provide snmp agent responses.
|
||||||
|
--
|
||||||
|
--
|
||||||
|
|
||||||
|
ARBOR-SMI DEFINITIONS ::= BEGIN
|
||||||
|
|
||||||
|
IMPORTS
|
||||||
|
MODULE-IDENTITY,
|
||||||
|
OBJECT-IDENTITY,
|
||||||
|
enterprises
|
||||||
|
FROM SNMPv2-SMI;
|
||||||
|
|
||||||
|
arbornetworks MODULE-IDENTITY
|
||||||
|
LAST-UPDATED "201311140000Z" -- November 14, 2013
|
||||||
|
ORGANIZATION "Arbor Networks, Inc."
|
||||||
|
CONTACT-INFO " Arbor Networks, Inc.
|
||||||
|
Arbor Technical Assistance Center
|
||||||
|
|
||||||
|
Postal: 76 Blanchard Road
|
||||||
|
Burlington, MA 01803
|
||||||
|
USA
|
||||||
|
|
||||||
|
Tel: +1 866 212 7267 (toll free)
|
||||||
|
+1 781 362 4300
|
||||||
|
Email: support@arbor.net "
|
||||||
|
|
||||||
|
DESCRIPTION
|
||||||
|
"The Structure of Management Information for the
|
||||||
|
Arbor Networks enterprise."
|
||||||
|
|
||||||
|
-- Revision log, reverse chrono
|
||||||
|
REVISION "201311140000Z" -- November 14, 2013
|
||||||
|
DESCRIPTION "Add peakflowMobile product."
|
||||||
|
|
||||||
|
REVISION "201308190000Z" -- August 19, 2013
|
||||||
|
DESCRIPTION "Updated contact information"
|
||||||
|
|
||||||
|
REVISION "201107200000Z" -- July 20, 2011
|
||||||
|
DESCRIPTION "Added pravail productid."
|
||||||
|
|
||||||
|
REVISION "200903300000Z" -- March 30, 2009
|
||||||
|
DESCRIPTION "Update contact group name."
|
||||||
|
|
||||||
|
REVISION "200811130000Z" -- September 13, 2005
|
||||||
|
DESCRIPTION "Update company address. Add arborExperimental."
|
||||||
|
|
||||||
|
REVISION "200509120000Z" -- September 12, 2005
|
||||||
|
DESCRIPTION "Apply fixes from validation."
|
||||||
|
|
||||||
|
::= { enterprises 9694 }
|
||||||
|
|
||||||
|
arbornetworksProducts OBJECT-IDENTITY
|
||||||
|
STATUS current
|
||||||
|
DESCRIPTION
|
||||||
|
"arbornetworksProducts provides a root object identifier
|
||||||
|
from which MODULE-IDENTITY values may be assigned."
|
||||||
|
::= { arbornetworks 1 }
|
||||||
|
|
||||||
|
arborExperimental OBJECT-IDENTITY
|
||||||
|
STATUS current
|
||||||
|
DESCRIPTION
|
||||||
|
"arborExperimental provides a root object identifier
|
||||||
|
from which MODULE-IDENTITY for experimental purposes
|
||||||
|
may be assigned."
|
||||||
|
::= { arbornetworks 2 }
|
||||||
|
|
||||||
|
-- peakflowDosMIB OBJECT IDENTIFIER ::= { arbornetworksProducts 1 }
|
||||||
|
-- peakflowTrafficMIB OBJECT IDENTIFIER ::= { arbornetworksProducts 2 }
|
||||||
|
-- peakflowMowMIB OBJECT IDENTIFIER ::= { arbornetworksProducts 3 }
|
||||||
|
-- peakflowSPMIB OBJECT IDENTIFIER ::= { arbornetworksProducts 4 }
|
||||||
|
-- peakflowTmsMIB OBJECT IDENTIFIER ::= { arbornetworksProducts 5 }
|
||||||
|
-- pravailMIB OBJECT IDENTIFIER ::= { arbornetworksProducts 6 }
|
||||||
|
-- slsMIB OBJECT IDENTIFIER ::= { arbornetworksProducts 9 }
|
||||||
|
-- peakflowMobileMIB OBJECT IDENTIFIER ::= { arbornetworksProducts 10 }
|
||||||
|
-- arbuxMIB OBJECT IDENTIFIER ::= { arbornetworksProducts 11 }
|
||||||
|
|
||||||
|
END
|
1
sql-schema/229.sql
Normal file
1
sql-schema/229.sql
Normal file
@@ -0,0 +1 @@
|
|||||||
|
INSERT INTO `graph_types`(`graph_type`, `graph_subtype`, `graph_section`, `graph_descr`, `graph_order`) VALUES ('device', 'arbos_flows', 'graphs', 'Accumulative flow count per SP device', 0);
|
443
tests/snmpsim/arbos.snmprec
Normal file
443
tests/snmpsim/arbos.snmprec
Normal file
@@ -0,0 +1,443 @@
|
|||||||
|
1.3.6.1.2.1.1.1.0|4|Peakflow SP 8.3 (build HIU6) System Board Model: S2600CO Serial Number: XX00000000XXX
|
||||||
|
1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.9694.1.4
|
||||||
|
1.3.6.1.2.1.1.3.0|67|598218155
|
||||||
|
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|bond0
|
||||||
|
1.3.6.1.2.1.2.2.1.2.3|4|dummy0
|
||||||
|
1.3.6.1.2.1.2.2.1.2.4|4|Intel Corporation I350 Gigabit Network Connection
|
||||||
|
1.3.6.1.2.1.2.2.1.2.5|4|Intel Corporation I350 Gigabit Network Connection
|
||||||
|
1.3.6.1.2.1.2.2.1.2.6|4|Intel Corporation I350 Gigabit Network Connection
|
||||||
|
1.3.6.1.2.1.2.2.1.2.7|4|Intel Corporation I350 Gigabit Network Connection
|
||||||
|
1.3.6.1.2.1.2.2.1.2.8|4|Intel Corporation 82580 Gigabit Fiber Network Connection
|
||||||
|
1.3.6.1.2.1.2.2.1.2.9|4|Intel Corporation 82580 Gigabit Fiber Network Connection
|
||||||
|
1.3.6.1.2.1.2.2.1.2.10|4|Intel Corporation 82580 Gigabit Fiber Network Connection
|
||||||
|
1.3.6.1.2.1.2.2.1.2.11|4|Intel Corporation 82580 Gigabit Fiber Network Connection
|
||||||
|
1.3.6.1.2.1.2.2.1.2.12|4|sit0
|
||||||
|
1.3.6.1.2.1.2.2.1.2.13|4|ip6tnl0
|
||||||
|
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|6
|
||||||
|
1.3.6.1.2.1.2.2.1.3.3|2|6
|
||||||
|
1.3.6.1.2.1.2.2.1.3.4|2|6
|
||||||
|
1.3.6.1.2.1.2.2.1.3.5|2|6
|
||||||
|
1.3.6.1.2.1.2.2.1.3.6|2|6
|
||||||
|
1.3.6.1.2.1.2.2.1.3.7|2|6
|
||||||
|
1.3.6.1.2.1.2.2.1.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|131
|
||||||
|
1.3.6.1.2.1.2.2.1.3.13|2|131
|
||||||
|
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|1500
|
||||||
|
1.3.6.1.2.1.2.2.1.4.3|2|1500
|
||||||
|
1.3.6.1.2.1.2.2.1.4.4|2|1500
|
||||||
|
1.3.6.1.2.1.2.2.1.4.5|2|1500
|
||||||
|
1.3.6.1.2.1.2.2.1.4.6|2|1500
|
||||||
|
1.3.6.1.2.1.2.2.1.4.7|2|1500
|
||||||
|
1.3.6.1.2.1.2.2.1.4.8|2|1500
|
||||||
|
1.3.6.1.2.1.2.2.1.4.9|2|1500
|
||||||
|
1.3.6.1.2.1.2.2.1.4.10|2|1500
|
||||||
|
1.3.6.1.2.1.2.2.1.4.11|2|1500
|
||||||
|
1.3.6.1.2.1.2.2.1.4.12|2|1480
|
||||||
|
1.3.6.1.2.1.2.2.1.4.13|2|1452
|
||||||
|
1.3.6.1.2.1.2.2.1.6.1|4|
|
||||||
|
1.3.6.1.2.1.2.2.1.6.2|4x|000000000000
|
||||||
|
1.3.6.1.2.1.2.2.1.6.3|4x|000000000000
|
||||||
|
1.3.6.1.2.1.2.2.1.6.4|4x|000000000000
|
||||||
|
1.3.6.1.2.1.2.2.1.6.5|4x|000000000000
|
||||||
|
1.3.6.1.2.1.2.2.1.6.6|4x|000000000000
|
||||||
|
1.3.6.1.2.1.2.2.1.6.7|4x|000000000000
|
||||||
|
1.3.6.1.2.1.2.2.1.6.8|4x|000000000000
|
||||||
|
1.3.6.1.2.1.2.2.1.6.9|4x|000000000000
|
||||||
|
1.3.6.1.2.1.2.2.1.6.10|4x|000000000000
|
||||||
|
1.3.6.1.2.1.2.2.1.6.11|4x|000000000000
|
||||||
|
1.3.6.1.2.1.2.2.1.6.12|4|
|
||||||
|
1.3.6.1.2.1.2.2.1.6.13|4|
|
||||||
|
1.3.6.1.2.1.2.2.1.7.1|2|1
|
||||||
|
1.3.6.1.2.1.2.2.1.7.2|2|2
|
||||||
|
1.3.6.1.2.1.2.2.1.7.3|2|2
|
||||||
|
1.3.6.1.2.1.2.2.1.7.4|2|1
|
||||||
|
1.3.6.1.2.1.2.2.1.7.5|2|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|2
|
||||||
|
1.3.6.1.2.1.2.2.1.7.10|2|2
|
||||||
|
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.8.1|2|1
|
||||||
|
1.3.6.1.2.1.2.2.1.8.2|2|2
|
||||||
|
1.3.6.1.2.1.2.2.1.8.3|2|2
|
||||||
|
1.3.6.1.2.1.2.2.1.8.4|2|1
|
||||||
|
1.3.6.1.2.1.2.2.1.8.5|2|2
|
||||||
|
1.3.6.1.2.1.2.2.1.8.6|2|2
|
||||||
|
1.3.6.1.2.1.2.2.1.8.7|2|2
|
||||||
|
1.3.6.1.2.1.2.2.1.8.8|2|2
|
||||||
|
1.3.6.1.2.1.2.2.1.8.9|2|2
|
||||||
|
1.3.6.1.2.1.2.2.1.8.10|2|2
|
||||||
|
1.3.6.1.2.1.2.2.1.8.11|2|2
|
||||||
|
1.3.6.1.2.1.2.2.1.8.12|2|2
|
||||||
|
1.3.6.1.2.1.2.2.1.8.13|2|2
|
||||||
|
1.3.6.1.2.1.2.2.1.9.1|67|0
|
||||||
|
1.3.6.1.2.1.2.2.1.9.2|67|0
|
||||||
|
1.3.6.1.2.1.2.2.1.9.3|67|0
|
||||||
|
1.3.6.1.2.1.2.2.1.9.4|67|0
|
||||||
|
1.3.6.1.2.1.2.2.1.9.5|67|0
|
||||||
|
1.3.6.1.2.1.2.2.1.9.6|67|0
|
||||||
|
1.3.6.1.2.1.2.2.1.9.7|67|0
|
||||||
|
1.3.6.1.2.1.2.2.1.9.8|67|0
|
||||||
|
1.3.6.1.2.1.2.2.1.9.9|67|0
|
||||||
|
1.3.6.1.2.1.2.2.1.9.10|67|0
|
||||||
|
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.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|2490
|
||||||
|
1.3.6.1.2.1.2.2.1.13.5|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.13.6|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.13.7|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.13.8|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.13.9|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.13.10|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.13.11|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.13.12|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.13.13|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.14.1|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.14.2|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.14.3|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.14.4|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.14.5|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.14.6|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.14.7|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.14.8|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.14.9|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.14.10|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.14.11|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.14.12|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.14.13|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.19.1|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.19.2|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.19.3|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.19.4|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.19.5|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.19.6|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.19.7|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.19.8|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.19.9|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.19.10|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.19.11|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.19.12|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.19.13|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.20.1|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.20.2|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.20.3|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.20.4|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.20.5|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.20.6|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.20.7|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.20.8|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.20.9|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.20.10|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.20.11|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.20.12|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.20.13|65|0
|
||||||
|
1.3.6.1.2.1.25.1.1.0|67|607636072
|
||||||
|
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.31|2|31
|
||||||
|
1.3.6.1.2.1.25.2.3.1.1.40|2|40
|
||||||
|
1.3.6.1.2.1.25.2.3.1.1.42|2|42
|
||||||
|
1.3.6.1.2.1.25.2.3.1.1.43|2|43
|
||||||
|
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.31|6|1.3.6.1.2.1.25.2.1.4
|
||||||
|
1.3.6.1.2.1.25.2.3.1.2.40|6|1.3.6.1.2.1.25.2.1.4
|
||||||
|
1.3.6.1.2.1.25.2.3.1.2.42|6|1.3.6.1.2.1.25.2.1.4
|
||||||
|
1.3.6.1.2.1.25.2.3.1.2.43|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.31|4|/
|
||||||
|
1.3.6.1.2.1.25.2.3.1.3.40|4|/tmp
|
||||||
|
1.3.6.1.2.1.25.2.3.1.3.42|4|/data
|
||||||
|
1.3.6.1.2.1.25.2.3.1.3.43|4|/store
|
||||||
|
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.31|2|4096
|
||||||
|
1.3.6.1.2.1.25.2.3.1.4.40|2|4096
|
||||||
|
1.3.6.1.2.1.25.2.3.1.4.42|2|4096
|
||||||
|
1.3.6.1.2.1.25.2.3.1.4.43|2|4096
|
||||||
|
1.3.6.1.2.1.25.2.3.1.5.1|2|32851012
|
||||||
|
1.3.6.1.2.1.25.2.3.1.5.3|2|65715264
|
||||||
|
1.3.6.1.2.1.25.2.3.1.5.6|2|32851012
|
||||||
|
1.3.6.1.2.1.25.2.3.1.5.7|2|5440872
|
||||||
|
1.3.6.1.2.1.25.2.3.1.5.8|2|0
|
||||||
|
1.3.6.1.2.1.25.2.3.1.5.10|2|32864252
|
||||||
|
1.3.6.1.2.1.25.2.3.1.5.31|2|1999086
|
||||||
|
1.3.6.1.2.1.25.2.3.1.5.40|2|65536
|
||||||
|
1.3.6.1.2.1.25.2.3.1.5.42|2|338989863
|
||||||
|
1.3.6.1.2.1.25.2.3.1.5.43|2|119642
|
||||||
|
1.3.6.1.2.1.25.2.3.1.6.1|2|19288240
|
||||||
|
1.3.6.1.2.1.25.2.3.1.6.3|2|19288240
|
||||||
|
1.3.6.1.2.1.25.2.3.1.6.6|2|1233972
|
||||||
|
1.3.6.1.2.1.25.2.3.1.6.7|2|5440872
|
||||||
|
1.3.6.1.2.1.25.2.3.1.6.10|2|0
|
||||||
|
1.3.6.1.2.1.25.2.3.1.6.31|2|514474
|
||||||
|
1.3.6.1.2.1.25.2.3.1.6.40|2|11
|
||||||
|
1.3.6.1.2.1.25.2.3.1.6.42|2|581334
|
||||||
|
1.3.6.1.2.1.25.2.3.1.6.43|2|34026
|
||||||
|
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|bond0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.1.3|4|dummy0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.1.4|4|eth0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.1.5|4|eth1
|
||||||
|
1.3.6.1.2.1.31.1.1.1.1.6|4|eth2
|
||||||
|
1.3.6.1.2.1.31.1.1.1.1.7|4|eth3
|
||||||
|
1.3.6.1.2.1.31.1.1.1.1.8|4|eth7
|
||||||
|
1.3.6.1.2.1.31.1.1.1.1.9|4|eth6
|
||||||
|
1.3.6.1.2.1.31.1.1.1.1.10|4|eth5
|
||||||
|
1.3.6.1.2.1.31.1.1.1.1.11|4|eth4
|
||||||
|
1.3.6.1.2.1.31.1.1.1.1.12|4|sit0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.1.13|4|ip6tnl0
|
||||||
|
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|316275
|
||||||
|
1.3.6.1.2.1.31.1.1.1.2.5|65|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.2.6|65|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.2.7|65|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.2.8|65|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.2.9|65|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.2.10|65|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.2.11|65|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.2.12|65|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.2.13|65|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.3.1|65|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.3.2|65|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.3.3|65|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.3.4|65|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.3.5|65|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.3.6|65|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.3.7|65|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.3.8|65|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.3.9|65|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.3.10|65|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.3.11|65|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.3.12|65|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.3.13|65|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.4.1|65|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.4.2|65|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.4.3|65|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.4.4|65|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.4.5|65|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.4.6|65|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.4.7|65|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.4.8|65|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.4.9|65|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.4.10|65|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.4.11|65|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.4.12|65|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.4.13|65|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.5.1|65|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.5.2|65|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.5.3|65|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.5.4|65|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.5.5|65|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.5.6|65|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.5.7|65|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.5.8|65|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.5.9|65|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.5.10|65|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.5.11|65|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.5.12|65|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.5.13|65|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.6.1|70|1695959861445
|
||||||
|
1.3.6.1.2.1.31.1.1.1.6.2|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.6.3|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.6.4|70|566128179907
|
||||||
|
1.3.6.1.2.1.31.1.1.1.6.5|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.6.6|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.6.7|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.6.8|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.6.9|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.6.10|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.6.11|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.6.12|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.6.13|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.7.1|70|14945037015
|
||||||
|
1.3.6.1.2.1.31.1.1.1.7.2|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.7.3|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.7.4|70|1004307530
|
||||||
|
1.3.6.1.2.1.31.1.1.1.7.5|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.7.6|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.7.7|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.7.8|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.7.9|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.7.10|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.7.11|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.7.12|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.7.13|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.8.1|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.8.2|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.8.3|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.8.4|70|316275
|
||||||
|
1.3.6.1.2.1.31.1.1.1.8.5|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.8.6|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.8.7|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.8.8|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.8.9|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.8.10|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.8.11|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.8.12|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.8.13|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.9.1|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.9.2|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.9.3|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.9.4|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.9.5|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.9.6|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.9.7|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.9.8|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.9.9|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.9.10|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.9.11|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.9.12|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.9.13|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.10.1|70|1695959861445
|
||||||
|
1.3.6.1.2.1.31.1.1.1.10.2|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.10.3|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.10.4|70|291039882026
|
||||||
|
1.3.6.1.2.1.31.1.1.1.10.5|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.10.6|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.10.7|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.10.8|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.10.9|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.10.10|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.10.11|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.10.12|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.10.13|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.11.1|70|14945037015
|
||||||
|
1.3.6.1.2.1.31.1.1.1.11.2|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.11.3|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.11.4|70|952195357
|
||||||
|
1.3.6.1.2.1.31.1.1.1.11.5|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.11.6|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.11.7|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.11.8|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.11.9|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.11.10|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.11.11|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.11.12|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.11.13|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.12.1|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.12.2|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.12.3|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.12.4|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.12.5|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.12.6|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.12.7|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.12.8|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.12.9|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.12.10|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.12.11|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.12.12|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.12.13|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.13.1|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.13.2|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.13.3|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.13.4|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.13.5|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.13.6|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.13.7|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.13.8|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.13.9|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.13.10|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.13.11|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.13.12|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.13.13|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.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|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.15.4|66|1000
|
||||||
|
1.3.6.1.2.1.31.1.1.1.15.5|66|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.15.6|66|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.15.7|66|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.15.8|66|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.15.9|66|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.15.10|66|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.15.11|66|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.15.12|66|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.15.13|66|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.16.1|2|2
|
||||||
|
1.3.6.1.2.1.31.1.1.1.16.2|2|2
|
||||||
|
1.3.6.1.2.1.31.1.1.1.16.3|2|2
|
||||||
|
1.3.6.1.2.1.31.1.1.1.16.4|2|2
|
||||||
|
1.3.6.1.2.1.31.1.1.1.16.5|2|2
|
||||||
|
1.3.6.1.2.1.31.1.1.1.16.6|2|2
|
||||||
|
1.3.6.1.2.1.31.1.1.1.16.7|2|2
|
||||||
|
1.3.6.1.2.1.31.1.1.1.16.8|2|2
|
||||||
|
1.3.6.1.2.1.31.1.1.1.16.9|2|2
|
||||||
|
1.3.6.1.2.1.31.1.1.1.16.10|2|2
|
||||||
|
1.3.6.1.2.1.31.1.1.1.16.11|2|2
|
||||||
|
1.3.6.1.2.1.31.1.1.1.16.12|2|2
|
||||||
|
1.3.6.1.2.1.31.1.1.1.16.13|2|2
|
||||||
|
1.3.6.1.2.1.31.1.1.1.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.17.5|2|1
|
||||||
|
1.3.6.1.2.1.31.1.1.1.17.6|2|1
|
||||||
|
1.3.6.1.2.1.31.1.1.1.17.7|2|1
|
||||||
|
1.3.6.1.2.1.31.1.1.1.17.8|2|1
|
||||||
|
1.3.6.1.2.1.31.1.1.1.17.9|2|1
|
||||||
|
1.3.6.1.2.1.31.1.1.1.17.10|2|1
|
||||||
|
1.3.6.1.2.1.31.1.1.1.17.11|2|1
|
||||||
|
1.3.6.1.2.1.31.1.1.1.17.12|2|1
|
||||||
|
1.3.6.1.2.1.31.1.1.1.17.13|2|1
|
||||||
|
1.3.6.1.2.1.31.1.1.1.18.1|4|
|
||||||
|
1.3.6.1.2.1.31.1.1.1.18.2|4|
|
||||||
|
1.3.6.1.2.1.31.1.1.1.18.3|4|
|
||||||
|
1.3.6.1.2.1.31.1.1.1.18.4|4|
|
||||||
|
1.3.6.1.2.1.31.1.1.1.18.5|4|
|
||||||
|
1.3.6.1.2.1.31.1.1.1.18.6|4|
|
||||||
|
1.3.6.1.2.1.31.1.1.1.18.7|4|
|
||||||
|
1.3.6.1.2.1.31.1.1.1.18.8|4|
|
||||||
|
1.3.6.1.2.1.31.1.1.1.18.9|4|
|
||||||
|
1.3.6.1.2.1.31.1.1.1.18.10|4|
|
||||||
|
1.3.6.1.2.1.31.1.1.1.18.11|4|
|
||||||
|
1.3.6.1.2.1.31.1.1.1.18.12|4|
|
||||||
|
1.3.6.1.2.1.31.1.1.1.18.13|4|
|
||||||
|
1.3.6.1.2.1.31.1.1.1.19.1|67|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.19.2|67|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.19.3|67|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.19.4|67|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.19.5|67|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.19.6|67|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.19.7|67|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.19.8|67|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.19.9|67|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.19.10|67|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.19.11|67|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.19.12|67|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.19.13|67|0
|
||||||
|
1.3.6.1.4.1.9694.1.4.2.1.11.0|65|0
|
Reference in New Issue
Block a user