diff --git a/LibreNMS/Modules/Isis.php b/LibreNMS/Modules/Isis.php new file mode 100644 index 0000000000..b7a05d9988 --- /dev/null +++ b/LibreNMS/Modules/Isis.php @@ -0,0 +1,216 @@ +. + * + * @link http://librenms.org + * @copyright 2021 Otto Reinikainen + * @author Otto Reinikainen + */ + +namespace LibreNMS\Modules; + +use App\Models\Device; +use App\Models\IsisAdjacency; +use Illuminate\Support\Arr; +use LibreNMS\Component; +use LibreNMS\Interfaces\Module; +use LibreNMS\OS; +use LibreNMS\OS\Junos; +use LibreNMS\Util\IP; + +class Isis implements Module +{ + /** + * Discover this module. Heavier processes can be run here + * Run infrequently (default 4 times a day) + * + * @param OS $os + */ + public function discover(OS $os) + { + $device_array = $os->getDeviceArray(); + $device_id = $os->getDeviceId(); + $options = [ + 'filter' => [ + 'device_id' => ['=', $device_id], + 'type' => ['=', 'ISIS'], + ], + ]; + + $component = new Component(); + $components = $component->getComponents($device_id, $options); + + // Check if the device has any ISIS enabled interfaces + $circuits_poll = snmpwalk_group($device_array, 'ISIS-MIB::isisCirc', 'ISIS-MIB'); + + // No ISIS enabled interfaces -> delete the component + if (empty($circuits_poll)) { + if (isset($components[$device_id])) { + foreach ($components[$device_id] as $component_id => $_unused) { + $component->deleteComponent($component_id); + } + echo "\nISIS components deleted"; + } + + // ISIS enabled interfaces found -> create the component + } else { + if (isset($components[$device_id])) { + $isis_component = $components[$device_id]; + } else { + $isis_component = $component->createComponent($device_id, 'ISIS'); + } + + $component->setComponentPrefs($device_id, $isis_component); + echo "\nISIS component updated"; + } + } + + /** + * Poll data for this module and update the DB / RRD. + * Try to keep this efficient and only run if discovery has indicated there is a reason to run. + * Run frequently (default every 5 minutes) + * + * @param OS $os + */ + public function poll(OS $os) + { + // Translate system state codes into meaningful strings + $isis_codes = ['1' => 'L1', + '2' => 'L2', + '3' => 'L1L2', + '4' => 'unknown', + ]; + + // Get device objects + $device_array = $os->getDeviceArray(); + $device = $os->getDevice(); + $device_id = $os->getDeviceId(); + + // Check if device has any ISIS enabled circuits previously discovered + $options = [ + 'filter' => [ + 'device_id' => ['=', $device_id], + 'type' => ['=', 'ISIS'], + ], + ]; + + $component = new Component(); + $components = $component->getComponents($device_id, $options); + + if (! empty($components)) { + + // Poll all ISIS enabled interfaces from the device + $circuits_poll = snmpwalk_group($device_array, 'ISIS-MIB::isisCirc', 'ISIS-MIB'); + + // Poll all available adjacencies + $adjacencies_poll = snmpwalk_group($device_array, 'ISIS-MIB::isisISAdj', 'ISIS-MIB'); + $adjacencies = collect(); + $isis_data = []; + + if ($os instanceof Junos) { + // Do not poll loopback interface + unset($circuits_poll['16']); + } + + // Loop through all configured adjacencies on the device + foreach ($circuits_poll as $circuit => $circuit_data) { + if (is_numeric($circuit)) { + echo "\nAdjacency found on ifIndex: " . $circuit; + $port_id = (int) $device->ports()->where('ifIndex', $circuit)->value('port_id'); + + if ($circuit_data['isisCircPassiveCircuit'] != '1') { + // Adjacency is UP + if (! empty($adjacencies_poll[$circuit]) && Arr::last($adjacencies_poll[$circuit]['isisISAdjState']) == '3') { + $isis_data['isisISAdjState'] = Arr::last($adjacencies_poll[$circuit]['isisISAdjState']); + $isis_data['isisISAdjNeighSysID'] = Arr::last($adjacencies_poll[$circuit]['isisISAdjNeighSysID']); + $isis_data['isisISAdjNeighSysType'] = Arr::last($adjacencies_poll[$circuit]['isisISAdjNeighSysType']); + $isis_data['isisISAdjNeighPriority'] = Arr::last($adjacencies_poll[$circuit]['isisISAdjNeighPriority']); + $isis_data['isisISAdjLastUpTime'] = Arr::last($adjacencies_poll[$circuit]['isisISAdjLastUpTime']); + $isis_data['isisISAdjAreaAddress'] = Arr::last(Arr::last($adjacencies_poll[$circuit]['isisISAdjAreaAddress'])); + $isis_data['isisISAdjIPAddrType'] = Arr::last(Arr::last($adjacencies_poll[$circuit]['isisISAdjIPAddrType'])); + $isis_data['isisISAdjIPAddrAddress'] = Arr::last(Arr::last($adjacencies_poll[$circuit]['isisISAdjIPAddrAddress'])); + + // Format data + $isis_data['isisISAdjNeighSysID'] = str_replace(' ', '.', $isis_data['isisISAdjNeighSysID']); + $isis_data['isisISAdjLastUpTime'] = (int) $isis_data['isisISAdjLastUpTime'] / 100; + $isis_data['isisISAdjAreaAddress'] = str_replace(' ', '.', $isis_data['isisISAdjAreaAddress']); + + // Save data into the DB + $adjacency = IsisAdjacency::updateOrCreate([ + 'device_id' => $device_id, + 'ifIndex' => $circuit, + ], [ + 'device_id' => $device_id, + 'ifIndex' => $circuit, + 'port_id' => $port_id, + 'isisISAdjState' => 'up', + 'isisISAdjNeighSysType' => $isis_codes[$isis_data['isisISAdjNeighSysType']], + 'isisISAdjNeighSysID' => $isis_data['isisISAdjNeighSysID'], + 'isisISAdjNeighPriority' => $isis_data['isisISAdjNeighPriority'], + 'isisISAdjLastUpTime' => $isis_data['isisISAdjLastUpTime'], + 'isisISAdjAreaAddress' => $isis_data['isisISAdjAreaAddress'], + 'isisISAdjIPAddrType' => $isis_data['isisISAdjIPAddrType'], + 'isisISAdjIPAddrAddress' => IP::fromHexstring($isis_data['isisISAdjIPAddrAddress']), + ]); + } else { + /* + * Adjacency is configured on the device but not available + * Update existing record to down state + * Set the status of the adjacency to down + * Also if the adjacency was never up, create a record + */ + if ($circuit_data['isisCircAdminState'] != '1') { + $state = 'disabled'; + } else { + $state = 'down'; + } + $adjacency = IsisAdjacency::updateOrCreate([ + 'device_id' => $device_id, + 'ifIndex' => $circuit, + ], [ + 'device_id' => $device_id, + 'ifIndex' => $circuit, + 'port_id' => $port_id, + 'isisISAdjState' => $state, + ]); + } + $adjacencies->push($adjacency); + } + } + } + + echo "\nFound " . $adjacencies->count() . ' configured adjacencies'; + + // Cleanup + IsisAdjacency::query() + ->where(['device_id' => $device['device_id']]) + ->whereNotIn('ifIndex', $adjacencies->pluck('ifIndex'))->delete(); + } + } + + /** + * Remove all DB data for this module. + * This will be run when the module is disabled. + * + * @param OS $os + */ + public function cleanup(OS $os) + { + $os->getDevice()->isisAdjacencies()->delete(); + } +} diff --git a/LibreNMS/Util/ObjectCache.php b/LibreNMS/Util/ObjectCache.php index e93501d37b..eb6df4ad96 100644 --- a/LibreNMS/Util/ObjectCache.php +++ b/LibreNMS/Util/ObjectCache.php @@ -29,6 +29,7 @@ use App\Models\BgpPeer; use App\Models\CefSwitching; use App\Models\Component; use App\Models\Device; +use App\Models\IsisAdjacency; use App\Models\Mpls; use App\Models\OspfInstance; use App\Models\Port; @@ -64,6 +65,7 @@ class ObjectCache 'vrf' => Vrf::hasAccess($user)->count(), 'mpls' => Mpls::hasAccess($user)->count(), 'ospf' => OspfInstance::hasAccess($user)->count(), + 'isis' => IsisAdjacency::hasAccess($user)->count(), 'cisco-otv' => Component::hasAccess($user)->where('type', 'Cisco-OTV')->count(), 'bgp' => BgpPeer::hasAccess($user)->count(), 'cef' => CefSwitching::hasAccess($user)->count(), diff --git a/app/Http/Controllers/Device/Tabs/RoutingController.php b/app/Http/Controllers/Device/Tabs/RoutingController.php index fccfbe28da..3384e756de 100644 --- a/app/Http/Controllers/Device/Tabs/RoutingController.php +++ b/app/Http/Controllers/Device/Tabs/RoutingController.php @@ -36,8 +36,10 @@ class RoutingController implements DeviceTab public function __construct() { $device = DeviceCache::getPrimary(); + //dd($device); $this->tabs = [ 'ospf' => $device->ospfInstances()->count(), + 'isis' => $device->isisAdjacencies()->count(), 'bgp' => $device->bgppeers()->count(), 'vrf' => $device->vrfs()->count(), 'cef' => $device->cefSwitching()->count(), diff --git a/app/Http/ViewComposers/MenuComposer.php b/app/Http/ViewComposers/MenuComposer.php index eb41953c96..b2fd8e33a5 100644 --- a/app/Http/ViewComposers/MenuComposer.php +++ b/app/Http/ViewComposers/MenuComposer.php @@ -162,6 +162,16 @@ class MenuComposer ]; } + if ($routing_count['isis']) { + $routing_menu[] = [ + [ + 'url' => 'isis', + 'icon' => 'arrows-alt', + 'text' => 'ISIS Adjacencies', + ], + ]; + } + if ($routing_count['cisco-otv']) { $routing_menu[] = [ [ diff --git a/app/Models/Device.php b/app/Models/Device.php index cf539ec7b4..d931836314 100644 --- a/app/Models/Device.php +++ b/app/Models/Device.php @@ -654,6 +654,11 @@ class Device extends BaseModel return $this->hasMany(\App\Models\OspfPort::class, 'device_id'); } + public function isisAdjacencies(): HasMany + { + return $this->hasMany(\App\Models\IsisAdjacency::class, 'device_id', 'device_id'); + } + public function netscalerVservers(): HasMany { return $this->hasMany(NetscalerVserver::class, 'device_id'); diff --git a/app/Models/IsisAdjacency.php b/app/Models/IsisAdjacency.php new file mode 100644 index 0000000000..ce7c641fc4 --- /dev/null +++ b/app/Models/IsisAdjacency.php @@ -0,0 +1,56 @@ +. + * + * @link http://librenms.org + * @copyright 2021 Otto Reinikainen + * @author Otto Reinikainen + */ + +namespace App\Models; + +use Illuminate\Database\Eloquent\Factories\HasFactory; + +class IsisAdjacency extends PortRelatedModel +{ + use HasFactory; + + //public $primaryKey = 'id'; + public $timestamps = false; + + protected $fillable = [ + 'device_id', + 'port_id', + 'ifIndex', + 'isisISAdjState', + 'isisISAdjNeighSysType', + 'isisISAdjNeighSysID', + 'isisISAdjNeighPriority', + 'isisISAdjLastUpTime', + 'isisISAdjAreaAddress', + 'isisISAdjIPAddrType', + 'isisISAdjIPAddrAddress', + ]; + + // ---- Define Relationships ---- + + public function device() + { + return $this->belongsTo(\App\Models\Port::class, 'device_id'); + } +} diff --git a/database/migrations/2021_25_01_0127_create_isis_adjacencies_table.php b/database/migrations/2021_25_01_0127_create_isis_adjacencies_table.php new file mode 100644 index 0000000000..70df3d4345 --- /dev/null +++ b/database/migrations/2021_25_01_0127_create_isis_adjacencies_table.php @@ -0,0 +1,40 @@ +increments('id'); + $table->integer('device_id')->index(); + $table->integer('port_id')->index(); + $table->integer('ifIndex')->index(); + $table->string('isisISAdjState', 13); + $table->string('isisISAdjNeighSysType', 128); + $table->string('isisISAdjNeighSysID', 128); + $table->string('isisISAdjNeighPriority', 128); + $table->unsignedBigInteger('isisISAdjLastUpTime'); + $table->string('isisISAdjAreaAddress', 128); + $table->string('isisISAdjIPAddrType', 128); + $table->string('isisISAdjIPAddrAddress', 128); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::dropIfExists('isis_adjacencies'); + } +} diff --git a/includes/discovery/isis.inc.php b/includes/discovery/isis.inc.php new file mode 100644 index 0000000000..026603f263 --- /dev/null +++ b/includes/discovery/isis.inc.php @@ -0,0 +1,30 @@ +. + * + * @link http://librenms.org + * @copyright 2021 Otto Reinikainen + * @author Otto Reinikainen + */ + +use LibreNMS\OS; + +if (! $os instanceof OS) { + $os = OS::make($device); +} +(new \LibreNMS\Modules\Isis())->discover($os); diff --git a/includes/functions.php b/includes/functions.php index 86617577c5..5367c54b3a 100644 --- a/includes/functions.php +++ b/includes/functions.php @@ -312,6 +312,9 @@ function delete_device($id) dbQuery('DELETE `ipv4_addresses` FROM `ipv4_addresses` INNER JOIN `ports` ON `ports`.`port_id`=`ipv4_addresses`.`port_id` WHERE `device_id`=?', [$id]); dbQuery('DELETE `ipv6_addresses` FROM `ipv6_addresses` INNER JOIN `ports` ON `ports`.`port_id`=`ipv6_addresses`.`port_id` WHERE `device_id`=?', [$id]); + //Remove IsisAdjacencies + \App\Models\IsisAdjacency::where('device_id', $id)->delete(); + //Remove Outages \App\Models\Availability::where('device_id', $id)->delete(); \App\Models\DeviceOutage::where('device_id', $id)->delete(); diff --git a/includes/html/pages/device/routing.inc.php b/includes/html/pages/device/routing.inc.php index aadbce2fe0..5407c6759e 100644 --- a/includes/html/pages/device/routing.inc.php +++ b/includes/html/pages/device/routing.inc.php @@ -19,6 +19,7 @@ $type_text['netscaler_vsvr'] = 'VServers'; $type_text['bgp'] = 'BGP'; $type_text['cef'] = 'CEF'; $type_text['ospf'] = 'OSPF'; +$type_text['isis'] = 'ISIS'; $type_text['vrf'] = 'VRFs'; $type_text['routes'] = 'Routing Table'; $type_text['cisco-otv'] = 'OTV'; diff --git a/includes/html/pages/device/routing/isis.inc.php b/includes/html/pages/device/routing/isis.inc.php new file mode 100644 index 0000000000..fa61f5814e --- /dev/null +++ b/includes/html/pages/device/routing/isis.inc.php @@ -0,0 +1,55 @@ + +
+
+ + + + + + + + + + + + + + '; + +foreach (IsisAdjacency::where('device_id', $device['device_id'])->with('port')->get() as $adj) { + if ($adj->isisISAdjState == 'up') { + $color = 'green'; + } else { + $color = 'red'; + } + $interface_name = $adj->port->ifName; + + echo ' + + + + + + + + + + + + + '; +} +echo '
 Local deviceLocal interfaceAdjacentSystem IDAreaSystem typeStateLast uptime
' . generate_device_link($device, 0, ['tab' => 'routing', 'proto' => 'isis']) . '' . $interface_name . '' . $adj->isisISAdjIPAddrAddress . '' . $adj->isisISAdjNeighSysID . '' . $adj->isisISAdjAreaAddress . '' . $adj->isisISAdjNeighSysType . '' . $adj->isisISAdjState . '' . \LibreNMS\Util\Time::formatInterval($adj->isisISAdjLastUpTime) . '
+
+
+'; diff --git a/includes/html/pages/routing.inc.php b/includes/html/pages/routing.inc.php index e6db15dcb7..68f4e66dbf 100644 --- a/includes/html/pages/routing.inc.php +++ b/includes/html/pages/routing.inc.php @@ -17,6 +17,7 @@ $type_text['bgp'] = 'BGP'; $type_text['cef'] = 'CEF'; $type_text['mpls'] = 'MPLS'; $type_text['ospf'] = 'OSPF'; +$type_text['isis'] = 'ISIS'; $type_text['vrf'] = 'VRFs'; $type_text['cisco-otv'] = 'OTV'; @@ -58,6 +59,7 @@ switch ($vars['protocol']) { case 'cef': case 'mpls': case 'ospf': + case 'isis': case 'cisco-otv': include 'includes/html/pages/routing/' . $vars['protocol'] . '.inc.php'; break; diff --git a/includes/html/pages/routing/isis.inc.php b/includes/html/pages/routing/isis.inc.php new file mode 100644 index 0000000000..104330ad2b --- /dev/null +++ b/includes/html/pages/routing/isis.inc.php @@ -0,0 +1,111 @@ +hasGlobalRead()) { + include 'includes/html/error-no-perm.inc.php'; +} else { + $link_array = [ + 'page' => 'routing', + 'protocol' => 'isis', + ]; + + print_optionbar_start('', ''); + + echo 'Adjacencies » '; + + if (! $vars['state']) { + $vars['state'] = 'all'; + } + + if ($vars['state'] == 'all') { + $filter = ['up', 'down']; + echo ""; + } + + echo generate_link('All', $vars, ['state' => 'all']); + if ($vars['state'] == 'all') { + echo ''; + } + + echo ' | '; + + if ($vars['state'] == 'up') { + $filter = ['up']; + echo ""; + } + + echo generate_link('Up', $vars, ['state' => 'up']); + if ($vars['state'] == 'up') { + $filter = ['up']; + echo ''; + } + + echo ' | '; + + if ($vars['state'] == 'down') { + echo ""; + } + + echo generate_link('Down', $vars, ['state' => 'down']); + if ($vars['state'] == 'down') { + $filter = ['down']; + echo ''; + } + + print_optionbar_end(); + + echo ' +
+
+
+ + + + + + + + + + + + + + '; + + foreach (IsisAdjacency::whereIn('isisISAdjState', $filter)->with('port')->get() as $adj) { + $device = device_by_id_cache($adj->device_id); + if ($adj->isisISAdjState == 'up') { + $color = 'green'; + } else { + $color = 'red'; + } + + $interface_name = $adj->port->ifName; + + echo ' + + + + + + + + + + + + + '; + } + echo '
 Local deviceLocal interfaceAdjacentSystem IDAreaSystem typeStateLast uptime
' . generate_device_link($device, 0, ['tab' => 'routing', 'proto' => 'isis']) . '' . $interface_name . '' . $adj->isisISAdjIPAddrAddress . '' . $adj->isisISAdjNeighSysID . '' . $adj->isisISAdjAreaAddress . '' . $adj->isisISAdjNeighSysType . '' . $adj->isisISAdjState . '' . \LibreNMS\Util\Time::formatInterval($adj->isisISAdjLastUpTime) . '
+
+
+
'; +} diff --git a/includes/polling/isis.inc.php b/includes/polling/isis.inc.php new file mode 100644 index 0000000000..dc6f41805f --- /dev/null +++ b/includes/polling/isis.inc.php @@ -0,0 +1,30 @@ +. + * + * @link http://librenms.org + * @copyright 2021 Otto Reinikainen + * @author Otto Reinikainen + */ + +use LibreNMS\OS; + +if (! $os instanceof OS) { + $os = OS::make($device); +} +(new \LibreNMS\Modules\Isis())->poll($os); diff --git a/mibs/junos/mib-isismib.txt b/mibs/junos/mib-isismib.txt deleted file mode 100644 index 6f2fa92cf5..0000000000 --- a/mibs/junos/mib-isismib.txt +++ /dev/null @@ -1,3458 +0,0 @@ -ISIS-MIB DEFINITIONS ::= BEGIN - - IMPORTS - TEXTUAL-CONVENTION, DisplayString, RowStatus, TruthValue, - TestAndIncr - FROM SNMPv2-TC - MODULE-IDENTITY, OBJECT-TYPE, OBJECT-IDENTITY, NOTIFICATION-TYPE, - Integer32, Counter32, experimental - FROM SNMPv2-SMI - MODULE-COMPLIANCE, OBJECT-GROUP, NOTIFICATION-GROUP - FROM SNMPv2-CONF - InetAddressType, InetAddress, InetAddressPrefixLength - FROM INET-ADDRESS-MIB; - - isisMIB MODULE-IDENTITY - LAST-UPDATED "200201091200Z" -- UTC date of the most recent REVISION. - ORGANIZATION "IETF IS-IS for IP Internets Working Group" - CONTACT-INFO - "Jeff Parker - Axiowave Networks - 200 Nickerson Rd. - Marlborough, MA 01752 - - jparker@axiowave.com" - - DESCRIPTION - "This document describes a management information base for - the IS-IS Routing protocol, as described in ISO 10589, - when it is used to construct routing tables for IP networks, - as described in RFC 1195. - - This memo defines an experimental portion of the Management - Information Base (MIB) for use with network management - protocols in the Internet community. - - This memo is based on a 1994 IETF draft by Chris Gunner. - This version has been modified to include MIB-II syntax, to - exclude portions of the protocol that are not relevant to IP, - and to add management support for current practice." - - ::= { experimental 37 } - - --- Top-level stucture of the MIB - -isisObjects OBJECT IDENTIFIER ::= { isisMIB 1 } -isisNotifications OBJECT IDENTIFIER ::= { isisMIB 2 } -isisConformance OBJECT IDENTIFIER ::= { isisMIB 3 } - --- OBJECT IDENTIFIER definitions - - isisSystem OBJECT-IDENTITY - STATUS current - DESCRIPTION - "The object describes system wide attributes." - ::= { isisObjects 1 } - - isisCirc OBJECT-IDENTITY - STATUS current - DESCRIPTION - "This object describes attributes associated with - one Circuit" - ::= { isisObjects 2 } - - isisCircLevelValues OBJECT-IDENTITY - STATUS current - DESCRIPTION - "This object describes attributes associated with - area or domain relevant within a Circuit." - ::= { isisObjects 3 } - - isisCircPDUCounters OBJECT-IDENTITY - STATUS current - DESCRIPTION - "This object collects counters associated with one Circuit - at one level." - ::= { isisObjects 4 } - - isisISAdj OBJECT-IDENTITY - STATUS current - DESCRIPTION - "This object describes attributes associated with an - assoiciation with an adjacent Protocol Peer." - ::= { isisObjects 5 } - - isisReachAddr OBJECT-IDENTITY - STATUS current - DESCRIPTION - "This object describes attributes associated with - a configured address" - ::= { isisObjects 6 } - - - isisIPReachAddr OBJECT-IDENTITY - STATUS current - DESCRIPTION - "This object describes attributes associated with - IP routes learned by configuration or through another - protocol." - ::= { isisObjects 7 } - - isisNotification OBJECT-IDENTITY - STATUS current - DESCRIPTION - "Objects included in Notifications." - ::= { isisObjects 8 } - - --- Type definitions - - OSINSAddress ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "OSI Network Service Address, e.g. NSAP, SNPA, or Network - Entity Title" - SYNTAX OCTET STRING (SIZE(0..21)) - - SystemID ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "A system ID." - SYNTAX OCTET STRING (SIZE(0..6)) - - LinkStatePDUID ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "A Link State PDU Identifier." - SYNTAX OCTET STRING (SIZE(8)) - - AdminState ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "Type used in enabling and disabling a row." - SYNTAX INTEGER - { - off(1), - on(2) - } - - UpTime ::= TEXTUAL-CONVENTION - STATUS current - - - DESCRIPTION - "Number of seconds since the object has entered the state 'up'. - If the object is not up, the number of seconds since the - circuit was up, or since the system started, if the circuit - has never been up." - SYNTAX Integer32 - - LSPBuffSize ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "Integer sub range for LSP size." - SYNTAX Integer32 (512..16000) - - LevelState ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "states of the ISIS protocol." - SYNTAX INTEGER - { - off (1), - on (2), - waiting (3), - overloaded(4) - } - - SupportedProtocol ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "Types of network protocol supported by Integrated ISIS. - The values for ISO8473 and IP are those registered for - these protocols in ISO TR9577." - SYNTAX INTEGER - { - iso8473(129), - ip(204), - ipV6(205) - } - - DefaultMetric ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "Integer sub-range for default metric for single hop. - ISO 10589 provides for 4 types of metric. Only the - 'default' metric is used in practice." - SYNTAX Integer32 (1..63) - - MetricType ::= TEXTUAL-CONVENTION - STATUS current - - - DESCRIPTION - "Is this an Internal or External Metric?" - SYNTAX INTEGER - { - internal(1), - external(2) - } - - MetricStyle ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "Do we use 1195 style Metrics or wide metrics." - SYNTAX INTEGER - { - narrow(1), - wide(2), - both(3) - } - - ISLevel ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "Identifies a level." - SYNTAX INTEGER - { - area(1), - domain(2), - none(3) - } - - IsisPDUHeader ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "A block to contain the header from a PDU." - SYNTAX OCTET STRING (SIZE(1..64)) - - CircuitID ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "ID for a circuit." - SYNTAX OCTET STRING (SIZE(2..9)) - - ISPriority ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "Integer sub-range for ISIS priority." - SYNTAX Integer32 (1..127) - - - --- Behavior Definitions - --- ResettingTimer behavior definition --- "This object specifies the interval between certain events in --- the operation of the protocol state machine. If the value of --- this object is set to a new value while the protocol state --- machine is in operation, the implementation shall take the --- necessary steps to ensure that for any time interval which --- was in progress when the value of the corresponding object --- was changed, the next expiration of that interval takes place --- the specified time after the original start of that interval, --- or immediately, whichever is later. The precision with which --- this time shall be implemented shall be the same as that --- associated with the basic operation of the timer object." - --- ReplaceOnlyWhileDisabled behavior definition --- "This object may not be modified while the corresponding --- table row's variable of type AdminState is in state on." - --- OperationalState behavior definition --- "This object controls the enabling and disabling of the --- corresponding table row. Setting this object to the value --- off has the effect of disabling the corresponding row. --- Setting this object to the value on has the effect of --- enabling the corresponding row. Setting the value of this --- object to the same value as its current value has no effect. --- If the table entry also contains an object controlling the --- row status then the object following the operationalState --- behavior shall not be set to on when the object following --- the Row Status behavior has value off. An attempt to do --- so is rejected." - - - isisSysTable OBJECT-TYPE - SYNTAX SEQUENCE OF IsisSysEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The set of instance of the Integrated IS-IS - protocol existing on the system." - ::= { isisSystem 1 } - - isisSysEntry OBJECT-TYPE - SYNTAX IsisSysEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Each row defines information specific to a single - - - instance of the IS-IS protocol existing on the system." - REFERENCE "{ISIS.poi cLNSISISBasic-P (1)}" - INDEX { isisSysInstance } - ::= { isisSysTable 1 } - - IsisSysEntry ::= - SEQUENCE { - isisSysInstance - Integer32, - isisSysVersion - DisplayString, - isisSysType - INTEGER, - isisSysID - SystemID, - isisSysMaxPathSplits - Integer32, - isisSysMaxLSPGenInt - Integer32, - isisSysOrigL1LSPBuffSize - LSPBuffSize, - isisSysMaxAreaAddresses - Integer32, - isisSysMinL1LSPGenInt - Integer32, - isisSysMinL2LSPGenInt - Integer32, - isisSysPollESHelloRate - Integer32, - isisSysWaitTime - Integer32, - isisSysAdminState - AdminState, - isisSysL1State - LevelState, - isisSysCorrLSPs - Counter32, - isisSysLSPL1DbaseOloads - Counter32, - isisSysManAddrDropFromAreas - Counter32, - isisSysAttmptToExMaxSeqNums - Counter32, - isisSysSeqNumSkips - Counter32, - isisSysOwnLSPPurges - Counter32, - isisSysIDFieldLenMismatches - Counter32, - isisSysMaxAreaAddrMismatches - Counter32, - isisSysOrigL2LSPBuffSize - LSPBuffSize, - isisSysL2State - LevelState, - isisSysLSPL2DbaseOloads - Counter32, - isisSysAuthTypeFails - Counter32, - isisSysAuthFails - Counter32, - isisSysLogAdjacencyChanges - TruthValue, - isisSysPartChanges - Counter32, - isisSysMaxAreaCheck - TruthValue, - isisSysNextCircIndex - TestAndIncr, - isisSysExistState - RowStatus, - isisSysL2toL1Leaking - TruthValue, - isisSysSetOverload - INTEGER, - isisSysL1MetricStyle - MetricStyle, - isisSysL1SPFConsiders - MetricStyle, - isisSysL2MetricStyle - MetricStyle, - isisSysL2SPFConsiders - MetricStyle, - isisSysTEEnabled - ISLevel - } - - isisSysInstance OBJECT-TYPE - SYNTAX Integer32 (1..10000) - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The unique identifier of the Integrated IS-IS - instance to which this row corresponds. - This object follows the index behavior." - ::= { isisSysEntry 1 } - - - isisSysVersion OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The version number of the IS-IS protocol which this - instance implements." - REFERENCE "{ISIS.aoi version (1)}" - DEFVAL { "1" } - ::= { isisSysEntry 2 } - - isisSysType OBJECT-TYPE - SYNTAX INTEGER { - level1IS (1), - level2IS (2), - level1L2IS (3) - } - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The type of this instance of the Integrated - IS-IS protocol. This object follows the - replaceOnlyWhileDisabled behavior." - REFERENCE "{ISIS.aoi iSType (2)}" - DEFVAL { level1L2IS } - ::= { isisSysEntry 3 } - - isisSysID OBJECT-TYPE - SYNTAX SystemID - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The ID for this instance of the Integrated IS-IS - protocol. This value is appended to each of the - area addresses to form the Network Entity Titles. - The derivation of a value for this object is - implementation-specific. Some implementations may - automatically assign values and not permit an - SNMP write, while others may require the value - to be set manually." - REFERENCE "{ISIS.aoi systemId (119)}" - ::= { isisSysEntry 4 } - - isisSysMaxPathSplits OBJECT-TYPE - SYNTAX Integer32 (1..32) - MAX-ACCESS read-create - STATUS current - DESCRIPTION - - - "Maximum number of paths with equal routing metric value - which it is permitted to split between. This object - follows the replaceOnlyWhileDisabled behavior." - REFERENCE "{ISIS.aoi maximumPathSplits (3)}" - DEFVAL { 2 } - ::= { isisSysEntry 5 } - - isisSysMaxLSPGenInt OBJECT-TYPE - SYNTAX Integer32 (1..65535) - UNITS "seconds" - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "Maximum interval, in seconds, between generated LSPs - by this instance of the protocol. This object follows - the resettingTimer behavior." - REFERENCE "{ISIS.aoi maximumLSPGenerationInterval (6)}" - DEFVAL { 900 } - ::= { isisSysEntry 6 } - - isisSysOrigL1LSPBuffSize OBJECT-TYPE - SYNTAX LSPBuffSize - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The maximum size of Level 1 LSPs and SNPs originated by - this instance of the protocol. This object follows the - replaceOnlyWhileDisabled behavior." - REFERENCE "{ISIS.aoi originatingL1LSPBufferSize (9)}" - DEFVAL { 1492 } - ::= { isisSysEntry 7 } - - isisSysMaxAreaAddresses OBJECT-TYPE - SYNTAX Integer32 (3..254) - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The maximum number of area addresses to be permitted for - this instance of the protocol. Note that all - Intermediate Systems in the same area must have the same - value configured for this attribute if correct operation - is to be assumed. This object follows the - replaceOnlyWhileDisabled behavior." - REFERENCE "{ISIS.aoi maximumAreaAddresses (4)}" - DEFVAL { 3 } - ::= { isisSysEntry 8 } - - isisSysMinL1LSPGenInt OBJECT-TYPE - - - SYNTAX Integer32 (1..65535) - UNITS "seconds" - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "Minimum interval, in seconds, between successive generation - of L1 LSPs with the same LSPID by this instace of the protocol. - This object follows the resettingTimer behavior." - REFERENCE "{ISIS.aoi minimumLSPGenerationInterval (11)}" - DEFVAL { 30 } - ::= { isisSysEntry 9 } - - isisSysMinL2LSPGenInt OBJECT-TYPE - SYNTAX Integer32 (1..65535) - UNITS "seconds" - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "Minimum interval, in seconds, between successive generation - of L2 LSPs with the same LSPID by this instance of the protocol. - This object follows the resettingTimer behavior." - REFERENCE "{ISIS.aoi minimumLSPGenerationInterval (11)}" - DEFVAL { 30 } - ::= { isisSysEntry 10 } - - isisSysPollESHelloRate OBJECT-TYPE - SYNTAX Integer32 (1..65535) - UNITS "seconds" - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The value, in seconds, to be used for the suggested ES - configuration timer in ISH PDUs when soliciting the ES - configuration." - REFERENCE "{ISIS.aoi pollESHelloRate (13)}" - DEFVAL { 50 } - ::= { isisSysEntry 11 } - - isisSysWaitTime OBJECT-TYPE - SYNTAX Integer32 (1..65535) - UNITS "seconds" - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "Number of seconds to delay in waiting state before - entering on state. This object follows the resettingTimer - behavior." - REFERENCE "{ISIS.aoi waitingTime (15)}" - - - DEFVAL { 60 } - ::= { isisSysEntry 12 } - - isisSysAdminState OBJECT-TYPE - SYNTAX AdminState - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The administrative state of this instance of the - Integrated IS-IS protocol. Setting this object to the - value 'on' when its current value is 'off' enables operation - of this instnace of the Integrated IS-IS protocol." - DEFVAL { off } - ::= { isisSysEntry 13 } - - isisSysL1State OBJECT-TYPE - SYNTAX LevelState - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The state of the Level 1 database. - The value 'overloaded' indicates a database that is - low on an essential resource, such as memory. - The administrator may set the state to 'wait' when - the router is initializing by setting the object - isisSysSetOverload. - If the state is waiting or overloaded, we - originate LSPs with the Overload bit set." - REFERENCE "{ISIS.aoi l1State (17)}" - ::= { isisSysEntry 14 } - - isisSysCorrLSPs OBJECT-TYPE - SYNTAX Counter32 - UNITS "frames" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of corrupted in-memory LSPs detected. - - LSPs received from the wire with a bad checksum - are silently dropped and not counted." - REFERENCE "{ISIS.aoi corruptedLSPsDetected (19)}" - ::= { isisSysEntry 15 } - - isisSysLSPL1DbaseOloads OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - - - DESCRIPTION - "Number of times the LSP L1 database has become - overloaded." - REFERENCE "{ISIS.aoi lSPL1DatabaseOverloads (20)}" - ::= { isisSysEntry 16 } - - isisSysManAddrDropFromAreas OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of times a manual address has been dropped from - the area." - REFERENCE "{ISIS.aoi manualAddressesDroppedFromArea (21)}" - ::= { isisSysEntry 17 } - - isisSysAttmptToExMaxSeqNums OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of times the IS has attempted to exceed the - maximum sequence number." - REFERENCE "{ISIS.aoi - attemptsToExceedmaximumSequenceNumber (22)}" - ::= { isisSysEntry 18 } - - isisSysSeqNumSkips OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of times a sequence number skip has occurred." - REFERENCE "{ISIS.aoi sequenceNumberSkips (23)}" - ::= { isisSysEntry 19 } - - isisSysOwnLSPPurges OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of times a zero-aged copy of the system's own LSP - is received from some other node." - REFERENCE "{ISIS.aoi ownLSPPurges (24)}" - ::= { isisSysEntry 20 } - - isisSysIDFieldLenMismatches OBJECT-TYPE - SYNTAX Counter32 - - - UNITS "frames" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of times a PDU is received with a different value - for ID field length to that of the receiving system." - REFERENCE "{ISIS.aoi iDFieldLengthMismatches (25)}" - ::= { isisSysEntry 21 } - - isisSysMaxAreaAddrMismatches OBJECT-TYPE - SYNTAX Counter32 - UNITS "frames" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of times a PDU is received with a different value - for MaximumAreaAddresses from that of the receiving - system." - REFERENCE "{ISIS.aoi MaximumAreaAddressesMismatches (118)}" - ::= { isisSysEntry 22 } - --- The following objects map those from the cLNSISISLevel2-P --- Package - - isisSysOrigL2LSPBuffSize OBJECT-TYPE - SYNTAX LSPBuffSize - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The maximum size of Level 2 LSPs and SNPs originated by - this system. This object follows the - replaceOnlyWhileDisabled behavior." - REFERENCE "{ISIS.aoi originatingL2LSPBufferSize (26)}" - DEFVAL { 1492 } - ::= { isisSysEntry 23 } - - isisSysL2State OBJECT-TYPE - SYNTAX LevelState - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The state of the Level 2 database. - The value 'overloaded' indicates a database that is - low on an essential resource, such as memory. - The administrator may set the state to 'wait' when - the router is initializing by setting the object - isisSysSetOverload. - If the state is waiting or overloaded, we - - - originate LSPs with the Overload bit set." - REFERENCE "{ISIS.aoi l2State (28)}" - ::= { isisSysEntry 24 } - - isisSysLSPL2DbaseOloads OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of times the Level 2 LSP database has become - overloaded." - REFERENCE "{ISIS.aoi lSPL2DatabaseOverloads (32)}" - ::= { isisSysEntry 25 } - - isisSysAuthTypeFails OBJECT-TYPE - SYNTAX Counter32 - UNITS "frames" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of authentication type mismatches recognized - by this instance of the protocol." - ::= { isisSysEntry 26 } - - isisSysAuthFails OBJECT-TYPE - SYNTAX Counter32 - UNITS "frames" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of authentication failures recognized by this - instance of the protocol." - ::= { isisSysEntry 27 } - - isisSysLogAdjacencyChanges OBJECT-TYPE - SYNTAX TruthValue - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "If true, causes IS-IS to generate a log message when an - IS-IS adjacency changes state (up or down)." - DEFVAL { false } - ::= { isisSysEntry 28 } - - isisSysPartChanges OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - - - DESCRIPTION - "partition changes" - ::= { isisSysEntry 29 } - - isisSysMaxAreaCheck OBJECT-TYPE - SYNTAX TruthValue - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "When on, enables checking of maximum area - addresses per IS version of ISO10589." - DEFVAL { true } - ::= { isisSysEntry 30 } - - isisSysNextCircIndex OBJECT-TYPE - SYNTAX TestAndIncr - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This object is used to assign values to - isisCircIndex as described in 'Textual - Conventions for SNMPv2'. The network manager - reads this object, and then writes the value - back as the isisCircIndex in a SET that creates - a new instance of isisCircEntry. If the SET - fails with the code 'inconsistentValue', then - the process must be repeated; If the SET succeeds, - then the object is incremented, and the new - isisCircuit is created according to the manager's - directions." - ::= { isisSysEntry 31 } - - isisSysExistState OBJECT-TYPE - SYNTAX RowStatus - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The state of the ISIS router. Turning this to - state 'destroy' forces the router to forget all - the current configuration. Setting the state to - 'notInService' stops protocol processing, but - retains the configuration." - DEFVAL { active } - ::= { isisSysEntry 32 } - - isisSysL2toL1Leaking OBJECT-TYPE - SYNTAX TruthValue - MAX-ACCESS read-create - - - STATUS current - DESCRIPTION - "If true, allow the router to leak L2 routes into L1." - DEFVAL { false } - ::= { isisSysEntry 33 } - - isisSysSetOverload OBJECT-TYPE - SYNTAX INTEGER - { - setL1Overload(1), - setL2Overload(2), - setL1L2Overload(3), - overloadClear(4) - } - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "Administratively set the overload bit for each level. - The overload bit will continue to be set if the - implementation runs out of memory, independent of - this variable" - DEFVAL {overloadClear } - ::= { isisSysEntry 34 } - - isisSysL1MetricStyle OBJECT-TYPE - SYNTAX MetricStyle - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "Which style of Metric do we generate in our L1 LSPs? - This object follows the replaceOnlyWhileDisabled - behavior." - DEFVAL { narrow } - ::= { isisSysEntry 35 } - - isisSysL1SPFConsiders OBJECT-TYPE - SYNTAX MetricStyle - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "Which style of Metric do we consider in our - L1 SPF computation?" - DEFVAL { narrow } - ::= { isisSysEntry 36 } - - isisSysL2MetricStyle OBJECT-TYPE - SYNTAX MetricStyle - MAX-ACCESS read-create - - - STATUS current - DESCRIPTION - "Which style of Metric do we generate in our L2 LSPs? - This object follows the replaceOnlyWhileDisabled - behavior." - DEFVAL { narrow } - ::= { isisSysEntry 37 } - - isisSysL2SPFConsiders OBJECT-TYPE - SYNTAX MetricStyle - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "Which style of Metric do we consider in our - SPF computation?" - DEFVAL { narrow } - ::= { isisSysEntry 38 } - - isisSysTEEnabled OBJECT-TYPE - SYNTAX ISLevel - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "Do we do Traffic Engineering? At which level?" - DEFVAL { none } - ::= { isisSysEntry 39 } - --- The Level 1 Manual Area Address Table --- contains the set of area addresses manually configured --- for each instance of the Integrated IS-IS protocol. --- At least one row in which the value of isisManAreaAddrExistState --- is active must be present for each active instance of --- the protocol The maximum number of rows in this table for --- each instance of the protocol for which the object --- isisManAreaAddrExistState has the value active is the value --- of isisSysMaxAreaAddresses. --- An attempt to create more than isisSysMaxAreaAddresses --- rows of isisManAreaAddrEntry with state 'active' in one --- instance of the IS-IS protocol should return --- inconsistentValue. - - isisManAreaAddrTable OBJECT-TYPE - SYNTAX SEQUENCE OF IsisManAreaAddrEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The set of manual area addresses configured on this - Intermediate System." - - - REFERENCE "{ISIS.aoi manualAreaAddresses (10)}" - ::= { isisSystem 2 } - - isisManAreaAddrEntry OBJECT-TYPE - SYNTAX IsisManAreaAddrEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Each entry contains one area address manually configured - on this system" - INDEX { isisSysInstance, - isisManAreaAddr } - ::= { isisManAreaAddrTable 1 } - - IsisManAreaAddrEntry ::= - SEQUENCE { - isisManAreaAddr - OSINSAddress, - isisManAreaAddrExistState - RowStatus - } - - isisManAreaAddr OBJECT-TYPE - SYNTAX OSINSAddress - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A manually configured area address for this system. This - object follows the index behavior. - - Note: an index for the entry {1, {49.0001} active} in - this table would be the ordered pair - (1, (0x03 0x49 0x00 0x01)), as the length of an Octet - string is part of the OID." - - ::= { isisManAreaAddrEntry 1 } - - isisManAreaAddrExistState OBJECT-TYPE - SYNTAX RowStatus - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The state of the isisManAreaAddrEntry. This object - follows the Row Status behavior. If the isisSysAdminState - for this instance of the IS-IS protocol is 'on', and an - attempt is made to set this object to the value 'destroy' - or 'notInService' when this is the only isisManAreaAddrEntry - in state 'active' for this instance of the IS-IS protocol - - - should return inconsistentValue." - - DEFVAL { active } - ::= { isisManAreaAddrEntry 2 } - --- The Level 1 Area Address Table - --- The Level 1 Area Address Table contains the --- union of the sets of relevant area addresses reported --- in all Level 1 LSPs received by this Intermediate System. - - isisAreaAddrTable OBJECT-TYPE - SYNTAX SEQUENCE OF IsisAreaAddrEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The union of the sets of area addresses reported in all - Level 1 LSPs with segment number zero received by this - instance of the protocol from Intermediate Systems which - are reachable via Level 1 routing." - REFERENCE "{ISIS.aoi areaAddresses (18)}" - ::= { isisSystem 3 } - - isisAreaAddrEntry OBJECT-TYPE - SYNTAX IsisAreaAddrEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Each entry contains one area address reported in a - Level 1 LSP received by this instance of the IS-IS - protocol." - INDEX { isisSysInstance, - isisAreaAddr } - ::= { isisAreaAddrTable 1 } - - IsisAreaAddrEntry ::= - SEQUENCE { - isisAreaAddr - OSINSAddress - } - - isisAreaAddr OBJECT-TYPE - SYNTAX OSINSAddress - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "An area address reported in a Level 1 LSP received by - this instance of the IS-IS protocol." - - - ::= { isisAreaAddrEntry 1 } - --- The System Integrated Group - --- The System Integrated Group is present if the system --- supports Integrated ISIS at Level 1. - --- The System Protocol Supported Table - --- The System Protocol Supported Table contains the manually --- configured set of protocols supported by each --- instance of the Integrated ISIS protocol. --- - - isisSysProtSuppTable OBJECT-TYPE - SYNTAX SEQUENCE OF IsisSysProtSuppEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "This table contains the manually configured set of - protocols supported by each instance of the Integrated - ISIS protocol." - ::= { isisSystem 4 } - - isisSysProtSuppEntry OBJECT-TYPE - SYNTAX IsisSysProtSuppEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Each entry contains one protocol supported by an - instance of the Integrated ISIS protocol." - - INDEX { isisSysInstance, - isisSysProtSuppProtocol } - - ::= { isisSysProtSuppTable 1 } - - IsisSysProtSuppEntry ::= - SEQUENCE { - isisSysProtSuppProtocol - SupportedProtocol, - isisSysProtSuppExistState - RowStatus - } - - isisSysProtSuppProtocol OBJECT-TYPE - SYNTAX SupportedProtocol - MAX-ACCESS not-accessible - - - STATUS current - DESCRIPTION - "One supported protocol. This object follows the index - behavior." - ::= { isisSysProtSuppEntry 1 } - - isisSysProtSuppExistState OBJECT-TYPE - SYNTAX RowStatus - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The state of the isisSysProtSuppEntry. This object - follows the RowStatus behavior." - DEFVAL { active } - ::= { isisSysProtSuppEntry 2 } - - --- The Summary Address Table - --- The Summary Address Table contains the set of summary --- addresses manually configured for each instance of --- IP Integrated ISIS on the system. - - isisSummAddrTable OBJECT-TYPE - SYNTAX SEQUENCE OF IsisSummAddrEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The set of IP summary addresses to use in forming - summary TLVs originated by this Intermediate System. - - An administrator may use a summary address to combine - and modify IP Reachability announcements. If the - Intermediate system can reach any subset of the summary - address, the summary address will be announced instead, - at the configured metric." - ::= { isisSystem 5 } - - isisSummAddrEntry OBJECT-TYPE - SYNTAX IsisSummAddrEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Each entry contains one IP summary address." - - INDEX { isisSysInstance, - isisSummAddressType, - isisSummAddress, - - - isisSummAddrPrefixLen } - ::= { isisSummAddrTable 1 } - - IsisSummAddrEntry ::= - SEQUENCE { - isisSummAddressType - InetAddressType, - isisSummAddress - InetAddress, - isisSummAddrPrefixLen - InetAddressPrefixLength, - isisSummAddrExistState - RowStatus, - isisSummAddrAdminState - INTEGER, - isisSummAddrMetric - DefaultMetric - } - - isisSummAddressType OBJECT-TYPE - SYNTAX InetAddressType - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The Type of IP address for this summary address. - This object follows the index behavior." - ::= { isisSummAddrEntry 1 } - - isisSummAddress OBJECT-TYPE - SYNTAX InetAddress (SIZE(4|16)) - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The IP Address value for this summary address. - This object follows the index behavior." - ::= { isisSummAddrEntry 2 } - - isisSummAddrPrefixLen OBJECT-TYPE - SYNTAX InetAddressPrefixLength (0..128) - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The Length of the IP NetMask for this summary address." - ::= { isisSummAddrEntry 3 } - - isisSummAddrExistState OBJECT-TYPE - SYNTAX RowStatus - MAX-ACCESS read-create - - - STATUS current - DESCRIPTION - "The existence state of this summary address. This object - follows the row status behavior." - DEFVAL { active } - ::= { isisSummAddrEntry 4 } - - isisSummAddrAdminState OBJECT-TYPE - SYNTAX INTEGER - { - summaryL1(1), - summaryL2(2), - summaryL1L2(3), - summaryOff(4) - } - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The administrative state of this entry. When the - administrative state changes, if the new value would - cause the contents of LSPs originated by the system - to change, then those new LSPs must be generated and - sent as soon as is permitted by the ISIS protocol. - - A summary entry may exist but be disable (summaryOff). - Or it may be used to generate reacability entries at - a single level, such as Level 2 (summaryL2)." - DEFVAL { summaryOff } - ::= { isisSummAddrEntry 5 } - - isisSummAddrMetric OBJECT-TYPE - SYNTAX DefaultMetric - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The metric value to announce this summary - address with in LSPs generated by this system." - DEFVAL { 20 } - ::= { isisSummAddrEntry 6 } - --- The Circuit Group - --- The Circuit Group is current - --- The Circuit Table --- Each broadcast or point-to-point interface on the system --- corresponds to one entry in the Circuit table. There may be --- many X.25 DA circuit entries in the Circuit table for an - - --- X.25 interface. - - isisCircTable OBJECT-TYPE - SYNTAX SEQUENCE OF IsisCircEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The table of circuits used by each instance of - Integrated IS-IS on this system." - ::= { isisCirc 1 } - - isisCircEntry OBJECT-TYPE - SYNTAX IsisCircEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "An isisCircEntry exists for each circuit used by - Integrated IS-IS on this system." - INDEX { isisSysInstance, - isisCircIndex } - ::= { isisCircTable 1 } - - IsisCircEntry ::= - SEQUENCE { - isisCircIndex - Integer32, - isisCircIfIndex - Integer32, - isisCircIfSubIndex - Integer32, - isisCircLocalID - Integer32, - isisCircAdminState - AdminState, - isisCircExistState - RowStatus, - isisCircType - INTEGER, - isisCircExtDomain - TruthValue, - isisCircAdjChanges - Counter32, - isisCircInitFails - Counter32, - isisCircRejAdjs - Counter32, - isisCircOutCtrlPDUs - Counter32, - - - isisCircInCtrlPDUs - Counter32, - isisCircIDFieldLenMismatches - Counter32, - isisCircLevel - INTEGER, - isisCircMCAddr - INTEGER, - isisCircPtToPtCircID - CircuitID, - isisCircPassiveCircuit - TruthValue, - isisCircMeshGroupEnabled - INTEGER, - isisCircMeshGroup - Integer32, - isisCircSmallHellos - AdminState, - isisCircUpTime - UpTime - } - - isisCircIndex OBJECT-TYPE - SYNTAX Integer32 (1..2000000000) - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The identifier of this circuit, unique within the - instance of the IS-IS protocol. This object follows - the index behavior. This is for SNMP Indexing - purposes only and need not have any relation to - any protocol value." - ::= { isisCircEntry 1 } - - isisCircIfIndex OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The value of ifIndex for the interface to which this - circuit corresponds. This object cannot be modified - after creation" - ::= { isisCircEntry 2 } - - isisCircIfSubIndex OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-create - STATUS current - - - DESCRIPTION - "A specifier for the part of the interface ifIndex to which - this circuit corresponds, such as a DLCI or VPI/VCI. - This object cannot be modified after creation" - ::= { isisCircEntry 3 } - - isisCircLocalID OBJECT-TYPE - SYNTAX Integer32(0..255) - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "An identification that can be used in protocol packets - to identify a circuit. Values of isisCircLocalID do - not need to be unique. They are only required to differ - on LANs where the Intermediate System is the Designated - Intermediate System." - ::= { isisCircEntry 4 } - - isisCircAdminState OBJECT-TYPE - SYNTAX AdminState - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The administrative state of the circuit. This - object follows the AdminState behavior." - DEFVAL { off } - ::= { isisCircEntry 5 } - - isisCircExistState OBJECT-TYPE - SYNTAX RowStatus - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The existence state of this circuit. This object follows - the Row Status behavior. Setting the state to 'notInService' - halts the generation and processing of IS-IS protocol PDUs - on this circuit. Setting the state to destroy will also - erase any configuration associated with the circuit." - DEFVAL { active } - ::= { isisCircEntry 6 } - - isisCircType OBJECT-TYPE - SYNTAX INTEGER { - broadcast(1), - ptToPt(2), - staticIn(3), - staticOut(4), - dA(5) - - - } - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The type of the circuit. This object follows the - replaceOnlyWhileDisabled behavior. The type specified - must be compatible with the type of the interface defined - by the value of isisCircIfIndex." - REFERENCE "{ISIS.aoi type (33)}" - ::= { isisCircEntry 7 } - - isisCircExtDomain OBJECT-TYPE - SYNTAX TruthValue - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "If true, suppress normal transmission of and - interpretation of Intra-domain ISIS PDUs on this - circuit." - REFERENCE "{ISIS.aoi externalDomain (46)}" - DEFVAL { false } - ::= { isisCircEntry 8 } - - isisCircAdjChanges OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of times an adjacency state change has - occurred on this circuit." - REFERENCE "{ISIS.aoi changesInAdjacencyState (40)}" - ::= { isisCircEntry 9 } - - isisCircInitFails OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of times initialization of this circuit has - failed." - REFERENCE "{ISIS.aoi initializationFailures (41)}" - ::= { isisCircEntry 10 } - - isisCircRejAdjs OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - - - "The number of times an adjacency has been rejected on - this circuit." - REFERENCE "{ISIS.aoi rejectedAdjacencies (42)}" - ::= { isisCircEntry 11 } - - isisCircOutCtrlPDUs OBJECT-TYPE - SYNTAX Counter32 - UNITS "frames" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of IS-IS control PDUs sent on this circuit." - REFERENCE "{ISIS.aoi iSISControlPDUsSent (43)}" - ::= { isisCircEntry 12 } - - isisCircInCtrlPDUs OBJECT-TYPE - SYNTAX Counter32 - UNITS "frames" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of IS-IS control PDUs received on this - circuit." - REFERENCE "{ISIS.aoi controlPDUsReceived (44)}" - ::= { isisCircEntry 13 } - - isisCircIDFieldLenMismatches OBJECT-TYPE - SYNTAX Counter32 - UNITS "frames" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of times an IS-IS control PDU with an ID - field length different to that for this system has been - received." - REFERENCE "{ISIS.aoi iDFieldLengthMismatches (25)}" - ::= { isisCircEntry 14 } - - isisCircLevel OBJECT-TYPE - SYNTAX INTEGER - { - level1(1), - level2(2), - level1L2(3) - } - MAX-ACCESS read-create - STATUS current - DESCRIPTION - - - "Indicates which type of packets will be sent and - accepted on this circuit. The values used will be - modified by the settings of isisSysType. This - object follows the replaceOnlyWhileDisabled behavior." - DEFVAL { level1L2 } - ::= { isisCircEntry 15 } - - isisCircMCAddr OBJECT-TYPE - SYNTAX INTEGER{ - group (1), - functional (2) - } - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "Specifies which type of multicast address will - be used for sending HELLO PDUs on this - circuit. This may be used in Token Ring networks. - See section 8.4.8 of ISO 10589." - DEFVAL { group } - ::= { isisCircEntry 16 } - - isisCircPtToPtCircID OBJECT-TYPE - SYNTAX CircuitID - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The ID of the circuit allocated during initialization. - If no value has been negotiated (either because the - adjacency is to an End System, or because initialization - has not yet successfully completed), this object has the - value which would be proposed for this circuit (i.e. the - concatenation of the local system ID and the one octet - local Circuit ID for this circuit." - REFERENCE "{ISIS.aoi ptPtCircuitID (51)}" - ::= { isisCircEntry 17 } - - isisCircPassiveCircuit OBJECT-TYPE - SYNTAX TruthValue - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "Should we include this interface in LSPs, even if - it is not running the ISIS Protocol?" - REFERENCE "{}" - DEFVAL { false } - ::= { isisCircEntry 18 } - - - - isisCircMeshGroupEnabled OBJECT-TYPE - SYNTAX INTEGER { - inactive(1), - blocked(2), - set(3) - } - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "Is this port a member of a mesh group, or blocked? - Circuits in the same mesh group act as a virtual - multiaccess network. LSPs seen on one circuit in - a mesh group will not be flooded to another circuit - in the same mesh group." - REFERENCE "{}" - DEFVAL { inactive } - ::= { isisCircEntry 19 } - - isisCircMeshGroup OBJECT-TYPE - SYNTAX Integer32 (1..2000000000) - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "Circuits in the same mesh group act as a virtual - multiaccess network. LSPs seen on one circuit in - a mesh group will not be flooded to another circuit - in the same mesh group. If isisCircMeshGroupEnabled - is inactive, this value is ignored." - REFERENCE "{}" - DEFVAL { 1 } - ::= { isisCircEntry 20 } - - isisCircSmallHellos OBJECT-TYPE - SYNTAX AdminState - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "Can we send unpadded hellos on LAN circuits? Off means - LAN Hellos must be padded. - Implementations should allow the administrator to read - this value. An implementation need not be able to - support unpadded hellos to be conformant." - DEFVAL { off } - ::= { isisCircEntry 21 } - - isisCircUpTime OBJECT-TYPE - SYNTAX UpTime - UNITS "seconds" - - - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "If the circuit is up, the amount of time in seconds - since this circuit entered state 'up'. If the circuit - is not up, the number of seconds since the circuit was - up, or since the system started, if the circuit has - never been up. - - Note: This can be implemented as start time less - the current time." - ::= { isisCircEntry 22 } - --- The Circuit Level Table --- This table captures level-specific information about a circuit - - isisCircLevelTable OBJECT-TYPE - SYNTAX SEQUENCE OF IsisCircLevelEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Level specific information about circuits used by IS-IS" - ::= { isisCircLevelValues 1 } - - isisCircLevelEntry OBJECT-TYPE - SYNTAX IsisCircLevelEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "An isisCircLevelEntry exists for each level on - each circuit used by Integrated IS-IS on this system." - INDEX { isisSysInstance, - isisCircIndex, - isisCircLevelIndex } - ::= { isisCircLevelTable 1 } - - IsisCircLevelEntry ::= - SEQUENCE { - isisCircLevelIndex - INTEGER, - isisCircLevelMetric - DefaultMetric, - isisCircLevelISPriority - ISPriority, - -- isisCircLevelCircID Removed: duplicates isisCircPtToPtCircID - -- CircuitID, - isisCircLevelDesIS - SystemID, - - - isisCircLevelLANDesISChanges - Counter32, - isisCircLevelHelloMultiplier - Integer32, - isisCircLevelHelloTimer - Integer32, - isisCircLevelDRHelloTimer - Integer32, - isisCircLevelLSPThrottle - Integer32, - isisCircLevelMinLSPRetransInt - Integer32, - isisCircLevelCSNPInterval - Integer32, - isisCircLevelPartSNPInterval - Integer32 - } - - isisCircLevelIndex OBJECT-TYPE - SYNTAX INTEGER { - level1IS (1), - level2IS (2) - } - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The level that this entry describes." - ::= { isisCircLevelEntry 1 } - - isisCircLevelMetric OBJECT-TYPE - SYNTAX DefaultMetric - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The metric value of this circuit for this level." - REFERENCE "{ISIS.aoi l1DefaultMetric (35)}" - DEFVAL { 10 } - ::= { isisCircLevelEntry 2 } - - isisCircLevelISPriority OBJECT-TYPE - SYNTAX ISPriority - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The priority for becoming LAN Designated - Intermediate System at this level." - REFERENCE "{ISIS.aoi l2IntermediateSystemPriority (73)}" - DEFVAL { 64 } - - - ::= { isisCircLevelEntry 3 } - --- isisCircLevelCircID OBJECT-TYPE --- SYNTAX CircuitID --- MAX-ACCESS read-only --- STATUS current --- DESCRIPTION --- "The ID of the circuit allocated during initialization. --- If no value has been negotiated (either because the --- adjacency is to an End System, or because initialization --- has not yet successfully completed), this object has the --- value which would be proposed for this circuit (i.e. the --- concatenation of the local system ID and the one octet --- local Circuit ID for this circuit." --- REFERENCE "{ISIS.aoi ptPtCircuitID (51)}" --- ::= { isisCircLevelEntry 4 } - - isisCircLevelDesIS OBJECT-TYPE - SYNTAX SystemID - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The ID of the LAN Designated Intermediate System - on this circuit at this level. If, for any reason, - this system is not partaking in the relevant - Designated Intermediate System election process, - then the value returned is the zero length OCTET STRING." - REFERENCE "{ISIS.aoi l2DesignatedIntermediateSystem (75)}" - ::= { isisCircLevelEntry 4 } - - isisCircLevelLANDesISChanges OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of times the LAN Designated - Intermediate System has changed at this level." - REFERENCE "{ISIS.aoi - lanL2DesignatedIntermediateSystemChanges (76)}" - ::= { isisCircLevelEntry 5 } - - isisCircLevelHelloMultiplier OBJECT-TYPE - SYNTAX Integer32 (2..100) - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "This value is multiplied by the corresponding HelloTimer - and the result in seconds (rounded up) is used as the - - - holding time in transmitted hellos, to be used by receivers - of hello packets from this IS" - REFERENCE "{ISIS.aoi iSISHelloTimer (45)}" - DEFVAL { 10 } - ::= { isisCircLevelEntry 6 } - - isisCircLevelHelloTimer OBJECT-TYPE - SYNTAX Integer32 (10..600000) - UNITS "milliseconds" - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "Maximum period, in milliseconds, between IIH PDUs - on multiaccess networks at this level for LANs. - The value at level 1 is used as the period between - Hellos on point to point circuits. Setting this - value at level 2 on a point to point circuit will - result in an error of InconsistentValue. - - This object follows the resettingTimer behavior." - REFERENCE "{ISIS.aoi iSISHelloTimer (45)}" - DEFVAL { 3000 } - ::= { isisCircLevelEntry 7 } - - isisCircLevelDRHelloTimer OBJECT-TYPE - SYNTAX Integer32 (10..120000) - UNITS "milliseconds" - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "Period, in milliseconds, between Hello PDUs on - multiaccess networks when this IS is the Designated - Intermediate System. This object follows the - resettingTimer behavior." - REFERENCE "{ISIS.aoi iSISHelloTimer (45)}" - DEFVAL { 1000 } - ::= { isisCircLevelEntry 8 } - - isisCircLevelLSPThrottle OBJECT-TYPE - SYNTAX Integer32 (1..65535) - UNITS "milliseconds" - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "Minimal interval of time, in milliseconds, between - transmissions of LSPs on an interface at this level." - REFERENCE "{ISIS.aoi minimumBroadcastLSPTransmissionInterval (5)}" - DEFVAL { 10 } - - - ::= { isisCircLevelEntry 9 } - - isisCircLevelMinLSPRetransInt OBJECT-TYPE - SYNTAX Integer32 (1..300) - UNITS "seconds" - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "Minimum interval, in seconds, between re-transmission of - an LSP at this level. This object follows the resettingTimer - behavior. - - Note that isisCircLevelLSPThrottle controls - how fast we send back to back LSPs. This variable - controls how fast we re-send the same LSP." - REFERENCE "{ISIS.aoi minimumLSPTransmissionInterval (5)}" - DEFVAL { 5 } - ::= { isisCircLevelEntry 10 } - - isisCircLevelCSNPInterval OBJECT-TYPE - SYNTAX Integer32 (1..600) - UNITS "seconds" - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "Interval of time, in seconds, between transmission - of CSNPs on multiaccess networks if this router is - the designated router at this level." - REFERENCE "{}" - DEFVAL { 10 } - ::= { isisCircLevelEntry 11 } - - isisCircLevelPartSNPInterval OBJECT-TYPE - SYNTAX Integer32 (1..120) - UNITS "seconds" - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "Minimum interval in seconds between sending Partial Sequence - Number PDUs at this level. This object follows the - resettingTimer behavior." - REFERENCE "{ISIS.aoi partialSNPInterval (14)}" - DEFVAL { 2 } - ::= { isisCircLevelEntry 12 } - --- isisPacketCountTable keeps track of the number of IS-IS --- control packets sent and received at each level - - - - isisPacketCountTable OBJECT-TYPE - SYNTAX SEQUENCE OF IsisPacketCountEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Information about IS-IS packets sent and received" - ::= { isisCircPDUCounters 1 } - - isisPacketCountEntry OBJECT-TYPE - SYNTAX IsisPacketCountEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Information about IS-IS protocol traffic at one level - on one circuit in one direction" - INDEX { isisSysInstance, - isisCircIndex, - isisPacketCountLevel, - isisPacketCountDirection } - ::= { isisPacketCountTable 1 } - - IsisPacketCountEntry ::= - SEQUENCE { - isisPacketCountLevel - INTEGER, - isisPacketCountDirection - INTEGER, - isisPacketCountHello - Counter32, - isisPacketCountLSP - Counter32, - isisPacketCountCSNP - Counter32, - isisPacketCountPSNP - Counter32 - } - - isisPacketCountLevel OBJECT-TYPE - SYNTAX INTEGER - { - level1(1), - level2(2) - } - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The level at which these PDU counts have been collected." - ::= { isisPacketCountEntry 1 } - - - isisPacketCountDirection OBJECT-TYPE - SYNTAX INTEGER - { - sending(1), - receiving(2) - } - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Were we sending or receiving these PDUs?" - ::= { isisPacketCountEntry 2 } - - - isisPacketCountHello OBJECT-TYPE - SYNTAX Counter32 - UNITS "frames" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of IS-IS Hello PDUs seen in this - direction at this level." - REFERENCE "{ISIS.aoi iSISControlPDUsSent (43)}" - ::= { isisPacketCountEntry 3 } - - isisPacketCountLSP OBJECT-TYPE - SYNTAX Counter32 - UNITS "frames" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of IS-IS LSPs seen in this - direction at this level." - REFERENCE "{ISIS.aoi iSISControlPDUsSent (43)}" - ::= { isisPacketCountEntry 4 } - - isisPacketCountCSNP OBJECT-TYPE - SYNTAX Counter32 - UNITS "frames" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of IS-IS CSNPs seen in this - direction at this level." - REFERENCE "{ISIS.aoi iSISControlPDUsSent (43)}" - ::= { isisPacketCountEntry 5 } - - isisPacketCountPSNP OBJECT-TYPE - SYNTAX Counter32 - - - UNITS "frames" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of IS-IS PSNPs seen in this - direction at this level." - REFERENCE "{ISIS.aoi iSISControlPDUsSent (43)}" - ::= { isisPacketCountEntry 6 } - --- The Circuit IS Group --- --- The Circuit IS Group is present if the system supports the --- IS functions of the ISO 9542 protocol. --- The Circuit IS Table --- --- This table is not implemented - jdp - - - --- The IS Adjacency Group --- --- The IS Adjacency Group is current and contains information --- about adjacencies to routers maintained by the Integrated --- IS-IS protocol --- --- The IS Adjacency Table --- --- Each adjacency to an IS corresponds to one entry in this --- table. - - isisISAdjTable OBJECT-TYPE - SYNTAX SEQUENCE OF IsisISAdjEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The table of adjacencies to Intermediate Systems." - ::= { isisISAdj 1 } - - isisISAdjEntry OBJECT-TYPE - SYNTAX IsisISAdjEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Each entry corresponds to one adjacency to an - Intermediate System on this system." - INDEX { isisSysInstance, - isisCircIndex, - isisISAdjIndex } - - - ::= { isisISAdjTable 1 } - - IsisISAdjEntry ::= - SEQUENCE { - isisISAdjIndex - Integer32, - isisISAdjState - INTEGER, - isisISAdjNeighSNPAAddress - OSINSAddress, - isisISAdjNeighSysType - INTEGER, - isisISAdjNeighSysID - OCTET STRING, - isisISAdjUsage - INTEGER, - isisISAdjHoldTimer - Integer32, - isisISAdjNeighPriority - ISPriority, - isisISAdjUpTime - UpTime - } - - isisISAdjIndex OBJECT-TYPE - SYNTAX Integer32 (1..2000000000) - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A unique value identifying the IS adjacency from all - other such adjacencies on this circuit. This value is - assigned by the system when the adjacency is created - automatically." - ::= { isisISAdjEntry 1 } - - isisISAdjState OBJECT-TYPE - SYNTAX INTEGER { - up (0), - initializing (1), - down (2), - failed (3) - } - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The state of the adjacency" - REFERENCE "{ISIS.aoi adjacencyState (78)}" - ::= { isisISAdjEntry 2 } - - - isisISAdjNeighSNPAAddress OBJECT-TYPE - SYNTAX OSINSAddress - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The SNPA address of the neighboring system." - REFERENCE "{ISIS.aoi neighbourSNPAAddress (79)}" - ::= { isisISAdjEntry 3 } - - isisISAdjNeighSysType OBJECT-TYPE - SYNTAX INTEGER { - l1IntermediateSystem(1), - l2IntermediateSystem(2), - l1L2IntermediateSystem(3), - unknown(4) - } - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The type of the neighboring system." - REFERENCE "{ISIS.aoi neighbourSystemType (80)}" - ::= { isisISAdjEntry 4 } - - isisISAdjNeighSysID OBJECT-TYPE - SYNTAX OCTET STRING (SIZE(0..12)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The system ID and 4 byte circuit ID of the - neighboring Intermediate System set from - the source ID field of the Three-Way-Handshake - information from the neighbor's IIH PDUs." - REFERENCE "{ISIS.aoi neighbourSystemIds (83)}" - ::= { isisISAdjEntry 5 } - - isisISAdjUsage OBJECT-TYPE - SYNTAX INTEGER { - level1(1), - level2(2), - level1and2(3) - } - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "An adjacency of type level1 is used for level 1 - traffic only. An adjacency of type level2 is used - for level 2 traffic only. An adjacency of type level1and2 - is used for both level 1 and level 2 traffic. There - - - may be two adjacencies (of types level1 and level2) - between the same pair of Intermediate Systems." - REFERENCE "{ISIS.aoi adjacencyUsage (82)}" - ::= { isisISAdjEntry 6 } - - isisISAdjHoldTimer OBJECT-TYPE - SYNTAX Integer32 (1..65535) - UNITS "seconds" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The holding time in seconds for this adjacency. - This value is based on received IIH PDUs and - the elapsed time since receipt." - REFERENCE "{ISIS.aoi holdingTimer (85)}" - ::= { isisISAdjEntry 7 } - - isisISAdjNeighPriority OBJECT-TYPE - SYNTAX ISPriority - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Priority of the neighboring Intermediate System for - becoming the LAN Level 1 Designated Intermediate System - if the value of isisISAdjNeighSysType is - L1IntermediateSystem or LAN Level 2 Designated - Intermediate System if the value of - isisISAdjNeighSysType is L2IntermediateSystem." - REFERENCE "{ISIS.aoi lANPriority (86)}" - ::= { isisISAdjEntry 8 } - - isisISAdjUpTime OBJECT-TYPE - SYNTAX UpTime - UNITS "seconds" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "If the adjacency is up, the amount of time in seconds - since this adjacency entered state 'up'. If the adjacency - is not up, the number of seconds since the adjacency was - up, or since the system started, if the adjacency has - never been up. - - Note: This can be implemented as start time less - the current time." - ::= { isisISAdjEntry 9 } - --- The IS Adjacency Area Address Table - - --- The IS Adjacency Area Address Table contains the set of --- Area Addresses of neighboring --- Intermediate Systems as reported in IIH PDUs. - - isisISAdjAreaAddrTable OBJECT-TYPE - SYNTAX SEQUENCE OF IsisISAdjAreaAddrEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "This table contains the set of Area Addresses of - neighboring Intermediate Systems as reported in received - IIH PDUs." - REFERENCE "{ISIS.aoi areaAddressesOfNeighbour (84)}" - ::= { isisISAdj 2 } - - isisISAdjAreaAddrEntry OBJECT-TYPE - SYNTAX IsisISAdjAreaAddrEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Each entry contains one Area Address reported by a - neighboring Intermediate System in its IIH PDUs." - INDEX { isisSysInstance, - isisCircIndex, - isisISAdjAreaAddrAdjIndex, - isisISAdjAreaAddress } - ::= { isisISAdjAreaAddrTable 1 } - - IsisISAdjAreaAddrEntry ::= - SEQUENCE { - isisISAdjAreaAddrAdjIndex - Integer32, - isisISAdjAreaAddress - OSINSAddress - } - - isisISAdjAreaAddrAdjIndex OBJECT-TYPE - SYNTAX Integer32 (1..2000000000) - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The identifier of the IS adjacency to which this entry - belongs." - ::= { isisISAdjAreaAddrEntry 1 } - - isisISAdjAreaAddress OBJECT-TYPE - SYNTAX OSINSAddress - MAX-ACCESS read-only - - - STATUS current - DESCRIPTION - "One Area Address as reported in IIH PDUs received from - the neighbor." - ::= { isisISAdjAreaAddrEntry 2 } - --- The IS Adjacency IP Group - --- The IS Adjacency IP Group is present if the system supports --- IP Integrated IS-IS - --- The IS Adjacency IP Address Table - --- The IS Adjacency IP Address Table contains the --- set of IP Addresses of neighboring Intermediate Systems --- as reported in received IIH PDUs. - - isisISAdjIPAddrTable OBJECT-TYPE - SYNTAX SEQUENCE OF IsisISAdjIPAddrEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "This table contains the set of IP Addresses of - neighboring Intermediate Systems as reported in received - IIH PDUs." - ::= { isisISAdj 3 } - - isisISAdjIPAddrEntry OBJECT-TYPE - SYNTAX IsisISAdjIPAddrEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Each entry contains one IP Address reported by a - neighboring Intermediate System in its IIH PDUs." - INDEX { isisSysInstance, - isisCircIndex, - isisISAdjIndex, - isisISAdjIPAddrAdjIndex - } - ::= { isisISAdjIPAddrTable 1 } - - IsisISAdjIPAddrEntry ::= - SEQUENCE { - isisISAdjIPAddrAdjIndex - Integer32, - isisISAdjIPAddressType - InetAddressType, - isisISAdjIPAddress - - - InetAddress - } - - isisISAdjIPAddrAdjIndex OBJECT-TYPE - SYNTAX Integer32 (1..2000000000) - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "An index to this table which identifies the IP addresss - to which this entry belongs." - ::= { isisISAdjIPAddrEntry 1 } - - isisISAdjIPAddressType OBJECT-TYPE - SYNTAX InetAddressType - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The type of one IP Address as reported in IIH PDUs - received from the neighbor." - ::= { isisISAdjIPAddrEntry 2 } - - isisISAdjIPAddress OBJECT-TYPE - SYNTAX InetAddress (SIZE(4|16)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "One IP Address as reported in IIH PDUs received from the - neighbor." - ::= { isisISAdjIPAddrEntry 3 } - --- The IS Adjacency Integrated Group --- --- The IS Adjacency Integrated Group is present if the system --- supports Integrated ISIS. --- --- --- The IS Adjacency Protocol Supported Table --- --- The IS Adjacency Protocol Supported Table contains the set of --- protocols supported by neighboring --- Intermediate Systems as reported in received IIH PDUs. --- - isisISAdjProtSuppTable OBJECT-TYPE - SYNTAX SEQUENCE OF IsisISAdjProtSuppEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "This table contains the set of protocols supported by - - - neighboring Intermediate Systems as reported in received - IIH PDUs." - ::= { isisISAdj 4 } - - isisISAdjProtSuppEntry OBJECT-TYPE - SYNTAX IsisISAdjProtSuppEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Each entry contains one protocol supported by a - neighboring Intermediate System as reported in its IIH - PDUs." - INDEX { isisSysInstance, - isisCircIndex, - isisISAdjProtSuppAdjIndex, - isisISAdjProtSuppProtocol } - ::= { isisISAdjProtSuppTable 1 } - - IsisISAdjProtSuppEntry ::= - SEQUENCE { - isisISAdjProtSuppAdjIndex - Integer32, - isisISAdjProtSuppProtocol - SupportedProtocol - } - - isisISAdjProtSuppAdjIndex OBJECT-TYPE - SYNTAX Integer32 (1..2000000000) - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The identifier the IS adjacency to which this entry - corresponds." - ::= { isisISAdjProtSuppEntry 1 } - - isisISAdjProtSuppProtocol OBJECT-TYPE - SYNTAX SupportedProtocol - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "One supported protocol as reported in IIH PDUs received - from the neighbor." - ::= { isisISAdjProtSuppEntry 2 } --- --- --- The ES Adjacency Group --- --- The ES Adjacency Group is present if the system supports - - --- reception of ES Hellos --- The ES Adjacency Table --- --- This table is not implemented - jdp --- --- --- The Reachable Address Group --- --- The Reachable Address Group is optional. --- The Reachable Address Table --- Each entry records information about a reachable address --- (NSAP or address prefix) manually configured on the system --- or learned through another protocol. - - isisRATable OBJECT-TYPE - SYNTAX SEQUENCE OF IsisRAEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The table of Reachable Addresses to NSAPs or Address - Prefixes." - ::= { isisReachAddr 1 } - - isisRAEntry OBJECT-TYPE - SYNTAX IsisRAEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Each entry defines a Reachable Address to a NSAP or - Address Prefix." - INDEX { isisSysInstance, - isisCircIndex, - isisRAIndex } - ::= { isisRATable 1 } - - IsisRAEntry ::= - SEQUENCE { - isisRAIndex - Integer32, - isisRAExistState - RowStatus, - isisRAAdminState - AdminState, - isisRAAddrPrefix - OSINSAddress, - isisRAMapType - INTEGER, - isisRAMetric - - - DefaultMetric, - isisRAMetricType - MetricType, - isisRASNPAAddress - OSINSAddress, - isisRASNPAMask - OSINSAddress, - isisRASNPAPrefix - OSINSAddress, - isisRAType - INTEGER - } - - isisRAIndex OBJECT-TYPE - SYNTAX Integer32 (1..2000000000) - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The identifier for this isisRAEntry. This value must be - unique amongst all Reachable Addresses on the same parent - Circuit. This object follows the index and - manualOrAutomatic behaviors." - ::= { isisRAEntry 1 } - - isisRAExistState OBJECT-TYPE - SYNTAX RowStatus - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The existence state of this Reachable Address. This - object follows the Row Status behaviors." - DEFVAL { active } - ::= { isisRAEntry 2 } - - isisRAAdminState OBJECT-TYPE - SYNTAX AdminState - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The administrative state of the Reachable Address. This - object follows the AdminState and manualOrAutomatic - behaviors." - DEFVAL { off } - ::= { isisRAEntry 3 } - - isisRAAddrPrefix OBJECT-TYPE - SYNTAX OSINSAddress - MAX-ACCESS read-create - - - STATUS current - DESCRIPTION - "The destination of this Reachable Address. This is an - Address Prefix. This object follows the - replaceOnlyWhileDisabled and manualOrAutomatic - behaviors." - REFERENCE "{ISIS.aoi addressPrefix (98)}" - ::= { isisRAEntry 4 } - - isisRAMapType OBJECT-TYPE - SYNTAX INTEGER { - none (1), - explicit (2), - extractIDI (3), - extractDSP (4) - } - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The type of mapping to be employed to ascertain the SNPA - Address which should be used in forwarding PDUs for this - Reachable Address prefix. This object follows the - manualOrAutomatic behavior. The following values of - mapping type are defined: - none: The mapping is null because the neighbor SNPA is - implicit by nature of the subnetwork (e.g. a - point-to-point linkage). - explicit: The subnetwork addresses in the object - isisRASNPAAddress is to be used. - extractIDI: The SNPA is embedded in the IDI of the - destination NSAP Address. The mapping algorithm - extracts the SNPA to be used according to the format - and encoding rules of ISO8473/Add2. This SNPA - extraction algorithm can be used in conjunction with - Reachable Address prefixes from the X.121, F.69, E.163 - and E.164 addressing subdomains. - extractDSP: All, or a suffix, of the SNPA is embedded - in the DSP of the destination address. This SNPA - extraction algorithm extracts the embedded subnetwork - addressing information by performing a logical AND of - the isisRASNPAMask object value with the destination - address. The part of the SNPA extracted from the - destination NSAP is appended to the isisRASNPAPrefix - object value to form the next hop subnetwork - addressing information." - REFERENCE "{ISO10589-ISIS.aoi mappingType (107)}" - ::= { isisRAEntry 5 } - - - - isisRAMetric OBJECT-TYPE - SYNTAX DefaultMetric - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The metric value for reaching the specified - prefix over this circuit. This object follows the - manualOrAutomatic behavior." - REFERENCE "{ISIS.aoi DefaultMetric (99)}" - DEFVAL { 20 } - ::= { isisRAEntry 6 } - - isisRAMetricType OBJECT-TYPE - SYNTAX MetricType - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "Indicates whether the metric is internal or - external. This object follows the manualOrAutomatic - behavior." - REFERENCE "{ISIS.aoi DefaultMetricType (103)}" - DEFVAL { internal } - ::= { isisRAEntry 7 } - - isisRASNPAAddress OBJECT-TYPE - SYNTAX OSINSAddress - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The SNPA Address to which a PDU may be forwarded in - order to reach a destination which matches the address - prefix of the Reachable Address. This object follows the - manualOrAutomatic behavior." - REFERENCE "{ISIS.aoi sNPAAddresses (109)}" --- note only one address may be specified per Reachable Address --- in the MIB - DEFVAL { ''H } - ::= { isisRAEntry 8 } - - isisRASNPAMask OBJECT-TYPE - SYNTAX OSINSAddress - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "A bit mask with 1 bits indicating the positions in the - effective destination address from which embedded SNPA - information is to be extracted. For the extraction the - first octet of the isisRASNPAMask object value is aligned - - - with the first octet (AFI) of the NSAP Address. If the - isisRASNPAMask object value and NSAP Address are of - different lengths, the shorter of the two is logically - padded with zeros before performing the extraction. This - object follows the manualOrAutomatic behavior." - REFERENCE "{ISIS.aoi sNPAMask (122)}" - DEFVAL { '00'H } - ::= { isisRAEntry 9 } - - isisRASNPAPrefix OBJECT-TYPE - SYNTAX OSINSAddress - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "A fixed SNPA prefix for use when the isisRAMapType is - extractDSP. The SNPA Address to use is formed by - concatenating the fixed SNPA prefix with a variable SNPA - part that is extracted from the effective destination - address. For Reachable Address prefixes in which the - entire SNPA is embedded in the DSP the SNPA Prefix shall - be null. This object follows the manualOrAutomatic - behavior." - REFERENCE "{ISIS.aoi sNPAPrefix (123)}" - DEFVAL { '00'H } - ::= { isisRAEntry 10 } - - - isisRAType OBJECT-TYPE - SYNTAX INTEGER - { - manual (1), - automatic (2) - } - MAX-ACCESS read-create - STATUS current - DESCRIPTION - " The type of Reachable address. Those of type - manual are created by the network manager. Those - of type automatic are created through propagation - of routing information from another routing - protocol (eg. IDRP). " - DEFVAL {manual} - ::= {isisRAEntry 11 } - --- The IP Reachable Address Group - --- The IP Reachable Address Group is optional. - - - --- The IP Reachable Address Table - --- Each entry records information about one IP reachable --- address manually configured on this system or learned from --- another protocol. - - isisIPRATable OBJECT-TYPE - SYNTAX SEQUENCE OF IsisIPRAEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The table of IP Reachable Addresses to networks, - subnetworks or hosts either manually configured or - learned from another protocol." - ::= { isisIPReachAddr 1 } - - isisIPRAEntry OBJECT-TYPE - SYNTAX IsisIPRAEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Each entry defines an IP Reachable Address to a network, - subnetwork or host." - INDEX { isisSysInstance, - isisCircIndex, - isisIPRAType, - isisIPRAIndex } - ::= { isisIPRATable 1 } - - IsisIPRAEntry ::= - SEQUENCE { - isisIPRAIndex - Integer32, - isisIPRAType - INTEGER, - isisIPRADestType - InetAddressType, - isisIPRADest - InetAddress, - isisIPRADestPrefixLen - InetAddressPrefixLength, - isisIPRAExistState - RowStatus, - isisIPRAAdminState - AdminState, - isisIPRAMetric - DefaultMetric, - isisIPRAMetricType - - - MetricType, - isisIPRASNPAAddress - OSINSAddress - } - - isisIPRAIndex OBJECT-TYPE - SYNTAX Integer32 (1..2000000000) - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The identifier for this isisIPRAEntry. This value must - be unique amongst all IP Reachable Addresses on the same - parent Circuit. This object follows the index and - manualOrAutomatic behaviors." - ::= { isisIPRAEntry 1 } - - isisIPRAType OBJECT-TYPE - SYNTAX INTEGER - { - manual (1), - automatic (2) - } - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The type of this IP Reachable Address. Those of type - manual are created by the network manager. Those of type - automatic are created through propagation of routing - information from another routing protocol." - ::= { isisIPRAEntry 2 } - - isisIPRADestType OBJECT-TYPE - SYNTAX InetAddressType - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The type of this IP Reachable Address." - ::= { isisIPRAEntry 3 } - - isisIPRADest OBJECT-TYPE - SYNTAX InetAddress (SIZE(4|16)) - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The destination of this IP Reachable Address. This is - either a network address, subnetwork address or host - address. This object follows the manualOrAutomatic - behavior." - - - ::= { isisIPRAEntry 4 } - - isisIPRADestPrefixLen OBJECT-TYPE - SYNTAX InetAddressPrefixLength (0..128) - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The length of the IP Netmask for Reachability Address." - ::= { isisIPRAEntry 5 } - - isisIPRAExistState OBJECT-TYPE - SYNTAX RowStatus - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The state of this IP Reachable Address. This object - follows the ExistenceState and manualOrAutomatic - behaviors." - DEFVAL { active } - ::= { isisIPRAEntry 6 } - - isisIPRAAdminState OBJECT-TYPE - SYNTAX AdminState - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The administrative state of the IP Reachable Address. This - object follows the AdminState and manualOrAutomatic - behaviors." - DEFVAL { off } - ::= { isisIPRAEntry 7 } - - isisIPRAMetric OBJECT-TYPE - SYNTAX DefaultMetric - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The metric value for reaching the specified - destination over this circuit. This object follows the - manualOrAutomatic behavior." - DEFVAL { 20 } - ::= { isisIPRAEntry 8 } - - isisIPRAMetricType OBJECT-TYPE - SYNTAX MetricType - MAX-ACCESS read-create - STATUS current - DESCRIPTION - - - "Indicates whether the metric is internal or - external. This object follows the manualOrAutomatic - behavior." - DEFVAL { internal } - ::= { isisIPRAEntry 9 } - - isisIPRASNPAAddress OBJECT-TYPE - SYNTAX OSINSAddress - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The SNPA Address to which a PDU may be forwarded in - order to reach a destination which matches this IP - Reachable Address. This object follows the - manualOrAutomatic behavior." - DEFVAL { ''H } - ::= { isisIPRAEntry 10 } - --- The Circuit CLNS Group --- --- The Circuit CLNS Table contains objects controlling the --- operation of the IS functions of the CLNS protocol --- --- This table is not implemented - jdp --- - --- The IP Destination Group - --- The IP Destination Group is present if the system forwards --- IP packets. - - --- The IP Destination Table - --- The IP Destination Table records information about each --- destination known to the Intermediate System - --- Removed: overlaps RFC 2096 - jdp - - --- The ISIS Notification Table - --- The ISIS Notification Table records fields that are --- required for notifications - - isisNotificationTable OBJECT-TYPE - SYNTAX SEQUENCE OF IsisNotificationEntry - MAX-ACCESS not-accessible - - - STATUS current - DESCRIPTION - "Objects seen in the most recent notification - this instance of the IS-IS protocol." - ::= { isisNotification 1 } - - isisNotificationEntry OBJECT-TYPE - SYNTAX IsisNotificationEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Each entry defines variables relevant to notifications - for one instance of the IS-IS protocol." - INDEX { isisSysInstance } - ::= { isisNotificationTable 1 } - - --- Each entry records information about one IP reachable --- address manually configured on this system or learned from --- another protocol. - - IsisNotificationEntry ::= - SEQUENCE { - isisTrapLSPID - LinkStatePDUID, - isisSystemLevel - ISLevel, - isisPDUFragment - IsisPDUHeader, - isisFieldLen - Integer32, - isisMaxAreaAddress - Integer32, - isisProtocolVersion - Integer32, - isisLSPSize - Integer32, - isisOriginatingBufferSize - Integer32, - isisProtocolsSupported - OCTET STRING - } - - isisTrapLSPID OBJECT-TYPE - SYNTAX LinkStatePDUID - MAX-ACCESS read-only - STATUS current - DESCRIPTION - - - "An Octet String that uniquely identifies - a Link State PDU." - ::= { isisNotificationEntry 1 } - - isisSystemLevel OBJECT-TYPE - SYNTAX ISLevel - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Identifies the level the notification applies to." - ::= { isisNotificationEntry 2 } - - isisPDUFragment OBJECT-TYPE - SYNTAX IsisPDUHeader - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Holds up to the first 64 bytes of a PDU that - triggered the notification." - ::= { isisNotificationEntry 3 } - - isisFieldLen OBJECT-TYPE - SYNTAX Integer32 (0..255) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Holds the System ID length reported in PDU we recieved." - ::= { isisNotificationEntry 4 } - - isisMaxAreaAddress OBJECT-TYPE - SYNTAX Integer32 (0..255) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Holds the Max Area Addresses reported in a PDU we recieved." - ::= { isisNotificationEntry 5 } - - isisProtocolVersion OBJECT-TYPE - SYNTAX Integer32 (0..255) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Holds the Protocol version reported in PDU we received." - ::= { isisNotificationEntry 6 } - - isisLSPSize OBJECT-TYPE - SYNTAX Integer32 (1..2147483647) - MAX-ACCESS read-only - - - STATUS current - DESCRIPTION - "Holds the size of LSP we received that is too - big to forward." - ::= { isisNotificationEntry 7 } - - isisOriginatingBufferSize OBJECT-TYPE - SYNTAX Integer32 (1..2147483647) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Holds the size of isisSysOrigL1LSPBuffSize or - isisSysOrigL2LSPBuffSize advertised by peer - in TLV." - ::= { isisNotificationEntry 8 } - - isisProtocolsSupported OBJECT-TYPE - SYNTAX OCTET STRING (SIZE(0..255)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The list of protocols supported by an - adjacent system. This may be empty." - ::= { isisNotificationEntry 9 } - --- Type definitions - -isisTrapPrefix OBJECT IDENTIFIER ::= { isisNotifications 0 } - -isisDatabaseOverload NOTIFICATION-TYPE - OBJECTS { - isisSystemLevel, - isisSysL1State, - isisSysL2State - } - STATUS current - DESCRIPTION - "This notification is generated when the system - enters or leaves the Overload state. The number - of times this has be generated and cleared is kept - track of by isisSysLSPL1DbaseOloads and - isisSysLSPL2DbaseOloads." - - ::= { isisTrapPrefix 1 } - -isisManualAddressDrops NOTIFICATION-TYPE - OBJECTS { - isisManAreaAddrExistState - - - } - STATUS current - DESCRIPTION - "This notification is generated when one of the - manual areaAddresses assigned to this system is - ignored when computing rouites. The object - isisManAreaAddrExistState describes the area that - has been dropped. - - The number of times this event has been generated - is counted by isisSysManAddrDropFromAreas. - - This notification is edge triggered, and should not - be regenerated until an address that was used in - the previous computation has been dropped." - - ::= { isisTrapPrefix 2 } - -isisCorruptedLSPDetected NOTIFICATION-TYPE - OBJECTS { - isisSystemLevel, - isisTrapLSPID - } - STATUS current - DESCRIPTION - "This notification is generated when we find that - and LSP that was stored in memory has become - corrupted. The number of times this has been - generated is counted by isisSysCorrLSPs. - - We forward an LSP ID. We may have independent - knowledge of the ID, but in some implementations - there is a chance that the ID itself will be - corrupted." - - ::= { isisTrapPrefix 3 } - -isisAttemptToExceedMaxSequence NOTIFICATION-TYPE - OBJECTS { - isisSystemLevel, - isisTrapLSPID - } - STATUS current - DESCRIPTION - "When the sequence number on an LSP we generate - wraps the 32 bit sequence counter, we purge and - wait to re-announce this information. This - notification describes that event. Since these - - - should not be generated rapidly, we generate - an event each time this happens. - - While the first 6 bytes of the LSPID are ours, - the other two contain useful information." - - ::= { isisTrapPrefix 4 } - -isisIDLenMismatch NOTIFICATION-TYPE - OBJECTS { - isisFieldLen, - isisCircIfIndex, - isisPDUFragment - } - STATUS current - DESCRIPTION - "A notification sent when we receive a PDU - with a different value of the System ID Length. - This notification includes the an index to identify - the circuit where we saw the PDU and the header of - the PDU which may help a network manager identify - the source of the confusion. - - This should be an edge-triggered notification. - We should not send a second notification about - PDUs received from what seem to be the same source. - This decision is up to the agent to make, and may - be based on the circuit or on some MAC level - information." - - ::= { isisTrapPrefix 5 } - -isisMaxAreaAddressesMismatch NOTIFICATION-TYPE - OBJECTS { - isisMaxAreaAddress, - isisCircIfIndex, - isisPDUFragment - } - STATUS current - DESCRIPTION - "A notification sent when we receive a PDU - with a different value of the Maximum Area - Addresses. This notification includes the - header of the packet, which may help a - network manager identify the source of the - confusion. - - This should be an edge-triggered notification. - - - We should not send a second notification about - PDUs received from what seem to be the same source." - - ::= { isisTrapPrefix 6 } - -isisOwnLSPPurge NOTIFICATION-TYPE - OBJECTS { - isisCircIfIndex, - isisTrapLSPID, - isisSystemLevel - } - STATUS current - DESCRIPTION - "A notification sent when we receive a PDU - with our systemID and zero age. This - notification includes the circuit Index - if available, which may help a network manager - identify the source of the confusion." - - ::= { isisTrapPrefix 7 } - -isisSequenceNumberSkip NOTIFICATION-TYPE - OBJECTS { - isisTrapLSPID, - isisCircIfIndex, - isisSystemLevel - } - STATUS current - DESCRIPTION - "When we recieve an LSP with out System ID - and different contents, we may need to reissue - the LSP with a higher sequence number. - - We send this notification if we need to increase - the sequence number by more than one. If two - Intermediate Systems are configured with the same - System ID, this notification will fire." - - ::= { isisTrapPrefix 8 } - -isisAuthenticationTypeFailure NOTIFICATION-TYPE - OBJECTS { - isisSystemLevel, - isisPDUFragment, - isisCircIfIndex - } - STATUS current - DESCRIPTION - - - "A notification sent when we receive a PDU - with the wrong authentication type field. - This notification includes the header of the - packet, which may help a network manager - identify the source of the confusion. - - This should be an edge-triggered notification. - We should not send a second notification about - PDUs received from what seem to be the same source." - - ::= { isisTrapPrefix 9 } - -isisAuthenticationFailure NOTIFICATION-TYPE - OBJECTS { - isisSystemLevel, - isisPDUFragment, - isisCircIfIndex - } - STATUS current - DESCRIPTION - "A notification sent when we receive a PDU - with incorrent authentication information - field. This notification includes the header - of the packet, which may help a network manager - identify the source of the confusion. - - This should be an edge-triggered notification. - We should not send a second notification about - PDUs received from what seem to be the same source." - - ::= { isisTrapPrefix 10 } - -isisVersionSkew NOTIFICATION-TYPE - OBJECTS { - isisProtocolVersion, - isisSystemLevel, - isisPDUFragment, - isisCircIfIndex - } - STATUS current - DESCRIPTION - "A notification sent when we receive a Hello - PDU from an IS running a different version - of the protocol. This notification includes - the header of the packet, which may help a - network manager identify the source of the - confusion. - - - - This should be an edge-triggered notification. - We should not send a second notification about - PDUs received from what seem to be the same source. - This decision is up to the agent to make, and may - be based on the circuit or on some MAC level - information." - - ::= { isisTrapPrefix 11 } - -isisAreaMismatch NOTIFICATION-TYPE - OBJECTS { - isisLSPSize, - isisSystemLevel, - isisCircIfIndex, - isisPDUFragment - } - STATUS current - DESCRIPTION - "A notification sent when we receive a Hello - PDU from an IS which does not share any - area address. This notification includes - the header of the packet, which may help a - network manager identify the source of the - confusion. - - This should be an edge-triggered notification. - We should not send a second notification about - PDUs received from what seem to be the same source. - This decision is up to the agent to make, and may - be based on the circuit or on some MAC level - information." - - ::= { isisTrapPrefix 12 } - -isisRejectedAdjacency NOTIFICATION-TYPE - OBJECTS { - isisSystemLevel, - isisCircIfIndex - } - STATUS current - DESCRIPTION - "A notification sent when we receive a Hello - PDU from an IS, but do not establish an - adjacency due to a lack of resources. - - This should be an edge-triggered notification. - We should not send a second notification about - PDUs received from the same source." - - - ::= { isisTrapPrefix 13 } - -isisLSPTooLargeToPropagate NOTIFICATION-TYPE - OBJECTS { - isisLSPSize, - isisSystemLevel, - isisTrapLSPID, - isisCircIfIndex - } - STATUS current - DESCRIPTION - "A notification sent when we attempt to propagate - an LSP which is larger than the dataLinkBlockSize - for a circuit. - - This should be an edge-triggered notification. - We should not send a second notification about - PDUs received from the same source." - - ::= { isisTrapPrefix 14 } - -isisOriginatingLSPBufferSizeMismatch NOTIFICATION-TYPE - OBJECTS { - isisOriginatingBufferSize, - isisSystemLevel, - isisTrapLSPID, - isisCircIfIndex - } - STATUS current - DESCRIPTION - "A notification sent when a Level 1 LSP or Level - 2 LSP is received which is larger than the local - value for originatingL1LSPBufferSize or - originatingL2LSPBufferSize respectively, or when - a Level 1 LSP or Level2 LSP is received containing - the originatingLSPBufferSize option and the value in - the PDU option field does not match the local value - for originatingL1LSPBufferSize or originatingL2LSPBufferSize - respectively. We pass up the size from the option - field or the size of the LSP that exceeds our - configuration. - - This should be an edge-triggered notification. - We should not send a second notification about - PDUs received from the same source." - - ::= { isisTrapPrefix 15 } - - - -isisProtocolsSupportedMismatch NOTIFICATION-TYPE - OBJECTS { - isisProtocolsSupported, - isisSystemLevel, - isisTrapLSPID, - isisCircIfIndex - } - STATUS current - DESCRIPTION - "A notification sent when a non-pseudonode - segment 0 LSP is received that has no matching - protocols supported. - This may be because the system does not generate - the field, or because there are no common elements. - The list of protocols supported should be included - in the notification: it may be empty if the TLV - is not supported, or if the TLV is empty. - - This should be an edge-triggered notification. - We should not send a second notification about - PDUs received from the same source." - - ::= { isisTrapPrefix 16 } - --- Agent Conformance Definitions --- We define the objects a conformant agent must define - -isisGroups OBJECT IDENTIFIER ::= { isisConformance 1 } -isisCompliances OBJECT IDENTIFIER ::= { isisConformance 2 } - --- compliance statements - -isisCompliance MODULE-COMPLIANCE - STATUS current - DESCRIPTION - "The compliance statement for agents that support - the ISIS MIB" - MODULE -- this module - MANDATORY-GROUPS { - isisSystemGroup, - isisCircuitGroup, - isisISAdjGroup, - isisNotificationObjectGroup, - isisNotificationGroup - } - ::= { isisCompliances 1 } - --- MIB Grouping - - - isisSystemGroup OBJECT-GROUP - OBJECTS { - isisSysVersion, - isisSysType, - isisSysID, - isisSysMaxPathSplits, - isisSysMaxLSPGenInt, - isisSysOrigL1LSPBuffSize, - isisSysMaxAreaAddresses, - isisSysMinL1LSPGenInt, - isisSysMinL2LSPGenInt, - isisSysPollESHelloRate, - isisSysWaitTime, - isisSysAdminState, - isisSysL1State, - isisSysCorrLSPs, - isisSysLSPL1DbaseOloads, - isisSysManAddrDropFromAreas, - isisSysAttmptToExMaxSeqNums, - isisSysSeqNumSkips, - isisSysOwnLSPPurges, - isisSysIDFieldLenMismatches, - isisSysMaxAreaAddrMismatches, - isisSysOrigL2LSPBuffSize, - isisSysL2State, - isisSysLSPL2DbaseOloads, - isisSysAuthTypeFails, - isisSysAuthFails, - isisSysLogAdjacencyChanges, - isisSysPartChanges, - isisSysMaxAreaCheck, - isisSysNextCircIndex, - isisSysExistState, - isisSysL2toL1Leaking, - isisSysSetOverload, - isisSysL1MetricStyle, - isisSysL1SPFConsiders, - isisSysL2MetricStyle, - isisSysL2SPFConsiders, - isisSysTEEnabled, - isisManAreaAddrExistState, - isisAreaAddr, - isisSysProtSuppExistState, - isisSummAddrExistState, - isisSummAddrAdminState, - isisSummAddrMetric - } - STATUS current - - - DESCRIPTION - "The collections of objects used to manage an IS-IS router." - ::= { isisGroups 1 } - - - isisCircuitGroup OBJECT-GROUP - OBJECTS { - isisCircIfSubIndex, - isisCircLocalID, - isisCircAdminState, - isisCircExistState, - isisCircType, - isisCircExtDomain, - isisCircAdjChanges, - isisCircInitFails, - isisCircRejAdjs, - isisCircOutCtrlPDUs, - isisCircInCtrlPDUs, - isisCircIDFieldLenMismatches, - isisCircLevel, - isisCircMCAddr, - isisCircPtToPtCircID, - isisCircPassiveCircuit, - isisCircMeshGroupEnabled, - isisCircMeshGroup, - isisCircSmallHellos, - isisCircUpTime, - isisCircIfIndex, - isisCircLevelMetric, - isisCircLevelISPriority, - isisCircLevelDesIS, - isisCircLevelLANDesISChanges , - isisCircLevelHelloMultiplier, - isisCircLevelHelloTimer, - isisCircLevelDRHelloTimer, - isisCircLevelLSPThrottle, - isisCircLevelMinLSPRetransInt, - isisCircLevelCSNPInterval, - isisCircLevelPartSNPInterval - } - STATUS current - DESCRIPTION - "The collection of objects used to describe in IS-IS Circuit." - ::= { isisGroups 2 } - - - isisISAdjGroup OBJECT-GROUP - OBJECTS { - - - isisISAdjState, - isisISAdjNeighSNPAAddress, - isisISAdjNeighSysType, - isisISAdjNeighSysID, - isisISAdjUsage, - isisISAdjHoldTimer, - isisISAdjNeighPriority, - isisISAdjUpTime, - isisISAdjAreaAddress, - isisISAdjIPAddressType, - isisISAdjIPAddress, - isisISAdjProtSuppProtocol - } - STATUS current - DESCRIPTION - "The collections of objects used to manage an IS-IS Adjacency." - ::= { isisGroups 3 } - - - isisNotificationObjectGroup OBJECT-GROUP - OBJECTS { - isisSystemLevel, - isisTrapLSPID, - isisPDUFragment, - isisFieldLen, - isisMaxAreaAddress, - isisProtocolVersion, - isisLSPSize, - isisOriginatingBufferSize, - isisProtocolsSupported - } - STATUS current - DESCRIPTION - "The objects used to record notification parameters." - ::= { isisGroups 4 } - - - isisNotificationGroup NOTIFICATION-GROUP - NOTIFICATIONS { - isisDatabaseOverload, - isisManualAddressDrops, - isisCorruptedLSPDetected, - isisAttemptToExceedMaxSequence, - isisIDLenMismatch, - isisMaxAreaAddressesMismatch, - isisOwnLSPPurge, - isisSequenceNumberSkip, - isisAuthenticationTypeFailure, - - - isisAuthenticationFailure, - isisVersionSkew, - isisAreaMismatch, - isisRejectedAdjacency, - isisLSPTooLargeToPropagate, - isisOriginatingLSPBufferSizeMismatch, - isisProtocolsSupportedMismatch - } - STATUS current - DESCRIPTION - "The collections of notifications sent by an IS." - ::= { isisGroups 5 } - - - isisISPDUCounterGroup OBJECT-GROUP - OBJECTS { - isisPacketCountHello, - isisPacketCountLSP, - isisPacketCountCSNP, - isisPacketCountPSNP - } - STATUS current - DESCRIPTION - "The collections of objects used to count protocol PDUs." - ::= { isisGroups 6 } - - - isisRATableGroup OBJECT-GROUP - OBJECTS { - isisRAExistState, - isisRAAdminState, - isisRAAddrPrefix, - isisRAMapType, - isisRAMetric, - isisRAMetricType, - isisRASNPAAddress, - isisRASNPAMask, - isisRASNPAPrefix, - isisRAType - } - STATUS current - DESCRIPTION - "The collections of objects used to manage the - reachable NSAP prefixes." - ::= { isisGroups 7 } - - - isisISIPRADestGroup OBJECT-GROUP - - - OBJECTS { - isisIPRADestType, - isisIPRADest, - isisIPRADestPrefixLen, - isisIPRAExistState, - isisIPRAAdminState, - isisIPRAMetric, - isisIPRAMetricType, - isisIPRASNPAAddress - } - STATUS current - DESCRIPTION - "The collections of objects used to manage configured - IP addresses." - ::= { isisGroups 8 } - -END diff --git a/misc/alert_rules.json b/misc/alert_rules.json index 9023cb6e6c..2e5409f2f0 100644 --- a/misc/alert_rules.json +++ b/misc/alert_rules.json @@ -24,6 +24,10 @@ "name": "BGP Session down", "extra": "{\"count\": 1}" }, + { + "builder": {"condition":"AND","rules":[{"id":"isis_adjacencies.isisISAdjState","field":"isis_adjacencies.isisISAdjState","type":"string","input":"text","operator":"equal","value":"down"},{"condition":"AND","rules":[{"id":"component.type","field":"component.type","type":"string","input":"text","operator":"equal","value":"ISIS"},{"condition":"AND","rules":[{"id":"component.ignore","field":"component.ignore","type":"string","input":"text","operator":"equal","value":"0"},{"id":"component.disabled","field":"component.disabled","type":"string","input":"text","operator":"equal","value":"0"}]}]},{"id":"macros.device_up","field":"macros.device_up","type":"integer","input":"radio","operator":"equal","value":"1"}],"valid":true}, + "name": "ISIS Adjacency down" + }, { "rule": "bgpPeers.bgpPeerFsmEstablishedTime < \"300\" && bgpPeers.bgpPeerState = \"established\" && macros.device_up = \"1\"", "name": "BGP Session established", diff --git a/misc/config_definitions.json b/misc/config_definitions.json index 6ccd57c73b..f0d0db1900 100644 --- a/misc/config_definitions.json +++ b/misc/config_definitions.json @@ -993,6 +993,13 @@ "default": false, "type": "boolean" }, + "discovery_modules.isis": { + "order": 450, + "group": "discovery", + "section": "discovery_modules", + "default": false, + "type": "boolean" + }, "discovery_modules.processors": { "order": 260, "group": "discovery", @@ -4382,6 +4389,13 @@ "default": true, "type": "boolean" }, + "poller_modules.isis": { + "order": 450, + "group": "poller", + "section": "poller_modules", + "default": false, + "type": "boolean" + }, "poller_modules.cisco-ipsec-flow-monitor": { "order": 90, "group": "poller", diff --git a/misc/db_schema.yaml b/misc/db_schema.yaml index db252a3b0d..ee3a1ddab0 100644 --- a/misc/db_schema.yaml +++ b/misc/db_schema.yaml @@ -790,6 +790,25 @@ ipv6_networks: - { Field: context_name, Type: varchar(128), 'Null': true, Extra: '' } Indexes: PRIMARY: { Name: PRIMARY, Columns: [ipv6_network_id], Unique: true, Type: BTREE } +isis_adjacencies: + Columns: + - { Field: id, Type: int unsigned, 'Null': false, Extra: 'auto_increment' } + - { Field: device_id, Type: int, 'Null': false, Extra: '' } + - { Field: port_id, Type: int, 'Null': false, Extra: '' } + - { Field: ifIndex, Type: int, 'Null': false, Extra: '' } + - { Field: isisISAdjState, Type: varchar(13), 'Null': false, Extra: '' } + - { Field: isisISAdjNeighSysType, Type: varchar(128), 'Null': false, Extra: '' } + - { Field: isisISAdjNeighSysID, Type: varchar(128), 'Null': false, Extra: '' } + - { Field: isisISAdjNeighPriority, Type: varchar(128), 'Null': false, Extra: '' } + - { Field: isisISAdjLastUpTime, Type: bigint unsigned, 'Null': false, Extra: '' } + - { Field: isisISAdjAreaAddress, Type: varchar(128), 'Null': false, Extra: '' } + - { Field: isisISAdjIPAddrType, Type: varchar(128), 'Null': false, Extra: '' } + - { Field: isisISAdjIPAddrAddress, Type: varchar(128), 'Null': false, Extra: '' } + Indexes: + PRIMARY: { Name: PRIMARY, Columns: [id], Unique: true, Type: BTREE } + isis_adjacencies_device_id_index: { Name: isis_adjacencies_device_id_index, Columns: [device_id], Unique: false, Type: BTREE } + isis_adjacencies_port_id_index: { Name: isis_adjacencies_port_id_index, Columns: [port_id], Unique: false, Type: BTREE } + isis_adjacencies_ifindex_index: { Name: isis_adjacencies_ifindex_index, Columns: [ifIndex], Unique: false, Type: BTREE } juniAtmVp: Columns: - { Field: id, Type: 'bigint unsigned', 'Null': false, Extra: auto_increment } diff --git a/resources/lang/en/settings.php b/resources/lang/en/settings.php index a164e84746..0ff63e4709 100644 --- a/resources/lang/en/settings.php +++ b/resources/lang/en/settings.php @@ -499,6 +499,9 @@ return [ 'ipv6-addresses' => [ 'description' => 'IPv6 Addresses', ], + 'isis' => [ + 'description' => 'ISIS', + ], 'junose-atm-vp' => [ 'description' => 'Junose ATM VP', ], @@ -1053,6 +1056,9 @@ return [ 'ospf' => [ 'description' => 'OSPF', ], + 'isis' => [ + 'description' => 'ISIS', + ], 'cisco-ipsec-flow-monitor' => [ 'description' => 'Cisco IPSec flow Monitor', ], diff --git a/tests/data/junos_mx5t_isis.json b/tests/data/junos_mx5t_isis.json new file mode 100644 index 0000000000..f4850afed4 --- /dev/null +++ b/tests/data/junos_mx5t_isis.json @@ -0,0 +1,13212 @@ +{ + "os": { + "discovery": { + "devices": [ + { + "sysName": "", + "sysObjectID": ".1.3.6.1.4.1.2636.1.1.1.2.90", + "sysDescr": "Juniper Networks, Inc. mx5-t internet router, kernel JUNOS 19.4R3.11, Build date: 2020-10-08 21:43:24 UTC Copyright (c) 1996-2020 Juniper Networks, Inc.", + "sysContact": "", + "version": "19.4R3.11", + "hardware": "Juniper MX5-T Internet Backbone Router", + "features": null, + "os": "junos", + "type": "network", + "serial": "F8223", + "icon": "junos.png", + "location": "" + } + ] + }, + "poller": { + "devices": [ + { + "sysName": "", + "sysObjectID": ".1.3.6.1.4.1.2636.1.1.1.2.90", + "sysDescr": "Juniper Networks, Inc. mx5-t internet router, kernel JUNOS 19.4R3.11, Build date: 2020-10-08 21:43:24 UTC Copyright (c) 1996-2020 Juniper Networks, Inc.", + "sysContact": "", + "version": "19.4R3.11", + "hardware": "Juniper MX5-T Internet Backbone Router", + "features": null, + "os": "junos", + "type": "network", + "serial": "F8223", + "icon": "junos.png", + "location": "" + } + ] + } + }, + "ports": { + "discovery": { + "ports": [ + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ge-1/0/0", + "ifName": "ge-1/0/0", + "portName": null, + "ifIndex": 516, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "ge-1/0/0", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ge-1/0/1", + "ifName": "ge-1/0/1", + "portName": null, + "ifIndex": 517, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "ge-1/0/1", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ge-1/0/2", + "ifName": "ge-1/0/2", + "portName": null, + "ifIndex": 518, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "ge-1/0/2", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ge-1/0/3", + "ifName": "ge-1/0/3", + "portName": null, + "ifIndex": 519, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "ge-1/0/3", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ge-1/0/4", + "ifName": "ge-1/0/4", + "portName": null, + "ifIndex": 520, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "ge-1/0/4", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ge-1/0/5", + "ifName": "ge-1/0/5", + "portName": null, + "ifIndex": 521, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "ge-1/0/5", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ge-1/0/6", + "ifName": "ge-1/0/6", + "portName": null, + "ifIndex": 522, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "ge-1/0/6", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ge-1/0/7", + "ifName": "ge-1/0/7", + "portName": null, + "ifIndex": 523, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "ge-1/0/7", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ge-1/0/8", + "ifName": "ge-1/0/8", + "portName": null, + "ifIndex": 524, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "ge-1/0/8", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ge-1/0/9", + "ifName": "ge-1/0/9", + "portName": null, + "ifIndex": 525, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "ge-1/0/9", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ge-1/1/0", + "ifName": "ge-1/1/0", + "portName": null, + "ifIndex": 526, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "ge-1/1/0", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ge-1/1/1", + "ifName": "ge-1/1/1", + "portName": null, + "ifIndex": 527, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "ge-1/1/1", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ge-1/1/2", + "ifName": "ge-1/1/2", + "portName": null, + "ifIndex": 528, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "ge-1/1/2", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ge-1/1/3", + "ifName": "ge-1/1/3", + "portName": null, + "ifIndex": 529, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "ge-1/1/3", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ge-1/1/4", + "ifName": "ge-1/1/4", + "portName": null, + "ifIndex": 530, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "ge-1/1/4", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ge-1/1/5", + "ifName": "ge-1/1/5", + "portName": null, + "ifIndex": 531, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "ge-1/1/5", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ge-1/1/6", + "ifName": "ge-1/1/6", + "portName": null, + "ifIndex": 532, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "ge-1/1/6", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ge-1/1/7", + "ifName": "ge-1/1/7", + "portName": null, + "ifIndex": 533, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "ge-1/1/7", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ge-1/1/8", + "ifName": "ge-1/1/8", + "portName": null, + "ifIndex": 534, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "ge-1/1/8", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ge-1/1/9", + "ifName": "ge-1/1/9", + "portName": null, + "ifIndex": 535, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "ge-1/1/9", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "xe-0/0/0", + "ifName": "xe-0/0/0", + "portName": null, + "ifIndex": 541, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "lab-er100", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "xe-0/0/1", + "ifName": "xe-0/0/1", + "portName": null, + "ifIndex": 556, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "lab-er2", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "xe-0/0/2", + "ifName": "xe-0/0/2", + "portName": null, + "ifIndex": 557, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "xe-0/0/2", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "xe-0/0/3", + "ifName": "xe-0/0/3", + "portName": null, + "ifIndex": 558, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "xe-0/0/3", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "xe-0/0/0.0", + "ifName": "xe-0/0/0.0", + "portName": null, + "ifIndex": 559, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "propVirtual", + "ifAlias": "xe-0/0/0.0", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "xe-0/0/1.0", + "ifName": "xe-0/0/1.0", + "portName": null, + "ifIndex": 572, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "propVirtual", + "ifAlias": "xe-0/0/1.0", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "xe-0/0/2.16386", + "ifName": "xe-0/0/2.16386", + "portName": null, + "ifIndex": 573, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "lowerLayerDown", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "propVirtual", + "ifAlias": "xe-0/0/2.16386", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "xe-0/0/3.16386", + "ifName": "xe-0/0/3.16386", + "portName": null, + "ifIndex": 576, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "lowerLayerDown", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "propVirtual", + "ifAlias": "xe-0/0/3.16386", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ge-1/0/0.16386", + "ifName": "ge-1/0/0.16386", + "portName": null, + "ifIndex": 577, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "lowerLayerDown", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "propVirtual", + "ifAlias": "ge-1/0/0.16386", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ge-1/0/1.16386", + "ifName": "ge-1/0/1.16386", + "portName": null, + "ifIndex": 578, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "lowerLayerDown", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "propVirtual", + "ifAlias": "ge-1/0/1.16386", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ge-1/0/2.16386", + "ifName": "ge-1/0/2.16386", + "portName": null, + "ifIndex": 579, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "lowerLayerDown", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "propVirtual", + "ifAlias": "ge-1/0/2.16386", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ge-1/0/3.16386", + "ifName": "ge-1/0/3.16386", + "portName": null, + "ifIndex": 580, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "lowerLayerDown", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "propVirtual", + "ifAlias": "ge-1/0/3.16386", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ge-1/0/4.16386", + "ifName": "ge-1/0/4.16386", + "portName": null, + "ifIndex": 581, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "lowerLayerDown", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "propVirtual", + "ifAlias": "ge-1/0/4.16386", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ge-1/0/5.16386", + "ifName": "ge-1/0/5.16386", + "portName": null, + "ifIndex": 582, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "lowerLayerDown", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "propVirtual", + "ifAlias": "ge-1/0/5.16386", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ge-1/0/6.16386", + "ifName": "ge-1/0/6.16386", + "portName": null, + "ifIndex": 583, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "lowerLayerDown", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "propVirtual", + "ifAlias": "ge-1/0/6.16386", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ge-1/0/7.16386", + "ifName": "ge-1/0/7.16386", + "portName": null, + "ifIndex": 584, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "lowerLayerDown", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "propVirtual", + "ifAlias": "ge-1/0/7.16386", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ge-1/0/8.16386", + "ifName": "ge-1/0/8.16386", + "portName": null, + "ifIndex": 585, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "lowerLayerDown", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "propVirtual", + "ifAlias": "ge-1/0/8.16386", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ge-1/0/9.16386", + "ifName": "ge-1/0/9.16386", + "portName": null, + "ifIndex": 588, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "lowerLayerDown", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "propVirtual", + "ifAlias": "ge-1/0/9.16386", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ge-1/1/1.16386", + "ifName": "ge-1/1/1.16386", + "portName": null, + "ifIndex": 589, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "lowerLayerDown", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "propVirtual", + "ifAlias": "ge-1/1/1.16386", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ge-1/1/2.16386", + "ifName": "ge-1/1/2.16386", + "portName": null, + "ifIndex": 590, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "lowerLayerDown", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "propVirtual", + "ifAlias": "ge-1/1/2.16386", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ge-1/1/3.16386", + "ifName": "ge-1/1/3.16386", + "portName": null, + "ifIndex": 591, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "lowerLayerDown", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "propVirtual", + "ifAlias": "ge-1/1/3.16386", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ge-1/1/4.16386", + "ifName": "ge-1/1/4.16386", + "portName": null, + "ifIndex": 592, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "lowerLayerDown", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "propVirtual", + "ifAlias": "ge-1/1/4.16386", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ge-1/1/5.16386", + "ifName": "ge-1/1/5.16386", + "portName": null, + "ifIndex": 593, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "lowerLayerDown", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "propVirtual", + "ifAlias": "ge-1/1/5.16386", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ge-1/1/6.16386", + "ifName": "ge-1/1/6.16386", + "portName": null, + "ifIndex": 594, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "lowerLayerDown", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "propVirtual", + "ifAlias": "ge-1/1/6.16386", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ge-1/1/7.16386", + "ifName": "ge-1/1/7.16386", + "portName": null, + "ifIndex": 595, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "lowerLayerDown", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "propVirtual", + "ifAlias": "ge-1/1/7.16386", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ge-1/1/8.16386", + "ifName": "ge-1/1/8.16386", + "portName": null, + "ifIndex": 596, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "lowerLayerDown", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "propVirtual", + "ifAlias": "ge-1/1/8.16386", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ge-1/1/9.16386", + "ifName": "ge-1/1/9.16386", + "portName": null, + "ifIndex": 616, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "propVirtual", + "ifAlias": "ge-1/1/9.16386", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ge-1/1/0.16386", + "ifName": "ge-1/1/0.16386", + "portName": null, + "ifIndex": 617, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "propVirtual", + "ifAlias": "ge-1/1/0.16386", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + } + ] + }, + "poller": { + "ports": [ + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ge-1/0/0", + "ifName": "ge-1/0/0", + "portName": null, + "ifIndex": 516, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1514, + "ifType": "ethernetCsmacd", + "ifAlias": "ge-1/0/0", + "ifPhysAddress": "a8d0e5555970", + "ifHardType": null, + "ifLastChange": 9607, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ge-1/0/1", + "ifName": "ge-1/0/1", + "portName": null, + "ifIndex": 517, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1514, + "ifType": "ethernetCsmacd", + "ifAlias": "ge-1/0/1", + "ifPhysAddress": "a8d0e5555971", + "ifHardType": null, + "ifLastChange": 9602, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ge-1/0/2", + "ifName": "ge-1/0/2", + "portName": null, + "ifIndex": 518, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1514, + "ifType": "ethernetCsmacd", + "ifAlias": "ge-1/0/2", + "ifPhysAddress": "a8d0e5555972", + "ifHardType": null, + "ifLastChange": 9608, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ge-1/0/3", + "ifName": "ge-1/0/3", + "portName": null, + "ifIndex": 519, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1514, + "ifType": "ethernetCsmacd", + "ifAlias": "ge-1/0/3", + "ifPhysAddress": "a8d0e5555973", + "ifHardType": null, + "ifLastChange": 9615, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ge-1/0/4", + "ifName": "ge-1/0/4", + "portName": null, + "ifIndex": 520, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1514, + "ifType": "ethernetCsmacd", + "ifAlias": "ge-1/0/4", + "ifPhysAddress": "a8d0e5555974", + "ifHardType": null, + "ifLastChange": 9630, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ge-1/0/5", + "ifName": "ge-1/0/5", + "portName": null, + "ifIndex": 521, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1514, + "ifType": "ethernetCsmacd", + "ifAlias": "ge-1/0/5", + "ifPhysAddress": "a8d0e5555975", + "ifHardType": null, + "ifLastChange": 9639, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ge-1/0/6", + "ifName": "ge-1/0/6", + "portName": null, + "ifIndex": 522, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1514, + "ifType": "ethernetCsmacd", + "ifAlias": "ge-1/0/6", + "ifPhysAddress": "a8d0e5555976", + "ifHardType": null, + "ifLastChange": 10412, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ge-1/0/7", + "ifName": "ge-1/0/7", + "portName": null, + "ifIndex": 523, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1514, + "ifType": "ethernetCsmacd", + "ifAlias": "ge-1/0/7", + "ifPhysAddress": "a8d0e5555977", + "ifHardType": null, + "ifLastChange": 10413, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ge-1/0/8", + "ifName": "ge-1/0/8", + "portName": null, + "ifIndex": 524, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1514, + "ifType": "ethernetCsmacd", + "ifAlias": "ge-1/0/8", + "ifPhysAddress": "a8d0e5555978", + "ifHardType": null, + "ifLastChange": 10413, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ge-1/0/9", + "ifName": "ge-1/0/9", + "portName": null, + "ifIndex": 525, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1514, + "ifType": "ethernetCsmacd", + "ifAlias": "ge-1/0/9", + "ifPhysAddress": "a8d0e5555979", + "ifHardType": null, + "ifLastChange": 10413, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ge-1/1/0", + "ifName": "ge-1/1/0", + "portName": null, + "ifIndex": 526, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1514, + "ifType": "ethernetCsmacd", + "ifAlias": "ge-1/1/0", + "ifPhysAddress": "a8d0e555597c", + "ifHardType": null, + "ifLastChange": 10494, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 41, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 54128651, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 13016285, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 22972, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 597349, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 44123, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ge-1/1/1", + "ifName": "ge-1/1/1", + "portName": null, + "ifIndex": 527, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1514, + "ifType": "ethernetCsmacd", + "ifAlias": "ge-1/1/1", + "ifPhysAddress": "a8d0e555597d", + "ifHardType": null, + "ifLastChange": 10414, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ge-1/1/2", + "ifName": "ge-1/1/2", + "portName": null, + "ifIndex": 528, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1514, + "ifType": "ethernetCsmacd", + "ifAlias": "ge-1/1/2", + "ifPhysAddress": "a8d0e555597e", + "ifHardType": null, + "ifLastChange": 10415, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ge-1/1/3", + "ifName": "ge-1/1/3", + "portName": null, + "ifIndex": 529, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1514, + "ifType": "ethernetCsmacd", + "ifAlias": "ge-1/1/3", + "ifPhysAddress": "a8d0e555597f", + "ifHardType": null, + "ifLastChange": 10415, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ge-1/1/4", + "ifName": "ge-1/1/4", + "portName": null, + "ifIndex": 530, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1514, + "ifType": "ethernetCsmacd", + "ifAlias": "ge-1/1/4", + "ifPhysAddress": "a8d0e5555980", + "ifHardType": null, + "ifLastChange": 10415, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ge-1/1/5", + "ifName": "ge-1/1/5", + "portName": null, + "ifIndex": 531, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1514, + "ifType": "ethernetCsmacd", + "ifAlias": "ge-1/1/5", + "ifPhysAddress": "a8d0e5555981", + "ifHardType": null, + "ifLastChange": 10416, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ge-1/1/6", + "ifName": "ge-1/1/6", + "portName": null, + "ifIndex": 532, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1514, + "ifType": "ethernetCsmacd", + "ifAlias": "ge-1/1/6", + "ifPhysAddress": "a8d0e5555982", + "ifHardType": null, + "ifLastChange": 10416, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ge-1/1/7", + "ifName": "ge-1/1/7", + "portName": null, + "ifIndex": 533, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1514, + "ifType": "ethernetCsmacd", + "ifAlias": "ge-1/1/7", + "ifPhysAddress": "a8d0e5555983", + "ifHardType": null, + "ifLastChange": 10416, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ge-1/1/8", + "ifName": "ge-1/1/8", + "portName": null, + "ifIndex": 534, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1514, + "ifType": "ethernetCsmacd", + "ifAlias": "ge-1/1/8", + "ifPhysAddress": "a8d0e5555984", + "ifHardType": null, + "ifLastChange": 10416, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ge-1/1/9", + "ifName": "ge-1/1/9", + "portName": null, + "ifIndex": 535, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1514, + "ifType": "ethernetCsmacd", + "ifAlias": "ge-1/1/9", + "ifPhysAddress": "a8d0e5555985", + "ifHardType": null, + "ifLastChange": 10894, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 35, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 51794011, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 13007730, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 39, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 715226, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 44094, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "xe-0/0/0", + "ifName": "xe-0/0/0", + "portName": null, + "ifIndex": 541, + "ifSpeed": 10000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 10000, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 9014, + "ifType": "ethernetCsmacd", + "ifAlias": "lab-er100", + "ifPhysAddress": "a8d0e5555910", + "ifHardType": null, + "ifLastChange": 9334, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 12257250, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 12460875, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 1927866962, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 718989456, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 2, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 1020, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 534045, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 645664, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "xe-0/0/1", + "ifName": "xe-0/0/1", + "portName": null, + "ifIndex": 556, + "ifSpeed": 10000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 10000, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 9192, + "ifType": "ethernetCsmacd", + "ifAlias": "lab-er2", + "ifPhysAddress": "a8d0e5555911", + "ifHardType": null, + "ifLastChange": 9334, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 12381734, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 13151090, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 707700127, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 771997618, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 570, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 541, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 624705, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 625194, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "xe-0/0/2", + "ifName": "xe-0/0/2", + "portName": null, + "ifIndex": 557, + "ifSpeed": 10000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 10000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1514, + "ifType": "ethernetCsmacd", + "ifAlias": "xe-0/0/2", + "ifPhysAddress": "a8d0e5555912", + "ifHardType": null, + "ifLastChange": 9333, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "xe-0/0/3", + "ifName": "xe-0/0/3", + "portName": null, + "ifIndex": 558, + "ifSpeed": 10000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 10000, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1514, + "ifType": "ethernetCsmacd", + "ifAlias": "xe-0/0/3", + "ifPhysAddress": "a8d0e5555913", + "ifHardType": null, + "ifLastChange": 9337, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "xe-0/0/0.0", + "ifName": "xe-0/0/0.0", + "portName": null, + "ifIndex": 559, + "ifSpeed": 10000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 10000, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 9000, + "ifType": "propVirtual", + "ifAlias": "xe-0/0/0.0", + "ifPhysAddress": "a8d0e5555910", + "ifHardType": null, + "ifLastChange": 9334, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 12791283, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 13107548, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 1927866973, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 718989456, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "xe-0/0/1.0", + "ifName": "xe-0/0/1.0", + "portName": null, + "ifIndex": 572, + "ifSpeed": 10000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 10000, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 9175, + "ifType": "propVirtual", + "ifAlias": "xe-0/0/1.0", + "ifPhysAddress": "a8d0e5555911", + "ifHardType": null, + "ifLastChange": 9334, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 13006998, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 13776815, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 707700262, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 771997618, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "xe-0/0/2.16386", + "ifName": "xe-0/0/2.16386", + "portName": null, + "ifIndex": 573, + "ifSpeed": 10000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 10000, + "ifHighSpeed_prev": null, + "ifOperStatus": "lowerLayerDown", + "ifOperStatus_prev": "lowerLayerDown", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1514, + "ifType": "propVirtual", + "ifAlias": "xe-0/0/2.16386", + "ifPhysAddress": "a8d0e5555912", + "ifHardType": null, + "ifLastChange": 9339, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "xe-0/0/3.16386", + "ifName": "xe-0/0/3.16386", + "portName": null, + "ifIndex": 576, + "ifSpeed": 10000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 10000, + "ifHighSpeed_prev": null, + "ifOperStatus": "lowerLayerDown", + "ifOperStatus_prev": "lowerLayerDown", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1514, + "ifType": "propVirtual", + "ifAlias": "xe-0/0/3.16386", + "ifPhysAddress": "a8d0e5555913", + "ifHardType": null, + "ifLastChange": 9339, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ge-1/0/0.16386", + "ifName": "ge-1/0/0.16386", + "portName": null, + "ifIndex": 577, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "lowerLayerDown", + "ifOperStatus_prev": "lowerLayerDown", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1514, + "ifType": "propVirtual", + "ifAlias": "ge-1/0/0.16386", + "ifPhysAddress": "a8d0e5555970", + "ifHardType": null, + "ifLastChange": 10408, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ge-1/0/1.16386", + "ifName": "ge-1/0/1.16386", + "portName": null, + "ifIndex": 578, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "lowerLayerDown", + "ifOperStatus_prev": "lowerLayerDown", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1514, + "ifType": "propVirtual", + "ifAlias": "ge-1/0/1.16386", + "ifPhysAddress": "a8d0e5555971", + "ifHardType": null, + "ifLastChange": 10412, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ge-1/0/2.16386", + "ifName": "ge-1/0/2.16386", + "portName": null, + "ifIndex": 579, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "lowerLayerDown", + "ifOperStatus_prev": "lowerLayerDown", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1514, + "ifType": "propVirtual", + "ifAlias": "ge-1/0/2.16386", + "ifPhysAddress": "a8d0e5555972", + "ifHardType": null, + "ifLastChange": 10413, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ge-1/0/3.16386", + "ifName": "ge-1/0/3.16386", + "portName": null, + "ifIndex": 580, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "lowerLayerDown", + "ifOperStatus_prev": "lowerLayerDown", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1514, + "ifType": "propVirtual", + "ifAlias": "ge-1/0/3.16386", + "ifPhysAddress": "a8d0e5555973", + "ifHardType": null, + "ifLastChange": 10416, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ge-1/0/4.16386", + "ifName": "ge-1/0/4.16386", + "portName": null, + "ifIndex": 581, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "lowerLayerDown", + "ifOperStatus_prev": "lowerLayerDown", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1514, + "ifType": "propVirtual", + "ifAlias": "ge-1/0/4.16386", + "ifPhysAddress": "a8d0e5555974", + "ifHardType": null, + "ifLastChange": 10417, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ge-1/0/5.16386", + "ifName": "ge-1/0/5.16386", + "portName": null, + "ifIndex": 582, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "lowerLayerDown", + "ifOperStatus_prev": "lowerLayerDown", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1514, + "ifType": "propVirtual", + "ifAlias": "ge-1/0/5.16386", + "ifPhysAddress": "a8d0e5555975", + "ifHardType": null, + "ifLastChange": 10417, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ge-1/0/6.16386", + "ifName": "ge-1/0/6.16386", + "portName": null, + "ifIndex": 583, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "lowerLayerDown", + "ifOperStatus_prev": "lowerLayerDown", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1514, + "ifType": "propVirtual", + "ifAlias": "ge-1/0/6.16386", + "ifPhysAddress": "a8d0e5555976", + "ifHardType": null, + "ifLastChange": 10417, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ge-1/0/7.16386", + "ifName": "ge-1/0/7.16386", + "portName": null, + "ifIndex": 584, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "lowerLayerDown", + "ifOperStatus_prev": "lowerLayerDown", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1514, + "ifType": "propVirtual", + "ifAlias": "ge-1/0/7.16386", + "ifPhysAddress": "a8d0e5555977", + "ifHardType": null, + "ifLastChange": 10417, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ge-1/0/8.16386", + "ifName": "ge-1/0/8.16386", + "portName": null, + "ifIndex": 585, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "lowerLayerDown", + "ifOperStatus_prev": "lowerLayerDown", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1514, + "ifType": "propVirtual", + "ifAlias": "ge-1/0/8.16386", + "ifPhysAddress": "a8d0e5555978", + "ifHardType": null, + "ifLastChange": 10418, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ge-1/0/9.16386", + "ifName": "ge-1/0/9.16386", + "portName": null, + "ifIndex": 588, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "lowerLayerDown", + "ifOperStatus_prev": "lowerLayerDown", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1514, + "ifType": "propVirtual", + "ifAlias": "ge-1/0/9.16386", + "ifPhysAddress": "a8d0e5555979", + "ifHardType": null, + "ifLastChange": 10418, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ge-1/1/1.16386", + "ifName": "ge-1/1/1.16386", + "portName": null, + "ifIndex": 589, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "lowerLayerDown", + "ifOperStatus_prev": "lowerLayerDown", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1514, + "ifType": "propVirtual", + "ifAlias": "ge-1/1/1.16386", + "ifPhysAddress": "a8d0e555597d", + "ifHardType": null, + "ifLastChange": 10419, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ge-1/1/2.16386", + "ifName": "ge-1/1/2.16386", + "portName": null, + "ifIndex": 590, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "lowerLayerDown", + "ifOperStatus_prev": "lowerLayerDown", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1514, + "ifType": "propVirtual", + "ifAlias": "ge-1/1/2.16386", + "ifPhysAddress": "a8d0e555597e", + "ifHardType": null, + "ifLastChange": 10419, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ge-1/1/3.16386", + "ifName": "ge-1/1/3.16386", + "portName": null, + "ifIndex": 591, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "lowerLayerDown", + "ifOperStatus_prev": "lowerLayerDown", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1514, + "ifType": "propVirtual", + "ifAlias": "ge-1/1/3.16386", + "ifPhysAddress": "a8d0e555597f", + "ifHardType": null, + "ifLastChange": 10419, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ge-1/1/4.16386", + "ifName": "ge-1/1/4.16386", + "portName": null, + "ifIndex": 592, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "lowerLayerDown", + "ifOperStatus_prev": "lowerLayerDown", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1514, + "ifType": "propVirtual", + "ifAlias": "ge-1/1/4.16386", + "ifPhysAddress": "a8d0e5555980", + "ifHardType": null, + "ifLastChange": 10419, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ge-1/1/5.16386", + "ifName": "ge-1/1/5.16386", + "portName": null, + "ifIndex": 593, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "lowerLayerDown", + "ifOperStatus_prev": "lowerLayerDown", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1514, + "ifType": "propVirtual", + "ifAlias": "ge-1/1/5.16386", + "ifPhysAddress": "a8d0e5555981", + "ifHardType": null, + "ifLastChange": 10419, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ge-1/1/6.16386", + "ifName": "ge-1/1/6.16386", + "portName": null, + "ifIndex": 594, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "lowerLayerDown", + "ifOperStatus_prev": "lowerLayerDown", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1514, + "ifType": "propVirtual", + "ifAlias": "ge-1/1/6.16386", + "ifPhysAddress": "a8d0e5555982", + "ifHardType": null, + "ifLastChange": 10419, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ge-1/1/7.16386", + "ifName": "ge-1/1/7.16386", + "portName": null, + "ifIndex": 595, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "lowerLayerDown", + "ifOperStatus_prev": "lowerLayerDown", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1514, + "ifType": "propVirtual", + "ifAlias": "ge-1/1/7.16386", + "ifPhysAddress": "a8d0e5555983", + "ifHardType": null, + "ifLastChange": 10419, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ge-1/1/8.16386", + "ifName": "ge-1/1/8.16386", + "portName": null, + "ifIndex": 596, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "lowerLayerDown", + "ifOperStatus_prev": "lowerLayerDown", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1514, + "ifType": "propVirtual", + "ifAlias": "ge-1/1/8.16386", + "ifPhysAddress": "a8d0e5555984", + "ifHardType": null, + "ifLastChange": 10419, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ge-1/1/9.16386", + "ifName": "ge-1/1/9.16386", + "portName": null, + "ifIndex": 616, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1514, + "ifType": "propVirtual", + "ifAlias": "ge-1/1/9.16386", + "ifPhysAddress": "a8d0e5555985", + "ifHardType": null, + "ifLastChange": 10894, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 715263, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 44094, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 51794011, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 13007730, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ge-1/1/0.16386", + "ifName": "ge-1/1/0.16386", + "portName": null, + "ifIndex": 617, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 1000, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1514, + "ifType": "propVirtual", + "ifAlias": "ge-1/1/0.16386", + "ifPhysAddress": "a8d0e555597c", + "ifHardType": null, + "ifLastChange": 10494, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 620319, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 44123, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 54128305, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 13016285, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + } + ] + } + }, + "processors": { + "discovery": { + "processors": [ + { + "entPhysicalIndex": 0, + "hrDeviceIndex": 0, + "processor_oid": ".1.3.6.1.4.1.2636.3.1.13.1.8.6.1.0.0", + "processor_index": "6.1.0.0", + "processor_type": "junos", + "processor_usage": 10, + "processor_descr": "TFEB MX5-T", + "processor_precision": 1, + "processor_perc_warn": 75 + }, + { + "entPhysicalIndex": 0, + "hrDeviceIndex": 0, + "processor_oid": ".1.3.6.1.4.1.2636.3.1.13.1.8.7.1.0.0", + "processor_index": "7.1.0.0", + "processor_type": "junos", + "processor_usage": 10, + "processor_descr": "FPC: MPC BUILTIN @ 0/*/*", + "processor_precision": 1, + "processor_perc_warn": 75 + }, + { + "entPhysicalIndex": 0, + "hrDeviceIndex": 0, + "processor_oid": ".1.3.6.1.4.1.2636.3.1.13.1.8.7.2.0.0", + "processor_index": "7.2.0.0", + "processor_type": "junos", + "processor_usage": 10, + "processor_descr": "FPC: MPC BUILTIN @ 1/*/*", + "processor_precision": 1, + "processor_perc_warn": 75 + }, + { + "entPhysicalIndex": 0, + "hrDeviceIndex": 0, + "processor_oid": ".1.3.6.1.4.1.2636.3.1.13.1.8.9.1.0.0", + "processor_index": "9.1.0.0", + "processor_type": "junos", + "processor_usage": 87, + "processor_descr": "Routing Engine", + "processor_precision": 1, + "processor_perc_warn": 75 + } + ] + }, + "poller": "matches discovery" + }, + "mempools": { + "discovery": { + "mempools": [ + { + "mempool_index": "6.1.0.0", + "entPhysicalIndex": null, + "mempool_type": "junos", + "mempool_class": "system", + "mempool_precision": 1048576, + "mempool_descr": "TFEB MX5-T", + "mempool_perc": 19, + "mempool_perc_oid": ".1.3.6.1.4.1.2636.3.1.13.1.11.6.1.0.0", + "mempool_used": 204010947, + "mempool_used_oid": null, + "mempool_free": 869730877, + "mempool_free_oid": null, + "mempool_total": 1073741824, + "mempool_total_oid": null, + "mempool_largestfree": null, + "mempool_lowestfree": null, + "mempool_deleted": 0, + "mempool_perc_warn": 90 + }, + { + "mempool_index": "7.1.0.0", + "entPhysicalIndex": null, + "mempool_type": "junos", + "mempool_class": "system", + "mempool_precision": 1048576, + "mempool_descr": "FPC: MPC BUILTIN @ 0/*/*", + "mempool_perc": 19, + "mempool_perc_oid": ".1.3.6.1.4.1.2636.3.1.13.1.11.7.1.0.0", + "mempool_used": 204010947, + "mempool_used_oid": null, + "mempool_free": 869730877, + "mempool_free_oid": null, + "mempool_total": 1073741824, + "mempool_total_oid": null, + "mempool_largestfree": null, + "mempool_lowestfree": null, + "mempool_deleted": 0, + "mempool_perc_warn": 90 + }, + { + "mempool_index": "7.2.0.0", + "entPhysicalIndex": null, + "mempool_type": "junos", + "mempool_class": "system", + "mempool_precision": 1048576, + "mempool_descr": "FPC: MPC BUILTIN @ 1/*/*", + "mempool_perc": 19, + "mempool_perc_oid": ".1.3.6.1.4.1.2636.3.1.13.1.11.7.2.0.0", + "mempool_used": 204010947, + "mempool_used_oid": null, + "mempool_free": 869730877, + "mempool_free_oid": null, + "mempool_total": 1073741824, + "mempool_total_oid": null, + "mempool_largestfree": null, + "mempool_lowestfree": null, + "mempool_deleted": 0, + "mempool_perc_warn": 90 + }, + { + "mempool_index": "9.1.0.0", + "entPhysicalIndex": null, + "mempool_type": "junos", + "mempool_class": "system", + "mempool_precision": 1048576, + "mempool_descr": "Routing Engine", + "mempool_perc": 39, + "mempool_perc_oid": ".1.3.6.1.4.1.2636.3.1.13.1.11.9.1.0.0", + "mempool_used": 837518623, + "mempool_used_oid": null, + "mempool_free": 1309965025, + "mempool_free_oid": null, + "mempool_total": 2147483648, + "mempool_total_oid": null, + "mempool_largestfree": null, + "mempool_lowestfree": null, + "mempool_deleted": 0, + "mempool_perc_warn": 90 + } + ] + }, + "poller": "matches discovery" + }, + "sensors": { + "discovery": { + "sensors": [ + { + "sensor_deleted": 0, + "sensor_class": "current", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.60.1.1.1.1.6.516", + "sensor_index": "rx-516", + "sensor_type": "junos", + "sensor_descr": "ge-1/0/0 Tx Current", + "group": null, + "sensor_divisor": 1000000, + "sensor_multiplier": 1, + "sensor_current": 5684, + "sensor_limit": 0.013, + "sensor_limit_warn": 0.0125, + "sensor_limit_low": 0.001, + "sensor_limit_low_warn": 0.002, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "516", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "current", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.60.1.1.1.1.6.525", + "sensor_index": "rx-525", + "sensor_type": "junos", + "sensor_descr": "ge-1/0/9 Tx Current", + "group": null, + "sensor_divisor": 1000000, + "sensor_multiplier": 1, + "sensor_current": 11360, + "sensor_limit": 0.08, + "sensor_limit_warn": 0.07, + "sensor_limit_low": 0.0001, + "sensor_limit_low_warn": 0.0002, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "525", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "current", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.60.1.1.1.1.6.526", + "sensor_index": "rx-526", + "sensor_type": "junos", + "sensor_descr": "ge-1/1/0 Tx Current", + "group": null, + "sensor_divisor": 1000000, + "sensor_multiplier": 1, + "sensor_current": 5376, + "sensor_limit": 0.017, + "sensor_limit_warn": 0.014, + "sensor_limit_low": 0.001, + "sensor_limit_low_warn": 0.002, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "526", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "current", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.60.1.1.1.1.6.541", + "sensor_index": "rx-541", + "sensor_type": "junos", + "sensor_descr": "xe-0/0/0 Tx Current", + "group": null, + "sensor_divisor": 1000000, + "sensor_multiplier": 1, + "sensor_current": 7860, + "sensor_limit": 0.012, + "sensor_limit_warn": 0.0115, + "sensor_limit_low": 0.001, + "sensor_limit_low_warn": 0.002, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "541", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "current", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.60.1.1.1.1.6.556", + "sensor_index": "rx-556", + "sensor_type": "junos", + "sensor_descr": "xe-0/0/1 Tx Current", + "group": null, + "sensor_divisor": 1000000, + "sensor_multiplier": 1, + "sensor_current": 33209, + "sensor_limit": 0.08, + "sensor_limit_warn": 0.075, + "sensor_limit_low": 0.015, + "sensor_limit_low_warn": 0.02, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "556", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.60.1.1.1.1.5.516", + "sensor_index": "rx-516", + "sensor_type": "junos", + "sensor_descr": "ge-1/0/0 Rx Power", + "group": null, + "sensor_divisor": 100, + "sensor_multiplier": 1, + "sensor_current": -2677, + "sensor_limit": 0.5, + "sensor_limit_warn": -1, + "sensor_limit_low": -21.02, + "sensor_limit_low_warn": -16.98, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "516", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.60.1.1.1.1.5.525", + "sensor_index": "rx-525", + "sensor_type": "junos", + "sensor_descr": "ge-1/0/9 Rx Power", + "group": null, + "sensor_divisor": 100, + "sensor_multiplier": 1, + "sensor_current": -3698, + "sensor_limit": 0, + "sensor_limit_warn": -2.99, + "sensor_limit_low": -22.51, + "sensor_limit_low_warn": -19.5, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "525", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.60.1.1.1.1.5.526", + "sensor_index": "rx-526", + "sensor_type": "junos", + "sensor_descr": "ge-1/1/0 Rx Power", + "group": null, + "sensor_divisor": 100, + "sensor_multiplier": 1, + "sensor_current": -483, + "sensor_limit": 1, + "sensor_limit_warn": -1, + "sensor_limit_low": -20, + "sensor_limit_low_warn": -18.01, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "526", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.60.1.1.1.1.5.541", + "sensor_index": "rx-541", + "sensor_type": "junos", + "sensor_descr": "xe-0/0/0 Rx Power", + "group": null, + "sensor_divisor": 100, + "sensor_multiplier": 1, + "sensor_current": -214, + "sensor_limit": 1, + "sensor_limit_warn": 0, + "sensor_limit_low": -20, + "sensor_limit_low_warn": -18.01, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "541", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.60.1.1.1.1.5.556", + "sensor_index": "rx-556", + "sensor_type": "junos", + "sensor_descr": "xe-0/0/1 Rx Power", + "group": null, + "sensor_divisor": 100, + "sensor_multiplier": 1, + "sensor_current": -255, + "sensor_limit": 2.5, + "sensor_limit_warn": 1.5, + "sensor_limit_low": -15, + "sensor_limit_low_warn": -14, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "556", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.60.1.1.1.1.7.516", + "sensor_index": "tx-516", + "sensor_type": "junos", + "sensor_descr": "ge-1/0/0 Tx Power", + "group": null, + "sensor_divisor": 100, + "sensor_multiplier": 1, + "sensor_current": -494, + "sensor_limit": 0, + "sensor_limit_warn": -3, + "sensor_limit_low": -13.56, + "sensor_limit_low_warn": -9.5, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "516", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.60.1.1.1.1.7.525", + "sensor_index": "tx-525", + "sensor_type": "junos", + "sensor_descr": "ge-1/0/9 Tx Power", + "group": null, + "sensor_divisor": 100, + "sensor_multiplier": 1, + "sensor_current": -557, + "sensor_limit": 0, + "sensor_limit_warn": -3, + "sensor_limit_low": -12, + "sensor_limit_low_warn": -9.03, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "525", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.60.1.1.1.1.7.526", + "sensor_index": "tx-526", + "sensor_type": "junos", + "sensor_descr": "ge-1/1/0 Tx Power", + "group": null, + "sensor_divisor": 100, + "sensor_multiplier": 1, + "sensor_current": -548, + "sensor_limit": -1.99, + "sensor_limit_warn": -1.99, + "sensor_limit_low": -11.73, + "sensor_limit_low_warn": -11.02, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "526", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.60.1.1.1.1.7.541", + "sensor_index": "tx-541", + "sensor_type": "junos", + "sensor_descr": "xe-0/0/0 Tx Power", + "group": null, + "sensor_divisor": 100, + "sensor_multiplier": 1, + "sensor_current": -215, + "sensor_limit": 0, + "sensor_limit_warn": -1, + "sensor_limit_low": -9.03, + "sensor_limit_low_warn": -8.01, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "541", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.60.1.1.1.1.7.556", + "sensor_index": "tx-556", + "sensor_type": "junos", + "sensor_descr": "xe-0/0/1 Tx Power", + "group": null, + "sensor_divisor": 100, + "sensor_multiplier": 1, + "sensor_current": -231, + "sensor_limit": 1.5, + "sensor_limit_warn": 1, + "sensor_limit_low": -7.01, + "sensor_limit_low_warn": -6, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "556", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.1.15.1.8.10.1.0.0", + "sensor_index": "jnxFruName.10.1.0.0", + "sensor_type": "jnxFruTable", + "sensor_descr": "FPM", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 6, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "jnxFruTable" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.1.15.1.8.10.1.1.0", + "sensor_index": "jnxFruName.10.1.1.0", + "sensor_type": "jnxFruTable", + "sensor_descr": "FPM Board", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 6, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "jnxFruTable" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.1.15.1.8.10.1.2.0", + "sensor_index": "jnxFruName.10.1.2.0", + "sensor_type": "jnxFruTable", + "sensor_descr": "FPM Display", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 6, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "jnxFruTable" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.1.15.1.8.10.1.3.0", + "sensor_index": "jnxFruName.10.1.3.0", + "sensor_type": "jnxFruTable", + "sensor_descr": "FPM", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 6, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "jnxFruTable" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.1.15.1.8.10.1.4.0", + "sensor_index": "jnxFruName.10.1.4.0", + "sensor_type": "jnxFruTable", + "sensor_descr": "FPM", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 6, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "jnxFruTable" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.1.15.1.8.10.1.5.0", + "sensor_index": "jnxFruName.10.1.5.0", + "sensor_type": "jnxFruTable", + "sensor_descr": "FPM", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 6, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "jnxFruTable" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.1.15.1.8.2.1.0.0", + "sensor_index": "jnxFruName.2.1.0.0", + "sensor_type": "jnxFruTable", + "sensor_descr": "PEM 0", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 6, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "jnxFruTable" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.1.15.1.8.20.1.1.0", + "sensor_index": "jnxFruName.20.1.1.0", + "sensor_type": "jnxFruTable", + "sensor_descr": "MIC: 4x 10GE XFP @ 0/0/*", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 6, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "jnxFruTable" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.1.15.1.8.20.2.1.0", + "sensor_index": "jnxFruName.20.2.1.0", + "sensor_type": "jnxFruTable", + "sensor_descr": "MIC: 3D 20x 1GE(LAN) SFP @ 1/0/*", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 6, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "jnxFruTable" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.1.15.1.8.4.1.0.0", + "sensor_index": "jnxFruName.4.1.0.0", + "sensor_type": "jnxFruTable", + "sensor_descr": "Fan Tray", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 6, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "jnxFruTable" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.1.15.1.8.4.1.1.0", + "sensor_index": "jnxFruName.4.1.1.0", + "sensor_type": "jnxFruTable", + "sensor_descr": "Fan 1", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 6, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "jnxFruTable" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.1.15.1.8.4.1.2.0", + "sensor_index": "jnxFruName.4.1.2.0", + "sensor_type": "jnxFruTable", + "sensor_descr": "Fan 2", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 6, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "jnxFruTable" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.1.15.1.8.4.1.3.0", + "sensor_index": "jnxFruName.4.1.3.0", + "sensor_type": "jnxFruTable", + "sensor_descr": "Fan 3", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 6, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "jnxFruTable" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.1.15.1.8.4.1.4.0", + "sensor_index": "jnxFruName.4.1.4.0", + "sensor_type": "jnxFruTable", + "sensor_descr": "Fan 4", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 6, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "jnxFruTable" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.1.15.1.8.4.1.5.0", + "sensor_index": "jnxFruName.4.1.5.0", + "sensor_type": "jnxFruTable", + "sensor_descr": "Fan 5", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 6, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "jnxFruTable" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.1.15.1.8.6.1.0.0", + "sensor_index": "jnxFruName.6.1.0.0", + "sensor_type": "jnxFruTable", + "sensor_descr": "TFEB MX5-T", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 6, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "jnxFruTable" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.1.15.1.8.6.1.1.0", + "sensor_index": "jnxFruName.6.1.1.0", + "sensor_type": "jnxFruTable", + "sensor_descr": "TFEB Intake temperature sensor", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 6, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "jnxFruTable" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.1.15.1.8.7.1.0.0", + "sensor_index": "jnxFruName.7.1.0.0", + "sensor_type": "jnxFruTable", + "sensor_descr": "FPC: MPC BUILTIN @ 0/*/*", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 6, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "jnxFruTable" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.1.15.1.8.7.2.0.0", + "sensor_index": "jnxFruName.7.2.0.0", + "sensor_type": "jnxFruTable", + "sensor_descr": "FPC: MPC BUILTIN @ 1/*/*", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 6, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "jnxFruTable" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.1.15.1.8.8.1.1.0", + "sensor_index": "jnxFruName.8.1.1.0", + "sensor_type": "jnxFruTable", + "sensor_descr": "PIC: 4x 10GE XFP @ 0/0/*", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 6, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "jnxFruTable" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.1.15.1.8.8.2.1.0", + "sensor_index": "jnxFruName.8.2.1.0", + "sensor_type": "jnxFruTable", + "sensor_descr": "PIC: 10x 1GE(LAN) SFP @ 1/0/*", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 6, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "jnxFruTable" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.1.15.1.8.8.2.2.0", + "sensor_index": "jnxFruName.8.2.2.0", + "sensor_type": "jnxFruTable", + "sensor_descr": "PIC: 10x 1GE(LAN) SFP @ 1/1/*", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 6, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "jnxFruTable" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.1.15.1.8.9.1.0.0", + "sensor_index": "jnxFruName.9.1.0.0", + "sensor_type": "jnxFruTable", + "sensor_descr": "Routing Engine", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 6, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "jnxFruTable" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.4.2.3.1.0", + "sensor_index": "0", + "sensor_type": "jnxRedAlarmState", + "sensor_descr": "Red Alarm", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "jnxRedAlarmState" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.4.2.2.1.0", + "sensor_index": "0", + "sensor_type": "jnxYellowAlarmState", + "sensor_descr": "Yellow Alarm", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "jnxYellowAlarmState" + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.1.13.1.7.6.1.0.0", + "sensor_index": "6.1.0.0", + "sensor_type": "junos", + "sensor_descr": "TFEB MX5-T", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 40, + "sensor_limit": 60, + "sensor_limit_warn": null, + "sensor_limit_low": 30, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.1.13.1.7.6.1.1.0", + "sensor_index": "6.1.1.0", + "sensor_type": "junos", + "sensor_descr": "TFEB Intake", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 40, + "sensor_limit": 60, + "sensor_limit_warn": null, + "sensor_limit_low": 30, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.1.13.1.7.9.1.0.0", + "sensor_index": "9.1.0.0", + "sensor_type": "junos", + "sensor_descr": "Routing Engine", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 38, + "sensor_limit": 58, + "sensor_limit_warn": null, + "sensor_limit_low": 28, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.60.1.1.1.1.8.516", + "sensor_index": "rx-516", + "sensor_type": "junos", + "sensor_descr": "ge-1/0/0 Temperature", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 26, + "sensor_limit": 110, + "sensor_limit_warn": 93, + "sensor_limit_low": -40, + "sensor_limit_low_warn": -30, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "516", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.60.1.1.1.1.8.525", + "sensor_index": "rx-525", + "sensor_type": "junos", + "sensor_descr": "ge-1/0/9 Temperature", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 25, + "sensor_limit": 73, + "sensor_limit_warn": 70, + "sensor_limit_low": -8, + "sensor_limit_low_warn": -5, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "525", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.60.1.1.1.1.8.526", + "sensor_index": "rx-526", + "sensor_type": "junos", + "sensor_descr": "ge-1/1/0 Temperature", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 21, + "sensor_limit": 95, + "sensor_limit_warn": 90, + "sensor_limit_low": -25, + "sensor_limit_low_warn": -20, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "526", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.60.1.1.1.1.8.541", + "sensor_index": "rx-541", + "sensor_type": "junos", + "sensor_descr": "xe-0/0/0 Temperature", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 31, + "sensor_limit": 75, + "sensor_limit_warn": 70, + "sensor_limit_low": -10, + "sensor_limit_low_warn": -5, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "541", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.60.1.1.1.1.8.556", + "sensor_index": "rx-556", + "sensor_type": "junos", + "sensor_descr": "xe-0/0/1 Temperature", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 28, + "sensor_limit": 80, + "sensor_limit_warn": 75, + "sensor_limit_low": -15, + "sensor_limit_low_warn": -10, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "556", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + } + ], + "state_indexes": [ + { + "state_name": "jnxFruTable", + "state_descr": "unknown", + "state_draw_graph": 1, + "state_value": 1, + "state_generic_value": 3 + }, + { + "state_name": "jnxFruTable", + "state_descr": "empty", + "state_draw_graph": 1, + "state_value": 2, + "state_generic_value": 3 + }, + { + "state_name": "jnxFruTable", + "state_descr": "present", + "state_draw_graph": 1, + "state_value": 3, + "state_generic_value": 1 + }, + { + "state_name": "jnxFruTable", + "state_descr": "ready", + "state_draw_graph": 1, + "state_value": 4, + "state_generic_value": 0 + }, + { + "state_name": "jnxFruTable", + "state_descr": "announceOnline", + "state_draw_graph": 1, + "state_value": 5, + "state_generic_value": 0 + }, + { + "state_name": "jnxFruTable", + "state_descr": "online", + "state_draw_graph": 1, + "state_value": 6, + "state_generic_value": 0 + }, + { + "state_name": "jnxFruTable", + "state_descr": "anounceOffline", + "state_draw_graph": 1, + "state_value": 7, + "state_generic_value": 1 + }, + { + "state_name": "jnxFruTable", + "state_descr": "offline", + "state_draw_graph": 1, + "state_value": 8, + "state_generic_value": 2 + }, + { + "state_name": "jnxFruTable", + "state_descr": "diagnostic", + "state_draw_graph": 1, + "state_value": 9, + "state_generic_value": 3 + }, + { + "state_name": "jnxFruTable", + "state_descr": "standby", + "state_draw_graph": 1, + "state_value": 10, + "state_generic_value": 3 + }, + { + "state_name": "jnxRedAlarmState", + "state_descr": "unknown", + "state_draw_graph": 1, + "state_value": 1, + "state_generic_value": 3 + }, + { + "state_name": "jnxRedAlarmState", + "state_descr": "off", + "state_draw_graph": 1, + "state_value": 2, + "state_generic_value": 0 + }, + { + "state_name": "jnxRedAlarmState", + "state_descr": "on", + "state_draw_graph": 1, + "state_value": 3, + "state_generic_value": 2 + }, + { + "state_name": "jnxYellowAlarmState", + "state_descr": "unknown", + "state_draw_graph": 1, + "state_value": 1, + "state_generic_value": 3 + }, + { + "state_name": "jnxYellowAlarmState", + "state_descr": "off", + "state_draw_graph": 1, + "state_value": 2, + "state_generic_value": 0 + }, + { + "state_name": "jnxYellowAlarmState", + "state_descr": "on", + "state_draw_graph": 1, + "state_value": 3, + "state_generic_value": 2 + } + ] + }, + "poller": { + "sensors": [ + { + "sensor_deleted": 0, + "sensor_class": "current", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.60.1.1.1.1.6.516", + "sensor_index": "rx-516", + "sensor_type": "junos", + "sensor_descr": "ge-1/0/0 Tx Current", + "group": null, + "sensor_divisor": 1000000, + "sensor_multiplier": 1, + "sensor_current": 0.005684, + "sensor_limit": 0.013, + "sensor_limit_warn": 0.0125, + "sensor_limit_low": 0.001, + "sensor_limit_low_warn": 0.002, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "516", + "entPhysicalIndex_measured": "ports", + "sensor_prev": 5684, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "current", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.60.1.1.1.1.6.525", + "sensor_index": "rx-525", + "sensor_type": "junos", + "sensor_descr": "ge-1/0/9 Tx Current", + "group": null, + "sensor_divisor": 1000000, + "sensor_multiplier": 1, + "sensor_current": 0.01136, + "sensor_limit": 0.08, + "sensor_limit_warn": 0.07, + "sensor_limit_low": 0.0001, + "sensor_limit_low_warn": 0.0002, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "525", + "entPhysicalIndex_measured": "ports", + "sensor_prev": 11360, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "current", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.60.1.1.1.1.6.526", + "sensor_index": "rx-526", + "sensor_type": "junos", + "sensor_descr": "ge-1/1/0 Tx Current", + "group": null, + "sensor_divisor": 1000000, + "sensor_multiplier": 1, + "sensor_current": 0.005376, + "sensor_limit": 0.017, + "sensor_limit_warn": 0.014, + "sensor_limit_low": 0.001, + "sensor_limit_low_warn": 0.002, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "526", + "entPhysicalIndex_measured": "ports", + "sensor_prev": 5376, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "current", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.60.1.1.1.1.6.541", + "sensor_index": "rx-541", + "sensor_type": "junos", + "sensor_descr": "xe-0/0/0 Tx Current", + "group": null, + "sensor_divisor": 1000000, + "sensor_multiplier": 1, + "sensor_current": 0.00786, + "sensor_limit": 0.012, + "sensor_limit_warn": 0.0115, + "sensor_limit_low": 0.001, + "sensor_limit_low_warn": 0.002, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "541", + "entPhysicalIndex_measured": "ports", + "sensor_prev": 7860, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "current", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.60.1.1.1.1.6.556", + "sensor_index": "rx-556", + "sensor_type": "junos", + "sensor_descr": "xe-0/0/1 Tx Current", + "group": null, + "sensor_divisor": 1000000, + "sensor_multiplier": 1, + "sensor_current": 0.033209, + "sensor_limit": 0.08, + "sensor_limit_warn": 0.075, + "sensor_limit_low": 0.015, + "sensor_limit_low_warn": 0.02, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "556", + "entPhysicalIndex_measured": "ports", + "sensor_prev": 33209, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.60.1.1.1.1.5.516", + "sensor_index": "rx-516", + "sensor_type": "junos", + "sensor_descr": "ge-1/0/0 Rx Power", + "group": null, + "sensor_divisor": 100, + "sensor_multiplier": 1, + "sensor_current": -26.77, + "sensor_limit": 0.5, + "sensor_limit_warn": -1, + "sensor_limit_low": -21.02, + "sensor_limit_low_warn": -16.98, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "516", + "entPhysicalIndex_measured": "ports", + "sensor_prev": -2677, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.60.1.1.1.1.5.525", + "sensor_index": "rx-525", + "sensor_type": "junos", + "sensor_descr": "ge-1/0/9 Rx Power", + "group": null, + "sensor_divisor": 100, + "sensor_multiplier": 1, + "sensor_current": -36.98, + "sensor_limit": 0, + "sensor_limit_warn": -2.99, + "sensor_limit_low": -22.51, + "sensor_limit_low_warn": -19.5, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "525", + "entPhysicalIndex_measured": "ports", + "sensor_prev": -3698, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.60.1.1.1.1.5.526", + "sensor_index": "rx-526", + "sensor_type": "junos", + "sensor_descr": "ge-1/1/0 Rx Power", + "group": null, + "sensor_divisor": 100, + "sensor_multiplier": 1, + "sensor_current": -4.83, + "sensor_limit": 1, + "sensor_limit_warn": -1, + "sensor_limit_low": -20, + "sensor_limit_low_warn": -18.01, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "526", + "entPhysicalIndex_measured": "ports", + "sensor_prev": -483, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.60.1.1.1.1.5.541", + "sensor_index": "rx-541", + "sensor_type": "junos", + "sensor_descr": "xe-0/0/0 Rx Power", + "group": null, + "sensor_divisor": 100, + "sensor_multiplier": 1, + "sensor_current": -2.14, + "sensor_limit": 1, + "sensor_limit_warn": 0, + "sensor_limit_low": -20, + "sensor_limit_low_warn": -18.01, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "541", + "entPhysicalIndex_measured": "ports", + "sensor_prev": -214, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.60.1.1.1.1.5.556", + "sensor_index": "rx-556", + "sensor_type": "junos", + "sensor_descr": "xe-0/0/1 Rx Power", + "group": null, + "sensor_divisor": 100, + "sensor_multiplier": 1, + "sensor_current": -2.55, + "sensor_limit": 2.5, + "sensor_limit_warn": 1.5, + "sensor_limit_low": -15, + "sensor_limit_low_warn": -14, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "556", + "entPhysicalIndex_measured": "ports", + "sensor_prev": -255, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.60.1.1.1.1.7.516", + "sensor_index": "tx-516", + "sensor_type": "junos", + "sensor_descr": "ge-1/0/0 Tx Power", + "group": null, + "sensor_divisor": 100, + "sensor_multiplier": 1, + "sensor_current": -4.94, + "sensor_limit": 0, + "sensor_limit_warn": -3, + "sensor_limit_low": -13.56, + "sensor_limit_low_warn": -9.5, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "516", + "entPhysicalIndex_measured": "ports", + "sensor_prev": -494, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.60.1.1.1.1.7.525", + "sensor_index": "tx-525", + "sensor_type": "junos", + "sensor_descr": "ge-1/0/9 Tx Power", + "group": null, + "sensor_divisor": 100, + "sensor_multiplier": 1, + "sensor_current": -5.57, + "sensor_limit": 0, + "sensor_limit_warn": -3, + "sensor_limit_low": -12, + "sensor_limit_low_warn": -9.03, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "525", + "entPhysicalIndex_measured": "ports", + "sensor_prev": -557, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.60.1.1.1.1.7.526", + "sensor_index": "tx-526", + "sensor_type": "junos", + "sensor_descr": "ge-1/1/0 Tx Power", + "group": null, + "sensor_divisor": 100, + "sensor_multiplier": 1, + "sensor_current": -5.48, + "sensor_limit": -1.99, + "sensor_limit_warn": -1.99, + "sensor_limit_low": -11.73, + "sensor_limit_low_warn": -11.02, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "526", + "entPhysicalIndex_measured": "ports", + "sensor_prev": -548, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.60.1.1.1.1.7.541", + "sensor_index": "tx-541", + "sensor_type": "junos", + "sensor_descr": "xe-0/0/0 Tx Power", + "group": null, + "sensor_divisor": 100, + "sensor_multiplier": 1, + "sensor_current": -2.15, + "sensor_limit": 0, + "sensor_limit_warn": -1, + "sensor_limit_low": -9.03, + "sensor_limit_low_warn": -8.01, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "541", + "entPhysicalIndex_measured": "ports", + "sensor_prev": -215, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "dbm", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.60.1.1.1.1.7.556", + "sensor_index": "tx-556", + "sensor_type": "junos", + "sensor_descr": "xe-0/0/1 Tx Power", + "group": null, + "sensor_divisor": 100, + "sensor_multiplier": 1, + "sensor_current": -2.31, + "sensor_limit": 1.5, + "sensor_limit_warn": 1, + "sensor_limit_low": -7.01, + "sensor_limit_low_warn": -6, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "556", + "entPhysicalIndex_measured": "ports", + "sensor_prev": -231, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.1.15.1.8.10.1.0.0", + "sensor_index": "jnxFruName.10.1.0.0", + "sensor_type": "jnxFruTable", + "sensor_descr": "FPM", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 6, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "jnxFruTable" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.1.15.1.8.10.1.1.0", + "sensor_index": "jnxFruName.10.1.1.0", + "sensor_type": "jnxFruTable", + "sensor_descr": "FPM Board", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 6, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "jnxFruTable" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.1.15.1.8.10.1.2.0", + "sensor_index": "jnxFruName.10.1.2.0", + "sensor_type": "jnxFruTable", + "sensor_descr": "FPM Display", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 6, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "jnxFruTable" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.1.15.1.8.10.1.3.0", + "sensor_index": "jnxFruName.10.1.3.0", + "sensor_type": "jnxFruTable", + "sensor_descr": "FPM", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 6, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "jnxFruTable" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.1.15.1.8.10.1.4.0", + "sensor_index": "jnxFruName.10.1.4.0", + "sensor_type": "jnxFruTable", + "sensor_descr": "FPM", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 6, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "jnxFruTable" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.1.15.1.8.10.1.5.0", + "sensor_index": "jnxFruName.10.1.5.0", + "sensor_type": "jnxFruTable", + "sensor_descr": "FPM", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 6, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "jnxFruTable" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.1.15.1.8.2.1.0.0", + "sensor_index": "jnxFruName.2.1.0.0", + "sensor_type": "jnxFruTable", + "sensor_descr": "PEM 0", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 6, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "jnxFruTable" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.1.15.1.8.20.1.1.0", + "sensor_index": "jnxFruName.20.1.1.0", + "sensor_type": "jnxFruTable", + "sensor_descr": "MIC: 4x 10GE XFP @ 0/0/*", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 6, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "jnxFruTable" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.1.15.1.8.20.2.1.0", + "sensor_index": "jnxFruName.20.2.1.0", + "sensor_type": "jnxFruTable", + "sensor_descr": "MIC: 3D 20x 1GE(LAN) SFP @ 1/0/*", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 6, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "jnxFruTable" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.1.15.1.8.4.1.0.0", + "sensor_index": "jnxFruName.4.1.0.0", + "sensor_type": "jnxFruTable", + "sensor_descr": "Fan Tray", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 6, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "jnxFruTable" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.1.15.1.8.4.1.1.0", + "sensor_index": "jnxFruName.4.1.1.0", + "sensor_type": "jnxFruTable", + "sensor_descr": "Fan 1", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 6, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "jnxFruTable" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.1.15.1.8.4.1.2.0", + "sensor_index": "jnxFruName.4.1.2.0", + "sensor_type": "jnxFruTable", + "sensor_descr": "Fan 2", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 6, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "jnxFruTable" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.1.15.1.8.4.1.3.0", + "sensor_index": "jnxFruName.4.1.3.0", + "sensor_type": "jnxFruTable", + "sensor_descr": "Fan 3", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 6, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "jnxFruTable" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.1.15.1.8.4.1.4.0", + "sensor_index": "jnxFruName.4.1.4.0", + "sensor_type": "jnxFruTable", + "sensor_descr": "Fan 4", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 6, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "jnxFruTable" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.1.15.1.8.4.1.5.0", + "sensor_index": "jnxFruName.4.1.5.0", + "sensor_type": "jnxFruTable", + "sensor_descr": "Fan 5", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 6, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "jnxFruTable" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.1.15.1.8.6.1.0.0", + "sensor_index": "jnxFruName.6.1.0.0", + "sensor_type": "jnxFruTable", + "sensor_descr": "TFEB MX5-T", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 6, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "jnxFruTable" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.1.15.1.8.6.1.1.0", + "sensor_index": "jnxFruName.6.1.1.0", + "sensor_type": "jnxFruTable", + "sensor_descr": "TFEB Intake temperature sensor", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 6, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "jnxFruTable" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.1.15.1.8.7.1.0.0", + "sensor_index": "jnxFruName.7.1.0.0", + "sensor_type": "jnxFruTable", + "sensor_descr": "FPC: MPC BUILTIN @ 0/*/*", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 6, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "jnxFruTable" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.1.15.1.8.7.2.0.0", + "sensor_index": "jnxFruName.7.2.0.0", + "sensor_type": "jnxFruTable", + "sensor_descr": "FPC: MPC BUILTIN @ 1/*/*", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 6, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "jnxFruTable" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.1.15.1.8.8.1.1.0", + "sensor_index": "jnxFruName.8.1.1.0", + "sensor_type": "jnxFruTable", + "sensor_descr": "PIC: 4x 10GE XFP @ 0/0/*", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 6, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "jnxFruTable" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.1.15.1.8.8.2.1.0", + "sensor_index": "jnxFruName.8.2.1.0", + "sensor_type": "jnxFruTable", + "sensor_descr": "PIC: 10x 1GE(LAN) SFP @ 1/0/*", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 6, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "jnxFruTable" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.1.15.1.8.8.2.2.0", + "sensor_index": "jnxFruName.8.2.2.0", + "sensor_type": "jnxFruTable", + "sensor_descr": "PIC: 10x 1GE(LAN) SFP @ 1/1/*", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 6, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "jnxFruTable" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.1.15.1.8.9.1.0.0", + "sensor_index": "jnxFruName.9.1.0.0", + "sensor_type": "jnxFruTable", + "sensor_descr": "Routing Engine", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 6, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "jnxFruTable" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.4.2.3.1.0", + "sensor_index": "0", + "sensor_type": "jnxRedAlarmState", + "sensor_descr": "Red Alarm", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "jnxRedAlarmState" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.4.2.2.1.0", + "sensor_index": "0", + "sensor_type": "jnxYellowAlarmState", + "sensor_descr": "Yellow Alarm", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "jnxYellowAlarmState" + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.1.13.1.7.6.1.0.0", + "sensor_index": "6.1.0.0", + "sensor_type": "junos", + "sensor_descr": "TFEB MX5-T", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 40, + "sensor_limit": 60, + "sensor_limit_warn": null, + "sensor_limit_low": 30, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.1.13.1.7.6.1.1.0", + "sensor_index": "6.1.1.0", + "sensor_type": "junos", + "sensor_descr": "TFEB Intake", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 40, + "sensor_limit": 60, + "sensor_limit_warn": null, + "sensor_limit_low": 30, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.1.13.1.7.9.1.0.0", + "sensor_index": "9.1.0.0", + "sensor_type": "junos", + "sensor_descr": "Routing Engine", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 38, + "sensor_limit": 58, + "sensor_limit_warn": null, + "sensor_limit_low": 28, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.60.1.1.1.1.8.516", + "sensor_index": "rx-516", + "sensor_type": "junos", + "sensor_descr": "ge-1/0/0 Temperature", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 26, + "sensor_limit": 110, + "sensor_limit_warn": 93, + "sensor_limit_low": -40, + "sensor_limit_low_warn": -30, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "516", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.60.1.1.1.1.8.525", + "sensor_index": "rx-525", + "sensor_type": "junos", + "sensor_descr": "ge-1/0/9 Temperature", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 25, + "sensor_limit": 73, + "sensor_limit_warn": 70, + "sensor_limit_low": -8, + "sensor_limit_low_warn": -5, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "525", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.60.1.1.1.1.8.526", + "sensor_index": "rx-526", + "sensor_type": "junos", + "sensor_descr": "ge-1/1/0 Temperature", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 21, + "sensor_limit": 95, + "sensor_limit_warn": 90, + "sensor_limit_low": -25, + "sensor_limit_low_warn": -20, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "526", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.60.1.1.1.1.8.541", + "sensor_index": "rx-541", + "sensor_type": "junos", + "sensor_descr": "xe-0/0/0 Temperature", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 31, + "sensor_limit": 75, + "sensor_limit_warn": 70, + "sensor_limit_low": -10, + "sensor_limit_low_warn": -5, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "541", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.60.1.1.1.1.8.556", + "sensor_index": "rx-556", + "sensor_type": "junos", + "sensor_descr": "xe-0/0/1 Temperature", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 28, + "sensor_limit": 80, + "sensor_limit_warn": 75, + "sensor_limit_low": -15, + "sensor_limit_low_warn": -10, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "556", + "entPhysicalIndex_measured": "ports", + "sensor_prev": null, + "user_func": null, + "state_name": null + } + ], + "state_indexes": [ + { + "state_name": "jnxFruTable", + "state_descr": "unknown", + "state_draw_graph": 1, + "state_value": 1, + "state_generic_value": 3 + }, + { + "state_name": "jnxFruTable", + "state_descr": "empty", + "state_draw_graph": 1, + "state_value": 2, + "state_generic_value": 3 + }, + { + "state_name": "jnxFruTable", + "state_descr": "present", + "state_draw_graph": 1, + "state_value": 3, + "state_generic_value": 1 + }, + { + "state_name": "jnxFruTable", + "state_descr": "ready", + "state_draw_graph": 1, + "state_value": 4, + "state_generic_value": 0 + }, + { + "state_name": "jnxFruTable", + "state_descr": "announceOnline", + "state_draw_graph": 1, + "state_value": 5, + "state_generic_value": 0 + }, + { + "state_name": "jnxFruTable", + "state_descr": "online", + "state_draw_graph": 1, + "state_value": 6, + "state_generic_value": 0 + }, + { + "state_name": "jnxFruTable", + "state_descr": "anounceOffline", + "state_draw_graph": 1, + "state_value": 7, + "state_generic_value": 1 + }, + { + "state_name": "jnxFruTable", + "state_descr": "offline", + "state_draw_graph": 1, + "state_value": 8, + "state_generic_value": 2 + }, + { + "state_name": "jnxFruTable", + "state_descr": "diagnostic", + "state_draw_graph": 1, + "state_value": 9, + "state_generic_value": 3 + }, + { + "state_name": "jnxFruTable", + "state_descr": "standby", + "state_draw_graph": 1, + "state_value": 10, + "state_generic_value": 3 + }, + { + "state_name": "jnxRedAlarmState", + "state_descr": "unknown", + "state_draw_graph": 1, + "state_value": 1, + "state_generic_value": 3 + }, + { + "state_name": "jnxRedAlarmState", + "state_descr": "off", + "state_draw_graph": 1, + "state_value": 2, + "state_generic_value": 0 + }, + { + "state_name": "jnxRedAlarmState", + "state_descr": "on", + "state_draw_graph": 1, + "state_value": 3, + "state_generic_value": 2 + }, + { + "state_name": "jnxYellowAlarmState", + "state_descr": "unknown", + "state_draw_graph": 1, + "state_value": 1, + "state_generic_value": 3 + }, + { + "state_name": "jnxYellowAlarmState", + "state_descr": "off", + "state_draw_graph": 1, + "state_value": 2, + "state_generic_value": 0 + }, + { + "state_name": "jnxYellowAlarmState", + "state_descr": "on", + "state_draw_graph": 1, + "state_value": 3, + "state_generic_value": 2 + } + ] + } + }, + "storage": { + "discovery": { + "storage": [ + { + "storage_mib": "hrstorage", + "storage_index": "1", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/dev/da0s1a, mounted on: /", + "storage_size": 927621120, + "storage_units": 2048, + "storage_used": 332587008, + "storage_free": 0, + "storage_perc": 0, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "2", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/dev/da0s1e, mounted on: /config", + "storage_size": 102975488, + "storage_units": 2048, + "storage_used": 47104, + "storage_free": 0, + "storage_perc": 0, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "3", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/dev/da1s1f, mounted on: /var", + "storage_size": 3006928896, + "storage_units": 2048, + "storage_used": 2040805376, + "storage_free": 0, + "storage_perc": 0, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "4", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/dev/md15, mounted on: /tmp", + "storage_size": 3007959040, + "storage_units": 2048, + "storage_used": 10240, + "storage_free": 0, + "storage_perc": 0, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "7", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/dev/md16, mounted on: /mfs", + "storage_size": 3007959040, + "storage_units": 2048, + "storage_used": 7772160, + "storage_free": 0, + "storage_perc": 0, + "storage_perc_warn": 60, + "storage_deleted": 0 + } + ] + }, + "poller": { + "storage": [ + { + "storage_mib": "hrstorage", + "storage_index": "1", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/dev/da0s1a, mounted on: /", + "storage_size": 927621120, + "storage_units": 2048, + "storage_used": 332587008, + "storage_free": 595034112, + "storage_perc": 36, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "2", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/dev/da0s1e, mounted on: /config", + "storage_size": 102975488, + "storage_units": 2048, + "storage_used": 47104, + "storage_free": 102928384, + "storage_perc": 0, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "3", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/dev/da1s1f, mounted on: /var", + "storage_size": 3006928896, + "storage_units": 2048, + "storage_used": 2040805376, + "storage_free": 966123520, + "storage_perc": 68, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "4", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/dev/md15, mounted on: /tmp", + "storage_size": 3007959040, + "storage_units": 2048, + "storage_used": 10240, + "storage_free": 3007948800, + "storage_perc": 0, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "7", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/dev/md16, mounted on: /mfs", + "storage_size": 3007959040, + "storage_units": 2048, + "storage_used": 7772160, + "storage_free": 3000186880, + "storage_perc": 0, + "storage_perc_warn": 60, + "storage_deleted": 0 + } + ] + } + }, + "bgp-peers": { + "discovery": { + "bgpPeers": [ + { + "astext": "", + "bgpPeerIdentifier": "169.254.250.255", + "bgpPeerRemoteAs": 4294967294, + "bgpPeerState": "idle", + "bgpPeerAdminStatus": "stop", + "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorSubCode": null, + "bgpPeerLastErrorText": null, + "bgpLocalAddr": "0.0.0.0", + "bgpPeerRemoteAddr": "0.0.0.0", + "bgpPeerDescr": "", + "bgpPeerInUpdates": 0, + "bgpPeerOutUpdates": 0, + "bgpPeerInTotalMessages": 0, + "bgpPeerOutTotalMessages": 0, + "bgpPeerFsmEstablishedTime": 0, + "bgpPeerInUpdateElapsedTime": 0, + "context_name": "", + "bgpLocalAs": 65534, + "vrfLocalAs": null + } + ], + "bgpPeers_cbgp": [] + }, + "poller": { + "bgpPeers": [ + { + "astext": "", + "bgpPeerIdentifier": "169.254.250.255", + "bgpPeerRemoteAs": 4294967294, + "bgpPeerState": "idle", + "bgpPeerAdminStatus": "halted", + "bgpPeerLastErrorCode": 0, + "bgpPeerLastErrorSubCode": 0, + "bgpPeerLastErrorText": null, + "bgpLocalAddr": "0.0.0.0", + "bgpPeerRemoteAddr": "0.0.0.0", + "bgpPeerDescr": "", + "bgpPeerInUpdates": 0, + "bgpPeerOutUpdates": 0, + "bgpPeerInTotalMessages": 0, + "bgpPeerOutTotalMessages": 0, + "bgpPeerFsmEstablishedTime": 543, + "bgpPeerInUpdateElapsedTime": 0, + "context_name": "", + "bgpLocalAs": 65534, + "vrfLocalAs": null + } + ], + "bgpPeers_cbgp": [] + } + }, + "vlans": { + "discovery": { + "vlans": [ + { + "vlan_vlan": 0, + "vlan_domain": 1, + "vlan_name": "____juniper_private1____", + "vlan_type": null, + "vlan_mtu": null + } + ], + "ports_vlans": [] + } + } +} \ No newline at end of file diff --git a/tests/module_tables.yaml b/tests/module_tables.yaml index 1376f0cd79..124b7dafd5 100644 --- a/tests/module_tables.yaml +++ b/tests/module_tables.yaml @@ -69,6 +69,9 @@ ospf: excluded_fields: [id, device_id] ospf_nbrs: excluded_fields: [id, device_id] +isis: + isis_adjacencies: + excluded_fields: [id, device_id, port_id] ports: ports: excluded_fields: [device_id, port_id, poll_time, poll_period, ifVrf] diff --git a/tests/snmpsim/junos_mx5t_isis.snmprec b/tests/snmpsim/junos_mx5t_isis.snmprec new file mode 100644 index 0000000000..2f886eb608 --- /dev/null +++ b/tests/snmpsim/junos_mx5t_isis.snmprec @@ -0,0 +1,5651 @@ +1.0.8802.1.1.2.1.3.7.1.3.17|4|em0 +1.0.8802.1.1.2.1.3.7.1.3.33|4|me0 +1.0.8802.1.1.2.1.3.7.1.3.516|4|ge-1/0/0 +1.0.8802.1.1.2.1.3.7.1.3.517|4|ge-1/0/1 +1.0.8802.1.1.2.1.3.7.1.3.518|4|ge-1/0/2 +1.0.8802.1.1.2.1.3.7.1.3.519|4|ge-1/0/3 +1.0.8802.1.1.2.1.3.7.1.3.520|4|ge-1/0/4 +1.0.8802.1.1.2.1.3.7.1.3.521|4|ge-1/0/5 +1.0.8802.1.1.2.1.3.7.1.3.522|4|ge-1/0/6 +1.0.8802.1.1.2.1.3.7.1.3.523|4|ge-1/0/7 +1.0.8802.1.1.2.1.3.7.1.3.524|4|ge-1/0/8 +1.0.8802.1.1.2.1.3.7.1.3.525|4|ge-1/0/9 +1.0.8802.1.1.2.1.3.7.1.3.526|4|ge-1/1/0 +1.0.8802.1.1.2.1.3.7.1.3.527|4|ge-1/1/1 +1.0.8802.1.1.2.1.3.7.1.3.528|4|ge-1/1/2 +1.0.8802.1.1.2.1.3.7.1.3.529|4|ge-1/1/3 +1.0.8802.1.1.2.1.3.7.1.3.530|4|ge-1/1/4 +1.0.8802.1.1.2.1.3.7.1.3.531|4|ge-1/1/5 +1.0.8802.1.1.2.1.3.7.1.3.532|4|ge-1/1/6 +1.0.8802.1.1.2.1.3.7.1.3.533|4|ge-1/1/7 +1.0.8802.1.1.2.1.3.7.1.3.534|4|ge-1/1/8 +1.0.8802.1.1.2.1.3.7.1.3.535|4|ge-1/1/9 +1.0.8802.1.1.2.1.3.7.1.3.541|4|xe-0/0/0 +1.0.8802.1.1.2.1.3.7.1.3.556|4|xe-0/0/1 +1.0.8802.1.1.2.1.3.7.1.3.557|4|xe-0/0/2 +1.0.8802.1.1.2.1.3.7.1.3.558|4|xe-0/0/3 +1.0.8802.1.1.2.1.4.1.1.4.92.556.1|2|4 +1.0.8802.1.1.2.1.4.1.1.4.106.526.2|2|4 +1.0.8802.1.1.2.1.4.1.1.4.108.535.3|2|4 +1.0.8802.1.1.2.1.4.1.1.4.120.541.4|2|4 +1.0.8802.1.1.2.1.4.1.1.5.92.556.1|4x|A8D0E555C6D0 +1.0.8802.1.1.2.1.4.1.1.5.106.526.2|4x|182AD384C247 +1.0.8802.1.1.2.1.4.1.1.5.108.535.3|4x|182AD384C247 +1.0.8802.1.1.2.1.4.1.1.5.120.541.4|4x|70617B993081 +1.0.8802.1.1.2.1.4.1.1.6.92.556.1|2|5 +1.0.8802.1.1.2.1.4.1.1.6.106.526.2|2|7 +1.0.8802.1.1.2.1.4.1.1.6.108.535.3|2|7 +1.0.8802.1.1.2.1.4.1.1.6.120.541.4|2|5 +1.0.8802.1.1.2.1.4.1.1.7.92.556.1|4|xe-0/0/1 +1.0.8802.1.1.2.1.4.1.1.7.106.526.2|4|612 +1.0.8802.1.1.2.1.4.1.1.7.108.535.3|4|514 +1.0.8802.1.1.2.1.4.1.1.7.120.541.4|4|TenGigE0/0/0/20 +1.0.8802.1.1.2.1.4.1.1.8.92.556.1|4|lab-er1 +1.0.8802.1.1.2.1.4.1.1.8.106.526.2|4|ge-0/1/2 +1.0.8802.1.1.2.1.4.1.1.8.108.535.3|4|ge-0/0/0 +1.0.8802.1.1.2.1.4.1.1.8.120.541.4|4|lab-er1 +1.0.8802.1.1.2.1.4.1.1.9.92.556.1|4|lab-er2 +1.0.8802.1.1.2.1.4.1.1.9.106.526.2|4|lab-s1 +1.0.8802.1.1.2.1.4.1.1.9.108.535.3|4|lab-s1 +1.0.8802.1.1.2.1.4.1.1.9.120.541.4|4|lab-er100.lab.local +1.0.8802.1.1.2.1.4.1.1.10.92.556.1|4|Juniper Networks, Inc. mx5-t internet router, kernel JUNOS 17.3R3-S9.3, Build date: 2020-08-17 23:23:22 UTC Copyright (c) 1996-2020 Juniper Networks, Inc. +1.0.8802.1.1.2.1.4.1.1.10.106.526.2|4|Juniper Networks, Inc. ex2300-48p Ethernet Switch, kernel JUNOS 18.2R3-S1.7, Build date: 2019-08-30 11:36:11 UTC Copyright (c) 1996-2019 Juniper Networks, Inc. +1.0.8802.1.1.2.1.4.1.1.10.108.535.3|4|Juniper Networks, Inc. ex2300-48p Ethernet Switch, kernel JUNOS 18.2R3-S1.7, Build date: 2019-08-30 11:36:11 UTC Copyright (c) 1996-2019 Juniper Networks, Inc. +1.0.8802.1.1.2.1.4.1.1.10.120.541.4|4|7.2.1, NCS540L +1.0.8802.1.1.2.1.4.1.1.11.92.556.1|4|28 2 4 +1.0.8802.1.1.2.1.4.1.1.11.106.526.2|4|28 2 4 +1.0.8802.1.1.2.1.4.1.1.11.108.535.3|4|28 2 4 +1.0.8802.1.1.2.1.4.1.1.11.120.541.4|4|08 4 +1.0.8802.1.1.2.1.4.1.1.12.92.556.1|4|28 2 4 +1.0.8802.1.1.2.1.4.1.1.12.106.526.2|4|28 2 4 +1.0.8802.1.1.2.1.4.1.1.12.108.535.3|4|28 2 4 +1.0.8802.1.1.2.1.4.1.1.12.120.541.4|4|08 4 +1.0.8802.1.1.2.1.4.2.1.3.106.526.2.1.4.10.99.204.52|2|2 +1.0.8802.1.1.2.1.4.2.1.3.108.535.3.1.4.10.99.204.52|2|2 +1.0.8802.1.1.2.1.4.2.1.3.120.541.4.1.4.10.99.252.255|2|2 +1.3.6.1.2.1.1.1.0|4|Juniper Networks, Inc. mx5-t internet router, kernel JUNOS 19.4R3.11, Build date: 2020-10-08 21:43:24 UTC Copyright (c) 1996-2020 Juniper Networks, Inc. +1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.2636.1.1.1.2.90 +1.3.6.1.2.1.1.3.0|67|122429879 +1.3.6.1.2.1.1.4.0|4| +1.3.6.1.2.1.1.5.0|4| +1.3.6.1.2.1.1.6.0|4| +1.3.6.1.2.1.2.2.1.2.516|4|ge-1/0/0 +1.3.6.1.2.1.2.2.1.2.517|4|ge-1/0/1 +1.3.6.1.2.1.2.2.1.2.518|4|ge-1/0/2 +1.3.6.1.2.1.2.2.1.2.519|4|ge-1/0/3 +1.3.6.1.2.1.2.2.1.2.520|4|ge-1/0/4 +1.3.6.1.2.1.2.2.1.2.521|4|ge-1/0/5 +1.3.6.1.2.1.2.2.1.2.522|4|ge-1/0/6 +1.3.6.1.2.1.2.2.1.2.523|4|ge-1/0/7 +1.3.6.1.2.1.2.2.1.2.524|4|ge-1/0/8 +1.3.6.1.2.1.2.2.1.2.525|4|ge-1/0/9 +1.3.6.1.2.1.2.2.1.2.526|4|ge-1/1/0 +1.3.6.1.2.1.2.2.1.2.527|4|ge-1/1/1 +1.3.6.1.2.1.2.2.1.2.528|4|ge-1/1/2 +1.3.6.1.2.1.2.2.1.2.529|4|ge-1/1/3 +1.3.6.1.2.1.2.2.1.2.530|4|ge-1/1/4 +1.3.6.1.2.1.2.2.1.2.531|4|ge-1/1/5 +1.3.6.1.2.1.2.2.1.2.532|4|ge-1/1/6 +1.3.6.1.2.1.2.2.1.2.533|4|ge-1/1/7 +1.3.6.1.2.1.2.2.1.2.534|4|ge-1/1/8 +1.3.6.1.2.1.2.2.1.2.535|4|ge-1/1/9 +1.3.6.1.2.1.2.2.1.2.541|4|xe-0/0/0 +1.3.6.1.2.1.2.2.1.2.556|4|xe-0/0/1 +1.3.6.1.2.1.2.2.1.2.557|4|xe-0/0/2 +1.3.6.1.2.1.2.2.1.2.558|4|xe-0/0/3 +1.3.6.1.2.1.2.2.1.2.559|4|xe-0/0/0.0 +1.3.6.1.2.1.2.2.1.2.572|4|xe-0/0/1.0 +1.3.6.1.2.1.2.2.1.2.573|4|xe-0/0/2.16386 +1.3.6.1.2.1.2.2.1.2.576|4|xe-0/0/3.16386 +1.3.6.1.2.1.2.2.1.2.577|4|ge-1/0/0.16386 +1.3.6.1.2.1.2.2.1.2.578|4|ge-1/0/1.16386 +1.3.6.1.2.1.2.2.1.2.579|4|ge-1/0/2.16386 +1.3.6.1.2.1.2.2.1.2.580|4|ge-1/0/3.16386 +1.3.6.1.2.1.2.2.1.2.581|4|ge-1/0/4.16386 +1.3.6.1.2.1.2.2.1.2.582|4|ge-1/0/5.16386 +1.3.6.1.2.1.2.2.1.2.583|4|ge-1/0/6.16386 +1.3.6.1.2.1.2.2.1.2.584|4|ge-1/0/7.16386 +1.3.6.1.2.1.2.2.1.2.585|4|ge-1/0/8.16386 +1.3.6.1.2.1.2.2.1.2.588|4|ge-1/0/9.16386 +1.3.6.1.2.1.2.2.1.2.589|4|ge-1/1/1.16386 +1.3.6.1.2.1.2.2.1.2.590|4|ge-1/1/2.16386 +1.3.6.1.2.1.2.2.1.2.591|4|ge-1/1/3.16386 +1.3.6.1.2.1.2.2.1.2.592|4|ge-1/1/4.16386 +1.3.6.1.2.1.2.2.1.2.593|4|ge-1/1/5.16386 +1.3.6.1.2.1.2.2.1.2.594|4|ge-1/1/6.16386 +1.3.6.1.2.1.2.2.1.2.595|4|ge-1/1/7.16386 +1.3.6.1.2.1.2.2.1.2.596|4|ge-1/1/8.16386 +1.3.6.1.2.1.2.2.1.2.616|4|ge-1/1/9.16386 +1.3.6.1.2.1.2.2.1.2.617|4|ge-1/1/0.16386 +1.3.6.1.2.1.2.2.1.3.516|2|6 +1.3.6.1.2.1.2.2.1.3.517|2|6 +1.3.6.1.2.1.2.2.1.3.518|2|6 +1.3.6.1.2.1.2.2.1.3.519|2|6 +1.3.6.1.2.1.2.2.1.3.520|2|6 +1.3.6.1.2.1.2.2.1.3.521|2|6 +1.3.6.1.2.1.2.2.1.3.522|2|6 +1.3.6.1.2.1.2.2.1.3.523|2|6 +1.3.6.1.2.1.2.2.1.3.524|2|6 +1.3.6.1.2.1.2.2.1.3.525|2|6 +1.3.6.1.2.1.2.2.1.3.526|2|6 +1.3.6.1.2.1.2.2.1.3.527|2|6 +1.3.6.1.2.1.2.2.1.3.528|2|6 +1.3.6.1.2.1.2.2.1.3.529|2|6 +1.3.6.1.2.1.2.2.1.3.530|2|6 +1.3.6.1.2.1.2.2.1.3.531|2|6 +1.3.6.1.2.1.2.2.1.3.532|2|6 +1.3.6.1.2.1.2.2.1.3.533|2|6 +1.3.6.1.2.1.2.2.1.3.534|2|6 +1.3.6.1.2.1.2.2.1.3.535|2|6 +1.3.6.1.2.1.2.2.1.3.541|2|6 +1.3.6.1.2.1.2.2.1.3.556|2|6 +1.3.6.1.2.1.2.2.1.3.557|2|6 +1.3.6.1.2.1.2.2.1.3.558|2|6 +1.3.6.1.2.1.2.2.1.3.559|2|53 +1.3.6.1.2.1.2.2.1.3.572|2|53 +1.3.6.1.2.1.2.2.1.3.573|2|53 +1.3.6.1.2.1.2.2.1.3.576|2|53 +1.3.6.1.2.1.2.2.1.3.577|2|53 +1.3.6.1.2.1.2.2.1.3.578|2|53 +1.3.6.1.2.1.2.2.1.3.579|2|53 +1.3.6.1.2.1.2.2.1.3.580|2|53 +1.3.6.1.2.1.2.2.1.3.581|2|53 +1.3.6.1.2.1.2.2.1.3.582|2|53 +1.3.6.1.2.1.2.2.1.3.583|2|53 +1.3.6.1.2.1.2.2.1.3.584|2|53 +1.3.6.1.2.1.2.2.1.3.585|2|53 +1.3.6.1.2.1.2.2.1.3.588|2|53 +1.3.6.1.2.1.2.2.1.3.589|2|53 +1.3.6.1.2.1.2.2.1.3.590|2|53 +1.3.6.1.2.1.2.2.1.3.591|2|53 +1.3.6.1.2.1.2.2.1.3.592|2|53 +1.3.6.1.2.1.2.2.1.3.593|2|53 +1.3.6.1.2.1.2.2.1.3.594|2|53 +1.3.6.1.2.1.2.2.1.3.595|2|53 +1.3.6.1.2.1.2.2.1.3.596|2|53 +1.3.6.1.2.1.2.2.1.3.616|2|53 +1.3.6.1.2.1.2.2.1.3.617|2|53 +1.3.6.1.2.1.2.2.1.4.516|2|1514 +1.3.6.1.2.1.2.2.1.4.517|2|1514 +1.3.6.1.2.1.2.2.1.4.518|2|1514 +1.3.6.1.2.1.2.2.1.4.519|2|1514 +1.3.6.1.2.1.2.2.1.4.520|2|1514 +1.3.6.1.2.1.2.2.1.4.521|2|1514 +1.3.6.1.2.1.2.2.1.4.522|2|1514 +1.3.6.1.2.1.2.2.1.4.523|2|1514 +1.3.6.1.2.1.2.2.1.4.524|2|1514 +1.3.6.1.2.1.2.2.1.4.525|2|1514 +1.3.6.1.2.1.2.2.1.4.526|2|1514 +1.3.6.1.2.1.2.2.1.4.527|2|1514 +1.3.6.1.2.1.2.2.1.4.528|2|1514 +1.3.6.1.2.1.2.2.1.4.529|2|1514 +1.3.6.1.2.1.2.2.1.4.530|2|1514 +1.3.6.1.2.1.2.2.1.4.531|2|1514 +1.3.6.1.2.1.2.2.1.4.532|2|1514 +1.3.6.1.2.1.2.2.1.4.533|2|1514 +1.3.6.1.2.1.2.2.1.4.534|2|1514 +1.3.6.1.2.1.2.2.1.4.535|2|1514 +1.3.6.1.2.1.2.2.1.4.541|2|9014 +1.3.6.1.2.1.2.2.1.4.556|2|9192 +1.3.6.1.2.1.2.2.1.4.557|2|1514 +1.3.6.1.2.1.2.2.1.4.558|2|1514 +1.3.6.1.2.1.2.2.1.4.559|2|9000 +1.3.6.1.2.1.2.2.1.4.572|2|9175 +1.3.6.1.2.1.2.2.1.4.573|2|1514 +1.3.6.1.2.1.2.2.1.4.576|2|1514 +1.3.6.1.2.1.2.2.1.4.577|2|1514 +1.3.6.1.2.1.2.2.1.4.578|2|1514 +1.3.6.1.2.1.2.2.1.4.579|2|1514 +1.3.6.1.2.1.2.2.1.4.580|2|1514 +1.3.6.1.2.1.2.2.1.4.581|2|1514 +1.3.6.1.2.1.2.2.1.4.582|2|1514 +1.3.6.1.2.1.2.2.1.4.583|2|1514 +1.3.6.1.2.1.2.2.1.4.584|2|1514 +1.3.6.1.2.1.2.2.1.4.585|2|1514 +1.3.6.1.2.1.2.2.1.4.588|2|1514 +1.3.6.1.2.1.2.2.1.4.589|2|1514 +1.3.6.1.2.1.2.2.1.4.590|2|1514 +1.3.6.1.2.1.2.2.1.4.591|2|1514 +1.3.6.1.2.1.2.2.1.4.592|2|1514 +1.3.6.1.2.1.2.2.1.4.593|2|1514 +1.3.6.1.2.1.2.2.1.4.594|2|1514 +1.3.6.1.2.1.2.2.1.4.595|2|1514 +1.3.6.1.2.1.2.2.1.4.596|2|1514 +1.3.6.1.2.1.2.2.1.4.616|2|1514 +1.3.6.1.2.1.2.2.1.4.617|2|1514 +1.3.6.1.2.1.2.2.1.6.516|4x|A8D0E5555970 +1.3.6.1.2.1.2.2.1.6.517|4x|A8D0E5555971 +1.3.6.1.2.1.2.2.1.6.518|4x|A8D0E5555972 +1.3.6.1.2.1.2.2.1.6.519|4x|A8D0E5555973 +1.3.6.1.2.1.2.2.1.6.520|4x|A8D0E5555974 +1.3.6.1.2.1.2.2.1.6.521|4x|A8D0E5555975 +1.3.6.1.2.1.2.2.1.6.522|4x|A8D0E5555976 +1.3.6.1.2.1.2.2.1.6.523|4x|A8D0E5555977 +1.3.6.1.2.1.2.2.1.6.524|4x|A8D0E5555978 +1.3.6.1.2.1.2.2.1.6.525|4x|A8D0E5555979 +1.3.6.1.2.1.2.2.1.6.526|4x|A8D0E555597C +1.3.6.1.2.1.2.2.1.6.527|4x|A8D0E555597D +1.3.6.1.2.1.2.2.1.6.528|4x|A8D0E555597E +1.3.6.1.2.1.2.2.1.6.529|4x|A8D0E555597F +1.3.6.1.2.1.2.2.1.6.530|4x|A8D0E5555980 +1.3.6.1.2.1.2.2.1.6.531|4x|A8D0E5555981 +1.3.6.1.2.1.2.2.1.6.532|4x|A8D0E5555982 +1.3.6.1.2.1.2.2.1.6.533|4x|A8D0E5555983 +1.3.6.1.2.1.2.2.1.6.534|4x|A8D0E5555984 +1.3.6.1.2.1.2.2.1.6.535|4x|A8D0E5555985 +1.3.6.1.2.1.2.2.1.6.541|4x|A8D0E5555910 +1.3.6.1.2.1.2.2.1.6.556|4x|A8D0E5555911 +1.3.6.1.2.1.2.2.1.6.557|4x|A8D0E5555912 +1.3.6.1.2.1.2.2.1.6.558|4x|A8D0E5555913 +1.3.6.1.2.1.2.2.1.6.559|4x|A8D0E5555910 +1.3.6.1.2.1.2.2.1.6.572|4x|A8D0E5555911 +1.3.6.1.2.1.2.2.1.6.573|4x|A8D0E5555912 +1.3.6.1.2.1.2.2.1.6.576|4x|A8D0E5555913 +1.3.6.1.2.1.2.2.1.6.577|4x|A8D0E5555970 +1.3.6.1.2.1.2.2.1.6.578|4x|A8D0E5555971 +1.3.6.1.2.1.2.2.1.6.579|4x|A8D0E5555972 +1.3.6.1.2.1.2.2.1.6.580|4x|A8D0E5555973 +1.3.6.1.2.1.2.2.1.6.581|4x|A8D0E5555974 +1.3.6.1.2.1.2.2.1.6.582|4x|A8D0E5555975 +1.3.6.1.2.1.2.2.1.6.583|4x|A8D0E5555976 +1.3.6.1.2.1.2.2.1.6.584|4x|A8D0E5555977 +1.3.6.1.2.1.2.2.1.6.585|4x|A8D0E5555978 +1.3.6.1.2.1.2.2.1.6.588|4x|A8D0E5555979 +1.3.6.1.2.1.2.2.1.6.589|4x|A8D0E555597D +1.3.6.1.2.1.2.2.1.6.590|4x|A8D0E555597E +1.3.6.1.2.1.2.2.1.6.591|4x|A8D0E555597F +1.3.6.1.2.1.2.2.1.6.592|4x|A8D0E5555980 +1.3.6.1.2.1.2.2.1.6.593|4x|A8D0E5555981 +1.3.6.1.2.1.2.2.1.6.594|4x|A8D0E5555982 +1.3.6.1.2.1.2.2.1.6.595|4x|A8D0E5555983 +1.3.6.1.2.1.2.2.1.6.596|4x|A8D0E5555984 +1.3.6.1.2.1.2.2.1.6.616|4x|A8D0E5555985 +1.3.6.1.2.1.2.2.1.6.617|4x|A8D0E555597C +1.3.6.1.2.1.2.2.1.7.516|2|1 +1.3.6.1.2.1.2.2.1.7.517|2|1 +1.3.6.1.2.1.2.2.1.7.518|2|1 +1.3.6.1.2.1.2.2.1.7.519|2|1 +1.3.6.1.2.1.2.2.1.7.520|2|1 +1.3.6.1.2.1.2.2.1.7.521|2|1 +1.3.6.1.2.1.2.2.1.7.522|2|1 +1.3.6.1.2.1.2.2.1.7.523|2|1 +1.3.6.1.2.1.2.2.1.7.524|2|1 +1.3.6.1.2.1.2.2.1.7.525|2|1 +1.3.6.1.2.1.2.2.1.7.526|2|1 +1.3.6.1.2.1.2.2.1.7.527|2|1 +1.3.6.1.2.1.2.2.1.7.528|2|1 +1.3.6.1.2.1.2.2.1.7.529|2|1 +1.3.6.1.2.1.2.2.1.7.530|2|1 +1.3.6.1.2.1.2.2.1.7.531|2|1 +1.3.6.1.2.1.2.2.1.7.532|2|1 +1.3.6.1.2.1.2.2.1.7.533|2|1 +1.3.6.1.2.1.2.2.1.7.534|2|1 +1.3.6.1.2.1.2.2.1.7.535|2|1 +1.3.6.1.2.1.2.2.1.7.541|2|1 +1.3.6.1.2.1.2.2.1.7.556|2|1 +1.3.6.1.2.1.2.2.1.7.557|2|1 +1.3.6.1.2.1.2.2.1.7.558|2|1 +1.3.6.1.2.1.2.2.1.7.559|2|1 +1.3.6.1.2.1.2.2.1.7.572|2|1 +1.3.6.1.2.1.2.2.1.7.573|2|1 +1.3.6.1.2.1.2.2.1.7.576|2|1 +1.3.6.1.2.1.2.2.1.7.577|2|1 +1.3.6.1.2.1.2.2.1.7.578|2|1 +1.3.6.1.2.1.2.2.1.7.579|2|1 +1.3.6.1.2.1.2.2.1.7.580|2|1 +1.3.6.1.2.1.2.2.1.7.581|2|1 +1.3.6.1.2.1.2.2.1.7.582|2|1 +1.3.6.1.2.1.2.2.1.7.583|2|1 +1.3.6.1.2.1.2.2.1.7.584|2|1 +1.3.6.1.2.1.2.2.1.7.585|2|1 +1.3.6.1.2.1.2.2.1.7.588|2|1 +1.3.6.1.2.1.2.2.1.7.589|2|1 +1.3.6.1.2.1.2.2.1.7.590|2|1 +1.3.6.1.2.1.2.2.1.7.591|2|1 +1.3.6.1.2.1.2.2.1.7.592|2|1 +1.3.6.1.2.1.2.2.1.7.593|2|1 +1.3.6.1.2.1.2.2.1.7.594|2|1 +1.3.6.1.2.1.2.2.1.7.595|2|1 +1.3.6.1.2.1.2.2.1.7.596|2|1 +1.3.6.1.2.1.2.2.1.7.616|2|1 +1.3.6.1.2.1.2.2.1.7.617|2|1 +1.3.6.1.2.1.2.2.1.8.516|2|2 +1.3.6.1.2.1.2.2.1.8.517|2|2 +1.3.6.1.2.1.2.2.1.8.518|2|2 +1.3.6.1.2.1.2.2.1.8.519|2|2 +1.3.6.1.2.1.2.2.1.8.520|2|2 +1.3.6.1.2.1.2.2.1.8.521|2|2 +1.3.6.1.2.1.2.2.1.8.522|2|2 +1.3.6.1.2.1.2.2.1.8.523|2|2 +1.3.6.1.2.1.2.2.1.8.524|2|2 +1.3.6.1.2.1.2.2.1.8.525|2|2 +1.3.6.1.2.1.2.2.1.8.526|2|1 +1.3.6.1.2.1.2.2.1.8.527|2|2 +1.3.6.1.2.1.2.2.1.8.528|2|2 +1.3.6.1.2.1.2.2.1.8.529|2|2 +1.3.6.1.2.1.2.2.1.8.530|2|2 +1.3.6.1.2.1.2.2.1.8.531|2|2 +1.3.6.1.2.1.2.2.1.8.532|2|2 +1.3.6.1.2.1.2.2.1.8.533|2|2 +1.3.6.1.2.1.2.2.1.8.534|2|2 +1.3.6.1.2.1.2.2.1.8.535|2|1 +1.3.6.1.2.1.2.2.1.8.541|2|1 +1.3.6.1.2.1.2.2.1.8.556|2|1 +1.3.6.1.2.1.2.2.1.8.557|2|2 +1.3.6.1.2.1.2.2.1.8.558|2|2 +1.3.6.1.2.1.2.2.1.8.559|2|1 +1.3.6.1.2.1.2.2.1.8.572|2|1 +1.3.6.1.2.1.2.2.1.8.573|2|7 +1.3.6.1.2.1.2.2.1.8.576|2|7 +1.3.6.1.2.1.2.2.1.8.577|2|7 +1.3.6.1.2.1.2.2.1.8.578|2|7 +1.3.6.1.2.1.2.2.1.8.579|2|7 +1.3.6.1.2.1.2.2.1.8.580|2|7 +1.3.6.1.2.1.2.2.1.8.581|2|7 +1.3.6.1.2.1.2.2.1.8.582|2|7 +1.3.6.1.2.1.2.2.1.8.583|2|7 +1.3.6.1.2.1.2.2.1.8.584|2|7 +1.3.6.1.2.1.2.2.1.8.585|2|7 +1.3.6.1.2.1.2.2.1.8.588|2|7 +1.3.6.1.2.1.2.2.1.8.589|2|7 +1.3.6.1.2.1.2.2.1.8.590|2|7 +1.3.6.1.2.1.2.2.1.8.591|2|7 +1.3.6.1.2.1.2.2.1.8.592|2|7 +1.3.6.1.2.1.2.2.1.8.593|2|7 +1.3.6.1.2.1.2.2.1.8.594|2|7 +1.3.6.1.2.1.2.2.1.8.595|2|7 +1.3.6.1.2.1.2.2.1.8.596|2|7 +1.3.6.1.2.1.2.2.1.8.616|2|1 +1.3.6.1.2.1.2.2.1.8.617|2|1 +1.3.6.1.2.1.2.2.1.9.516|67|9607 +1.3.6.1.2.1.2.2.1.9.517|67|9602 +1.3.6.1.2.1.2.2.1.9.518|67|9608 +1.3.6.1.2.1.2.2.1.9.519|67|9615 +1.3.6.1.2.1.2.2.1.9.520|67|9630 +1.3.6.1.2.1.2.2.1.9.521|67|9639 +1.3.6.1.2.1.2.2.1.9.522|67|10412 +1.3.6.1.2.1.2.2.1.9.523|67|10413 +1.3.6.1.2.1.2.2.1.9.524|67|10413 +1.3.6.1.2.1.2.2.1.9.525|67|10413 +1.3.6.1.2.1.2.2.1.9.526|67|10494 +1.3.6.1.2.1.2.2.1.9.527|67|10414 +1.3.6.1.2.1.2.2.1.9.528|67|10415 +1.3.6.1.2.1.2.2.1.9.529|67|10415 +1.3.6.1.2.1.2.2.1.9.530|67|10415 +1.3.6.1.2.1.2.2.1.9.531|67|10416 +1.3.6.1.2.1.2.2.1.9.532|67|10416 +1.3.6.1.2.1.2.2.1.9.533|67|10416 +1.3.6.1.2.1.2.2.1.9.534|67|10416 +1.3.6.1.2.1.2.2.1.9.535|67|10894 +1.3.6.1.2.1.2.2.1.9.541|67|9334 +1.3.6.1.2.1.2.2.1.9.556|67|9334 +1.3.6.1.2.1.2.2.1.9.557|67|9333 +1.3.6.1.2.1.2.2.1.9.558|67|9337 +1.3.6.1.2.1.2.2.1.9.559|67|9334 +1.3.6.1.2.1.2.2.1.9.572|67|9334 +1.3.6.1.2.1.2.2.1.9.573|67|9339 +1.3.6.1.2.1.2.2.1.9.576|67|9339 +1.3.6.1.2.1.2.2.1.9.577|67|10408 +1.3.6.1.2.1.2.2.1.9.578|67|10412 +1.3.6.1.2.1.2.2.1.9.579|67|10413 +1.3.6.1.2.1.2.2.1.9.580|67|10416 +1.3.6.1.2.1.2.2.1.9.581|67|10417 +1.3.6.1.2.1.2.2.1.9.582|67|10417 +1.3.6.1.2.1.2.2.1.9.583|67|10417 +1.3.6.1.2.1.2.2.1.9.584|67|10417 +1.3.6.1.2.1.2.2.1.9.585|67|10418 +1.3.6.1.2.1.2.2.1.9.588|67|10418 +1.3.6.1.2.1.2.2.1.9.589|67|10419 +1.3.6.1.2.1.2.2.1.9.590|67|10419 +1.3.6.1.2.1.2.2.1.9.591|67|10419 +1.3.6.1.2.1.2.2.1.9.592|67|10419 +1.3.6.1.2.1.2.2.1.9.593|67|10419 +1.3.6.1.2.1.2.2.1.9.594|67|10419 +1.3.6.1.2.1.2.2.1.9.595|67|10419 +1.3.6.1.2.1.2.2.1.9.596|67|10419 +1.3.6.1.2.1.2.2.1.9.616|67|10894 +1.3.6.1.2.1.2.2.1.9.617|67|10494 +1.3.6.1.2.1.2.2.1.13.516|65|0 +1.3.6.1.2.1.2.2.1.13.517|65|0 +1.3.6.1.2.1.2.2.1.13.518|65|0 +1.3.6.1.2.1.2.2.1.13.519|65|0 +1.3.6.1.2.1.2.2.1.13.520|65|0 +1.3.6.1.2.1.2.2.1.13.521|65|0 +1.3.6.1.2.1.2.2.1.13.522|65|0 +1.3.6.1.2.1.2.2.1.13.523|65|0 +1.3.6.1.2.1.2.2.1.13.524|65|0 +1.3.6.1.2.1.2.2.1.13.525|65|0 +1.3.6.1.2.1.2.2.1.13.526|65|0 +1.3.6.1.2.1.2.2.1.13.527|65|0 +1.3.6.1.2.1.2.2.1.13.528|65|0 +1.3.6.1.2.1.2.2.1.13.529|65|0 +1.3.6.1.2.1.2.2.1.13.530|65|0 +1.3.6.1.2.1.2.2.1.13.531|65|0 +1.3.6.1.2.1.2.2.1.13.532|65|0 +1.3.6.1.2.1.2.2.1.13.533|65|0 +1.3.6.1.2.1.2.2.1.13.534|65|0 +1.3.6.1.2.1.2.2.1.13.535|65|0 +1.3.6.1.2.1.2.2.1.13.541|65|0 +1.3.6.1.2.1.2.2.1.13.556|65|0 +1.3.6.1.2.1.2.2.1.13.557|65|0 +1.3.6.1.2.1.2.2.1.13.558|65|0 +1.3.6.1.2.1.2.2.1.13.559|65|0 +1.3.6.1.2.1.2.2.1.13.572|65|0 +1.3.6.1.2.1.2.2.1.13.573|65|0 +1.3.6.1.2.1.2.2.1.13.576|65|0 +1.3.6.1.2.1.2.2.1.13.577|65|0 +1.3.6.1.2.1.2.2.1.13.578|65|0 +1.3.6.1.2.1.2.2.1.13.579|65|0 +1.3.6.1.2.1.2.2.1.13.580|65|0 +1.3.6.1.2.1.2.2.1.13.581|65|0 +1.3.6.1.2.1.2.2.1.13.582|65|0 +1.3.6.1.2.1.2.2.1.13.583|65|0 +1.3.6.1.2.1.2.2.1.13.584|65|0 +1.3.6.1.2.1.2.2.1.13.585|65|0 +1.3.6.1.2.1.2.2.1.13.588|65|0 +1.3.6.1.2.1.2.2.1.13.589|65|0 +1.3.6.1.2.1.2.2.1.13.590|65|0 +1.3.6.1.2.1.2.2.1.13.591|65|0 +1.3.6.1.2.1.2.2.1.13.592|65|0 +1.3.6.1.2.1.2.2.1.13.593|65|0 +1.3.6.1.2.1.2.2.1.13.594|65|0 +1.3.6.1.2.1.2.2.1.13.595|65|0 +1.3.6.1.2.1.2.2.1.13.596|65|0 +1.3.6.1.2.1.2.2.1.13.616|65|0 +1.3.6.1.2.1.2.2.1.13.617|65|0 +1.3.6.1.2.1.2.2.1.14.516|65|0 +1.3.6.1.2.1.2.2.1.14.517|65|0 +1.3.6.1.2.1.2.2.1.14.518|65|0 +1.3.6.1.2.1.2.2.1.14.519|65|0 +1.3.6.1.2.1.2.2.1.14.520|65|0 +1.3.6.1.2.1.2.2.1.14.521|65|0 +1.3.6.1.2.1.2.2.1.14.522|65|0 +1.3.6.1.2.1.2.2.1.14.523|65|0 +1.3.6.1.2.1.2.2.1.14.524|65|0 +1.3.6.1.2.1.2.2.1.14.525|65|0 +1.3.6.1.2.1.2.2.1.14.526|65|0 +1.3.6.1.2.1.2.2.1.14.527|65|0 +1.3.6.1.2.1.2.2.1.14.528|65|0 +1.3.6.1.2.1.2.2.1.14.529|65|0 +1.3.6.1.2.1.2.2.1.14.530|65|0 +1.3.6.1.2.1.2.2.1.14.531|65|0 +1.3.6.1.2.1.2.2.1.14.532|65|0 +1.3.6.1.2.1.2.2.1.14.533|65|0 +1.3.6.1.2.1.2.2.1.14.534|65|0 +1.3.6.1.2.1.2.2.1.14.535|65|0 +1.3.6.1.2.1.2.2.1.14.541|65|0 +1.3.6.1.2.1.2.2.1.14.556|65|0 +1.3.6.1.2.1.2.2.1.14.557|65|0 +1.3.6.1.2.1.2.2.1.14.558|65|0 +1.3.6.1.2.1.2.2.1.14.559|65|0 +1.3.6.1.2.1.2.2.1.14.572|65|0 +1.3.6.1.2.1.2.2.1.14.573|65|0 +1.3.6.1.2.1.2.2.1.14.576|65|0 +1.3.6.1.2.1.2.2.1.14.577|65|0 +1.3.6.1.2.1.2.2.1.14.578|65|0 +1.3.6.1.2.1.2.2.1.14.579|65|0 +1.3.6.1.2.1.2.2.1.14.580|65|0 +1.3.6.1.2.1.2.2.1.14.581|65|0 +1.3.6.1.2.1.2.2.1.14.582|65|0 +1.3.6.1.2.1.2.2.1.14.583|65|0 +1.3.6.1.2.1.2.2.1.14.584|65|0 +1.3.6.1.2.1.2.2.1.14.585|65|0 +1.3.6.1.2.1.2.2.1.14.588|65|0 +1.3.6.1.2.1.2.2.1.14.589|65|0 +1.3.6.1.2.1.2.2.1.14.590|65|0 +1.3.6.1.2.1.2.2.1.14.591|65|0 +1.3.6.1.2.1.2.2.1.14.592|65|0 +1.3.6.1.2.1.2.2.1.14.593|65|0 +1.3.6.1.2.1.2.2.1.14.594|65|0 +1.3.6.1.2.1.2.2.1.14.595|65|0 +1.3.6.1.2.1.2.2.1.14.596|65|0 +1.3.6.1.2.1.2.2.1.14.616|65|0 +1.3.6.1.2.1.2.2.1.14.617|65|0 +1.3.6.1.2.1.2.2.1.19.516|65|0 +1.3.6.1.2.1.2.2.1.19.517|65|0 +1.3.6.1.2.1.2.2.1.19.518|65|0 +1.3.6.1.2.1.2.2.1.19.519|65|0 +1.3.6.1.2.1.2.2.1.19.520|65|0 +1.3.6.1.2.1.2.2.1.19.521|65|0 +1.3.6.1.2.1.2.2.1.19.522|65|0 +1.3.6.1.2.1.2.2.1.19.523|65|0 +1.3.6.1.2.1.2.2.1.19.524|65|0 +1.3.6.1.2.1.2.2.1.19.525|65|0 +1.3.6.1.2.1.2.2.1.19.526|65|0 +1.3.6.1.2.1.2.2.1.19.527|65|0 +1.3.6.1.2.1.2.2.1.19.528|65|0 +1.3.6.1.2.1.2.2.1.19.529|65|0 +1.3.6.1.2.1.2.2.1.19.530|65|0 +1.3.6.1.2.1.2.2.1.19.531|65|0 +1.3.6.1.2.1.2.2.1.19.532|65|0 +1.3.6.1.2.1.2.2.1.19.533|65|0 +1.3.6.1.2.1.2.2.1.19.534|65|0 +1.3.6.1.2.1.2.2.1.19.535|65|0 +1.3.6.1.2.1.2.2.1.19.541|65|0 +1.3.6.1.2.1.2.2.1.19.556|65|0 +1.3.6.1.2.1.2.2.1.19.557|65|0 +1.3.6.1.2.1.2.2.1.19.558|65|0 +1.3.6.1.2.1.2.2.1.19.559|65|0 +1.3.6.1.2.1.2.2.1.19.572|65|0 +1.3.6.1.2.1.2.2.1.19.573|65|0 +1.3.6.1.2.1.2.2.1.19.576|65|0 +1.3.6.1.2.1.2.2.1.19.577|65|0 +1.3.6.1.2.1.2.2.1.19.578|65|0 +1.3.6.1.2.1.2.2.1.19.579|65|0 +1.3.6.1.2.1.2.2.1.19.580|65|0 +1.3.6.1.2.1.2.2.1.19.581|65|0 +1.3.6.1.2.1.2.2.1.19.582|65|0 +1.3.6.1.2.1.2.2.1.19.583|65|0 +1.3.6.1.2.1.2.2.1.19.584|65|0 +1.3.6.1.2.1.2.2.1.19.585|65|0 +1.3.6.1.2.1.2.2.1.19.588|65|0 +1.3.6.1.2.1.2.2.1.19.589|65|0 +1.3.6.1.2.1.2.2.1.19.590|65|0 +1.3.6.1.2.1.2.2.1.19.591|65|0 +1.3.6.1.2.1.2.2.1.19.592|65|0 +1.3.6.1.2.1.2.2.1.19.593|65|0 +1.3.6.1.2.1.2.2.1.19.594|65|0 +1.3.6.1.2.1.2.2.1.19.595|65|0 +1.3.6.1.2.1.2.2.1.19.596|65|0 +1.3.6.1.2.1.2.2.1.19.616|65|0 +1.3.6.1.2.1.2.2.1.19.617|65|0 +1.3.6.1.2.1.2.2.1.20.516|65|0 +1.3.6.1.2.1.2.2.1.20.517|65|0 +1.3.6.1.2.1.2.2.1.20.518|65|0 +1.3.6.1.2.1.2.2.1.20.519|65|0 +1.3.6.1.2.1.2.2.1.20.520|65|0 +1.3.6.1.2.1.2.2.1.20.521|65|0 +1.3.6.1.2.1.2.2.1.20.522|65|0 +1.3.6.1.2.1.2.2.1.20.523|65|0 +1.3.6.1.2.1.2.2.1.20.524|65|0 +1.3.6.1.2.1.2.2.1.20.525|65|0 +1.3.6.1.2.1.2.2.1.20.526|65|0 +1.3.6.1.2.1.2.2.1.20.527|65|0 +1.3.6.1.2.1.2.2.1.20.528|65|0 +1.3.6.1.2.1.2.2.1.20.529|65|0 +1.3.6.1.2.1.2.2.1.20.530|65|0 +1.3.6.1.2.1.2.2.1.20.531|65|0 +1.3.6.1.2.1.2.2.1.20.532|65|0 +1.3.6.1.2.1.2.2.1.20.533|65|0 +1.3.6.1.2.1.2.2.1.20.534|65|0 +1.3.6.1.2.1.2.2.1.20.535|65|0 +1.3.6.1.2.1.2.2.1.20.541|65|0 +1.3.6.1.2.1.2.2.1.20.556|65|0 +1.3.6.1.2.1.2.2.1.20.557|65|0 +1.3.6.1.2.1.2.2.1.20.558|65|0 +1.3.6.1.2.1.2.2.1.20.559|65|0 +1.3.6.1.2.1.2.2.1.20.572|65|0 +1.3.6.1.2.1.2.2.1.20.573|65|0 +1.3.6.1.2.1.2.2.1.20.576|65|0 +1.3.6.1.2.1.2.2.1.20.577|65|0 +1.3.6.1.2.1.2.2.1.20.578|65|0 +1.3.6.1.2.1.2.2.1.20.579|65|0 +1.3.6.1.2.1.2.2.1.20.580|65|0 +1.3.6.1.2.1.2.2.1.20.581|65|0 +1.3.6.1.2.1.2.2.1.20.582|65|0 +1.3.6.1.2.1.2.2.1.20.583|65|0 +1.3.6.1.2.1.2.2.1.20.584|65|0 +1.3.6.1.2.1.2.2.1.20.585|65|0 +1.3.6.1.2.1.2.2.1.20.588|65|0 +1.3.6.1.2.1.2.2.1.20.589|65|0 +1.3.6.1.2.1.2.2.1.20.590|65|0 +1.3.6.1.2.1.2.2.1.20.591|65|0 +1.3.6.1.2.1.2.2.1.20.592|65|0 +1.3.6.1.2.1.2.2.1.20.593|65|0 +1.3.6.1.2.1.2.2.1.20.594|65|0 +1.3.6.1.2.1.2.2.1.20.595|65|0 +1.3.6.1.2.1.2.2.1.20.596|65|0 +1.3.6.1.2.1.2.2.1.20.616|65|0 +1.3.6.1.2.1.2.2.1.20.617|65|0 +1.3.6.1.2.1.4.3.0|65|24475361 +1.3.6.1.2.1.4.4.0|65|0 +1.3.6.1.2.1.4.5.0|65|0 +1.3.6.1.2.1.4.6.0|65|0 +1.3.6.1.2.1.4.7.0|65|20404 +1.3.6.1.2.1.4.8.0|65|0 +1.3.6.1.2.1.4.9.0|65|24454864 +1.3.6.1.2.1.4.10.0|65|27024385 +1.3.6.1.2.1.4.11.0|65|0 +1.3.6.1.2.1.4.12.0|65|36 +1.3.6.1.2.1.4.14.0|65|982682 +1.3.6.1.2.1.4.15.0|65|141451 +1.3.6.1.2.1.4.16.0|65|0 +1.3.6.1.2.1.4.17.0|65|2 +1.3.6.1.2.1.4.18.0|65|0 +1.3.6.1.2.1.4.19.0|65|4 +1.3.6.1.2.1.4.20.1.2.10.99.252.252|2|572 +1.3.6.1.2.1.4.20.1.2.10.99.252.254|2|559 +1.3.6.1.2.1.4.20.1.3.10.99.252.252|64|255.255.255.254 +1.3.6.1.2.1.4.20.1.3.10.99.252.254|64|255.255.255.254 +1.3.6.1.2.1.4.22.1.2.559.10.99.252.254|4x|A8D0E5555910 +1.3.6.1.2.1.4.22.1.2.559.10.99.252.255|4x|70617B993018 +1.3.6.1.2.1.4.22.1.2.572.10.99.252.252|4x|A8D0E5555911 +1.3.6.1.2.1.4.22.1.2.572.10.99.252.253|4x|A8D0E555C611 +1.3.6.1.2.1.4.24.3.0|66|16 +1.3.6.1.2.1.5.1.0|65|16129 +1.3.6.1.2.1.5.2.0|65|0 +1.3.6.1.2.1.5.3.0|65|3611 +1.3.6.1.2.1.5.4.0|65|0 +1.3.6.1.2.1.5.5.0|65|0 +1.3.6.1.2.1.5.6.0|65|0 +1.3.6.1.2.1.5.7.0|65|0 +1.3.6.1.2.1.5.8.0|65|12518 +1.3.6.1.2.1.5.9.0|65|0 +1.3.6.1.2.1.5.10.0|65|0 +1.3.6.1.2.1.5.11.0|65|0 +1.3.6.1.2.1.5.12.0|65|0 +1.3.6.1.2.1.5.13.0|65|0 +1.3.6.1.2.1.5.14.0|65|12529 +1.3.6.1.2.1.5.15.0|65|1 +1.3.6.1.2.1.5.16.0|65|1 +1.3.6.1.2.1.5.17.0|65|0 +1.3.6.1.2.1.5.18.0|65|0 +1.3.6.1.2.1.5.19.0|65|0 +1.3.6.1.2.1.5.20.0|65|0 +1.3.6.1.2.1.5.21.0|65|9 +1.3.6.1.2.1.5.22.0|65|12518 +1.3.6.1.2.1.5.23.0|65|0 +1.3.6.1.2.1.5.24.0|65|0 +1.3.6.1.2.1.5.25.0|65|0 +1.3.6.1.2.1.5.26.0|65|0 +1.3.6.1.2.1.5.29.1.2.1|65|16129 +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|0 +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|12529 +1.3.6.1.2.1.5.29.1.4.2|65|8 +1.3.6.1.2.1.5.29.1.5.1|65|1 +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|0 +1.3.6.1.2.1.5.30.1.3.1.3|65|3611 +1.3.6.1.2.1.5.30.1.3.1.4|65|0 +1.3.6.1.2.1.5.30.1.3.1.5|65|0 +1.3.6.1.2.1.5.30.1.3.1.6|65|0 +1.3.6.1.2.1.5.30.1.3.1.8|65|12518 +1.3.6.1.2.1.5.30.1.3.1.9|65|0 +1.3.6.1.2.1.5.30.1.3.1.10|65|0 +1.3.6.1.2.1.5.30.1.3.1.11|65|0 +1.3.6.1.2.1.5.30.1.3.1.12|65|0 +1.3.6.1.2.1.5.30.1.3.1.13|65|0 +1.3.6.1.2.1.5.30.1.3.1.14|65|0 +1.3.6.1.2.1.5.30.1.3.1.15|65|0 +1.3.6.1.2.1.5.30.1.3.1.16|65|0 +1.3.6.1.2.1.5.30.1.3.1.17|65|0 +1.3.6.1.2.1.5.30.1.3.1.18|65|0 +1.3.6.1.2.1.5.30.1.3.1.30|65|0 +1.3.6.1.2.1.5.30.1.3.1.31|65|0 +1.3.6.1.2.1.5.30.1.3.1.32|65|0 +1.3.6.1.2.1.5.30.1.3.1.33|65|0 +1.3.6.1.2.1.5.30.1.3.1.34|65|0 +1.3.6.1.2.1.5.30.1.3.1.35|65|0 +1.3.6.1.2.1.5.30.1.3.1.36|65|0 +1.3.6.1.2.1.5.30.1.3.1.39|65|0 +1.3.6.1.2.1.5.30.1.3.1.40|65|0 +1.3.6.1.2.1.5.30.1.3.2.1|65|0 +1.3.6.1.2.1.5.30.1.3.2.2|65|0 +1.3.6.1.2.1.5.30.1.3.2.3|65|0 +1.3.6.1.2.1.5.30.1.3.2.4|65|0 +1.3.6.1.2.1.5.30.1.3.2.128|65|0 +1.3.6.1.2.1.5.30.1.3.2.129|65|0 +1.3.6.1.2.1.5.30.1.3.2.130|65|0 +1.3.6.1.2.1.5.30.1.3.2.131|65|0 +1.3.6.1.2.1.5.30.1.3.2.132|65|0 +1.3.6.1.2.1.5.30.1.3.2.133|65|0 +1.3.6.1.2.1.5.30.1.3.2.134|65|0 +1.3.6.1.2.1.5.30.1.3.2.135|65|0 +1.3.6.1.2.1.5.30.1.3.2.136|65|0 +1.3.6.1.2.1.5.30.1.3.2.137|65|0 +1.3.6.1.2.1.5.30.1.3.2.138|65|0 +1.3.6.1.2.1.5.30.1.3.2.139|65|0 +1.3.6.1.2.1.5.30.1.3.2.140|65|0 +1.3.6.1.2.1.5.30.1.3.2.143|65|0 +1.3.6.1.2.1.5.30.1.4.1.0|65|12518 +1.3.6.1.2.1.5.30.1.4.1.3|65|1 +1.3.6.1.2.1.5.30.1.4.1.4|65|0 +1.3.6.1.2.1.5.30.1.4.1.5|65|0 +1.3.6.1.2.1.5.30.1.4.1.6|65|0 +1.3.6.1.2.1.5.30.1.4.1.8|65|9 +1.3.6.1.2.1.5.30.1.4.1.9|65|0 +1.3.6.1.2.1.5.30.1.4.1.10|65|0 +1.3.6.1.2.1.5.30.1.4.1.11|65|0 +1.3.6.1.2.1.5.30.1.4.1.12|65|0 +1.3.6.1.2.1.5.30.1.4.1.13|65|0 +1.3.6.1.2.1.5.30.1.4.1.14|65|0 +1.3.6.1.2.1.5.30.1.4.1.15|65|0 +1.3.6.1.2.1.5.30.1.4.1.16|65|0 +1.3.6.1.2.1.5.30.1.4.1.17|65|0 +1.3.6.1.2.1.5.30.1.4.1.18|65|0 +1.3.6.1.2.1.5.30.1.4.1.30|65|0 +1.3.6.1.2.1.5.30.1.4.1.31|65|0 +1.3.6.1.2.1.5.30.1.4.1.32|65|0 +1.3.6.1.2.1.5.30.1.4.1.33|65|0 +1.3.6.1.2.1.5.30.1.4.1.34|65|0 +1.3.6.1.2.1.5.30.1.4.1.35|65|0 +1.3.6.1.2.1.5.30.1.4.1.36|65|0 +1.3.6.1.2.1.5.30.1.4.1.39|65|0 +1.3.6.1.2.1.5.30.1.4.1.40|65|0 +1.3.6.1.2.1.5.30.1.4.2.1|65|0 +1.3.6.1.2.1.5.30.1.4.2.2|65|0 +1.3.6.1.2.1.5.30.1.4.2.3|65|0 +1.3.6.1.2.1.5.30.1.4.2.4|65|0 +1.3.6.1.2.1.5.30.1.4.2.128|65|0 +1.3.6.1.2.1.5.30.1.4.2.129|65|0 +1.3.6.1.2.1.5.30.1.4.2.130|65|0 +1.3.6.1.2.1.5.30.1.4.2.131|65|0 +1.3.6.1.2.1.5.30.1.4.2.132|65|0 +1.3.6.1.2.1.5.30.1.4.2.133|65|0 +1.3.6.1.2.1.5.30.1.4.2.134|65|0 +1.3.6.1.2.1.5.30.1.4.2.135|65|6 +1.3.6.1.2.1.5.30.1.4.2.136|65|2 +1.3.6.1.2.1.5.30.1.4.2.137|65|0 +1.3.6.1.2.1.5.30.1.4.2.138|65|0 +1.3.6.1.2.1.5.30.1.4.2.139|65|0 +1.3.6.1.2.1.5.30.1.4.2.140|65|0 +1.3.6.1.2.1.5.30.1.4.2.143|65|0 +1.3.6.1.2.1.6.5.0|65|349153 +1.3.6.1.2.1.6.6.0|65|47 +1.3.6.1.2.1.6.7.0|65|305530 +1.3.6.1.2.1.6.8.0|65|5 +1.3.6.1.2.1.6.9.0|66|33 +1.3.6.1.2.1.6.10.0|65|21188710 +1.3.6.1.2.1.6.11.0|65|9160499 +1.3.6.1.2.1.6.12.0|65|4 +1.3.6.1.2.1.6.14.0|65|0 +1.3.6.1.2.1.6.15.0|65|1652028 +1.3.6.1.2.1.7.1.0|65|1538688 +1.3.6.1.2.1.7.2.0|65|0 +1.3.6.1.2.1.7.3.0|65|0 +1.3.6.1.2.1.7.4.0|65|1557220 +1.3.6.1.2.1.10.7.2.1.19.516|2|3 +1.3.6.1.2.1.10.7.2.1.19.517|2|3 +1.3.6.1.2.1.10.7.2.1.19.518|2|3 +1.3.6.1.2.1.10.7.2.1.19.519|2|3 +1.3.6.1.2.1.10.7.2.1.19.520|2|3 +1.3.6.1.2.1.10.7.2.1.19.521|2|3 +1.3.6.1.2.1.10.7.2.1.19.522|2|3 +1.3.6.1.2.1.10.7.2.1.19.523|2|3 +1.3.6.1.2.1.10.7.2.1.19.524|2|3 +1.3.6.1.2.1.10.7.2.1.19.525|2|3 +1.3.6.1.2.1.10.7.2.1.19.526|2|3 +1.3.6.1.2.1.10.7.2.1.19.527|2|3 +1.3.6.1.2.1.10.7.2.1.19.528|2|3 +1.3.6.1.2.1.10.7.2.1.19.529|2|3 +1.3.6.1.2.1.10.7.2.1.19.530|2|3 +1.3.6.1.2.1.10.7.2.1.19.531|2|3 +1.3.6.1.2.1.10.7.2.1.19.532|2|3 +1.3.6.1.2.1.10.7.2.1.19.533|2|3 +1.3.6.1.2.1.10.7.2.1.19.534|2|3 +1.3.6.1.2.1.10.7.2.1.19.535|2|3 +1.3.6.1.2.1.10.7.2.1.19.541|2|3 +1.3.6.1.2.1.10.7.2.1.19.556|2|3 +1.3.6.1.2.1.10.7.2.1.19.557|2|3 +1.3.6.1.2.1.10.7.2.1.19.558|2|3 +1.3.6.1.2.1.10.7.2.1.19.559|2|3 +1.3.6.1.2.1.10.7.2.1.19.572|2|3 +1.3.6.1.2.1.10.7.2.1.19.573|2|3 +1.3.6.1.2.1.10.7.2.1.19.576|2|3 +1.3.6.1.2.1.10.7.2.1.19.577|2|3 +1.3.6.1.2.1.10.7.2.1.19.578|2|3 +1.3.6.1.2.1.10.7.2.1.19.579|2|3 +1.3.6.1.2.1.10.7.2.1.19.580|2|3 +1.3.6.1.2.1.10.7.2.1.19.581|2|3 +1.3.6.1.2.1.10.7.2.1.19.582|2|3 +1.3.6.1.2.1.10.7.2.1.19.583|2|3 +1.3.6.1.2.1.10.7.2.1.19.584|2|3 +1.3.6.1.2.1.10.7.2.1.19.585|2|3 +1.3.6.1.2.1.10.7.2.1.19.588|2|3 +1.3.6.1.2.1.10.7.2.1.19.589|2|3 +1.3.6.1.2.1.10.7.2.1.19.590|2|3 +1.3.6.1.2.1.10.7.2.1.19.591|2|3 +1.3.6.1.2.1.10.7.2.1.19.592|2|3 +1.3.6.1.2.1.10.7.2.1.19.593|2|3 +1.3.6.1.2.1.10.7.2.1.19.594|2|3 +1.3.6.1.2.1.10.7.2.1.19.595|2|3 +1.3.6.1.2.1.10.7.2.1.19.596|2|3 +1.3.6.1.2.1.10.7.2.1.19.616|2|3 +1.3.6.1.2.1.10.7.2.1.19.617|2|3 +1.3.6.1.2.1.11.1.0|65|974474 +1.3.6.1.2.1.11.2.0|65|974788 +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|9211210 +1.3.6.1.2.1.11.14.0|65|0 +1.3.6.1.2.1.11.15.0|65|84975 +1.3.6.1.2.1.11.16.0|65|12509 +1.3.6.1.2.1.11.17.0|65|0 +1.3.6.1.2.1.11.18.0|65|0 +1.3.6.1.2.1.11.19.0|65|0 +1.3.6.1.2.1.11.20.0|65|0 +1.3.6.1.2.1.11.21.0|65|0 +1.3.6.1.2.1.11.22.0|65|0 +1.3.6.1.2.1.11.24.0|65|0 +1.3.6.1.2.1.11.25.0|65|0 +1.3.6.1.2.1.11.26.0|65|0 +1.3.6.1.2.1.11.27.0|65|0 +1.3.6.1.2.1.11.28.0|65|974475 +1.3.6.1.2.1.11.29.0|65|315 +1.3.6.1.2.1.11.30.0|2|1 +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.15.2.0|2|65534 +1.3.6.1.2.1.17.1.4.1.2.4096|2|541 +1.3.6.1.2.1.17.1.4.1.2.4097|2|556 +1.3.6.1.2.1.17.7.1.1.1.0|2|1 +1.3.6.1.2.1.25.1.1.0|67|122449005 +1.3.6.1.2.1.25.1.5.0|66|1 +1.3.6.1.2.1.25.1.6.0|66|158 +1.3.6.1.2.1.25.2.3.1.1.1|2|1 +1.3.6.1.2.1.25.2.3.1.1.2|2|2 +1.3.6.1.2.1.25.2.3.1.1.3|2|3 +1.3.6.1.2.1.25.2.3.1.1.4|2|4 +1.3.6.1.2.1.25.2.3.1.1.7|2|7 +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.11|2|11 +1.3.6.1.2.1.25.2.3.1.1.12|2|12 +1.3.6.1.2.1.25.2.3.1.1.13|2|13 +1.3.6.1.2.1.25.2.3.1.1.14|2|14 +1.3.6.1.2.1.25.2.3.1.1.15|2|15 +1.3.6.1.2.1.25.2.3.1.1.16|2|16 +1.3.6.1.2.1.25.2.3.1.1.17|2|17 +1.3.6.1.2.1.25.2.3.1.1.18|2|18 +1.3.6.1.2.1.25.2.3.1.1.19|2|19 +1.3.6.1.2.1.25.2.3.1.1.20|2|20 +1.3.6.1.2.1.25.2.3.1.1.21|2|21 +1.3.6.1.2.1.25.2.3.1.1.22|2|22 +1.3.6.1.2.1.25.2.3.1.1.23|2|23 +1.3.6.1.2.1.25.2.3.1.1.24|2|24 +1.3.6.1.2.1.25.2.3.1.1.25|2|25 +1.3.6.1.2.1.25.2.3.1.1.26|2|26 +1.3.6.1.2.1.25.2.3.1.1.27|2|27 +1.3.6.1.2.1.25.2.3.1.1.28|2|28 +1.3.6.1.2.1.25.2.3.1.1.29|2|29 +1.3.6.1.2.1.25.2.3.1.1.30|2|30 +1.3.6.1.2.1.25.2.3.1.1.31|2|31 +1.3.6.1.2.1.25.2.3.1.2.1|6|1.3.6.1.2.1.25.2.1.4 +1.3.6.1.2.1.25.2.3.1.2.2|6|1.3.6.1.2.1.25.2.1.4 +1.3.6.1.2.1.25.2.3.1.2.3|6|1.3.6.1.2.1.25.2.1.4 +1.3.6.1.2.1.25.2.3.1.2.4|6|1.3.6.1.2.1.25.2.1.4 +1.3.6.1.2.1.25.2.3.1.2.7|6|1.3.6.1.2.1.25.2.1.4 +1.3.6.1.2.1.25.2.3.1.2.10|6|1.3.6.1.2.1.25.2.1.4 +1.3.6.1.2.1.25.2.3.1.2.11|6|1.3.6.1.2.1.25.2.1.4 +1.3.6.1.2.1.25.2.3.1.2.12|6|1.3.6.1.2.1.25.2.1.4 +1.3.6.1.2.1.25.2.3.1.2.13|6|1.3.6.1.2.1.25.2.1.4 +1.3.6.1.2.1.25.2.3.1.2.14|6|1.3.6.1.2.1.25.2.1.4 +1.3.6.1.2.1.25.2.3.1.2.15|6|1.3.6.1.2.1.25.2.1.4 +1.3.6.1.2.1.25.2.3.1.2.16|6|1.3.6.1.2.1.25.2.1.4 +1.3.6.1.2.1.25.2.3.1.2.17|6|1.3.6.1.2.1.25.2.1.4 +1.3.6.1.2.1.25.2.3.1.2.18|6|1.3.6.1.2.1.25.2.1.4 +1.3.6.1.2.1.25.2.3.1.2.19|6|1.3.6.1.2.1.25.2.1.4 +1.3.6.1.2.1.25.2.3.1.2.20|6|1.3.6.1.2.1.25.2.1.4 +1.3.6.1.2.1.25.2.3.1.2.21|6|1.3.6.1.2.1.25.2.1.4 +1.3.6.1.2.1.25.2.3.1.2.22|6|1.3.6.1.2.1.25.2.1.4 +1.3.6.1.2.1.25.2.3.1.2.23|6|1.3.6.1.2.1.25.2.1.4 +1.3.6.1.2.1.25.2.3.1.2.24|6|1.3.6.1.2.1.25.2.1.4 +1.3.6.1.2.1.25.2.3.1.2.25|6|1.3.6.1.2.1.25.2.1.4 +1.3.6.1.2.1.25.2.3.1.2.26|6|1.3.6.1.2.1.25.2.1.3 +1.3.6.1.2.1.25.2.3.1.2.27|6|1.3.6.1.2.1.25.2.1.4 +1.3.6.1.2.1.25.2.3.1.2.28|6|1.3.6.1.2.1.25.2.1.4 +1.3.6.1.2.1.25.2.3.1.2.29|6|1.3.6.1.2.1.25.2.1.4 +1.3.6.1.2.1.25.2.3.1.2.30|6|1.3.6.1.2.1.25.2.1.4 +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.3.1|4|/dev/da0s1a, mounted on: / +1.3.6.1.2.1.25.2.3.1.3.2|4|/dev/da0s1e, mounted on: /config +1.3.6.1.2.1.25.2.3.1.3.3|4|/dev/da1s1f, mounted on: /var +1.3.6.1.2.1.25.2.3.1.3.4|4|/dev/md15, mounted on: /tmp +1.3.6.1.2.1.25.2.3.1.3.7|4|/dev/md16, mounted on: /mfs +1.3.6.1.2.1.25.2.3.1.3.10|4|devfs: dev file system, mounted on: /dev +1.3.6.1.2.1.25.2.3.1.3.11|4|/dev/md0, mounted on: /packages/mnt/jbase +1.3.6.1.2.1.25.2.3.1.3.12|4|/dev/md1, mounted on: /packages/mnt/jkernel-ppc-19.4R3.11 +1.3.6.1.2.1.25.2.3.1.3.13|4|/dev/md2, mounted on: /packages/mnt/jpfe-MX80-19.4R3.11 +1.3.6.1.2.1.25.2.3.1.3.14|4|/dev/md3, mounted on: /packages/mnt/jdocs-19.4R3.11 +1.3.6.1.2.1.25.2.3.1.3.15|4|/dev/md4, mounted on: /packages/mnt/jroute-ppc-19.4R3.11 +1.3.6.1.2.1.25.2.3.1.3.16|4|/dev/md5, mounted on: /packages/mnt/jcrypto-ppc-19.4R3.11 +1.3.6.1.2.1.25.2.3.1.3.17|4|/dev/md6, mounted on: /packages/mnt/jcrypto-dp-support-19.4R3.11 +1.3.6.1.2.1.25.2.3.1.3.18|4|/dev/md7, mounted on: /packages/mnt/jmacsec-19.4R3.11 +1.3.6.1.2.1.25.2.3.1.3.19|4|/dev/md8, mounted on: /packages/mnt/jsd-powerpc-19.4R3.11-jet-1 +1.3.6.1.2.1.25.2.3.1.3.20|4|/dev/md9, mounted on: /packages/mnt/jsdn-powerpc-19.4R3.11 +1.3.6.1.2.1.25.2.3.1.3.21|4|/dev/md10, mounted on: /packages/mnt/jweb-ppc-19.4R3.11 +1.3.6.1.2.1.25.2.3.1.3.22|4|/dev/md11, mounted on: /packages/mnt/py-base-powerpc-19.4R3.11 +1.3.6.1.2.1.25.2.3.1.3.23|4|/dev/md12, mounted on: /packages/mnt/py-base2-powerpc-19.4R3.11 +1.3.6.1.2.1.25.2.3.1.3.24|4|/dev/md13, mounted on: /packages/mnt/py-extensions-powerpc-19.4R3.11 +1.3.6.1.2.1.25.2.3.1.3.25|4|/dev/md14, mounted on: /packages/mnt/py-extensions2-powerpc-19.4R3.11 +1.3.6.1.2.1.25.2.3.1.3.26|4|procfs: process file system, mounted on: /proc +1.3.6.1.2.1.25.2.3.1.3.27|4|/var/jails/rest-api, mounted on: /packages/mnt/jroute-ppc-19.4R3.11/web-api/var +1.3.6.1.2.1.25.2.3.1.3.28|4|devfs: dev file system, mounted on: /packages/mnt/jroute-ppc-19.4R3.11/web-api/dev +1.3.6.1.2.1.25.2.3.1.3.29|4|/var/jail, mounted on: /packages/mnt/jweb-ppc-19.4R3.11/jail/var +1.3.6.1.2.1.25.2.3.1.3.30|4|/var/log, mounted on: /packages/mnt/jweb-ppc-19.4R3.11/jail/var/log +1.3.6.1.2.1.25.2.3.1.3.31|4|devfs: dev file system, mounted on: /packages/mnt/jweb-ppc-19.4R3.11/jail/dev +1.3.6.1.2.1.25.2.3.1.4.1|2|2048 +1.3.6.1.2.1.25.2.3.1.4.2|2|2048 +1.3.6.1.2.1.25.2.3.1.4.3|2|2048 +1.3.6.1.2.1.25.2.3.1.4.4|2|2048 +1.3.6.1.2.1.25.2.3.1.4.7|2|2048 +1.3.6.1.2.1.25.2.3.1.4.10|2|512 +1.3.6.1.2.1.25.2.3.1.4.11|2|2048 +1.3.6.1.2.1.25.2.3.1.4.12|2|2048 +1.3.6.1.2.1.25.2.3.1.4.13|2|2048 +1.3.6.1.2.1.25.2.3.1.4.14|2|2048 +1.3.6.1.2.1.25.2.3.1.4.15|2|2048 +1.3.6.1.2.1.25.2.3.1.4.16|2|2048 +1.3.6.1.2.1.25.2.3.1.4.17|2|2048 +1.3.6.1.2.1.25.2.3.1.4.18|2|2048 +1.3.6.1.2.1.25.2.3.1.4.19|2|2048 +1.3.6.1.2.1.25.2.3.1.4.20|2|2048 +1.3.6.1.2.1.25.2.3.1.4.21|2|2048 +1.3.6.1.2.1.25.2.3.1.4.22|2|2048 +1.3.6.1.2.1.25.2.3.1.4.23|2|2048 +1.3.6.1.2.1.25.2.3.1.4.24|2|2048 +1.3.6.1.2.1.25.2.3.1.4.25|2|2048 +1.3.6.1.2.1.25.2.3.1.4.26|2|4096 +1.3.6.1.2.1.25.2.3.1.4.27|2|2048 +1.3.6.1.2.1.25.2.3.1.4.28|2|512 +1.3.6.1.2.1.25.2.3.1.4.29|2|2048 +1.3.6.1.2.1.25.2.3.1.4.30|2|2048 +1.3.6.1.2.1.25.2.3.1.4.31|2|512 +1.3.6.1.2.1.25.2.3.1.5.1|2|452940 +1.3.6.1.2.1.25.2.3.1.5.2|2|50281 +1.3.6.1.2.1.25.2.3.1.5.3|2|1468227 +1.3.6.1.2.1.25.2.3.1.5.4|2|1468730 +1.3.6.1.2.1.25.2.3.1.5.7|2|1468730 +1.3.6.1.2.1.25.2.3.1.5.10|2|2 +1.3.6.1.2.1.25.2.3.1.5.11|2|37516 +1.3.6.1.2.1.25.2.3.1.5.12|2|193149 +1.3.6.1.2.1.25.2.3.1.5.13|2|99599 +1.3.6.1.2.1.25.2.3.1.5.14|2|6537 +1.3.6.1.2.1.25.2.3.1.5.15|2|92705 +1.3.6.1.2.1.25.2.3.1.5.16|2|11139 +1.3.6.1.2.1.25.2.3.1.5.17|2|12116 +1.3.6.1.2.1.25.2.3.1.5.18|2|172 +1.3.6.1.2.1.25.2.3.1.5.19|2|3082 +1.3.6.1.2.1.25.2.3.1.5.20|2|3359 +1.3.6.1.2.1.25.2.3.1.5.21|2|14992 +1.3.6.1.2.1.25.2.3.1.5.22|2|8499 +1.3.6.1.2.1.25.2.3.1.5.23|2|6652 +1.3.6.1.2.1.25.2.3.1.5.24|2|6913 +1.3.6.1.2.1.25.2.3.1.5.25|2|8483 +1.3.6.1.2.1.25.2.3.1.5.26|2|1 +1.3.6.1.2.1.25.2.3.1.5.27|2|1468227 +1.3.6.1.2.1.25.2.3.1.5.28|2|2 +1.3.6.1.2.1.25.2.3.1.5.29|2|1468227 +1.3.6.1.2.1.25.2.3.1.5.30|2|1468227 +1.3.6.1.2.1.25.2.3.1.5.31|2|2 +1.3.6.1.2.1.25.2.3.1.6.1|2|162396 +1.3.6.1.2.1.25.2.3.1.6.2|2|23 +1.3.6.1.2.1.25.2.3.1.6.3|2|996487 +1.3.6.1.2.1.25.2.3.1.6.4|2|5 +1.3.6.1.2.1.25.2.3.1.6.7|2|3795 +1.3.6.1.2.1.25.2.3.1.6.10|2|2 +1.3.6.1.2.1.25.2.3.1.6.11|2|37516 +1.3.6.1.2.1.25.2.3.1.6.12|2|193149 +1.3.6.1.2.1.25.2.3.1.6.13|2|99599 +1.3.6.1.2.1.25.2.3.1.6.14|2|6537 +1.3.6.1.2.1.25.2.3.1.6.15|2|92705 +1.3.6.1.2.1.25.2.3.1.6.16|2|11139 +1.3.6.1.2.1.25.2.3.1.6.17|2|12116 +1.3.6.1.2.1.25.2.3.1.6.18|2|172 +1.3.6.1.2.1.25.2.3.1.6.19|2|3082 +1.3.6.1.2.1.25.2.3.1.6.20|2|3359 +1.3.6.1.2.1.25.2.3.1.6.21|2|14992 +1.3.6.1.2.1.25.2.3.1.6.22|2|8499 +1.3.6.1.2.1.25.2.3.1.6.23|2|6652 +1.3.6.1.2.1.25.2.3.1.6.24|2|6913 +1.3.6.1.2.1.25.2.3.1.6.25|2|8483 +1.3.6.1.2.1.25.2.3.1.6.26|2|1 +1.3.6.1.2.1.25.2.3.1.6.27|2|996487 +1.3.6.1.2.1.25.2.3.1.6.28|2|2 +1.3.6.1.2.1.25.2.3.1.6.29|2|996487 +1.3.6.1.2.1.25.2.3.1.6.30|2|996487 +1.3.6.1.2.1.25.2.3.1.6.31|2|2 +1.3.6.1.2.1.25.2.3.1.7.1|65|0 +1.3.6.1.2.1.25.2.3.1.7.2|65|0 +1.3.6.1.2.1.25.2.3.1.7.3|65|0 +1.3.6.1.2.1.25.2.3.1.7.4|65|0 +1.3.6.1.2.1.25.2.3.1.7.7|65|0 +1.3.6.1.2.1.25.2.3.1.7.10|65|0 +1.3.6.1.2.1.25.2.3.1.7.11|65|0 +1.3.6.1.2.1.25.2.3.1.7.12|65|0 +1.3.6.1.2.1.25.2.3.1.7.13|65|0 +1.3.6.1.2.1.25.2.3.1.7.14|65|0 +1.3.6.1.2.1.25.2.3.1.7.15|65|0 +1.3.6.1.2.1.25.2.3.1.7.16|65|0 +1.3.6.1.2.1.25.2.3.1.7.17|65|0 +1.3.6.1.2.1.25.2.3.1.7.18|65|0 +1.3.6.1.2.1.25.2.3.1.7.19|65|0 +1.3.6.1.2.1.25.2.3.1.7.20|65|0 +1.3.6.1.2.1.25.2.3.1.7.21|65|0 +1.3.6.1.2.1.25.2.3.1.7.22|65|0 +1.3.6.1.2.1.25.2.3.1.7.23|65|0 +1.3.6.1.2.1.25.2.3.1.7.24|65|0 +1.3.6.1.2.1.25.2.3.1.7.25|65|0 +1.3.6.1.2.1.25.2.3.1.7.26|65|0 +1.3.6.1.2.1.25.2.3.1.7.27|65|0 +1.3.6.1.2.1.25.2.3.1.7.28|65|0 +1.3.6.1.2.1.25.2.3.1.7.29|65|0 +1.3.6.1.2.1.25.2.3.1.7.30|65|0 +1.3.6.1.2.1.25.2.3.1.7.31|65|0 +1.3.6.1.2.1.25.3.3.1.1.0|6|0.0 +1.3.6.1.2.1.25.3.3.1.2.0|2|0 +1.3.6.1.2.1.25.6.3.1.2.2|4|JUNOS Base OS Software Suite [19.4R3.11] +1.3.6.1.2.1.31.1.1.1.1.516|4|ge-1/0/0 +1.3.6.1.2.1.31.1.1.1.1.517|4|ge-1/0/1 +1.3.6.1.2.1.31.1.1.1.1.518|4|ge-1/0/2 +1.3.6.1.2.1.31.1.1.1.1.519|4|ge-1/0/3 +1.3.6.1.2.1.31.1.1.1.1.520|4|ge-1/0/4 +1.3.6.1.2.1.31.1.1.1.1.521|4|ge-1/0/5 +1.3.6.1.2.1.31.1.1.1.1.522|4|ge-1/0/6 +1.3.6.1.2.1.31.1.1.1.1.523|4|ge-1/0/7 +1.3.6.1.2.1.31.1.1.1.1.524|4|ge-1/0/8 +1.3.6.1.2.1.31.1.1.1.1.525|4|ge-1/0/9 +1.3.6.1.2.1.31.1.1.1.1.526|4|ge-1/1/0 +1.3.6.1.2.1.31.1.1.1.1.527|4|ge-1/1/1 +1.3.6.1.2.1.31.1.1.1.1.528|4|ge-1/1/2 +1.3.6.1.2.1.31.1.1.1.1.529|4|ge-1/1/3 +1.3.6.1.2.1.31.1.1.1.1.530|4|ge-1/1/4 +1.3.6.1.2.1.31.1.1.1.1.531|4|ge-1/1/5 +1.3.6.1.2.1.31.1.1.1.1.532|4|ge-1/1/6 +1.3.6.1.2.1.31.1.1.1.1.533|4|ge-1/1/7 +1.3.6.1.2.1.31.1.1.1.1.534|4|ge-1/1/8 +1.3.6.1.2.1.31.1.1.1.1.535|4|ge-1/1/9 +1.3.6.1.2.1.31.1.1.1.1.541|4|xe-0/0/0 +1.3.6.1.2.1.31.1.1.1.1.556|4|xe-0/0/1 +1.3.6.1.2.1.31.1.1.1.1.557|4|xe-0/0/2 +1.3.6.1.2.1.31.1.1.1.1.558|4|xe-0/0/3 +1.3.6.1.2.1.31.1.1.1.1.559|4|xe-0/0/0.0 +1.3.6.1.2.1.31.1.1.1.1.572|4|xe-0/0/1.0 +1.3.6.1.2.1.31.1.1.1.1.573|4|xe-0/0/2.16386 +1.3.6.1.2.1.31.1.1.1.1.576|4|xe-0/0/3.16386 +1.3.6.1.2.1.31.1.1.1.1.577|4|ge-1/0/0.16386 +1.3.6.1.2.1.31.1.1.1.1.578|4|ge-1/0/1.16386 +1.3.6.1.2.1.31.1.1.1.1.579|4|ge-1/0/2.16386 +1.3.6.1.2.1.31.1.1.1.1.580|4|ge-1/0/3.16386 +1.3.6.1.2.1.31.1.1.1.1.581|4|ge-1/0/4.16386 +1.3.6.1.2.1.31.1.1.1.1.582|4|ge-1/0/5.16386 +1.3.6.1.2.1.31.1.1.1.1.583|4|ge-1/0/6.16386 +1.3.6.1.2.1.31.1.1.1.1.584|4|ge-1/0/7.16386 +1.3.6.1.2.1.31.1.1.1.1.585|4|ge-1/0/8.16386 +1.3.6.1.2.1.31.1.1.1.1.588|4|ge-1/0/9.16386 +1.3.6.1.2.1.31.1.1.1.1.589|4|ge-1/1/1.16386 +1.3.6.1.2.1.31.1.1.1.1.590|4|ge-1/1/2.16386 +1.3.6.1.2.1.31.1.1.1.1.591|4|ge-1/1/3.16386 +1.3.6.1.2.1.31.1.1.1.1.592|4|ge-1/1/4.16386 +1.3.6.1.2.1.31.1.1.1.1.593|4|ge-1/1/5.16386 +1.3.6.1.2.1.31.1.1.1.1.594|4|ge-1/1/6.16386 +1.3.6.1.2.1.31.1.1.1.1.595|4|ge-1/1/7.16386 +1.3.6.1.2.1.31.1.1.1.1.596|4|ge-1/1/8.16386 +1.3.6.1.2.1.31.1.1.1.1.616|4|ge-1/1/9.16386 +1.3.6.1.2.1.31.1.1.1.1.617|4|ge-1/1/0.16386 +1.3.6.1.2.1.31.1.1.1.2.516|65|0 +1.3.6.1.2.1.31.1.1.1.2.517|65|0 +1.3.6.1.2.1.31.1.1.1.2.518|65|0 +1.3.6.1.2.1.31.1.1.1.2.519|65|0 +1.3.6.1.2.1.31.1.1.1.2.520|65|0 +1.3.6.1.2.1.31.1.1.1.2.521|65|0 +1.3.6.1.2.1.31.1.1.1.2.522|65|0 +1.3.6.1.2.1.31.1.1.1.2.523|65|0 +1.3.6.1.2.1.31.1.1.1.2.524|65|0 +1.3.6.1.2.1.31.1.1.1.2.525|65|0 +1.3.6.1.2.1.31.1.1.1.2.526|65|597349 +1.3.6.1.2.1.31.1.1.1.2.527|65|0 +1.3.6.1.2.1.31.1.1.1.2.528|65|0 +1.3.6.1.2.1.31.1.1.1.2.529|65|0 +1.3.6.1.2.1.31.1.1.1.2.530|65|0 +1.3.6.1.2.1.31.1.1.1.2.531|65|0 +1.3.6.1.2.1.31.1.1.1.2.532|65|0 +1.3.6.1.2.1.31.1.1.1.2.533|65|0 +1.3.6.1.2.1.31.1.1.1.2.534|65|0 +1.3.6.1.2.1.31.1.1.1.2.535|65|715226 +1.3.6.1.2.1.31.1.1.1.2.541|65|534045 +1.3.6.1.2.1.31.1.1.1.2.556|65|624705 +1.3.6.1.2.1.31.1.1.1.2.557|65|0 +1.3.6.1.2.1.31.1.1.1.2.558|65|0 +1.3.6.1.2.1.31.1.1.1.2.559|65|0 +1.3.6.1.2.1.31.1.1.1.2.572|65|0 +1.3.6.1.2.1.31.1.1.1.2.573|65|0 +1.3.6.1.2.1.31.1.1.1.2.576|65|0 +1.3.6.1.2.1.31.1.1.1.2.577|65|0 +1.3.6.1.2.1.31.1.1.1.2.578|65|0 +1.3.6.1.2.1.31.1.1.1.2.579|65|0 +1.3.6.1.2.1.31.1.1.1.2.580|65|0 +1.3.6.1.2.1.31.1.1.1.2.581|65|0 +1.3.6.1.2.1.31.1.1.1.2.582|65|0 +1.3.6.1.2.1.31.1.1.1.2.583|65|0 +1.3.6.1.2.1.31.1.1.1.2.584|65|0 +1.3.6.1.2.1.31.1.1.1.2.585|65|0 +1.3.6.1.2.1.31.1.1.1.2.588|65|0 +1.3.6.1.2.1.31.1.1.1.2.589|65|0 +1.3.6.1.2.1.31.1.1.1.2.590|65|0 +1.3.6.1.2.1.31.1.1.1.2.591|65|0 +1.3.6.1.2.1.31.1.1.1.2.592|65|0 +1.3.6.1.2.1.31.1.1.1.2.593|65|0 +1.3.6.1.2.1.31.1.1.1.2.594|65|0 +1.3.6.1.2.1.31.1.1.1.2.595|65|0 +1.3.6.1.2.1.31.1.1.1.2.596|65|0 +1.3.6.1.2.1.31.1.1.1.2.616|65|0 +1.3.6.1.2.1.31.1.1.1.2.617|65|0 +1.3.6.1.2.1.31.1.1.1.3.516|65|0 +1.3.6.1.2.1.31.1.1.1.3.517|65|0 +1.3.6.1.2.1.31.1.1.1.3.518|65|0 +1.3.6.1.2.1.31.1.1.1.3.519|65|0 +1.3.6.1.2.1.31.1.1.1.3.520|65|0 +1.3.6.1.2.1.31.1.1.1.3.521|65|0 +1.3.6.1.2.1.31.1.1.1.3.522|65|0 +1.3.6.1.2.1.31.1.1.1.3.523|65|0 +1.3.6.1.2.1.31.1.1.1.3.524|65|0 +1.3.6.1.2.1.31.1.1.1.3.525|65|0 +1.3.6.1.2.1.31.1.1.1.3.526|65|22972 +1.3.6.1.2.1.31.1.1.1.3.527|65|0 +1.3.6.1.2.1.31.1.1.1.3.528|65|0 +1.3.6.1.2.1.31.1.1.1.3.529|65|0 +1.3.6.1.2.1.31.1.1.1.3.530|65|0 +1.3.6.1.2.1.31.1.1.1.3.531|65|0 +1.3.6.1.2.1.31.1.1.1.3.532|65|0 +1.3.6.1.2.1.31.1.1.1.3.533|65|0 +1.3.6.1.2.1.31.1.1.1.3.534|65|0 +1.3.6.1.2.1.31.1.1.1.3.535|65|39 +1.3.6.1.2.1.31.1.1.1.3.541|65|2 +1.3.6.1.2.1.31.1.1.1.3.556|65|570 +1.3.6.1.2.1.31.1.1.1.3.557|65|0 +1.3.6.1.2.1.31.1.1.1.3.558|65|0 +1.3.6.1.2.1.31.1.1.1.3.559|65|0 +1.3.6.1.2.1.31.1.1.1.3.572|65|0 +1.3.6.1.2.1.31.1.1.1.3.573|65|0 +1.3.6.1.2.1.31.1.1.1.3.576|65|0 +1.3.6.1.2.1.31.1.1.1.3.577|65|0 +1.3.6.1.2.1.31.1.1.1.3.578|65|0 +1.3.6.1.2.1.31.1.1.1.3.579|65|0 +1.3.6.1.2.1.31.1.1.1.3.580|65|0 +1.3.6.1.2.1.31.1.1.1.3.581|65|0 +1.3.6.1.2.1.31.1.1.1.3.582|65|0 +1.3.6.1.2.1.31.1.1.1.3.583|65|0 +1.3.6.1.2.1.31.1.1.1.3.584|65|0 +1.3.6.1.2.1.31.1.1.1.3.585|65|0 +1.3.6.1.2.1.31.1.1.1.3.588|65|0 +1.3.6.1.2.1.31.1.1.1.3.589|65|0 +1.3.6.1.2.1.31.1.1.1.3.590|65|0 +1.3.6.1.2.1.31.1.1.1.3.591|65|0 +1.3.6.1.2.1.31.1.1.1.3.592|65|0 +1.3.6.1.2.1.31.1.1.1.3.593|65|0 +1.3.6.1.2.1.31.1.1.1.3.594|65|0 +1.3.6.1.2.1.31.1.1.1.3.595|65|0 +1.3.6.1.2.1.31.1.1.1.3.596|65|0 +1.3.6.1.2.1.31.1.1.1.3.616|65|0 +1.3.6.1.2.1.31.1.1.1.3.617|65|0 +1.3.6.1.2.1.31.1.1.1.4.516|65|0 +1.3.6.1.2.1.31.1.1.1.4.517|65|0 +1.3.6.1.2.1.31.1.1.1.4.518|65|0 +1.3.6.1.2.1.31.1.1.1.4.519|65|0 +1.3.6.1.2.1.31.1.1.1.4.520|65|0 +1.3.6.1.2.1.31.1.1.1.4.521|65|0 +1.3.6.1.2.1.31.1.1.1.4.522|65|0 +1.3.6.1.2.1.31.1.1.1.4.523|65|0 +1.3.6.1.2.1.31.1.1.1.4.524|65|0 +1.3.6.1.2.1.31.1.1.1.4.525|65|0 +1.3.6.1.2.1.31.1.1.1.4.526|65|44123 +1.3.6.1.2.1.31.1.1.1.4.527|65|0 +1.3.6.1.2.1.31.1.1.1.4.528|65|0 +1.3.6.1.2.1.31.1.1.1.4.529|65|0 +1.3.6.1.2.1.31.1.1.1.4.530|65|0 +1.3.6.1.2.1.31.1.1.1.4.531|65|0 +1.3.6.1.2.1.31.1.1.1.4.532|65|0 +1.3.6.1.2.1.31.1.1.1.4.533|65|0 +1.3.6.1.2.1.31.1.1.1.4.534|65|0 +1.3.6.1.2.1.31.1.1.1.4.535|65|44094 +1.3.6.1.2.1.31.1.1.1.4.541|65|645664 +1.3.6.1.2.1.31.1.1.1.4.556|65|625194 +1.3.6.1.2.1.31.1.1.1.4.557|65|0 +1.3.6.1.2.1.31.1.1.1.4.558|65|0 +1.3.6.1.2.1.31.1.1.1.4.559|65|0 +1.3.6.1.2.1.31.1.1.1.4.572|65|0 +1.3.6.1.2.1.31.1.1.1.4.573|65|0 +1.3.6.1.2.1.31.1.1.1.4.576|65|0 +1.3.6.1.2.1.31.1.1.1.4.577|65|0 +1.3.6.1.2.1.31.1.1.1.4.578|65|0 +1.3.6.1.2.1.31.1.1.1.4.579|65|0 +1.3.6.1.2.1.31.1.1.1.4.580|65|0 +1.3.6.1.2.1.31.1.1.1.4.581|65|0 +1.3.6.1.2.1.31.1.1.1.4.582|65|0 +1.3.6.1.2.1.31.1.1.1.4.583|65|0 +1.3.6.1.2.1.31.1.1.1.4.584|65|0 +1.3.6.1.2.1.31.1.1.1.4.585|65|0 +1.3.6.1.2.1.31.1.1.1.4.588|65|0 +1.3.6.1.2.1.31.1.1.1.4.589|65|0 +1.3.6.1.2.1.31.1.1.1.4.590|65|0 +1.3.6.1.2.1.31.1.1.1.4.591|65|0 +1.3.6.1.2.1.31.1.1.1.4.592|65|0 +1.3.6.1.2.1.31.1.1.1.4.593|65|0 +1.3.6.1.2.1.31.1.1.1.4.594|65|0 +1.3.6.1.2.1.31.1.1.1.4.595|65|0 +1.3.6.1.2.1.31.1.1.1.4.596|65|0 +1.3.6.1.2.1.31.1.1.1.4.616|65|0 +1.3.6.1.2.1.31.1.1.1.4.617|65|0 +1.3.6.1.2.1.31.1.1.1.5.516|65|0 +1.3.6.1.2.1.31.1.1.1.5.517|65|0 +1.3.6.1.2.1.31.1.1.1.5.518|65|0 +1.3.6.1.2.1.31.1.1.1.5.519|65|0 +1.3.6.1.2.1.31.1.1.1.5.520|65|0 +1.3.6.1.2.1.31.1.1.1.5.521|65|0 +1.3.6.1.2.1.31.1.1.1.5.522|65|0 +1.3.6.1.2.1.31.1.1.1.5.523|65|0 +1.3.6.1.2.1.31.1.1.1.5.524|65|0 +1.3.6.1.2.1.31.1.1.1.5.525|65|0 +1.3.6.1.2.1.31.1.1.1.5.526|65|0 +1.3.6.1.2.1.31.1.1.1.5.527|65|0 +1.3.6.1.2.1.31.1.1.1.5.528|65|0 +1.3.6.1.2.1.31.1.1.1.5.529|65|0 +1.3.6.1.2.1.31.1.1.1.5.530|65|0 +1.3.6.1.2.1.31.1.1.1.5.531|65|0 +1.3.6.1.2.1.31.1.1.1.5.532|65|0 +1.3.6.1.2.1.31.1.1.1.5.533|65|0 +1.3.6.1.2.1.31.1.1.1.5.534|65|0 +1.3.6.1.2.1.31.1.1.1.5.535|65|0 +1.3.6.1.2.1.31.1.1.1.5.541|65|1020 +1.3.6.1.2.1.31.1.1.1.5.556|65|541 +1.3.6.1.2.1.31.1.1.1.5.557|65|0 +1.3.6.1.2.1.31.1.1.1.5.558|65|0 +1.3.6.1.2.1.31.1.1.1.5.559|65|0 +1.3.6.1.2.1.31.1.1.1.5.572|65|0 +1.3.6.1.2.1.31.1.1.1.5.573|65|0 +1.3.6.1.2.1.31.1.1.1.5.576|65|0 +1.3.6.1.2.1.31.1.1.1.5.577|65|0 +1.3.6.1.2.1.31.1.1.1.5.578|65|0 +1.3.6.1.2.1.31.1.1.1.5.579|65|0 +1.3.6.1.2.1.31.1.1.1.5.580|65|0 +1.3.6.1.2.1.31.1.1.1.5.581|65|0 +1.3.6.1.2.1.31.1.1.1.5.582|65|0 +1.3.6.1.2.1.31.1.1.1.5.583|65|0 +1.3.6.1.2.1.31.1.1.1.5.584|65|0 +1.3.6.1.2.1.31.1.1.1.5.585|65|0 +1.3.6.1.2.1.31.1.1.1.5.588|65|0 +1.3.6.1.2.1.31.1.1.1.5.589|65|0 +1.3.6.1.2.1.31.1.1.1.5.590|65|0 +1.3.6.1.2.1.31.1.1.1.5.591|65|0 +1.3.6.1.2.1.31.1.1.1.5.592|65|0 +1.3.6.1.2.1.31.1.1.1.5.593|65|0 +1.3.6.1.2.1.31.1.1.1.5.594|65|0 +1.3.6.1.2.1.31.1.1.1.5.595|65|0 +1.3.6.1.2.1.31.1.1.1.5.596|65|0 +1.3.6.1.2.1.31.1.1.1.5.616|65|0 +1.3.6.1.2.1.31.1.1.1.5.617|65|0 +1.3.6.1.2.1.31.1.1.1.6.516|70|0 +1.3.6.1.2.1.31.1.1.1.6.517|70|0 +1.3.6.1.2.1.31.1.1.1.6.518|70|0 +1.3.6.1.2.1.31.1.1.1.6.519|70|0 +1.3.6.1.2.1.31.1.1.1.6.520|70|0 +1.3.6.1.2.1.31.1.1.1.6.521|70|0 +1.3.6.1.2.1.31.1.1.1.6.522|70|0 +1.3.6.1.2.1.31.1.1.1.6.523|70|0 +1.3.6.1.2.1.31.1.1.1.6.524|70|0 +1.3.6.1.2.1.31.1.1.1.6.525|70|0 +1.3.6.1.2.1.31.1.1.1.6.526|70|54128651 +1.3.6.1.2.1.31.1.1.1.6.527|70|0 +1.3.6.1.2.1.31.1.1.1.6.528|70|0 +1.3.6.1.2.1.31.1.1.1.6.529|70|0 +1.3.6.1.2.1.31.1.1.1.6.530|70|0 +1.3.6.1.2.1.31.1.1.1.6.531|70|0 +1.3.6.1.2.1.31.1.1.1.6.532|70|0 +1.3.6.1.2.1.31.1.1.1.6.533|70|0 +1.3.6.1.2.1.31.1.1.1.6.534|70|0 +1.3.6.1.2.1.31.1.1.1.6.535|70|51794011 +1.3.6.1.2.1.31.1.1.1.6.541|70|1927866962 +1.3.6.1.2.1.31.1.1.1.6.556|70|707700127 +1.3.6.1.2.1.31.1.1.1.6.557|70|0 +1.3.6.1.2.1.31.1.1.1.6.558|70|0 +1.3.6.1.2.1.31.1.1.1.6.559|70|1927866973 +1.3.6.1.2.1.31.1.1.1.6.572|70|707700262 +1.3.6.1.2.1.31.1.1.1.6.573|70|0 +1.3.6.1.2.1.31.1.1.1.6.576|70|0 +1.3.6.1.2.1.31.1.1.1.6.577|70|0 +1.3.6.1.2.1.31.1.1.1.6.578|70|0 +1.3.6.1.2.1.31.1.1.1.6.579|70|0 +1.3.6.1.2.1.31.1.1.1.6.580|70|0 +1.3.6.1.2.1.31.1.1.1.6.581|70|0 +1.3.6.1.2.1.31.1.1.1.6.582|70|0 +1.3.6.1.2.1.31.1.1.1.6.583|70|0 +1.3.6.1.2.1.31.1.1.1.6.584|70|0 +1.3.6.1.2.1.31.1.1.1.6.585|70|0 +1.3.6.1.2.1.31.1.1.1.6.588|70|0 +1.3.6.1.2.1.31.1.1.1.6.589|70|0 +1.3.6.1.2.1.31.1.1.1.6.590|70|0 +1.3.6.1.2.1.31.1.1.1.6.591|70|0 +1.3.6.1.2.1.31.1.1.1.6.592|70|0 +1.3.6.1.2.1.31.1.1.1.6.593|70|0 +1.3.6.1.2.1.31.1.1.1.6.594|70|0 +1.3.6.1.2.1.31.1.1.1.6.595|70|0 +1.3.6.1.2.1.31.1.1.1.6.596|70|0 +1.3.6.1.2.1.31.1.1.1.6.616|70|51794011 +1.3.6.1.2.1.31.1.1.1.6.617|70|54128305 +1.3.6.1.2.1.31.1.1.1.7.516|70|0 +1.3.6.1.2.1.31.1.1.1.7.517|70|0 +1.3.6.1.2.1.31.1.1.1.7.518|70|0 +1.3.6.1.2.1.31.1.1.1.7.519|70|0 +1.3.6.1.2.1.31.1.1.1.7.520|70|0 +1.3.6.1.2.1.31.1.1.1.7.521|70|0 +1.3.6.1.2.1.31.1.1.1.7.522|70|0 +1.3.6.1.2.1.31.1.1.1.7.523|70|0 +1.3.6.1.2.1.31.1.1.1.7.524|70|0 +1.3.6.1.2.1.31.1.1.1.7.525|70|0 +1.3.6.1.2.1.31.1.1.1.7.526|70|41 +1.3.6.1.2.1.31.1.1.1.7.527|70|0 +1.3.6.1.2.1.31.1.1.1.7.528|70|0 +1.3.6.1.2.1.31.1.1.1.7.529|70|0 +1.3.6.1.2.1.31.1.1.1.7.530|70|0 +1.3.6.1.2.1.31.1.1.1.7.531|70|0 +1.3.6.1.2.1.31.1.1.1.7.532|70|0 +1.3.6.1.2.1.31.1.1.1.7.533|70|0 +1.3.6.1.2.1.31.1.1.1.7.534|70|0 +1.3.6.1.2.1.31.1.1.1.7.535|70|35 +1.3.6.1.2.1.31.1.1.1.7.541|70|12257250 +1.3.6.1.2.1.31.1.1.1.7.556|70|12381734 +1.3.6.1.2.1.31.1.1.1.7.557|70|0 +1.3.6.1.2.1.31.1.1.1.7.558|70|0 +1.3.6.1.2.1.31.1.1.1.7.559|70|12791283 +1.3.6.1.2.1.31.1.1.1.7.572|70|13006998 +1.3.6.1.2.1.31.1.1.1.7.573|70|0 +1.3.6.1.2.1.31.1.1.1.7.576|70|0 +1.3.6.1.2.1.31.1.1.1.7.577|70|0 +1.3.6.1.2.1.31.1.1.1.7.578|70|0 +1.3.6.1.2.1.31.1.1.1.7.579|70|0 +1.3.6.1.2.1.31.1.1.1.7.580|70|0 +1.3.6.1.2.1.31.1.1.1.7.581|70|0 +1.3.6.1.2.1.31.1.1.1.7.582|70|0 +1.3.6.1.2.1.31.1.1.1.7.583|70|0 +1.3.6.1.2.1.31.1.1.1.7.584|70|0 +1.3.6.1.2.1.31.1.1.1.7.585|70|0 +1.3.6.1.2.1.31.1.1.1.7.588|70|0 +1.3.6.1.2.1.31.1.1.1.7.589|70|0 +1.3.6.1.2.1.31.1.1.1.7.590|70|0 +1.3.6.1.2.1.31.1.1.1.7.591|70|0 +1.3.6.1.2.1.31.1.1.1.7.592|70|0 +1.3.6.1.2.1.31.1.1.1.7.593|70|0 +1.3.6.1.2.1.31.1.1.1.7.594|70|0 +1.3.6.1.2.1.31.1.1.1.7.595|70|0 +1.3.6.1.2.1.31.1.1.1.7.596|70|0 +1.3.6.1.2.1.31.1.1.1.7.616|70|715263 +1.3.6.1.2.1.31.1.1.1.7.617|70|620319 +1.3.6.1.2.1.31.1.1.1.8.516|70|0 +1.3.6.1.2.1.31.1.1.1.8.517|70|0 +1.3.6.1.2.1.31.1.1.1.8.518|70|0 +1.3.6.1.2.1.31.1.1.1.8.519|70|0 +1.3.6.1.2.1.31.1.1.1.8.520|70|0 +1.3.6.1.2.1.31.1.1.1.8.521|70|0 +1.3.6.1.2.1.31.1.1.1.8.522|70|0 +1.3.6.1.2.1.31.1.1.1.8.523|70|0 +1.3.6.1.2.1.31.1.1.1.8.524|70|0 +1.3.6.1.2.1.31.1.1.1.8.525|70|0 +1.3.6.1.2.1.31.1.1.1.8.526|70|597349 +1.3.6.1.2.1.31.1.1.1.8.527|70|0 +1.3.6.1.2.1.31.1.1.1.8.528|70|0 +1.3.6.1.2.1.31.1.1.1.8.529|70|0 +1.3.6.1.2.1.31.1.1.1.8.530|70|0 +1.3.6.1.2.1.31.1.1.1.8.531|70|0 +1.3.6.1.2.1.31.1.1.1.8.532|70|0 +1.3.6.1.2.1.31.1.1.1.8.533|70|0 +1.3.6.1.2.1.31.1.1.1.8.534|70|0 +1.3.6.1.2.1.31.1.1.1.8.535|70|715226 +1.3.6.1.2.1.31.1.1.1.8.541|70|534045 +1.3.6.1.2.1.31.1.1.1.8.556|70|624705 +1.3.6.1.2.1.31.1.1.1.8.557|70|0 +1.3.6.1.2.1.31.1.1.1.8.558|70|0 +1.3.6.1.2.1.31.1.1.1.8.559|70|0 +1.3.6.1.2.1.31.1.1.1.8.572|70|0 +1.3.6.1.2.1.31.1.1.1.8.573|70|0 +1.3.6.1.2.1.31.1.1.1.8.576|70|0 +1.3.6.1.2.1.31.1.1.1.8.577|70|0 +1.3.6.1.2.1.31.1.1.1.8.578|70|0 +1.3.6.1.2.1.31.1.1.1.8.579|70|0 +1.3.6.1.2.1.31.1.1.1.8.580|70|0 +1.3.6.1.2.1.31.1.1.1.8.581|70|0 +1.3.6.1.2.1.31.1.1.1.8.582|70|0 +1.3.6.1.2.1.31.1.1.1.8.583|70|0 +1.3.6.1.2.1.31.1.1.1.8.584|70|0 +1.3.6.1.2.1.31.1.1.1.8.585|70|0 +1.3.6.1.2.1.31.1.1.1.8.588|70|0 +1.3.6.1.2.1.31.1.1.1.8.589|70|0 +1.3.6.1.2.1.31.1.1.1.8.590|70|0 +1.3.6.1.2.1.31.1.1.1.8.591|70|0 +1.3.6.1.2.1.31.1.1.1.8.592|70|0 +1.3.6.1.2.1.31.1.1.1.8.593|70|0 +1.3.6.1.2.1.31.1.1.1.8.594|70|0 +1.3.6.1.2.1.31.1.1.1.8.595|70|0 +1.3.6.1.2.1.31.1.1.1.8.596|70|0 +1.3.6.1.2.1.31.1.1.1.8.616|70|0 +1.3.6.1.2.1.31.1.1.1.8.617|70|0 +1.3.6.1.2.1.31.1.1.1.9.516|70|0 +1.3.6.1.2.1.31.1.1.1.9.517|70|0 +1.3.6.1.2.1.31.1.1.1.9.518|70|0 +1.3.6.1.2.1.31.1.1.1.9.519|70|0 +1.3.6.1.2.1.31.1.1.1.9.520|70|0 +1.3.6.1.2.1.31.1.1.1.9.521|70|0 +1.3.6.1.2.1.31.1.1.1.9.522|70|0 +1.3.6.1.2.1.31.1.1.1.9.523|70|0 +1.3.6.1.2.1.31.1.1.1.9.524|70|0 +1.3.6.1.2.1.31.1.1.1.9.525|70|0 +1.3.6.1.2.1.31.1.1.1.9.526|70|22972 +1.3.6.1.2.1.31.1.1.1.9.527|70|0 +1.3.6.1.2.1.31.1.1.1.9.528|70|0 +1.3.6.1.2.1.31.1.1.1.9.529|70|0 +1.3.6.1.2.1.31.1.1.1.9.530|70|0 +1.3.6.1.2.1.31.1.1.1.9.531|70|0 +1.3.6.1.2.1.31.1.1.1.9.532|70|0 +1.3.6.1.2.1.31.1.1.1.9.533|70|0 +1.3.6.1.2.1.31.1.1.1.9.534|70|0 +1.3.6.1.2.1.31.1.1.1.9.535|70|39 +1.3.6.1.2.1.31.1.1.1.9.541|70|2 +1.3.6.1.2.1.31.1.1.1.9.556|70|570 +1.3.6.1.2.1.31.1.1.1.9.557|70|0 +1.3.6.1.2.1.31.1.1.1.9.558|70|0 +1.3.6.1.2.1.31.1.1.1.9.559|70|0 +1.3.6.1.2.1.31.1.1.1.9.572|70|0 +1.3.6.1.2.1.31.1.1.1.9.573|70|0 +1.3.6.1.2.1.31.1.1.1.9.576|70|0 +1.3.6.1.2.1.31.1.1.1.9.577|70|0 +1.3.6.1.2.1.31.1.1.1.9.578|70|0 +1.3.6.1.2.1.31.1.1.1.9.579|70|0 +1.3.6.1.2.1.31.1.1.1.9.580|70|0 +1.3.6.1.2.1.31.1.1.1.9.581|70|0 +1.3.6.1.2.1.31.1.1.1.9.582|70|0 +1.3.6.1.2.1.31.1.1.1.9.583|70|0 +1.3.6.1.2.1.31.1.1.1.9.584|70|0 +1.3.6.1.2.1.31.1.1.1.9.585|70|0 +1.3.6.1.2.1.31.1.1.1.9.588|70|0 +1.3.6.1.2.1.31.1.1.1.9.589|70|0 +1.3.6.1.2.1.31.1.1.1.9.590|70|0 +1.3.6.1.2.1.31.1.1.1.9.591|70|0 +1.3.6.1.2.1.31.1.1.1.9.592|70|0 +1.3.6.1.2.1.31.1.1.1.9.593|70|0 +1.3.6.1.2.1.31.1.1.1.9.594|70|0 +1.3.6.1.2.1.31.1.1.1.9.595|70|0 +1.3.6.1.2.1.31.1.1.1.9.596|70|0 +1.3.6.1.2.1.31.1.1.1.9.616|70|0 +1.3.6.1.2.1.31.1.1.1.9.617|70|0 +1.3.6.1.2.1.31.1.1.1.10.516|70|0 +1.3.6.1.2.1.31.1.1.1.10.517|70|0 +1.3.6.1.2.1.31.1.1.1.10.518|70|0 +1.3.6.1.2.1.31.1.1.1.10.519|70|0 +1.3.6.1.2.1.31.1.1.1.10.520|70|0 +1.3.6.1.2.1.31.1.1.1.10.521|70|0 +1.3.6.1.2.1.31.1.1.1.10.522|70|0 +1.3.6.1.2.1.31.1.1.1.10.523|70|0 +1.3.6.1.2.1.31.1.1.1.10.524|70|0 +1.3.6.1.2.1.31.1.1.1.10.525|70|0 +1.3.6.1.2.1.31.1.1.1.10.526|70|13016285 +1.3.6.1.2.1.31.1.1.1.10.527|70|0 +1.3.6.1.2.1.31.1.1.1.10.528|70|0 +1.3.6.1.2.1.31.1.1.1.10.529|70|0 +1.3.6.1.2.1.31.1.1.1.10.530|70|0 +1.3.6.1.2.1.31.1.1.1.10.531|70|0 +1.3.6.1.2.1.31.1.1.1.10.532|70|0 +1.3.6.1.2.1.31.1.1.1.10.533|70|0 +1.3.6.1.2.1.31.1.1.1.10.534|70|0 +1.3.6.1.2.1.31.1.1.1.10.535|70|13007730 +1.3.6.1.2.1.31.1.1.1.10.541|70|718989456 +1.3.6.1.2.1.31.1.1.1.10.556|70|771997618 +1.3.6.1.2.1.31.1.1.1.10.557|70|0 +1.3.6.1.2.1.31.1.1.1.10.558|70|0 +1.3.6.1.2.1.31.1.1.1.10.559|70|718989456 +1.3.6.1.2.1.31.1.1.1.10.572|70|771997618 +1.3.6.1.2.1.31.1.1.1.10.573|70|0 +1.3.6.1.2.1.31.1.1.1.10.576|70|0 +1.3.6.1.2.1.31.1.1.1.10.577|70|0 +1.3.6.1.2.1.31.1.1.1.10.578|70|0 +1.3.6.1.2.1.31.1.1.1.10.579|70|0 +1.3.6.1.2.1.31.1.1.1.10.580|70|0 +1.3.6.1.2.1.31.1.1.1.10.581|70|0 +1.3.6.1.2.1.31.1.1.1.10.582|70|0 +1.3.6.1.2.1.31.1.1.1.10.583|70|0 +1.3.6.1.2.1.31.1.1.1.10.584|70|0 +1.3.6.1.2.1.31.1.1.1.10.585|70|0 +1.3.6.1.2.1.31.1.1.1.10.588|70|0 +1.3.6.1.2.1.31.1.1.1.10.589|70|0 +1.3.6.1.2.1.31.1.1.1.10.590|70|0 +1.3.6.1.2.1.31.1.1.1.10.591|70|0 +1.3.6.1.2.1.31.1.1.1.10.592|70|0 +1.3.6.1.2.1.31.1.1.1.10.593|70|0 +1.3.6.1.2.1.31.1.1.1.10.594|70|0 +1.3.6.1.2.1.31.1.1.1.10.595|70|0 +1.3.6.1.2.1.31.1.1.1.10.596|70|0 +1.3.6.1.2.1.31.1.1.1.10.616|70|13007730 +1.3.6.1.2.1.31.1.1.1.10.617|70|13016285 +1.3.6.1.2.1.31.1.1.1.11.516|70|0 +1.3.6.1.2.1.31.1.1.1.11.517|70|0 +1.3.6.1.2.1.31.1.1.1.11.518|70|0 +1.3.6.1.2.1.31.1.1.1.11.519|70|0 +1.3.6.1.2.1.31.1.1.1.11.520|70|0 +1.3.6.1.2.1.31.1.1.1.11.521|70|0 +1.3.6.1.2.1.31.1.1.1.11.522|70|0 +1.3.6.1.2.1.31.1.1.1.11.523|70|0 +1.3.6.1.2.1.31.1.1.1.11.524|70|0 +1.3.6.1.2.1.31.1.1.1.11.525|70|0 +1.3.6.1.2.1.31.1.1.1.11.526|70|0 +1.3.6.1.2.1.31.1.1.1.11.527|70|0 +1.3.6.1.2.1.31.1.1.1.11.528|70|0 +1.3.6.1.2.1.31.1.1.1.11.529|70|0 +1.3.6.1.2.1.31.1.1.1.11.530|70|0 +1.3.6.1.2.1.31.1.1.1.11.531|70|0 +1.3.6.1.2.1.31.1.1.1.11.532|70|0 +1.3.6.1.2.1.31.1.1.1.11.533|70|0 +1.3.6.1.2.1.31.1.1.1.11.534|70|0 +1.3.6.1.2.1.31.1.1.1.11.535|70|0 +1.3.6.1.2.1.31.1.1.1.11.541|70|12460875 +1.3.6.1.2.1.31.1.1.1.11.556|70|13151090 +1.3.6.1.2.1.31.1.1.1.11.557|70|0 +1.3.6.1.2.1.31.1.1.1.11.558|70|0 +1.3.6.1.2.1.31.1.1.1.11.559|70|13107548 +1.3.6.1.2.1.31.1.1.1.11.572|70|13776815 +1.3.6.1.2.1.31.1.1.1.11.573|70|0 +1.3.6.1.2.1.31.1.1.1.11.576|70|0 +1.3.6.1.2.1.31.1.1.1.11.577|70|0 +1.3.6.1.2.1.31.1.1.1.11.578|70|0 +1.3.6.1.2.1.31.1.1.1.11.579|70|0 +1.3.6.1.2.1.31.1.1.1.11.580|70|0 +1.3.6.1.2.1.31.1.1.1.11.581|70|0 +1.3.6.1.2.1.31.1.1.1.11.582|70|0 +1.3.6.1.2.1.31.1.1.1.11.583|70|0 +1.3.6.1.2.1.31.1.1.1.11.584|70|0 +1.3.6.1.2.1.31.1.1.1.11.585|70|0 +1.3.6.1.2.1.31.1.1.1.11.588|70|0 +1.3.6.1.2.1.31.1.1.1.11.589|70|0 +1.3.6.1.2.1.31.1.1.1.11.590|70|0 +1.3.6.1.2.1.31.1.1.1.11.591|70|0 +1.3.6.1.2.1.31.1.1.1.11.592|70|0 +1.3.6.1.2.1.31.1.1.1.11.593|70|0 +1.3.6.1.2.1.31.1.1.1.11.594|70|0 +1.3.6.1.2.1.31.1.1.1.11.595|70|0 +1.3.6.1.2.1.31.1.1.1.11.596|70|0 +1.3.6.1.2.1.31.1.1.1.11.616|70|44094 +1.3.6.1.2.1.31.1.1.1.11.617|70|44123 +1.3.6.1.2.1.31.1.1.1.12.516|70|0 +1.3.6.1.2.1.31.1.1.1.12.517|70|0 +1.3.6.1.2.1.31.1.1.1.12.518|70|0 +1.3.6.1.2.1.31.1.1.1.12.519|70|0 +1.3.6.1.2.1.31.1.1.1.12.520|70|0 +1.3.6.1.2.1.31.1.1.1.12.521|70|0 +1.3.6.1.2.1.31.1.1.1.12.522|70|0 +1.3.6.1.2.1.31.1.1.1.12.523|70|0 +1.3.6.1.2.1.31.1.1.1.12.524|70|0 +1.3.6.1.2.1.31.1.1.1.12.525|70|0 +1.3.6.1.2.1.31.1.1.1.12.526|70|44123 +1.3.6.1.2.1.31.1.1.1.12.527|70|0 +1.3.6.1.2.1.31.1.1.1.12.528|70|0 +1.3.6.1.2.1.31.1.1.1.12.529|70|0 +1.3.6.1.2.1.31.1.1.1.12.530|70|0 +1.3.6.1.2.1.31.1.1.1.12.531|70|0 +1.3.6.1.2.1.31.1.1.1.12.532|70|0 +1.3.6.1.2.1.31.1.1.1.12.533|70|0 +1.3.6.1.2.1.31.1.1.1.12.534|70|0 +1.3.6.1.2.1.31.1.1.1.12.535|70|44094 +1.3.6.1.2.1.31.1.1.1.12.541|70|645664 +1.3.6.1.2.1.31.1.1.1.12.556|70|625194 +1.3.6.1.2.1.31.1.1.1.12.557|70|0 +1.3.6.1.2.1.31.1.1.1.12.558|70|0 +1.3.6.1.2.1.31.1.1.1.12.559|70|0 +1.3.6.1.2.1.31.1.1.1.12.572|70|0 +1.3.6.1.2.1.31.1.1.1.12.573|70|0 +1.3.6.1.2.1.31.1.1.1.12.576|70|0 +1.3.6.1.2.1.31.1.1.1.12.577|70|0 +1.3.6.1.2.1.31.1.1.1.12.578|70|0 +1.3.6.1.2.1.31.1.1.1.12.579|70|0 +1.3.6.1.2.1.31.1.1.1.12.580|70|0 +1.3.6.1.2.1.31.1.1.1.12.581|70|0 +1.3.6.1.2.1.31.1.1.1.12.582|70|0 +1.3.6.1.2.1.31.1.1.1.12.583|70|0 +1.3.6.1.2.1.31.1.1.1.12.584|70|0 +1.3.6.1.2.1.31.1.1.1.12.585|70|0 +1.3.6.1.2.1.31.1.1.1.12.588|70|0 +1.3.6.1.2.1.31.1.1.1.12.589|70|0 +1.3.6.1.2.1.31.1.1.1.12.590|70|0 +1.3.6.1.2.1.31.1.1.1.12.591|70|0 +1.3.6.1.2.1.31.1.1.1.12.592|70|0 +1.3.6.1.2.1.31.1.1.1.12.593|70|0 +1.3.6.1.2.1.31.1.1.1.12.594|70|0 +1.3.6.1.2.1.31.1.1.1.12.595|70|0 +1.3.6.1.2.1.31.1.1.1.12.596|70|0 +1.3.6.1.2.1.31.1.1.1.12.616|70|0 +1.3.6.1.2.1.31.1.1.1.12.617|70|0 +1.3.6.1.2.1.31.1.1.1.13.516|70|0 +1.3.6.1.2.1.31.1.1.1.13.517|70|0 +1.3.6.1.2.1.31.1.1.1.13.518|70|0 +1.3.6.1.2.1.31.1.1.1.13.519|70|0 +1.3.6.1.2.1.31.1.1.1.13.520|70|0 +1.3.6.1.2.1.31.1.1.1.13.521|70|0 +1.3.6.1.2.1.31.1.1.1.13.522|70|0 +1.3.6.1.2.1.31.1.1.1.13.523|70|0 +1.3.6.1.2.1.31.1.1.1.13.524|70|0 +1.3.6.1.2.1.31.1.1.1.13.525|70|0 +1.3.6.1.2.1.31.1.1.1.13.526|70|0 +1.3.6.1.2.1.31.1.1.1.13.527|70|0 +1.3.6.1.2.1.31.1.1.1.13.528|70|0 +1.3.6.1.2.1.31.1.1.1.13.529|70|0 +1.3.6.1.2.1.31.1.1.1.13.530|70|0 +1.3.6.1.2.1.31.1.1.1.13.531|70|0 +1.3.6.1.2.1.31.1.1.1.13.532|70|0 +1.3.6.1.2.1.31.1.1.1.13.533|70|0 +1.3.6.1.2.1.31.1.1.1.13.534|70|0 +1.3.6.1.2.1.31.1.1.1.13.535|70|0 +1.3.6.1.2.1.31.1.1.1.13.541|70|1020 +1.3.6.1.2.1.31.1.1.1.13.556|70|541 +1.3.6.1.2.1.31.1.1.1.13.557|70|0 +1.3.6.1.2.1.31.1.1.1.13.558|70|0 +1.3.6.1.2.1.31.1.1.1.13.559|70|0 +1.3.6.1.2.1.31.1.1.1.13.572|70|0 +1.3.6.1.2.1.31.1.1.1.13.573|70|0 +1.3.6.1.2.1.31.1.1.1.13.576|70|0 +1.3.6.1.2.1.31.1.1.1.13.577|70|0 +1.3.6.1.2.1.31.1.1.1.13.578|70|0 +1.3.6.1.2.1.31.1.1.1.13.579|70|0 +1.3.6.1.2.1.31.1.1.1.13.580|70|0 +1.3.6.1.2.1.31.1.1.1.13.581|70|0 +1.3.6.1.2.1.31.1.1.1.13.582|70|0 +1.3.6.1.2.1.31.1.1.1.13.583|70|0 +1.3.6.1.2.1.31.1.1.1.13.584|70|0 +1.3.6.1.2.1.31.1.1.1.13.585|70|0 +1.3.6.1.2.1.31.1.1.1.13.588|70|0 +1.3.6.1.2.1.31.1.1.1.13.589|70|0 +1.3.6.1.2.1.31.1.1.1.13.590|70|0 +1.3.6.1.2.1.31.1.1.1.13.591|70|0 +1.3.6.1.2.1.31.1.1.1.13.592|70|0 +1.3.6.1.2.1.31.1.1.1.13.593|70|0 +1.3.6.1.2.1.31.1.1.1.13.594|70|0 +1.3.6.1.2.1.31.1.1.1.13.595|70|0 +1.3.6.1.2.1.31.1.1.1.13.596|70|0 +1.3.6.1.2.1.31.1.1.1.13.616|70|0 +1.3.6.1.2.1.31.1.1.1.13.617|70|0 +1.3.6.1.2.1.31.1.1.1.14.516|2|1 +1.3.6.1.2.1.31.1.1.1.14.517|2|1 +1.3.6.1.2.1.31.1.1.1.14.518|2|1 +1.3.6.1.2.1.31.1.1.1.14.519|2|1 +1.3.6.1.2.1.31.1.1.1.14.520|2|1 +1.3.6.1.2.1.31.1.1.1.14.521|2|1 +1.3.6.1.2.1.31.1.1.1.14.522|2|1 +1.3.6.1.2.1.31.1.1.1.14.523|2|1 +1.3.6.1.2.1.31.1.1.1.14.524|2|1 +1.3.6.1.2.1.31.1.1.1.14.525|2|1 +1.3.6.1.2.1.31.1.1.1.14.526|2|1 +1.3.6.1.2.1.31.1.1.1.14.527|2|1 +1.3.6.1.2.1.31.1.1.1.14.528|2|1 +1.3.6.1.2.1.31.1.1.1.14.529|2|1 +1.3.6.1.2.1.31.1.1.1.14.530|2|1 +1.3.6.1.2.1.31.1.1.1.14.531|2|1 +1.3.6.1.2.1.31.1.1.1.14.532|2|1 +1.3.6.1.2.1.31.1.1.1.14.533|2|1 +1.3.6.1.2.1.31.1.1.1.14.534|2|1 +1.3.6.1.2.1.31.1.1.1.14.535|2|1 +1.3.6.1.2.1.31.1.1.1.14.541|2|1 +1.3.6.1.2.1.31.1.1.1.14.556|2|1 +1.3.6.1.2.1.31.1.1.1.14.557|2|1 +1.3.6.1.2.1.31.1.1.1.14.558|2|1 +1.3.6.1.2.1.31.1.1.1.14.559|2|1 +1.3.6.1.2.1.31.1.1.1.14.572|2|1 +1.3.6.1.2.1.31.1.1.1.14.573|2|1 +1.3.6.1.2.1.31.1.1.1.14.576|2|1 +1.3.6.1.2.1.31.1.1.1.14.577|2|1 +1.3.6.1.2.1.31.1.1.1.14.578|2|1 +1.3.6.1.2.1.31.1.1.1.14.579|2|1 +1.3.6.1.2.1.31.1.1.1.14.580|2|1 +1.3.6.1.2.1.31.1.1.1.14.581|2|1 +1.3.6.1.2.1.31.1.1.1.14.582|2|1 +1.3.6.1.2.1.31.1.1.1.14.583|2|1 +1.3.6.1.2.1.31.1.1.1.14.584|2|1 +1.3.6.1.2.1.31.1.1.1.14.585|2|1 +1.3.6.1.2.1.31.1.1.1.14.588|2|1 +1.3.6.1.2.1.31.1.1.1.14.589|2|1 +1.3.6.1.2.1.31.1.1.1.14.590|2|1 +1.3.6.1.2.1.31.1.1.1.14.591|2|1 +1.3.6.1.2.1.31.1.1.1.14.592|2|1 +1.3.6.1.2.1.31.1.1.1.14.593|2|1 +1.3.6.1.2.1.31.1.1.1.14.594|2|1 +1.3.6.1.2.1.31.1.1.1.14.595|2|1 +1.3.6.1.2.1.31.1.1.1.14.596|2|1 +1.3.6.1.2.1.31.1.1.1.14.616|2|1 +1.3.6.1.2.1.31.1.1.1.14.617|2|1 +1.3.6.1.2.1.31.1.1.1.15.516|66|1000 +1.3.6.1.2.1.31.1.1.1.15.517|66|1000 +1.3.6.1.2.1.31.1.1.1.15.518|66|1000 +1.3.6.1.2.1.31.1.1.1.15.519|66|1000 +1.3.6.1.2.1.31.1.1.1.15.520|66|1000 +1.3.6.1.2.1.31.1.1.1.15.521|66|1000 +1.3.6.1.2.1.31.1.1.1.15.522|66|1000 +1.3.6.1.2.1.31.1.1.1.15.523|66|1000 +1.3.6.1.2.1.31.1.1.1.15.524|66|1000 +1.3.6.1.2.1.31.1.1.1.15.525|66|1000 +1.3.6.1.2.1.31.1.1.1.15.526|66|1000 +1.3.6.1.2.1.31.1.1.1.15.527|66|1000 +1.3.6.1.2.1.31.1.1.1.15.528|66|1000 +1.3.6.1.2.1.31.1.1.1.15.529|66|1000 +1.3.6.1.2.1.31.1.1.1.15.530|66|1000 +1.3.6.1.2.1.31.1.1.1.15.531|66|1000 +1.3.6.1.2.1.31.1.1.1.15.532|66|1000 +1.3.6.1.2.1.31.1.1.1.15.533|66|1000 +1.3.6.1.2.1.31.1.1.1.15.534|66|1000 +1.3.6.1.2.1.31.1.1.1.15.535|66|1000 +1.3.6.1.2.1.31.1.1.1.15.541|66|10000 +1.3.6.1.2.1.31.1.1.1.15.556|66|10000 +1.3.6.1.2.1.31.1.1.1.15.557|66|10000 +1.3.6.1.2.1.31.1.1.1.15.558|66|10000 +1.3.6.1.2.1.31.1.1.1.15.559|66|10000 +1.3.6.1.2.1.31.1.1.1.15.572|66|10000 +1.3.6.1.2.1.31.1.1.1.15.573|66|10000 +1.3.6.1.2.1.31.1.1.1.15.576|66|10000 +1.3.6.1.2.1.31.1.1.1.15.577|66|1000 +1.3.6.1.2.1.31.1.1.1.15.578|66|1000 +1.3.6.1.2.1.31.1.1.1.15.579|66|1000 +1.3.6.1.2.1.31.1.1.1.15.580|66|1000 +1.3.6.1.2.1.31.1.1.1.15.581|66|1000 +1.3.6.1.2.1.31.1.1.1.15.582|66|1000 +1.3.6.1.2.1.31.1.1.1.15.583|66|1000 +1.3.6.1.2.1.31.1.1.1.15.584|66|1000 +1.3.6.1.2.1.31.1.1.1.15.585|66|1000 +1.3.6.1.2.1.31.1.1.1.15.588|66|1000 +1.3.6.1.2.1.31.1.1.1.15.589|66|1000 +1.3.6.1.2.1.31.1.1.1.15.590|66|1000 +1.3.6.1.2.1.31.1.1.1.15.591|66|1000 +1.3.6.1.2.1.31.1.1.1.15.592|66|1000 +1.3.6.1.2.1.31.1.1.1.15.593|66|1000 +1.3.6.1.2.1.31.1.1.1.15.594|66|1000 +1.3.6.1.2.1.31.1.1.1.15.595|66|1000 +1.3.6.1.2.1.31.1.1.1.15.596|66|1000 +1.3.6.1.2.1.31.1.1.1.15.616|66|1000 +1.3.6.1.2.1.31.1.1.1.15.617|66|1000 +1.3.6.1.2.1.31.1.1.1.16.516|2|2 +1.3.6.1.2.1.31.1.1.1.16.517|2|2 +1.3.6.1.2.1.31.1.1.1.16.518|2|2 +1.3.6.1.2.1.31.1.1.1.16.519|2|2 +1.3.6.1.2.1.31.1.1.1.16.520|2|2 +1.3.6.1.2.1.31.1.1.1.16.521|2|2 +1.3.6.1.2.1.31.1.1.1.16.522|2|2 +1.3.6.1.2.1.31.1.1.1.16.523|2|2 +1.3.6.1.2.1.31.1.1.1.16.524|2|2 +1.3.6.1.2.1.31.1.1.1.16.525|2|2 +1.3.6.1.2.1.31.1.1.1.16.526|2|2 +1.3.6.1.2.1.31.1.1.1.16.527|2|2 +1.3.6.1.2.1.31.1.1.1.16.528|2|2 +1.3.6.1.2.1.31.1.1.1.16.529|2|2 +1.3.6.1.2.1.31.1.1.1.16.530|2|2 +1.3.6.1.2.1.31.1.1.1.16.531|2|2 +1.3.6.1.2.1.31.1.1.1.16.532|2|2 +1.3.6.1.2.1.31.1.1.1.16.533|2|2 +1.3.6.1.2.1.31.1.1.1.16.534|2|2 +1.3.6.1.2.1.31.1.1.1.16.535|2|2 +1.3.6.1.2.1.31.1.1.1.16.541|2|2 +1.3.6.1.2.1.31.1.1.1.16.556|2|2 +1.3.6.1.2.1.31.1.1.1.16.557|2|2 +1.3.6.1.2.1.31.1.1.1.16.558|2|2 +1.3.6.1.2.1.31.1.1.1.16.559|2|2 +1.3.6.1.2.1.31.1.1.1.16.572|2|2 +1.3.6.1.2.1.31.1.1.1.16.573|2|2 +1.3.6.1.2.1.31.1.1.1.16.576|2|2 +1.3.6.1.2.1.31.1.1.1.16.577|2|2 +1.3.6.1.2.1.31.1.1.1.16.578|2|2 +1.3.6.1.2.1.31.1.1.1.16.579|2|2 +1.3.6.1.2.1.31.1.1.1.16.580|2|2 +1.3.6.1.2.1.31.1.1.1.16.581|2|2 +1.3.6.1.2.1.31.1.1.1.16.582|2|2 +1.3.6.1.2.1.31.1.1.1.16.583|2|2 +1.3.6.1.2.1.31.1.1.1.16.584|2|2 +1.3.6.1.2.1.31.1.1.1.16.585|2|2 +1.3.6.1.2.1.31.1.1.1.16.588|2|2 +1.3.6.1.2.1.31.1.1.1.16.589|2|2 +1.3.6.1.2.1.31.1.1.1.16.590|2|2 +1.3.6.1.2.1.31.1.1.1.16.591|2|2 +1.3.6.1.2.1.31.1.1.1.16.592|2|2 +1.3.6.1.2.1.31.1.1.1.16.593|2|2 +1.3.6.1.2.1.31.1.1.1.16.594|2|2 +1.3.6.1.2.1.31.1.1.1.16.595|2|2 +1.3.6.1.2.1.31.1.1.1.16.596|2|2 +1.3.6.1.2.1.31.1.1.1.16.616|2|2 +1.3.6.1.2.1.31.1.1.1.16.617|2|2 +1.3.6.1.2.1.31.1.1.1.17.516|2|1 +1.3.6.1.2.1.31.1.1.1.17.517|2|1 +1.3.6.1.2.1.31.1.1.1.17.518|2|1 +1.3.6.1.2.1.31.1.1.1.17.519|2|1 +1.3.6.1.2.1.31.1.1.1.17.520|2|1 +1.3.6.1.2.1.31.1.1.1.17.521|2|1 +1.3.6.1.2.1.31.1.1.1.17.522|2|1 +1.3.6.1.2.1.31.1.1.1.17.523|2|1 +1.3.6.1.2.1.31.1.1.1.17.524|2|1 +1.3.6.1.2.1.31.1.1.1.17.525|2|1 +1.3.6.1.2.1.31.1.1.1.17.526|2|1 +1.3.6.1.2.1.31.1.1.1.17.527|2|1 +1.3.6.1.2.1.31.1.1.1.17.528|2|1 +1.3.6.1.2.1.31.1.1.1.17.529|2|1 +1.3.6.1.2.1.31.1.1.1.17.530|2|1 +1.3.6.1.2.1.31.1.1.1.17.531|2|1 +1.3.6.1.2.1.31.1.1.1.17.532|2|1 +1.3.6.1.2.1.31.1.1.1.17.533|2|1 +1.3.6.1.2.1.31.1.1.1.17.534|2|1 +1.3.6.1.2.1.31.1.1.1.17.535|2|1 +1.3.6.1.2.1.31.1.1.1.17.541|2|1 +1.3.6.1.2.1.31.1.1.1.17.556|2|1 +1.3.6.1.2.1.31.1.1.1.17.557|2|1 +1.3.6.1.2.1.31.1.1.1.17.558|2|1 +1.3.6.1.2.1.31.1.1.1.17.559|2|2 +1.3.6.1.2.1.31.1.1.1.17.572|2|2 +1.3.6.1.2.1.31.1.1.1.17.573|2|2 +1.3.6.1.2.1.31.1.1.1.17.576|2|2 +1.3.6.1.2.1.31.1.1.1.17.577|2|2 +1.3.6.1.2.1.31.1.1.1.17.578|2|2 +1.3.6.1.2.1.31.1.1.1.17.579|2|2 +1.3.6.1.2.1.31.1.1.1.17.580|2|2 +1.3.6.1.2.1.31.1.1.1.17.581|2|2 +1.3.6.1.2.1.31.1.1.1.17.582|2|2 +1.3.6.1.2.1.31.1.1.1.17.583|2|2 +1.3.6.1.2.1.31.1.1.1.17.584|2|2 +1.3.6.1.2.1.31.1.1.1.17.585|2|2 +1.3.6.1.2.1.31.1.1.1.17.588|2|2 +1.3.6.1.2.1.31.1.1.1.17.589|2|2 +1.3.6.1.2.1.31.1.1.1.17.590|2|2 +1.3.6.1.2.1.31.1.1.1.17.591|2|2 +1.3.6.1.2.1.31.1.1.1.17.592|2|2 +1.3.6.1.2.1.31.1.1.1.17.593|2|2 +1.3.6.1.2.1.31.1.1.1.17.594|2|2 +1.3.6.1.2.1.31.1.1.1.17.595|2|2 +1.3.6.1.2.1.31.1.1.1.17.596|2|2 +1.3.6.1.2.1.31.1.1.1.17.616|2|2 +1.3.6.1.2.1.31.1.1.1.17.617|2|2 +1.3.6.1.2.1.31.1.1.1.18.516|4| +1.3.6.1.2.1.31.1.1.1.18.517|4| +1.3.6.1.2.1.31.1.1.1.18.518|4| +1.3.6.1.2.1.31.1.1.1.18.519|4| +1.3.6.1.2.1.31.1.1.1.18.520|4| +1.3.6.1.2.1.31.1.1.1.18.521|4| +1.3.6.1.2.1.31.1.1.1.18.522|4| +1.3.6.1.2.1.31.1.1.1.18.523|4| +1.3.6.1.2.1.31.1.1.1.18.524|4| +1.3.6.1.2.1.31.1.1.1.18.525|4| +1.3.6.1.2.1.31.1.1.1.18.526|4| +1.3.6.1.2.1.31.1.1.1.18.527|4| +1.3.6.1.2.1.31.1.1.1.18.528|4| +1.3.6.1.2.1.31.1.1.1.18.529|4| +1.3.6.1.2.1.31.1.1.1.18.530|4| +1.3.6.1.2.1.31.1.1.1.18.531|4| +1.3.6.1.2.1.31.1.1.1.18.532|4| +1.3.6.1.2.1.31.1.1.1.18.533|4| +1.3.6.1.2.1.31.1.1.1.18.534|4| +1.3.6.1.2.1.31.1.1.1.18.535|4| +1.3.6.1.2.1.31.1.1.1.18.541|4|lab-er100 +1.3.6.1.2.1.31.1.1.1.18.556|4|lab-er2 +1.3.6.1.2.1.31.1.1.1.18.557|4| +1.3.6.1.2.1.31.1.1.1.18.558|4| +1.3.6.1.2.1.31.1.1.1.18.559|4| +1.3.6.1.2.1.31.1.1.1.18.572|4| +1.3.6.1.2.1.31.1.1.1.18.573|4| +1.3.6.1.2.1.31.1.1.1.18.576|4| +1.3.6.1.2.1.31.1.1.1.18.577|4| +1.3.6.1.2.1.31.1.1.1.18.578|4| +1.3.6.1.2.1.31.1.1.1.18.579|4| +1.3.6.1.2.1.31.1.1.1.18.580|4| +1.3.6.1.2.1.31.1.1.1.18.581|4| +1.3.6.1.2.1.31.1.1.1.18.582|4| +1.3.6.1.2.1.31.1.1.1.18.583|4| +1.3.6.1.2.1.31.1.1.1.18.584|4| +1.3.6.1.2.1.31.1.1.1.18.585|4| +1.3.6.1.2.1.31.1.1.1.18.588|4| +1.3.6.1.2.1.31.1.1.1.18.589|4| +1.3.6.1.2.1.31.1.1.1.18.590|4| +1.3.6.1.2.1.31.1.1.1.18.591|4| +1.3.6.1.2.1.31.1.1.1.18.592|4| +1.3.6.1.2.1.31.1.1.1.18.593|4| +1.3.6.1.2.1.31.1.1.1.18.594|4| +1.3.6.1.2.1.31.1.1.1.18.595|4| +1.3.6.1.2.1.31.1.1.1.18.596|4| +1.3.6.1.2.1.31.1.1.1.18.616|4| +1.3.6.1.2.1.31.1.1.1.18.617|4| +1.3.6.1.2.1.31.1.1.1.19.516|67|0 +1.3.6.1.2.1.31.1.1.1.19.517|67|0 +1.3.6.1.2.1.31.1.1.1.19.518|67|0 +1.3.6.1.2.1.31.1.1.1.19.519|67|0 +1.3.6.1.2.1.31.1.1.1.19.520|67|0 +1.3.6.1.2.1.31.1.1.1.19.521|67|0 +1.3.6.1.2.1.31.1.1.1.19.522|67|0 +1.3.6.1.2.1.31.1.1.1.19.523|67|0 +1.3.6.1.2.1.31.1.1.1.19.524|67|0 +1.3.6.1.2.1.31.1.1.1.19.525|67|0 +1.3.6.1.2.1.31.1.1.1.19.526|67|0 +1.3.6.1.2.1.31.1.1.1.19.527|67|0 +1.3.6.1.2.1.31.1.1.1.19.528|67|0 +1.3.6.1.2.1.31.1.1.1.19.529|67|0 +1.3.6.1.2.1.31.1.1.1.19.530|67|0 +1.3.6.1.2.1.31.1.1.1.19.531|67|0 +1.3.6.1.2.1.31.1.1.1.19.532|67|0 +1.3.6.1.2.1.31.1.1.1.19.533|67|0 +1.3.6.1.2.1.31.1.1.1.19.534|67|0 +1.3.6.1.2.1.31.1.1.1.19.535|67|0 +1.3.6.1.2.1.31.1.1.1.19.541|67|0 +1.3.6.1.2.1.31.1.1.1.19.556|67|0 +1.3.6.1.2.1.31.1.1.1.19.557|67|0 +1.3.6.1.2.1.31.1.1.1.19.558|67|0 +1.3.6.1.2.1.31.1.1.1.19.559|67|0 +1.3.6.1.2.1.31.1.1.1.19.572|67|0 +1.3.6.1.2.1.31.1.1.1.19.573|67|0 +1.3.6.1.2.1.31.1.1.1.19.576|67|0 +1.3.6.1.2.1.31.1.1.1.19.577|67|0 +1.3.6.1.2.1.31.1.1.1.19.578|67|0 +1.3.6.1.2.1.31.1.1.1.19.579|67|0 +1.3.6.1.2.1.31.1.1.1.19.580|67|0 +1.3.6.1.2.1.31.1.1.1.19.581|67|0 +1.3.6.1.2.1.31.1.1.1.19.582|67|0 +1.3.6.1.2.1.31.1.1.1.19.583|67|0 +1.3.6.1.2.1.31.1.1.1.19.584|67|0 +1.3.6.1.2.1.31.1.1.1.19.585|67|0 +1.3.6.1.2.1.31.1.1.1.19.588|67|0 +1.3.6.1.2.1.31.1.1.1.19.589|67|0 +1.3.6.1.2.1.31.1.1.1.19.590|67|0 +1.3.6.1.2.1.31.1.1.1.19.591|67|0 +1.3.6.1.2.1.31.1.1.1.19.592|67|0 +1.3.6.1.2.1.31.1.1.1.19.593|67|0 +1.3.6.1.2.1.31.1.1.1.19.594|67|0 +1.3.6.1.2.1.31.1.1.1.19.595|67|0 +1.3.6.1.2.1.31.1.1.1.19.596|67|0 +1.3.6.1.2.1.31.1.1.1.19.616|67|0 +1.3.6.1.2.1.31.1.1.1.19.617|67|0 +1.3.6.1.2.1.31.1.2.1.3.0.559|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.572|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.573|2|2 +1.3.6.1.2.1.31.1.2.1.3.0.576|2|2 +1.3.6.1.2.1.31.1.2.1.3.0.577|2|2 +1.3.6.1.2.1.31.1.2.1.3.0.578|2|2 +1.3.6.1.2.1.31.1.2.1.3.0.579|2|2 +1.3.6.1.2.1.31.1.2.1.3.0.580|2|2 +1.3.6.1.2.1.31.1.2.1.3.0.581|2|2 +1.3.6.1.2.1.31.1.2.1.3.0.582|2|2 +1.3.6.1.2.1.31.1.2.1.3.0.583|2|2 +1.3.6.1.2.1.31.1.2.1.3.0.584|2|2 +1.3.6.1.2.1.31.1.2.1.3.0.585|2|2 +1.3.6.1.2.1.31.1.2.1.3.0.588|2|2 +1.3.6.1.2.1.31.1.2.1.3.0.589|2|2 +1.3.6.1.2.1.31.1.2.1.3.0.590|2|2 +1.3.6.1.2.1.31.1.2.1.3.0.591|2|2 +1.3.6.1.2.1.31.1.2.1.3.0.592|2|2 +1.3.6.1.2.1.31.1.2.1.3.0.593|2|2 +1.3.6.1.2.1.31.1.2.1.3.0.594|2|2 +1.3.6.1.2.1.31.1.2.1.3.0.595|2|2 +1.3.6.1.2.1.31.1.2.1.3.0.596|2|2 +1.3.6.1.2.1.31.1.2.1.3.0.616|2|2 +1.3.6.1.2.1.31.1.2.1.3.0.617|2|2 +1.3.6.1.2.1.31.1.2.1.3.516.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.517.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.518.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.519.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.520.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.521.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.522.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.523.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.524.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.525.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.526.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.527.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.528.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.529.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.530.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.531.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.532.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.533.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.534.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.535.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.541.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.556.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.557.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.558.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.559.541|2|1 +1.3.6.1.2.1.31.1.2.1.3.572.556|2|1 +1.3.6.1.2.1.31.1.2.1.3.573.557|2|1 +1.3.6.1.2.1.31.1.2.1.3.576.558|2|1 +1.3.6.1.2.1.31.1.2.1.3.577.516|2|1 +1.3.6.1.2.1.31.1.2.1.3.578.517|2|1 +1.3.6.1.2.1.31.1.2.1.3.579.518|2|1 +1.3.6.1.2.1.31.1.2.1.3.580.519|2|1 +1.3.6.1.2.1.31.1.2.1.3.581.520|2|1 +1.3.6.1.2.1.31.1.2.1.3.582.521|2|1 +1.3.6.1.2.1.31.1.2.1.3.583.522|2|1 +1.3.6.1.2.1.31.1.2.1.3.584.523|2|1 +1.3.6.1.2.1.31.1.2.1.3.585.524|2|1 +1.3.6.1.2.1.31.1.2.1.3.588.525|2|1 +1.3.6.1.2.1.31.1.2.1.3.589.527|2|1 +1.3.6.1.2.1.31.1.2.1.3.590.528|2|1 +1.3.6.1.2.1.31.1.2.1.3.591.529|2|1 +1.3.6.1.2.1.31.1.2.1.3.592.530|2|1 +1.3.6.1.2.1.31.1.2.1.3.593.531|2|1 +1.3.6.1.2.1.31.1.2.1.3.594.532|2|1 +1.3.6.1.2.1.31.1.2.1.3.595.533|2|1 +1.3.6.1.2.1.31.1.2.1.3.596.534|2|1 +1.3.6.1.2.1.31.1.2.1.3.616.535|2|1 +1.3.6.1.2.1.31.1.2.1.3.617.526|2|1 +1.3.6.1.2.1.138.1.3.1.0|66|0 +1.3.6.1.2.1.138.1.3.2.1.2.16|2|16 +1.3.6.1.2.1.138.1.3.2.1.2.559|2|559 +1.3.6.1.2.1.138.1.3.2.1.2.572|2|572 +1.3.6.1.2.1.138.1.3.2.1.3.16|2|1 +1.3.6.1.2.1.138.1.3.2.1.3.559|2|1 +1.3.6.1.2.1.138.1.3.2.1.3.572|2|1 +1.3.6.1.2.1.138.1.3.2.1.4.16|2|1 +1.3.6.1.2.1.138.1.3.2.1.4.559|2|1 +1.3.6.1.2.1.138.1.3.2.1.4.572|2|1 +1.3.6.1.2.1.138.1.3.2.1.5.16|2|1 +1.3.6.1.2.1.138.1.3.2.1.5.559|2|2 +1.3.6.1.2.1.138.1.3.2.1.5.572|2|2 +1.3.6.1.2.1.138.1.3.2.1.6.16|2|2 +1.3.6.1.2.1.138.1.3.2.1.6.559|2|2 +1.3.6.1.2.1.138.1.3.2.1.6.572|2|2 +1.3.6.1.2.1.138.1.3.2.1.7.16|2|2 +1.3.6.1.2.1.138.1.3.2.1.7.559|2|2 +1.3.6.1.2.1.138.1.3.2.1.7.572|2|2 +1.3.6.1.2.1.138.1.3.2.1.8.16|2|1 +1.3.6.1.2.1.138.1.3.2.1.8.559|2|2 +1.3.6.1.2.1.138.1.3.2.1.8.572|2|2 +1.3.6.1.2.1.138.1.3.2.1.9.16|2|1 +1.3.6.1.2.1.138.1.3.2.1.9.559|2|1 +1.3.6.1.2.1.138.1.3.2.1.9.572|2|1 +1.3.6.1.2.1.138.1.3.2.1.10.16|66|0 +1.3.6.1.2.1.138.1.3.2.1.10.559|66|0 +1.3.6.1.2.1.138.1.3.2.1.10.572|66|0 +1.3.6.1.2.1.138.1.3.2.1.11.16|2|1 +1.3.6.1.2.1.138.1.3.2.1.11.559|2|1 +1.3.6.1.2.1.138.1.3.2.1.11.572|2|1 +1.3.6.1.2.1.138.1.3.2.1.12.16|67|54347 +1.3.6.1.2.1.138.1.3.2.1.12.559|67|54347 +1.3.6.1.2.1.138.1.3.2.1.12.572|67|54347 +1.3.6.1.2.1.138.1.3.2.1.13.16|2|2 +1.3.6.1.2.1.138.1.3.2.1.13.559|2|1 +1.3.6.1.2.1.138.1.3.2.1.13.572|2|1 +1.3.6.1.2.1.138.1.3.2.1.14.16|66|322 +1.3.6.1.2.1.138.1.3.2.1.14.559|66|335 +1.3.6.1.2.1.138.1.3.2.1.14.572|66|336 +1.3.6.1.2.1.138.1.6.1.1.2.559.1|2|3 +1.3.6.1.2.1.138.1.6.1.1.2.572.2|2|3 +1.3.6.1.2.1.138.1.6.1.1.3.559.1|2|0 +1.3.6.1.2.1.138.1.6.1.1.3.572.2|2|0 +1.3.6.1.2.1.138.1.6.1.1.4.559.1|4x|70617B993018 +1.3.6.1.2.1.138.1.6.1.1.4.572.2|4x|A8D0E555C611 +1.3.6.1.2.1.138.1.6.1.1.5.559.1|2|2 +1.3.6.1.2.1.138.1.6.1.1.5.572.2|2|2 +1.3.6.1.2.1.138.1.6.1.1.6.559.1|4x|010099191255 +1.3.6.1.2.1.138.1.6.1.1.6.572.2|4x|109920400051 +1.3.6.1.2.1.138.1.6.1.1.7.559.1|66|66 +1.3.6.1.2.1.138.1.6.1.1.7.572.2|66|338 +1.3.6.1.2.1.138.1.6.1.1.8.559.1|2|2 +1.3.6.1.2.1.138.1.6.1.1.8.572.2|2|2 +1.3.6.1.2.1.138.1.6.1.1.9.559.1|66|24 +1.3.6.1.2.1.138.1.6.1.1.9.572.2|66|19 +1.3.6.1.2.1.138.1.6.1.1.10.559.1|66|0 +1.3.6.1.2.1.138.1.6.1.1.10.572.2|66|0 +1.3.6.1.2.1.138.1.6.1.1.11.559.1|67|122416782 +1.3.6.1.2.1.138.1.6.1.1.11.572.2|67|120650352 +1.3.6.1.2.1.138.1.6.2.1.2.559.1.1|4x|490001 +1.3.6.1.2.1.138.1.6.2.1.2.572.2.1|4x|490001 +1.3.6.1.2.1.138.1.6.3.1.2.559.1.1|2|1 +1.3.6.1.2.1.138.1.6.3.1.2.572.2.1|2|1 +1.3.6.1.2.1.138.1.6.3.1.3.559.1.1|4x|0A63FCFF +1.3.6.1.2.1.138.1.6.3.1.3.572.2.1|4x|0A63FCFD +1.3.6.1.2.1.138.1.6.4.1.1.559.1.204|2|204 +1.3.6.1.2.1.138.1.6.4.1.1.572.2.142|2|142 +1.3.6.1.2.1.138.1.6.4.1.1.572.2.204|2|204 +1.3.6.1.4.1.2636.3.1.1.0|6|1.3.6.1.4.1.2636.1.1.1.1.90.0 +1.3.6.1.4.1.2636.3.1.2.0|4|Juniper MX5-T Internet Backbone Router +1.3.6.1.4.1.2636.3.1.3.0|4|F8223 +1.3.6.1.4.1.2636.3.1.4.0|4| +1.3.6.1.4.1.2636.3.1.5.0|67|122447300 +1.3.6.1.4.1.2636.3.1.6.1.1.1|2|1 +1.3.6.1.4.1.2636.3.1.6.1.1.2|2|2 +1.3.6.1.4.1.2636.3.1.6.1.1.4|2|4 +1.3.6.1.4.1.2636.3.1.6.1.1.6|2|6 +1.3.6.1.4.1.2636.3.1.6.1.1.7|2|7 +1.3.6.1.4.1.2636.3.1.6.1.1.8|2|8 +1.3.6.1.4.1.2636.3.1.6.1.1.9|2|9 +1.3.6.1.4.1.2636.3.1.6.1.1.10|2|10 +1.3.6.1.4.1.2636.3.1.6.1.1.12|2|12 +1.3.6.1.4.1.2636.3.1.6.1.1.20|2|20 +1.3.6.1.4.1.2636.3.1.6.1.2.1|2|1 +1.3.6.1.4.1.2636.3.1.6.1.2.2|2|2 +1.3.6.1.4.1.2636.3.1.6.1.2.4|2|3 +1.3.6.1.4.1.2636.3.1.6.1.2.6|2|1 +1.3.6.1.4.1.2636.3.1.6.1.2.7|2|1 +1.3.6.1.4.1.2636.3.1.6.1.2.8|2|1 +1.3.6.1.4.1.2636.3.1.6.1.2.9|2|1 +1.3.6.1.4.1.2636.3.1.6.1.2.10|2|1 +1.3.6.1.4.1.2636.3.1.6.1.2.12|2|1 +1.3.6.1.4.1.2636.3.1.6.1.2.20|2|1 +1.3.6.1.4.1.2636.3.1.6.1.3.1|2|0 +1.3.6.1.4.1.2636.3.1.6.1.3.2|2|1 +1.3.6.1.4.1.2636.3.1.6.1.3.4|2|1 +1.3.6.1.4.1.2636.3.1.6.1.3.6|2|1 +1.3.6.1.4.1.2636.3.1.6.1.3.7|2|1 +1.3.6.1.4.1.2636.3.1.6.1.3.8|2|2 +1.3.6.1.4.1.2636.3.1.6.1.3.9|2|1 +1.3.6.1.4.1.2636.3.1.6.1.3.10|2|1 +1.3.6.1.4.1.2636.3.1.6.1.3.12|2|1 +1.3.6.1.4.1.2636.3.1.6.1.3.20|2|2 +1.3.6.1.4.1.2636.3.1.6.1.4.1|2|0 +1.3.6.1.4.1.2636.3.1.6.1.4.2|2|1 +1.3.6.1.4.1.2636.3.1.6.1.4.4|2|1 +1.3.6.1.4.1.2636.3.1.6.1.4.6|2|1 +1.3.6.1.4.1.2636.3.1.6.1.4.7|2|1 +1.3.6.1.4.1.2636.3.1.6.1.4.8|2|7 +1.3.6.1.4.1.2636.3.1.6.1.4.9|2|1 +1.3.6.1.4.1.2636.3.1.6.1.4.10|2|1 +1.3.6.1.4.1.2636.3.1.6.1.4.12|2|1 +1.3.6.1.4.1.2636.3.1.6.1.4.20|2|7 +1.3.6.1.4.1.2636.3.1.6.1.5.1|6|1.3.6.1.4.1.2636.1.1.2.1.90.0 +1.3.6.1.4.1.2636.3.1.6.1.5.2|6|1.3.6.1.4.1.2636.1.1.2.2.90.4.0 +1.3.6.1.4.1.2636.3.1.6.1.5.4|6|1.3.6.1.4.1.2636.1.1.2.2.90.5.0 +1.3.6.1.4.1.2636.3.1.6.1.5.6|6|1.3.6.1.4.1.2636.1.1.2.2.90.2.0 +1.3.6.1.4.1.2636.3.1.6.1.5.7|6|1.3.6.1.4.1.2636.1.1.2.2.90.1.0 +1.3.6.1.4.1.2636.3.1.6.1.5.8|6|1.3.6.1.4.1.2636.1.1.2.3.90.1.0 +1.3.6.1.4.1.2636.3.1.6.1.5.9|6|1.3.6.1.4.1.2636.1.1.2.2.90.3.0 +1.3.6.1.4.1.2636.3.1.6.1.5.10|6|0.0 +1.3.6.1.4.1.2636.3.1.6.1.5.12|6|0.0 +1.3.6.1.4.1.2636.3.1.6.1.5.20|6|1.3.6.1.4.1.2636.1.1.2.3.90.2.0 +1.3.6.1.4.1.2636.3.1.6.1.6.1|4|chassis frame +1.3.6.1.4.1.2636.3.1.6.1.6.2|4|PEM slot +1.3.6.1.4.1.2636.3.1.6.1.6.4|4|FAN slot +1.3.6.1.4.1.2636.3.1.6.1.6.6|4|TFEB slot +1.3.6.1.4.1.2636.3.1.6.1.6.7|4|FPC slot +1.3.6.1.4.1.2636.3.1.6.1.6.8|4|PIC slot +1.3.6.1.4.1.2636.3.1.6.1.6.9|4|Routing Engine slot +1.3.6.1.4.1.2636.3.1.6.1.6.10|4|FPM slot +1.3.6.1.4.1.2636.3.1.6.1.6.12|4|CB slot +1.3.6.1.4.1.2636.3.1.6.1.6.20|4|MIC slot +1.3.6.1.4.1.2636.3.1.6.1.7.1|2|1 +1.3.6.1.4.1.2636.3.1.6.1.7.2|2|2 +1.3.6.1.4.1.2636.3.1.6.1.7.4|2|1 +1.3.6.1.4.1.2636.3.1.6.1.7.6|2|1 +1.3.6.1.4.1.2636.3.1.6.1.7.7|2|2 +1.3.6.1.4.1.2636.3.1.6.1.7.8|2|8 +1.3.6.1.4.1.2636.3.1.6.1.7.9|2|1 +1.3.6.1.4.1.2636.3.1.6.1.7.10|2|0 +1.3.6.1.4.1.2636.3.1.6.1.7.12|2|0 +1.3.6.1.4.1.2636.3.1.6.1.7.20|2|6 +1.3.6.1.4.1.2636.3.1.8.1.1.1.1.0.0|2|1 +1.3.6.1.4.1.2636.3.1.8.1.1.2.1.0.0|2|2 +1.3.6.1.4.1.2636.3.1.8.1.1.4.1.0.0|2|4 +1.3.6.1.4.1.2636.3.1.8.1.1.4.1.1.0|2|4 +1.3.6.1.4.1.2636.3.1.8.1.1.4.1.2.0|2|4 +1.3.6.1.4.1.2636.3.1.8.1.1.4.1.3.0|2|4 +1.3.6.1.4.1.2636.3.1.8.1.1.4.1.4.0|2|4 +1.3.6.1.4.1.2636.3.1.8.1.1.4.1.5.0|2|4 +1.3.6.1.4.1.2636.3.1.8.1.1.6.1.0.0|2|6 +1.3.6.1.4.1.2636.3.1.8.1.1.6.1.1.0|2|6 +1.3.6.1.4.1.2636.3.1.8.1.1.7.1.0.0|2|7 +1.3.6.1.4.1.2636.3.1.8.1.1.7.2.0.0|2|7 +1.3.6.1.4.1.2636.3.1.8.1.1.8.1.1.0|2|8 +1.3.6.1.4.1.2636.3.1.8.1.1.8.2.1.0|2|8 +1.3.6.1.4.1.2636.3.1.8.1.1.8.2.2.0|2|8 +1.3.6.1.4.1.2636.3.1.8.1.1.9.1.0.0|2|9 +1.3.6.1.4.1.2636.3.1.8.1.1.10.1.0.0|2|10 +1.3.6.1.4.1.2636.3.1.8.1.1.10.1.1.0|2|10 +1.3.6.1.4.1.2636.3.1.8.1.1.10.1.2.0|2|10 +1.3.6.1.4.1.2636.3.1.8.1.1.10.1.3.0|2|10 +1.3.6.1.4.1.2636.3.1.8.1.1.10.1.4.0|2|10 +1.3.6.1.4.1.2636.3.1.8.1.1.10.1.5.0|2|10 +1.3.6.1.4.1.2636.3.1.8.1.1.20.1.1.0|2|20 +1.3.6.1.4.1.2636.3.1.8.1.1.20.2.1.0|2|20 +1.3.6.1.4.1.2636.3.1.8.1.2.1.1.0.0|2|1 +1.3.6.1.4.1.2636.3.1.8.1.2.2.1.0.0|2|1 +1.3.6.1.4.1.2636.3.1.8.1.2.4.1.0.0|2|1 +1.3.6.1.4.1.2636.3.1.8.1.2.4.1.1.0|2|1 +1.3.6.1.4.1.2636.3.1.8.1.2.4.1.2.0|2|1 +1.3.6.1.4.1.2636.3.1.8.1.2.4.1.3.0|2|1 +1.3.6.1.4.1.2636.3.1.8.1.2.4.1.4.0|2|1 +1.3.6.1.4.1.2636.3.1.8.1.2.4.1.5.0|2|1 +1.3.6.1.4.1.2636.3.1.8.1.2.6.1.0.0|2|1 +1.3.6.1.4.1.2636.3.1.8.1.2.6.1.1.0|2|1 +1.3.6.1.4.1.2636.3.1.8.1.2.7.1.0.0|2|1 +1.3.6.1.4.1.2636.3.1.8.1.2.7.2.0.0|2|2 +1.3.6.1.4.1.2636.3.1.8.1.2.8.1.1.0|2|1 +1.3.6.1.4.1.2636.3.1.8.1.2.8.2.1.0|2|2 +1.3.6.1.4.1.2636.3.1.8.1.2.8.2.2.0|2|2 +1.3.6.1.4.1.2636.3.1.8.1.2.9.1.0.0|2|1 +1.3.6.1.4.1.2636.3.1.8.1.2.10.1.0.0|2|1 +1.3.6.1.4.1.2636.3.1.8.1.2.10.1.1.0|2|1 +1.3.6.1.4.1.2636.3.1.8.1.2.10.1.2.0|2|1 +1.3.6.1.4.1.2636.3.1.8.1.2.10.1.3.0|2|1 +1.3.6.1.4.1.2636.3.1.8.1.2.10.1.4.0|2|1 +1.3.6.1.4.1.2636.3.1.8.1.2.10.1.5.0|2|1 +1.3.6.1.4.1.2636.3.1.8.1.2.20.1.1.0|2|1 +1.3.6.1.4.1.2636.3.1.8.1.2.20.2.1.0|2|2 +1.3.6.1.4.1.2636.3.1.8.1.3.1.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.8.1.3.2.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.8.1.3.4.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.8.1.3.4.1.1.0|2|1 +1.3.6.1.4.1.2636.3.1.8.1.3.4.1.2.0|2|2 +1.3.6.1.4.1.2636.3.1.8.1.3.4.1.3.0|2|3 +1.3.6.1.4.1.2636.3.1.8.1.3.4.1.4.0|2|4 +1.3.6.1.4.1.2636.3.1.8.1.3.4.1.5.0|2|5 +1.3.6.1.4.1.2636.3.1.8.1.3.6.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.8.1.3.6.1.1.0|2|1 +1.3.6.1.4.1.2636.3.1.8.1.3.7.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.8.1.3.7.2.0.0|2|0 +1.3.6.1.4.1.2636.3.1.8.1.3.8.1.1.0|2|1 +1.3.6.1.4.1.2636.3.1.8.1.3.8.2.1.0|2|1 +1.3.6.1.4.1.2636.3.1.8.1.3.8.2.2.0|2|2 +1.3.6.1.4.1.2636.3.1.8.1.3.9.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.8.1.3.10.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.8.1.3.10.1.1.0|2|1 +1.3.6.1.4.1.2636.3.1.8.1.3.10.1.2.0|2|2 +1.3.6.1.4.1.2636.3.1.8.1.3.10.1.3.0|2|3 +1.3.6.1.4.1.2636.3.1.8.1.3.10.1.4.0|2|4 +1.3.6.1.4.1.2636.3.1.8.1.3.10.1.5.0|2|5 +1.3.6.1.4.1.2636.3.1.8.1.3.20.1.1.0|2|1 +1.3.6.1.4.1.2636.3.1.8.1.3.20.2.1.0|2|1 +1.3.6.1.4.1.2636.3.1.8.1.4.1.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.8.1.4.2.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.8.1.4.4.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.8.1.4.4.1.1.0|2|0 +1.3.6.1.4.1.2636.3.1.8.1.4.4.1.2.0|2|0 +1.3.6.1.4.1.2636.3.1.8.1.4.4.1.3.0|2|0 +1.3.6.1.4.1.2636.3.1.8.1.4.4.1.4.0|2|0 +1.3.6.1.4.1.2636.3.1.8.1.4.4.1.5.0|2|0 +1.3.6.1.4.1.2636.3.1.8.1.4.6.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.8.1.4.6.1.1.0|2|0 +1.3.6.1.4.1.2636.3.1.8.1.4.7.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.8.1.4.7.2.0.0|2|0 +1.3.6.1.4.1.2636.3.1.8.1.4.8.1.1.0|2|0 +1.3.6.1.4.1.2636.3.1.8.1.4.8.2.1.0|2|0 +1.3.6.1.4.1.2636.3.1.8.1.4.8.2.2.0|2|0 +1.3.6.1.4.1.2636.3.1.8.1.4.9.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.8.1.4.10.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.8.1.4.10.1.1.0|2|0 +1.3.6.1.4.1.2636.3.1.8.1.4.10.1.2.0|2|0 +1.3.6.1.4.1.2636.3.1.8.1.4.10.1.3.0|2|0 +1.3.6.1.4.1.2636.3.1.8.1.4.10.1.4.0|2|0 +1.3.6.1.4.1.2636.3.1.8.1.4.10.1.5.0|2|0 +1.3.6.1.4.1.2636.3.1.8.1.4.20.1.1.0|2|0 +1.3.6.1.4.1.2636.3.1.8.1.4.20.2.1.0|2|0 +1.3.6.1.4.1.2636.3.1.8.1.5.1.1.0.0|6|1.3.6.1.4.1.2636.1.1.3.1.90 +1.3.6.1.4.1.2636.3.1.8.1.5.2.1.0.0|6|1.3.6.1.4.1.2636.1.1.3.2.12.4 +1.3.6.1.4.1.2636.3.1.8.1.5.4.1.0.0|6|1.3.6.1.4.1.2636.1.1.3.2.12.5 +1.3.6.1.4.1.2636.3.1.8.1.5.4.1.1.0|6|1.3.6.1.4.1.2636.1.1.3.2.12.5 +1.3.6.1.4.1.2636.3.1.8.1.5.4.1.2.0|6|1.3.6.1.4.1.2636.1.1.3.2.12.5 +1.3.6.1.4.1.2636.3.1.8.1.5.4.1.3.0|6|1.3.6.1.4.1.2636.1.1.3.2.12.5 +1.3.6.1.4.1.2636.3.1.8.1.5.4.1.4.0|6|1.3.6.1.4.1.2636.1.1.3.2.12.5 +1.3.6.1.4.1.2636.3.1.8.1.5.4.1.5.0|6|1.3.6.1.4.1.2636.1.1.3.2.12.5 +1.3.6.1.4.1.2636.3.1.8.1.5.6.1.0.0|6|1.3.6.1.4.1.2636.1.1.3.2.90.2.0 +1.3.6.1.4.1.2636.3.1.8.1.5.6.1.1.0|6|1.3.6.1.4.1.2636.1.1.3.2.90.2.0 +1.3.6.1.4.1.2636.3.1.8.1.5.7.1.0.0|6|1.3.6.1.4.1.2636.1.1.3.2.12.1 +1.3.6.1.4.1.2636.3.1.8.1.5.7.2.0.0|6|1.3.6.1.4.1.2636.1.1.3.2.12.1 +1.3.6.1.4.1.2636.3.1.8.1.5.8.1.1.0|6|1.3.6.1.4.1.2636.1.1.3.3.12.1.202 +1.3.6.1.4.1.2636.3.1.8.1.5.8.2.1.0|6|1.3.6.1.4.1.2636.1.1.3.3.12.1.185 +1.3.6.1.4.1.2636.3.1.8.1.5.8.2.2.0|6|1.3.6.1.4.1.2636.1.1.3.3.12.1.185 +1.3.6.1.4.1.2636.3.1.8.1.5.9.1.0.0|6|1.3.6.1.4.1.2636.1.1.3.2.90.3 +1.3.6.1.4.1.2636.3.1.8.1.5.10.1.0.0|6|0.0 +1.3.6.1.4.1.2636.3.1.8.1.5.10.1.1.0|6|0.0 +1.3.6.1.4.1.2636.3.1.8.1.5.10.1.2.0|6|0.0 +1.3.6.1.4.1.2636.3.1.8.1.5.10.1.3.0|6|0.0 +1.3.6.1.4.1.2636.3.1.8.1.5.10.1.4.0|6|0.0 +1.3.6.1.4.1.2636.3.1.8.1.5.10.1.5.0|6|0.0 +1.3.6.1.4.1.2636.3.1.8.1.5.20.1.1.0|6|1.3.6.1.4.1.2636.1.1.3.3.12.1.202 +1.3.6.1.4.1.2636.3.1.8.1.5.20.2.1.0|6|1.3.6.1.4.1.2636.1.1.3.3.12.1.180 +1.3.6.1.4.1.2636.3.1.8.1.6.1.1.0.0|4|midplane +1.3.6.1.4.1.2636.3.1.8.1.6.2.1.0.0|4|PEM 0 +1.3.6.1.4.1.2636.3.1.8.1.6.4.1.0.0|4|Fan Tray +1.3.6.1.4.1.2636.3.1.8.1.6.4.1.1.0|4|Fan 1 +1.3.6.1.4.1.2636.3.1.8.1.6.4.1.2.0|4|Fan 2 +1.3.6.1.4.1.2636.3.1.8.1.6.4.1.3.0|4|Fan 3 +1.3.6.1.4.1.2636.3.1.8.1.6.4.1.4.0|4|Fan 4 +1.3.6.1.4.1.2636.3.1.8.1.6.4.1.5.0|4|Fan 5 +1.3.6.1.4.1.2636.3.1.8.1.6.6.1.0.0|4|TFEB MX5-T +1.3.6.1.4.1.2636.3.1.8.1.6.6.1.1.0|4|TFEB Intake temperature sensor +1.3.6.1.4.1.2636.3.1.8.1.6.7.1.0.0|4|FPC: MPC BUILTIN @ 0/*/* +1.3.6.1.4.1.2636.3.1.8.1.6.7.2.0.0|4|FPC: MPC BUILTIN @ 1/*/* +1.3.6.1.4.1.2636.3.1.8.1.6.8.1.1.0|4|PIC: 4x 10GE XFP @ 0/0/* +1.3.6.1.4.1.2636.3.1.8.1.6.8.2.1.0|4|PIC: 10x 1GE(LAN) SFP @ 1/0/* +1.3.6.1.4.1.2636.3.1.8.1.6.8.2.2.0|4|PIC: 10x 1GE(LAN) SFP @ 1/1/* +1.3.6.1.4.1.2636.3.1.8.1.6.9.1.0.0|4|Routing Engine +1.3.6.1.4.1.2636.3.1.8.1.6.10.1.0.0|4|FPM +1.3.6.1.4.1.2636.3.1.8.1.6.10.1.1.0|4|FPM Board +1.3.6.1.4.1.2636.3.1.8.1.6.10.1.2.0|4|FPM Display +1.3.6.1.4.1.2636.3.1.8.1.6.10.1.3.0|4|FPM +1.3.6.1.4.1.2636.3.1.8.1.6.10.1.4.0|4|FPM +1.3.6.1.4.1.2636.3.1.8.1.6.10.1.5.0|4|FPM +1.3.6.1.4.1.2636.3.1.8.1.6.20.1.1.0|4|MIC: 4x 10GE XFP @ 0/0/* +1.3.6.1.4.1.2636.3.1.8.1.6.20.2.1.0|4|MIC: 3D 20x 1GE(LAN) SFP @ 1/0/* +1.3.6.1.4.1.2636.3.1.8.1.7.1.1.0.0|4|S/N CAAG0822 +1.3.6.1.4.1.2636.3.1.8.1.7.2.1.0.0|4|S/N WC03229 +1.3.6.1.4.1.2636.3.1.8.1.7.4.1.0.0|4| +1.3.6.1.4.1.2636.3.1.8.1.7.4.1.1.0|4| +1.3.6.1.4.1.2636.3.1.8.1.7.4.1.2.0|4| +1.3.6.1.4.1.2636.3.1.8.1.7.4.1.3.0|4| +1.3.6.1.4.1.2636.3.1.8.1.7.4.1.4.0|4| +1.3.6.1.4.1.2636.3.1.8.1.7.4.1.5.0|4| +1.3.6.1.4.1.2636.3.1.8.1.7.6.1.0.0|4|BUILTIN +1.3.6.1.4.1.2636.3.1.8.1.7.6.1.1.0|4|BUILTIN +1.3.6.1.4.1.2636.3.1.8.1.7.7.1.0.0|4| +1.3.6.1.4.1.2636.3.1.8.1.7.7.2.0.0|4| +1.3.6.1.4.1.2636.3.1.8.1.7.8.1.1.0|4|BUILTIN +1.3.6.1.4.1.2636.3.1.8.1.7.8.2.1.0|4|BUILTIN +1.3.6.1.4.1.2636.3.1.8.1.7.8.2.2.0|4|BUILTIN +1.3.6.1.4.1.2636.3.1.8.1.7.9.1.0.0|4| +1.3.6.1.4.1.2636.3.1.8.1.7.10.1.0.0|4| +1.3.6.1.4.1.2636.3.1.8.1.7.10.1.1.0|4| +1.3.6.1.4.1.2636.3.1.8.1.7.10.1.2.0|4| +1.3.6.1.4.1.2636.3.1.8.1.7.10.1.3.0|4| +1.3.6.1.4.1.2636.3.1.8.1.7.10.1.4.0|4| +1.3.6.1.4.1.2636.3.1.8.1.7.10.1.5.0|4| +1.3.6.1.4.1.2636.3.1.8.1.7.20.1.1.0|4|BUILTIN +1.3.6.1.4.1.2636.3.1.8.1.7.20.2.1.0|4|S/N CAAG5167 +1.3.6.1.4.1.2636.3.1.8.1.8.1.1.0.0|4|REV 08 +1.3.6.1.4.1.2636.3.1.8.1.8.2.1.0.0|4|Rev 04 +1.3.6.1.4.1.2636.3.1.8.1.8.4.1.0.0|4| +1.3.6.1.4.1.2636.3.1.8.1.8.4.1.1.0|4| +1.3.6.1.4.1.2636.3.1.8.1.8.4.1.2.0|4| +1.3.6.1.4.1.2636.3.1.8.1.8.4.1.3.0|4| +1.3.6.1.4.1.2636.3.1.8.1.8.4.1.4.0|4| +1.3.6.1.4.1.2636.3.1.8.1.8.4.1.5.0|4| +1.3.6.1.4.1.2636.3.1.8.1.8.6.1.0.0|4|REV 08 +1.3.6.1.4.1.2636.3.1.8.1.8.6.1.1.0|4|REV 08 +1.3.6.1.4.1.2636.3.1.8.1.8.7.1.0.0|4| +1.3.6.1.4.1.2636.3.1.8.1.8.7.2.0.0|4| +1.3.6.1.4.1.2636.3.1.8.1.8.8.1.1.0|4| +1.3.6.1.4.1.2636.3.1.8.1.8.8.2.1.0|4|REV 26 +1.3.6.1.4.1.2636.3.1.8.1.8.8.2.2.0|4|REV 26 +1.3.6.1.4.1.2636.3.1.8.1.8.9.1.0.0|4| +1.3.6.1.4.1.2636.3.1.8.1.8.10.1.0.0|4| +1.3.6.1.4.1.2636.3.1.8.1.8.10.1.1.0|4| +1.3.6.1.4.1.2636.3.1.8.1.8.10.1.2.0|4| +1.3.6.1.4.1.2636.3.1.8.1.8.10.1.3.0|4| +1.3.6.1.4.1.2636.3.1.8.1.8.10.1.4.0|4| +1.3.6.1.4.1.2636.3.1.8.1.8.10.1.5.0|4| +1.3.6.1.4.1.2636.3.1.8.1.8.20.1.1.0|4| +1.3.6.1.4.1.2636.3.1.8.1.8.20.2.1.0|4|REV 26 +1.3.6.1.4.1.2636.3.1.8.1.9.1.1.0.0|67|0 +1.3.6.1.4.1.2636.3.1.8.1.9.2.1.0.0|67|0 +1.3.6.1.4.1.2636.3.1.8.1.9.4.1.0.0|67|0 +1.3.6.1.4.1.2636.3.1.8.1.9.4.1.1.0|67|0 +1.3.6.1.4.1.2636.3.1.8.1.9.4.1.2.0|67|0 +1.3.6.1.4.1.2636.3.1.8.1.9.4.1.3.0|67|0 +1.3.6.1.4.1.2636.3.1.8.1.9.4.1.4.0|67|0 +1.3.6.1.4.1.2636.3.1.8.1.9.4.1.5.0|67|0 +1.3.6.1.4.1.2636.3.1.8.1.9.6.1.0.0|67|0 +1.3.6.1.4.1.2636.3.1.8.1.9.6.1.1.0|67|0 +1.3.6.1.4.1.2636.3.1.8.1.9.7.1.0.0|67|8392 +1.3.6.1.4.1.2636.3.1.8.1.9.7.2.0.0|67|8419 +1.3.6.1.4.1.2636.3.1.8.1.9.8.1.1.0|67|9081 +1.3.6.1.4.1.2636.3.1.8.1.9.8.2.1.0|67|9587 +1.3.6.1.4.1.2636.3.1.8.1.9.8.2.2.0|67|9609 +1.3.6.1.4.1.2636.3.1.8.1.9.9.1.0.0|67|0 +1.3.6.1.4.1.2636.3.1.8.1.9.10.1.0.0|67|0 +1.3.6.1.4.1.2636.3.1.8.1.9.10.1.1.0|67|0 +1.3.6.1.4.1.2636.3.1.8.1.9.10.1.2.0|67|0 +1.3.6.1.4.1.2636.3.1.8.1.9.10.1.3.0|67|0 +1.3.6.1.4.1.2636.3.1.8.1.9.10.1.4.0|67|0 +1.3.6.1.4.1.2636.3.1.8.1.9.10.1.5.0|67|0 +1.3.6.1.4.1.2636.3.1.8.1.9.20.1.1.0|67|9118 +1.3.6.1.4.1.2636.3.1.8.1.9.20.2.1.0|67|9630 +1.3.6.1.4.1.2636.3.1.8.1.10.1.1.0.0|4|711-038215 +1.3.6.1.4.1.2636.3.1.8.1.10.2.1.0.0|4|740-028288 +1.3.6.1.4.1.2636.3.1.8.1.10.4.1.0.0|4| +1.3.6.1.4.1.2636.3.1.8.1.10.4.1.1.0|4| +1.3.6.1.4.1.2636.3.1.8.1.10.4.1.2.0|4| +1.3.6.1.4.1.2636.3.1.8.1.10.4.1.3.0|4| +1.3.6.1.4.1.2636.3.1.8.1.10.4.1.4.0|4| +1.3.6.1.4.1.2636.3.1.8.1.10.4.1.5.0|4| +1.3.6.1.4.1.2636.3.1.8.1.10.6.1.0.0|4|BUILTIN +1.3.6.1.4.1.2636.3.1.8.1.10.6.1.1.0|4|BUILTIN +1.3.6.1.4.1.2636.3.1.8.1.10.7.1.0.0|4| +1.3.6.1.4.1.2636.3.1.8.1.10.7.2.0.0|4| +1.3.6.1.4.1.2636.3.1.8.1.10.8.1.1.0|4|BUILTIN +1.3.6.1.4.1.2636.3.1.8.1.10.8.2.1.0|4|BUILTIN +1.3.6.1.4.1.2636.3.1.8.1.10.8.2.2.0|4|BUILTIN +1.3.6.1.4.1.2636.3.1.8.1.10.9.1.0.0|4| +1.3.6.1.4.1.2636.3.1.8.1.10.10.1.0.0|4| +1.3.6.1.4.1.2636.3.1.8.1.10.10.1.1.0|4| +1.3.6.1.4.1.2636.3.1.8.1.10.10.1.2.0|4| +1.3.6.1.4.1.2636.3.1.8.1.10.10.1.3.0|4| +1.3.6.1.4.1.2636.3.1.8.1.10.10.1.4.0|4| +1.3.6.1.4.1.2636.3.1.8.1.10.10.1.5.0|4| +1.3.6.1.4.1.2636.3.1.8.1.10.20.1.1.0|4|BUILTIN +1.3.6.1.4.1.2636.3.1.8.1.10.20.2.1.0|4|750-028392 +1.3.6.1.4.1.2636.3.1.8.1.11.1.1.0.0|2|2 +1.3.6.1.4.1.2636.3.1.8.1.11.2.1.0.0|2|2 +1.3.6.1.4.1.2636.3.1.8.1.11.4.1.0.0|2|2 +1.3.6.1.4.1.2636.3.1.8.1.11.4.1.1.0|2|2 +1.3.6.1.4.1.2636.3.1.8.1.11.4.1.2.0|2|2 +1.3.6.1.4.1.2636.3.1.8.1.11.4.1.3.0|2|2 +1.3.6.1.4.1.2636.3.1.8.1.11.4.1.4.0|2|2 +1.3.6.1.4.1.2636.3.1.8.1.11.4.1.5.0|2|2 +1.3.6.1.4.1.2636.3.1.8.1.11.6.1.0.0|2|2 +1.3.6.1.4.1.2636.3.1.8.1.11.6.1.1.0|2|2 +1.3.6.1.4.1.2636.3.1.8.1.11.7.1.0.0|2|2 +1.3.6.1.4.1.2636.3.1.8.1.11.7.2.0.0|2|2 +1.3.6.1.4.1.2636.3.1.8.1.11.8.1.1.0|2|2 +1.3.6.1.4.1.2636.3.1.8.1.11.8.2.1.0|2|2 +1.3.6.1.4.1.2636.3.1.8.1.11.8.2.2.0|2|2 +1.3.6.1.4.1.2636.3.1.8.1.11.9.1.0.0|2|2 +1.3.6.1.4.1.2636.3.1.8.1.11.10.1.0.0|2|2 +1.3.6.1.4.1.2636.3.1.8.1.11.10.1.1.0|2|2 +1.3.6.1.4.1.2636.3.1.8.1.11.10.1.2.0|2|2 +1.3.6.1.4.1.2636.3.1.8.1.11.10.1.3.0|2|2 +1.3.6.1.4.1.2636.3.1.8.1.11.10.1.4.0|2|2 +1.3.6.1.4.1.2636.3.1.8.1.11.10.1.5.0|2|2 +1.3.6.1.4.1.2636.3.1.8.1.11.20.1.1.0|2|2 +1.3.6.1.4.1.2636.3.1.8.1.11.20.2.1.0|2|2 +1.3.6.1.4.1.2636.3.1.8.1.12.1.1.0.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.8.1.12.2.1.0.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.8.1.12.4.1.0.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.8.1.12.4.1.1.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.8.1.12.4.1.2.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.8.1.12.4.1.3.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.8.1.12.4.1.4.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.8.1.12.4.1.5.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.8.1.12.6.1.0.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.8.1.12.6.1.1.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.8.1.12.7.1.0.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.8.1.12.7.2.0.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.8.1.12.8.1.1.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.8.1.12.8.2.1.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.8.1.12.8.2.2.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.8.1.12.9.1.0.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.8.1.12.10.1.0.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.8.1.12.10.1.1.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.8.1.12.10.1.2.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.8.1.12.10.1.3.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.8.1.12.10.1.4.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.8.1.12.10.1.5.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.8.1.12.20.1.1.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.8.1.12.20.2.1.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.8.1.13.1.1.0.0|4|IPMUA00ARA +1.3.6.1.4.1.2636.3.1.8.1.13.2.1.0.0|4|COUPAFAEAA +1.3.6.1.4.1.2636.3.1.8.1.13.4.1.0.0|4| +1.3.6.1.4.1.2636.3.1.8.1.13.4.1.1.0|4| +1.3.6.1.4.1.2636.3.1.8.1.13.4.1.2.0|4| +1.3.6.1.4.1.2636.3.1.8.1.13.4.1.3.0|4| +1.3.6.1.4.1.2636.3.1.8.1.13.4.1.4.0|4| +1.3.6.1.4.1.2636.3.1.8.1.13.4.1.5.0|4| +1.3.6.1.4.1.2636.3.1.8.1.13.6.1.0.0|4|IPMUA00ARA +1.3.6.1.4.1.2636.3.1.8.1.13.6.1.1.0|4|IPMUA00ARA +1.3.6.1.4.1.2636.3.1.8.1.13.7.1.0.0|4| +1.3.6.1.4.1.2636.3.1.8.1.13.7.2.0.0|4| +1.3.6.1.4.1.2636.3.1.8.1.13.8.1.1.0|4| +1.3.6.1.4.1.2636.3.1.8.1.13.8.2.1.0|4|COUIA15BAA +1.3.6.1.4.1.2636.3.1.8.1.13.8.2.2.0|4|COUIA15BAA +1.3.6.1.4.1.2636.3.1.8.1.13.9.1.0.0|4| +1.3.6.1.4.1.2636.3.1.8.1.13.10.1.0.0|4| +1.3.6.1.4.1.2636.3.1.8.1.13.10.1.1.0|4| +1.3.6.1.4.1.2636.3.1.8.1.13.10.1.2.0|4| +1.3.6.1.4.1.2636.3.1.8.1.13.10.1.3.0|4| +1.3.6.1.4.1.2636.3.1.8.1.13.10.1.4.0|4| +1.3.6.1.4.1.2636.3.1.8.1.13.10.1.5.0|4| +1.3.6.1.4.1.2636.3.1.8.1.13.20.1.1.0|4| +1.3.6.1.4.1.2636.3.1.8.1.13.20.2.1.0|4|COUIA15BAA +1.3.6.1.4.1.2636.3.1.8.1.14.1.1.0.0|4|CHAS-MX5-T-S +1.3.6.1.4.1.2636.3.1.8.1.14.2.1.0.0|4|PWR-MX80-AC-S +1.3.6.1.4.1.2636.3.1.8.1.14.4.1.0.0|4| +1.3.6.1.4.1.2636.3.1.8.1.14.4.1.1.0|4| +1.3.6.1.4.1.2636.3.1.8.1.14.4.1.2.0|4| +1.3.6.1.4.1.2636.3.1.8.1.14.4.1.3.0|4| +1.3.6.1.4.1.2636.3.1.8.1.14.4.1.4.0|4| +1.3.6.1.4.1.2636.3.1.8.1.14.4.1.5.0|4| +1.3.6.1.4.1.2636.3.1.8.1.14.6.1.0.0|4|CHAS-MX5-T-S +1.3.6.1.4.1.2636.3.1.8.1.14.6.1.1.0|4|CHAS-MX5-T-S +1.3.6.1.4.1.2636.3.1.8.1.14.7.1.0.0|4| +1.3.6.1.4.1.2636.3.1.8.1.14.7.2.0.0|4| +1.3.6.1.4.1.2636.3.1.8.1.14.8.1.1.0|4| +1.3.6.1.4.1.2636.3.1.8.1.14.8.2.1.0|4|MIC-3D-20GE-SFP +1.3.6.1.4.1.2636.3.1.8.1.14.8.2.2.0|4|MIC-3D-20GE-SFP +1.3.6.1.4.1.2636.3.1.8.1.14.9.1.0.0|4| +1.3.6.1.4.1.2636.3.1.8.1.14.10.1.0.0|4| +1.3.6.1.4.1.2636.3.1.8.1.14.10.1.1.0|4| +1.3.6.1.4.1.2636.3.1.8.1.14.10.1.2.0|4| +1.3.6.1.4.1.2636.3.1.8.1.14.10.1.3.0|4| +1.3.6.1.4.1.2636.3.1.8.1.14.10.1.4.0|4| +1.3.6.1.4.1.2636.3.1.8.1.14.10.1.5.0|4| +1.3.6.1.4.1.2636.3.1.8.1.14.20.1.1.0|4| +1.3.6.1.4.1.2636.3.1.8.1.14.20.2.1.0|4|MIC-3D-20GE-SFP +1.3.6.1.4.1.2636.3.1.9.0|67|0 +1.3.6.1.4.1.2636.3.1.10.1.1.3.1.1.0.0|2|3 +1.3.6.1.4.1.2636.3.1.10.1.1.3.2.1.0.0|2|3 +1.3.6.1.4.1.2636.3.1.10.1.1.3.2.2.0.0|2|3 +1.3.6.1.4.1.2636.3.1.10.1.1.3.4.1.0.0|2|3 +1.3.6.1.4.1.2636.3.1.10.1.1.3.7.1.0.0|2|3 +1.3.6.1.4.1.2636.3.1.10.1.1.3.7.2.0.0|2|3 +1.3.6.1.4.1.2636.3.1.10.1.1.3.8.1.1.0|2|3 +1.3.6.1.4.1.2636.3.1.10.1.1.3.8.1.2.0|2|3 +1.3.6.1.4.1.2636.3.1.10.1.1.3.8.1.3.0|2|3 +1.3.6.1.4.1.2636.3.1.10.1.1.3.8.1.4.0|2|3 +1.3.6.1.4.1.2636.3.1.10.1.1.3.8.1.5.0|2|3 +1.3.6.1.4.1.2636.3.1.10.1.1.3.8.1.6.0|2|3 +1.3.6.1.4.1.2636.3.1.10.1.1.3.8.1.7.0|2|3 +1.3.6.1.4.1.2636.3.1.10.1.1.3.8.1.8.0|2|3 +1.3.6.1.4.1.2636.3.1.10.1.1.3.8.2.1.0|2|3 +1.3.6.1.4.1.2636.3.1.10.1.1.3.8.2.2.0|2|3 +1.3.6.1.4.1.2636.3.1.10.1.1.3.8.2.3.0|2|3 +1.3.6.1.4.1.2636.3.1.10.1.1.3.8.2.4.0|2|3 +1.3.6.1.4.1.2636.3.1.10.1.1.3.8.2.5.0|2|3 +1.3.6.1.4.1.2636.3.1.10.1.1.3.8.2.6.0|2|3 +1.3.6.1.4.1.2636.3.1.10.1.1.3.8.2.7.0|2|3 +1.3.6.1.4.1.2636.3.1.10.1.1.3.8.2.8.0|2|3 +1.3.6.1.4.1.2636.3.1.10.1.1.3.9.1.0.0|2|3 +1.3.6.1.4.1.2636.3.1.10.1.1.3.10.1.0.0|2|3 +1.3.6.1.4.1.2636.3.1.10.1.1.3.10.1.1.0|2|3 +1.3.6.1.4.1.2636.3.1.10.1.1.3.10.1.2.0|2|3 +1.3.6.1.4.1.2636.3.1.10.1.1.3.10.1.3.0|2|3 +1.3.6.1.4.1.2636.3.1.10.1.1.3.10.1.4.0|2|3 +1.3.6.1.4.1.2636.3.1.10.1.1.3.10.1.5.0|2|3 +1.3.6.1.4.1.2636.3.1.10.1.1.3.12.0.0.0|2|3 +1.3.6.1.4.1.2636.3.1.10.1.2.3.1.1.0.0|2|1 +1.3.6.1.4.1.2636.3.1.10.1.2.3.2.1.0.0|2|2 +1.3.6.1.4.1.2636.3.1.10.1.2.3.2.2.0.0|2|2 +1.3.6.1.4.1.2636.3.1.10.1.2.3.4.1.0.0|2|4 +1.3.6.1.4.1.2636.3.1.10.1.2.3.7.1.0.0|2|7 +1.3.6.1.4.1.2636.3.1.10.1.2.3.7.2.0.0|2|7 +1.3.6.1.4.1.2636.3.1.10.1.2.3.8.1.1.0|2|8 +1.3.6.1.4.1.2636.3.1.10.1.2.3.8.1.2.0|2|8 +1.3.6.1.4.1.2636.3.1.10.1.2.3.8.1.3.0|2|8 +1.3.6.1.4.1.2636.3.1.10.1.2.3.8.1.4.0|2|8 +1.3.6.1.4.1.2636.3.1.10.1.2.3.8.1.5.0|2|8 +1.3.6.1.4.1.2636.3.1.10.1.2.3.8.1.6.0|2|8 +1.3.6.1.4.1.2636.3.1.10.1.2.3.8.1.7.0|2|8 +1.3.6.1.4.1.2636.3.1.10.1.2.3.8.1.8.0|2|8 +1.3.6.1.4.1.2636.3.1.10.1.2.3.8.2.1.0|2|8 +1.3.6.1.4.1.2636.3.1.10.1.2.3.8.2.2.0|2|8 +1.3.6.1.4.1.2636.3.1.10.1.2.3.8.2.3.0|2|8 +1.3.6.1.4.1.2636.3.1.10.1.2.3.8.2.4.0|2|8 +1.3.6.1.4.1.2636.3.1.10.1.2.3.8.2.5.0|2|8 +1.3.6.1.4.1.2636.3.1.10.1.2.3.8.2.6.0|2|8 +1.3.6.1.4.1.2636.3.1.10.1.2.3.8.2.7.0|2|8 +1.3.6.1.4.1.2636.3.1.10.1.2.3.8.2.8.0|2|8 +1.3.6.1.4.1.2636.3.1.10.1.2.3.9.1.0.0|2|9 +1.3.6.1.4.1.2636.3.1.10.1.2.3.10.1.0.0|2|10 +1.3.6.1.4.1.2636.3.1.10.1.2.3.10.1.1.0|2|10 +1.3.6.1.4.1.2636.3.1.10.1.2.3.10.1.2.0|2|10 +1.3.6.1.4.1.2636.3.1.10.1.2.3.10.1.3.0|2|10 +1.3.6.1.4.1.2636.3.1.10.1.2.3.10.1.4.0|2|10 +1.3.6.1.4.1.2636.3.1.10.1.2.3.10.1.5.0|2|10 +1.3.6.1.4.1.2636.3.1.10.1.2.3.12.0.0.0|2|12 +1.3.6.1.4.1.2636.3.1.10.1.3.3.1.1.0.0|2|1 +1.3.6.1.4.1.2636.3.1.10.1.3.3.2.1.0.0|2|1 +1.3.6.1.4.1.2636.3.1.10.1.3.3.2.2.0.0|2|2 +1.3.6.1.4.1.2636.3.1.10.1.3.3.4.1.0.0|2|1 +1.3.6.1.4.1.2636.3.1.10.1.3.3.7.1.0.0|2|1 +1.3.6.1.4.1.2636.3.1.10.1.3.3.7.2.0.0|2|2 +1.3.6.1.4.1.2636.3.1.10.1.3.3.8.1.1.0|2|1 +1.3.6.1.4.1.2636.3.1.10.1.3.3.8.1.2.0|2|1 +1.3.6.1.4.1.2636.3.1.10.1.3.3.8.1.3.0|2|1 +1.3.6.1.4.1.2636.3.1.10.1.3.3.8.1.4.0|2|1 +1.3.6.1.4.1.2636.3.1.10.1.3.3.8.1.5.0|2|1 +1.3.6.1.4.1.2636.3.1.10.1.3.3.8.1.6.0|2|1 +1.3.6.1.4.1.2636.3.1.10.1.3.3.8.1.7.0|2|1 +1.3.6.1.4.1.2636.3.1.10.1.3.3.8.1.8.0|2|1 +1.3.6.1.4.1.2636.3.1.10.1.3.3.8.2.1.0|2|2 +1.3.6.1.4.1.2636.3.1.10.1.3.3.8.2.2.0|2|2 +1.3.6.1.4.1.2636.3.1.10.1.3.3.8.2.3.0|2|2 +1.3.6.1.4.1.2636.3.1.10.1.3.3.8.2.4.0|2|2 +1.3.6.1.4.1.2636.3.1.10.1.3.3.8.2.5.0|2|2 +1.3.6.1.4.1.2636.3.1.10.1.3.3.8.2.6.0|2|2 +1.3.6.1.4.1.2636.3.1.10.1.3.3.8.2.7.0|2|2 +1.3.6.1.4.1.2636.3.1.10.1.3.3.8.2.8.0|2|2 +1.3.6.1.4.1.2636.3.1.10.1.3.3.9.1.0.0|2|1 +1.3.6.1.4.1.2636.3.1.10.1.3.3.10.1.0.0|2|1 +1.3.6.1.4.1.2636.3.1.10.1.3.3.10.1.1.0|2|1 +1.3.6.1.4.1.2636.3.1.10.1.3.3.10.1.2.0|2|1 +1.3.6.1.4.1.2636.3.1.10.1.3.3.10.1.3.0|2|1 +1.3.6.1.4.1.2636.3.1.10.1.3.3.10.1.4.0|2|1 +1.3.6.1.4.1.2636.3.1.10.1.3.3.10.1.5.0|2|1 +1.3.6.1.4.1.2636.3.1.10.1.3.3.12.0.0.0|2|0 +1.3.6.1.4.1.2636.3.1.10.1.4.3.1.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.10.1.4.3.2.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.10.1.4.3.2.2.0.0|2|0 +1.3.6.1.4.1.2636.3.1.10.1.4.3.4.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.10.1.4.3.7.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.10.1.4.3.7.2.0.0|2|0 +1.3.6.1.4.1.2636.3.1.10.1.4.3.8.1.1.0|2|1 +1.3.6.1.4.1.2636.3.1.10.1.4.3.8.1.2.0|2|2 +1.3.6.1.4.1.2636.3.1.10.1.4.3.8.1.3.0|2|3 +1.3.6.1.4.1.2636.3.1.10.1.4.3.8.1.4.0|2|4 +1.3.6.1.4.1.2636.3.1.10.1.4.3.8.1.5.0|2|5 +1.3.6.1.4.1.2636.3.1.10.1.4.3.8.1.6.0|2|6 +1.3.6.1.4.1.2636.3.1.10.1.4.3.8.1.7.0|2|7 +1.3.6.1.4.1.2636.3.1.10.1.4.3.8.1.8.0|2|8 +1.3.6.1.4.1.2636.3.1.10.1.4.3.8.2.1.0|2|1 +1.3.6.1.4.1.2636.3.1.10.1.4.3.8.2.2.0|2|2 +1.3.6.1.4.1.2636.3.1.10.1.4.3.8.2.3.0|2|3 +1.3.6.1.4.1.2636.3.1.10.1.4.3.8.2.4.0|2|4 +1.3.6.1.4.1.2636.3.1.10.1.4.3.8.2.5.0|2|5 +1.3.6.1.4.1.2636.3.1.10.1.4.3.8.2.6.0|2|6 +1.3.6.1.4.1.2636.3.1.10.1.4.3.8.2.7.0|2|7 +1.3.6.1.4.1.2636.3.1.10.1.4.3.8.2.8.0|2|8 +1.3.6.1.4.1.2636.3.1.10.1.4.3.9.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.10.1.4.3.10.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.10.1.4.3.10.1.1.0|2|1 +1.3.6.1.4.1.2636.3.1.10.1.4.3.10.1.2.0|2|2 +1.3.6.1.4.1.2636.3.1.10.1.4.3.10.1.3.0|2|3 +1.3.6.1.4.1.2636.3.1.10.1.4.3.10.1.4.0|2|4 +1.3.6.1.4.1.2636.3.1.10.1.4.3.10.1.5.0|2|5 +1.3.6.1.4.1.2636.3.1.10.1.4.3.12.0.0.0|2|0 +1.3.6.1.4.1.2636.3.1.10.1.5.3.1.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.10.1.5.3.2.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.10.1.5.3.2.2.0.0|2|0 +1.3.6.1.4.1.2636.3.1.10.1.5.3.4.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.10.1.5.3.7.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.10.1.5.3.7.2.0.0|2|0 +1.3.6.1.4.1.2636.3.1.10.1.5.3.8.1.1.0|2|0 +1.3.6.1.4.1.2636.3.1.10.1.5.3.8.1.2.0|2|0 +1.3.6.1.4.1.2636.3.1.10.1.5.3.8.1.3.0|2|0 +1.3.6.1.4.1.2636.3.1.10.1.5.3.8.1.4.0|2|0 +1.3.6.1.4.1.2636.3.1.10.1.5.3.8.1.5.0|2|0 +1.3.6.1.4.1.2636.3.1.10.1.5.3.8.1.6.0|2|0 +1.3.6.1.4.1.2636.3.1.10.1.5.3.8.1.7.0|2|0 +1.3.6.1.4.1.2636.3.1.10.1.5.3.8.1.8.0|2|0 +1.3.6.1.4.1.2636.3.1.10.1.5.3.8.2.1.0|2|0 +1.3.6.1.4.1.2636.3.1.10.1.5.3.8.2.2.0|2|0 +1.3.6.1.4.1.2636.3.1.10.1.5.3.8.2.3.0|2|0 +1.3.6.1.4.1.2636.3.1.10.1.5.3.8.2.4.0|2|0 +1.3.6.1.4.1.2636.3.1.10.1.5.3.8.2.5.0|2|0 +1.3.6.1.4.1.2636.3.1.10.1.5.3.8.2.6.0|2|0 +1.3.6.1.4.1.2636.3.1.10.1.5.3.8.2.7.0|2|0 +1.3.6.1.4.1.2636.3.1.10.1.5.3.8.2.8.0|2|0 +1.3.6.1.4.1.2636.3.1.10.1.5.3.9.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.10.1.5.3.10.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.10.1.5.3.10.1.1.0|2|0 +1.3.6.1.4.1.2636.3.1.10.1.5.3.10.1.2.0|2|0 +1.3.6.1.4.1.2636.3.1.10.1.5.3.10.1.3.0|2|0 +1.3.6.1.4.1.2636.3.1.10.1.5.3.10.1.4.0|2|0 +1.3.6.1.4.1.2636.3.1.10.1.5.3.10.1.5.0|2|0 +1.3.6.1.4.1.2636.3.1.10.1.5.3.12.0.0.0|2|0 +1.3.6.1.4.1.2636.3.1.10.1.6.3.1.1.0.0|6|0.0 +1.3.6.1.4.1.2636.3.1.10.1.6.3.2.1.0.0|6|0.0 +1.3.6.1.4.1.2636.3.1.10.1.6.3.2.2.0.0|6|0.0 +1.3.6.1.4.1.2636.3.1.10.1.6.3.4.1.0.0|6|0.0 +1.3.6.1.4.1.2636.3.1.10.1.6.3.7.1.0.0|6|0.0 +1.3.6.1.4.1.2636.3.1.10.1.6.3.7.2.0.0|6|0.0 +1.3.6.1.4.1.2636.3.1.10.1.6.3.8.1.1.0|6|0.0 +1.3.6.1.4.1.2636.3.1.10.1.6.3.8.1.2.0|6|0.0 +1.3.6.1.4.1.2636.3.1.10.1.6.3.8.1.3.0|6|0.0 +1.3.6.1.4.1.2636.3.1.10.1.6.3.8.1.4.0|6|0.0 +1.3.6.1.4.1.2636.3.1.10.1.6.3.8.1.5.0|6|0.0 +1.3.6.1.4.1.2636.3.1.10.1.6.3.8.1.6.0|6|0.0 +1.3.6.1.4.1.2636.3.1.10.1.6.3.8.1.7.0|6|0.0 +1.3.6.1.4.1.2636.3.1.10.1.6.3.8.1.8.0|6|0.0 +1.3.6.1.4.1.2636.3.1.10.1.6.3.8.2.1.0|6|0.0 +1.3.6.1.4.1.2636.3.1.10.1.6.3.8.2.2.0|6|0.0 +1.3.6.1.4.1.2636.3.1.10.1.6.3.8.2.3.0|6|0.0 +1.3.6.1.4.1.2636.3.1.10.1.6.3.8.2.4.0|6|0.0 +1.3.6.1.4.1.2636.3.1.10.1.6.3.8.2.5.0|6|0.0 +1.3.6.1.4.1.2636.3.1.10.1.6.3.8.2.6.0|6|0.0 +1.3.6.1.4.1.2636.3.1.10.1.6.3.8.2.7.0|6|0.0 +1.3.6.1.4.1.2636.3.1.10.1.6.3.8.2.8.0|6|0.0 +1.3.6.1.4.1.2636.3.1.10.1.6.3.9.1.0.0|6|0.0 +1.3.6.1.4.1.2636.3.1.10.1.6.3.10.1.0.0|6|0.0 +1.3.6.1.4.1.2636.3.1.10.1.6.3.10.1.1.0|6|0.0 +1.3.6.1.4.1.2636.3.1.10.1.6.3.10.1.2.0|6|0.0 +1.3.6.1.4.1.2636.3.1.10.1.6.3.10.1.3.0|6|0.0 +1.3.6.1.4.1.2636.3.1.10.1.6.3.10.1.4.0|6|0.0 +1.3.6.1.4.1.2636.3.1.10.1.6.3.10.1.5.0|6|0.0 +1.3.6.1.4.1.2636.3.1.10.1.6.3.12.0.0.0|6|0.0 +1.3.6.1.4.1.2636.3.1.10.1.7.3.1.1.0.0|4|chassis alarm LED +1.3.6.1.4.1.2636.3.1.10.1.7.3.2.1.0.0|4|PEM 0 LED +1.3.6.1.4.1.2636.3.1.10.1.7.3.2.2.0.0|4|PEM 1 LED +1.3.6.1.4.1.2636.3.1.10.1.7.3.4.1.0.0|4|FAN 0 LED +1.3.6.1.4.1.2636.3.1.10.1.7.3.7.1.0.0|4|FPC slot 0 LED +1.3.6.1.4.1.2636.3.1.10.1.7.3.7.2.0.0|4|FPC slot 1 LED +1.3.6.1.4.1.2636.3.1.10.1.7.3.8.1.1.0|4|FPC slot 0 PIC slot 0 Status LED +1.3.6.1.4.1.2636.3.1.10.1.7.3.8.1.2.0|4| +1.3.6.1.4.1.2636.3.1.10.1.7.3.8.1.3.0|4|FPC slot 0 PIC slot 1 Status LED +1.3.6.1.4.1.2636.3.1.10.1.7.3.8.1.4.0|4| +1.3.6.1.4.1.2636.3.1.10.1.7.3.8.1.5.0|4| +1.3.6.1.4.1.2636.3.1.10.1.7.3.8.1.6.0|4| +1.3.6.1.4.1.2636.3.1.10.1.7.3.8.1.7.0|4| +1.3.6.1.4.1.2636.3.1.10.1.7.3.8.1.8.0|4| +1.3.6.1.4.1.2636.3.1.10.1.7.3.8.2.1.0|4|FPC slot 1 PIC slot 0 Status LED +1.3.6.1.4.1.2636.3.1.10.1.7.3.8.2.2.0|4| +1.3.6.1.4.1.2636.3.1.10.1.7.3.8.2.3.0|4|FPC slot 1 PIC slot 1 Status LED +1.3.6.1.4.1.2636.3.1.10.1.7.3.8.2.4.0|4| +1.3.6.1.4.1.2636.3.1.10.1.7.3.8.2.5.0|4| +1.3.6.1.4.1.2636.3.1.10.1.7.3.8.2.6.0|4| +1.3.6.1.4.1.2636.3.1.10.1.7.3.8.2.7.0|4| +1.3.6.1.4.1.2636.3.1.10.1.7.3.8.2.8.0|4| +1.3.6.1.4.1.2636.3.1.10.1.7.3.9.1.0.0|4|Routing Engine slot 0 Online LED +1.3.6.1.4.1.2636.3.1.10.1.7.3.10.1.0.0|4|FPM Major Alarm LED +1.3.6.1.4.1.2636.3.1.10.1.7.3.10.1.1.0|4|FPM Minor Alarm LED +1.3.6.1.4.1.2636.3.1.10.1.7.3.10.1.2.0|4|FPM SYS OK LED +1.3.6.1.4.1.2636.3.1.10.1.7.3.10.1.3.0|4|FPM Ethernet Link LED +1.3.6.1.4.1.2636.3.1.10.1.7.3.10.1.4.0|4|FPM External A LED +1.3.6.1.4.1.2636.3.1.10.1.7.3.10.1.5.0|4|FPM External B LED +1.3.6.1.4.1.2636.3.1.10.1.7.3.12.0.0.0|4|CB slot -1 LED +1.3.6.1.4.1.2636.3.1.10.1.8.3.1.1.0.0|2|4 +1.3.6.1.4.1.2636.3.1.10.1.8.3.2.1.0.0|2|2 +1.3.6.1.4.1.2636.3.1.10.1.8.3.2.2.0.0|2|1 +1.3.6.1.4.1.2636.3.1.10.1.8.3.4.1.0.0|2|1 +1.3.6.1.4.1.2636.3.1.10.1.8.3.7.1.0.0|2|2 +1.3.6.1.4.1.2636.3.1.10.1.8.3.7.2.0.0|2|2 +1.3.6.1.4.1.2636.3.1.10.1.8.3.8.1.1.0|2|2 +1.3.6.1.4.1.2636.3.1.10.1.8.3.8.1.2.0|2|2 +1.3.6.1.4.1.2636.3.1.10.1.8.3.8.1.3.0|2|1 +1.3.6.1.4.1.2636.3.1.10.1.8.3.8.1.4.0|2|1 +1.3.6.1.4.1.2636.3.1.10.1.8.3.8.1.5.0|2|1 +1.3.6.1.4.1.2636.3.1.10.1.8.3.8.1.6.0|2|1 +1.3.6.1.4.1.2636.3.1.10.1.8.3.8.1.7.0|2|1 +1.3.6.1.4.1.2636.3.1.10.1.8.3.8.1.8.0|2|1 +1.3.6.1.4.1.2636.3.1.10.1.8.3.8.2.1.0|2|2 +1.3.6.1.4.1.2636.3.1.10.1.8.3.8.2.2.0|2|2 +1.3.6.1.4.1.2636.3.1.10.1.8.3.8.2.3.0|2|1 +1.3.6.1.4.1.2636.3.1.10.1.8.3.8.2.4.0|2|1 +1.3.6.1.4.1.2636.3.1.10.1.8.3.8.2.5.0|2|1 +1.3.6.1.4.1.2636.3.1.10.1.8.3.8.2.6.0|2|1 +1.3.6.1.4.1.2636.3.1.10.1.8.3.8.2.7.0|2|1 +1.3.6.1.4.1.2636.3.1.10.1.8.3.8.2.8.0|2|1 +1.3.6.1.4.1.2636.3.1.10.1.8.3.9.1.0.0|2|7 +1.3.6.1.4.1.2636.3.1.10.1.8.3.10.1.0.0|2|4 +1.3.6.1.4.1.2636.3.1.10.1.8.3.10.1.1.0|2|7 +1.3.6.1.4.1.2636.3.1.10.1.8.3.10.1.2.0|2|2 +1.3.6.1.4.1.2636.3.1.10.1.8.3.10.1.3.0|2|1 +1.3.6.1.4.1.2636.3.1.10.1.8.3.10.1.4.0|2|1 +1.3.6.1.4.1.2636.3.1.10.1.8.3.10.1.5.0|2|1 +1.3.6.1.4.1.2636.3.1.10.1.8.3.12.0.0.0|2|2 +1.3.6.1.4.1.2636.3.1.10.1.9.3.1.1.0.0|2|5 +1.3.6.1.4.1.2636.3.1.10.1.9.3.2.1.0.0|2|2 +1.3.6.1.4.1.2636.3.1.10.1.9.3.2.2.0.0|2|6 +1.3.6.1.4.1.2636.3.1.10.1.9.3.4.1.0.0|2|6 +1.3.6.1.4.1.2636.3.1.10.1.9.3.7.1.0.0|2|2 +1.3.6.1.4.1.2636.3.1.10.1.9.3.7.2.0.0|2|2 +1.3.6.1.4.1.2636.3.1.10.1.9.3.8.1.1.0|2|2 +1.3.6.1.4.1.2636.3.1.10.1.9.3.8.1.2.0|2|2 +1.3.6.1.4.1.2636.3.1.10.1.9.3.8.1.3.0|2|6 +1.3.6.1.4.1.2636.3.1.10.1.9.3.8.1.4.0|2|6 +1.3.6.1.4.1.2636.3.1.10.1.9.3.8.1.5.0|2|6 +1.3.6.1.4.1.2636.3.1.10.1.9.3.8.1.6.0|2|6 +1.3.6.1.4.1.2636.3.1.10.1.9.3.8.1.7.0|2|6 +1.3.6.1.4.1.2636.3.1.10.1.9.3.8.1.8.0|2|6 +1.3.6.1.4.1.2636.3.1.10.1.9.3.8.2.1.0|2|2 +1.3.6.1.4.1.2636.3.1.10.1.9.3.8.2.2.0|2|2 +1.3.6.1.4.1.2636.3.1.10.1.9.3.8.2.3.0|2|6 +1.3.6.1.4.1.2636.3.1.10.1.9.3.8.2.4.0|2|6 +1.3.6.1.4.1.2636.3.1.10.1.9.3.8.2.5.0|2|6 +1.3.6.1.4.1.2636.3.1.10.1.9.3.8.2.6.0|2|6 +1.3.6.1.4.1.2636.3.1.10.1.9.3.8.2.7.0|2|6 +1.3.6.1.4.1.2636.3.1.10.1.9.3.8.2.8.0|2|6 +1.3.6.1.4.1.2636.3.1.10.1.9.3.9.1.0.0|2|7 +1.3.6.1.4.1.2636.3.1.10.1.9.3.10.1.0.0|2|5 +1.3.6.1.4.1.2636.3.1.10.1.9.3.10.1.1.0|2|7 +1.3.6.1.4.1.2636.3.1.10.1.9.3.10.1.2.0|2|2 +1.3.6.1.4.1.2636.3.1.10.1.9.3.10.1.3.0|2|6 +1.3.6.1.4.1.2636.3.1.10.1.9.3.10.1.4.0|2|6 +1.3.6.1.4.1.2636.3.1.10.1.9.3.10.1.5.0|2|6 +1.3.6.1.4.1.2636.3.1.10.1.9.3.12.0.0.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.1.1.1.0.0|2|1 +1.3.6.1.4.1.2636.3.1.12.1.1.2.1.0.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.1.2.2.0.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.1.4.1.0.0|2|4 +1.3.6.1.4.1.2636.3.1.12.1.1.4.1.1.0|2|4 +1.3.6.1.4.1.2636.3.1.12.1.1.4.1.2.0|2|4 +1.3.6.1.4.1.2636.3.1.12.1.1.4.1.3.0|2|4 +1.3.6.1.4.1.2636.3.1.12.1.1.4.1.4.0|2|4 +1.3.6.1.4.1.2636.3.1.12.1.1.4.1.5.0|2|4 +1.3.6.1.4.1.2636.3.1.12.1.1.6.1.0.0|2|6 +1.3.6.1.4.1.2636.3.1.12.1.1.6.1.1.0|2|6 +1.3.6.1.4.1.2636.3.1.12.1.1.7.1.0.0|2|7 +1.3.6.1.4.1.2636.3.1.12.1.1.7.2.0.0|2|7 +1.3.6.1.4.1.2636.3.1.12.1.1.8.1.1.0|2|8 +1.3.6.1.4.1.2636.3.1.12.1.1.8.1.2.0|2|8 +1.3.6.1.4.1.2636.3.1.12.1.1.8.1.3.0|2|8 +1.3.6.1.4.1.2636.3.1.12.1.1.8.1.4.0|2|8 +1.3.6.1.4.1.2636.3.1.12.1.1.8.1.5.0|2|8 +1.3.6.1.4.1.2636.3.1.12.1.1.8.1.6.0|2|8 +1.3.6.1.4.1.2636.3.1.12.1.1.8.1.7.0|2|8 +1.3.6.1.4.1.2636.3.1.12.1.1.8.1.8.0|2|8 +1.3.6.1.4.1.2636.3.1.12.1.1.8.2.1.0|2|8 +1.3.6.1.4.1.2636.3.1.12.1.1.8.2.2.0|2|8 +1.3.6.1.4.1.2636.3.1.12.1.1.8.2.3.0|2|8 +1.3.6.1.4.1.2636.3.1.12.1.1.8.2.4.0|2|8 +1.3.6.1.4.1.2636.3.1.12.1.1.8.2.5.0|2|8 +1.3.6.1.4.1.2636.3.1.12.1.1.8.2.6.0|2|8 +1.3.6.1.4.1.2636.3.1.12.1.1.8.2.7.0|2|8 +1.3.6.1.4.1.2636.3.1.12.1.1.8.2.8.0|2|8 +1.3.6.1.4.1.2636.3.1.12.1.1.9.1.0.0|2|9 +1.3.6.1.4.1.2636.3.1.12.1.1.10.1.0.0|2|10 +1.3.6.1.4.1.2636.3.1.12.1.1.10.1.1.0|2|10 +1.3.6.1.4.1.2636.3.1.12.1.1.10.1.2.0|2|10 +1.3.6.1.4.1.2636.3.1.12.1.1.10.1.3.0|2|10 +1.3.6.1.4.1.2636.3.1.12.1.1.10.1.4.0|2|10 +1.3.6.1.4.1.2636.3.1.12.1.1.10.1.5.0|2|10 +1.3.6.1.4.1.2636.3.1.12.1.1.12.0.0.0|2|12 +1.3.6.1.4.1.2636.3.1.12.1.1.20.1.1.0|2|20 +1.3.6.1.4.1.2636.3.1.12.1.1.20.1.2.0|2|20 +1.3.6.1.4.1.2636.3.1.12.1.1.20.1.3.0|2|20 +1.3.6.1.4.1.2636.3.1.12.1.1.20.1.4.0|2|20 +1.3.6.1.4.1.2636.3.1.12.1.1.20.1.5.0|2|20 +1.3.6.1.4.1.2636.3.1.12.1.1.20.1.6.0|2|20 +1.3.6.1.4.1.2636.3.1.12.1.1.20.2.1.0|2|20 +1.3.6.1.4.1.2636.3.1.12.1.1.20.2.2.0|2|20 +1.3.6.1.4.1.2636.3.1.12.1.1.20.2.3.0|2|20 +1.3.6.1.4.1.2636.3.1.12.1.1.20.2.4.0|2|20 +1.3.6.1.4.1.2636.3.1.12.1.1.20.2.5.0|2|20 +1.3.6.1.4.1.2636.3.1.12.1.1.20.2.6.0|2|20 +1.3.6.1.4.1.2636.3.1.12.1.2.1.1.0.0|2|1 +1.3.6.1.4.1.2636.3.1.12.1.2.2.1.0.0|2|1 +1.3.6.1.4.1.2636.3.1.12.1.2.2.2.0.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.2.4.1.0.0|2|1 +1.3.6.1.4.1.2636.3.1.12.1.2.4.1.1.0|2|1 +1.3.6.1.4.1.2636.3.1.12.1.2.4.1.2.0|2|1 +1.3.6.1.4.1.2636.3.1.12.1.2.4.1.3.0|2|1 +1.3.6.1.4.1.2636.3.1.12.1.2.4.1.4.0|2|1 +1.3.6.1.4.1.2636.3.1.12.1.2.4.1.5.0|2|1 +1.3.6.1.4.1.2636.3.1.12.1.2.6.1.0.0|2|1 +1.3.6.1.4.1.2636.3.1.12.1.2.6.1.1.0|2|1 +1.3.6.1.4.1.2636.3.1.12.1.2.7.1.0.0|2|1 +1.3.6.1.4.1.2636.3.1.12.1.2.7.2.0.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.2.8.1.1.0|2|1 +1.3.6.1.4.1.2636.3.1.12.1.2.8.1.2.0|2|1 +1.3.6.1.4.1.2636.3.1.12.1.2.8.1.3.0|2|1 +1.3.6.1.4.1.2636.3.1.12.1.2.8.1.4.0|2|1 +1.3.6.1.4.1.2636.3.1.12.1.2.8.1.5.0|2|1 +1.3.6.1.4.1.2636.3.1.12.1.2.8.1.6.0|2|1 +1.3.6.1.4.1.2636.3.1.12.1.2.8.1.7.0|2|1 +1.3.6.1.4.1.2636.3.1.12.1.2.8.1.8.0|2|1 +1.3.6.1.4.1.2636.3.1.12.1.2.8.2.1.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.2.8.2.2.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.2.8.2.3.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.2.8.2.4.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.2.8.2.5.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.2.8.2.6.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.2.8.2.7.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.2.8.2.8.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.2.9.1.0.0|2|1 +1.3.6.1.4.1.2636.3.1.12.1.2.10.1.0.0|2|1 +1.3.6.1.4.1.2636.3.1.12.1.2.10.1.1.0|2|1 +1.3.6.1.4.1.2636.3.1.12.1.2.10.1.2.0|2|1 +1.3.6.1.4.1.2636.3.1.12.1.2.10.1.3.0|2|1 +1.3.6.1.4.1.2636.3.1.12.1.2.10.1.4.0|2|1 +1.3.6.1.4.1.2636.3.1.12.1.2.10.1.5.0|2|1 +1.3.6.1.4.1.2636.3.1.12.1.2.12.0.0.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.2.20.1.1.0|2|1 +1.3.6.1.4.1.2636.3.1.12.1.2.20.1.2.0|2|1 +1.3.6.1.4.1.2636.3.1.12.1.2.20.1.3.0|2|1 +1.3.6.1.4.1.2636.3.1.12.1.2.20.1.4.0|2|1 +1.3.6.1.4.1.2636.3.1.12.1.2.20.1.5.0|2|1 +1.3.6.1.4.1.2636.3.1.12.1.2.20.1.6.0|2|1 +1.3.6.1.4.1.2636.3.1.12.1.2.20.2.1.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.2.20.2.2.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.2.20.2.3.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.2.20.2.4.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.2.20.2.5.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.2.20.2.6.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.3.1.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.3.2.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.3.2.2.0.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.3.4.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.3.4.1.1.0|2|1 +1.3.6.1.4.1.2636.3.1.12.1.3.4.1.2.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.3.4.1.3.0|2|3 +1.3.6.1.4.1.2636.3.1.12.1.3.4.1.4.0|2|4 +1.3.6.1.4.1.2636.3.1.12.1.3.4.1.5.0|2|5 +1.3.6.1.4.1.2636.3.1.12.1.3.6.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.3.6.1.1.0|2|1 +1.3.6.1.4.1.2636.3.1.12.1.3.7.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.3.7.2.0.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.3.8.1.1.0|2|1 +1.3.6.1.4.1.2636.3.1.12.1.3.8.1.2.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.3.8.1.3.0|2|3 +1.3.6.1.4.1.2636.3.1.12.1.3.8.1.4.0|2|4 +1.3.6.1.4.1.2636.3.1.12.1.3.8.1.5.0|2|5 +1.3.6.1.4.1.2636.3.1.12.1.3.8.1.6.0|2|6 +1.3.6.1.4.1.2636.3.1.12.1.3.8.1.7.0|2|7 +1.3.6.1.4.1.2636.3.1.12.1.3.8.1.8.0|2|8 +1.3.6.1.4.1.2636.3.1.12.1.3.8.2.1.0|2|1 +1.3.6.1.4.1.2636.3.1.12.1.3.8.2.2.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.3.8.2.3.0|2|3 +1.3.6.1.4.1.2636.3.1.12.1.3.8.2.4.0|2|4 +1.3.6.1.4.1.2636.3.1.12.1.3.8.2.5.0|2|5 +1.3.6.1.4.1.2636.3.1.12.1.3.8.2.6.0|2|6 +1.3.6.1.4.1.2636.3.1.12.1.3.8.2.7.0|2|7 +1.3.6.1.4.1.2636.3.1.12.1.3.8.2.8.0|2|8 +1.3.6.1.4.1.2636.3.1.12.1.3.9.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.3.10.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.3.10.1.1.0|2|1 +1.3.6.1.4.1.2636.3.1.12.1.3.10.1.2.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.3.10.1.3.0|2|3 +1.3.6.1.4.1.2636.3.1.12.1.3.10.1.4.0|2|4 +1.3.6.1.4.1.2636.3.1.12.1.3.10.1.5.0|2|5 +1.3.6.1.4.1.2636.3.1.12.1.3.12.0.0.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.3.20.1.1.0|2|1 +1.3.6.1.4.1.2636.3.1.12.1.3.20.1.2.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.3.20.1.3.0|2|3 +1.3.6.1.4.1.2636.3.1.12.1.3.20.1.4.0|2|4 +1.3.6.1.4.1.2636.3.1.12.1.3.20.1.5.0|2|5 +1.3.6.1.4.1.2636.3.1.12.1.3.20.1.6.0|2|6 +1.3.6.1.4.1.2636.3.1.12.1.3.20.2.1.0|2|1 +1.3.6.1.4.1.2636.3.1.12.1.3.20.2.2.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.3.20.2.3.0|2|3 +1.3.6.1.4.1.2636.3.1.12.1.3.20.2.4.0|2|4 +1.3.6.1.4.1.2636.3.1.12.1.3.20.2.5.0|2|5 +1.3.6.1.4.1.2636.3.1.12.1.3.20.2.6.0|2|6 +1.3.6.1.4.1.2636.3.1.12.1.4.1.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.2.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.2.2.0.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.4.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.4.1.1.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.4.1.2.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.4.1.3.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.4.1.4.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.4.1.5.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.6.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.6.1.1.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.7.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.7.2.0.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.8.1.1.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.8.1.2.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.8.1.3.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.8.1.4.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.8.1.5.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.8.1.6.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.8.1.7.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.8.1.8.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.8.2.1.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.8.2.2.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.8.2.3.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.8.2.4.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.8.2.5.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.8.2.6.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.8.2.7.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.8.2.8.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.9.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.10.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.10.1.1.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.10.1.2.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.10.1.3.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.10.1.4.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.10.1.5.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.12.0.0.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.20.1.1.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.20.1.2.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.20.1.3.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.20.1.4.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.20.1.5.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.20.1.6.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.20.2.1.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.20.2.2.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.20.2.3.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.20.2.4.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.20.2.5.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.20.2.6.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.5.1.1.0.0|4|chassis frame +1.3.6.1.4.1.2636.3.1.12.1.5.2.1.0.0|4|PEM slot 0 +1.3.6.1.4.1.2636.3.1.12.1.5.2.2.0.0|4|PEM slot 1 +1.3.6.1.4.1.2636.3.1.12.1.5.4.1.0.0|4|Fan Tray slot +1.3.6.1.4.1.2636.3.1.12.1.5.4.1.1.0|4|Fan 1 slot +1.3.6.1.4.1.2636.3.1.12.1.5.4.1.2.0|4|Fan 2 slot +1.3.6.1.4.1.2636.3.1.12.1.5.4.1.3.0|4|Fan 3 slot +1.3.6.1.4.1.2636.3.1.12.1.5.4.1.4.0|4|Fan 4 slot +1.3.6.1.4.1.2636.3.1.12.1.5.4.1.5.0|4|Fan 5 slot +1.3.6.1.4.1.2636.3.1.12.1.5.6.1.0.0|4|TFEB slot +1.3.6.1.4.1.2636.3.1.12.1.5.6.1.1.0|4|TFEB temperature sensor slot 0 +1.3.6.1.4.1.2636.3.1.12.1.5.7.1.0.0|4|FPC slot 0 +1.3.6.1.4.1.2636.3.1.12.1.5.7.2.0.0|4|FPC slot 1 +1.3.6.1.4.1.2636.3.1.12.1.5.8.1.1.0|4|PIC slot @ 0/0/* +1.3.6.1.4.1.2636.3.1.12.1.5.8.1.2.0|4|PIC slot @ 0/1/* +1.3.6.1.4.1.2636.3.1.12.1.5.8.1.3.0|4|PIC slot @ 0/2/* +1.3.6.1.4.1.2636.3.1.12.1.5.8.1.4.0|4|PIC slot @ 0/3/* +1.3.6.1.4.1.2636.3.1.12.1.5.8.1.5.0|4|PIC slot @ 0/4/* +1.3.6.1.4.1.2636.3.1.12.1.5.8.1.6.0|4|PIC slot @ 0/5/* +1.3.6.1.4.1.2636.3.1.12.1.5.8.1.7.0|4|PIC slot @ 0/6/* +1.3.6.1.4.1.2636.3.1.12.1.5.8.1.8.0|4|PIC slot @ 0/7/* +1.3.6.1.4.1.2636.3.1.12.1.5.8.2.1.0|4|PIC slot @ 1/0/* +1.3.6.1.4.1.2636.3.1.12.1.5.8.2.2.0|4|PIC slot @ 1/1/* +1.3.6.1.4.1.2636.3.1.12.1.5.8.2.3.0|4|PIC slot @ 1/2/* +1.3.6.1.4.1.2636.3.1.12.1.5.8.2.4.0|4|PIC slot @ 1/3/* +1.3.6.1.4.1.2636.3.1.12.1.5.8.2.5.0|4|PIC slot @ 1/4/* +1.3.6.1.4.1.2636.3.1.12.1.5.8.2.6.0|4|PIC slot @ 1/5/* +1.3.6.1.4.1.2636.3.1.12.1.5.8.2.7.0|4|PIC slot @ 1/6/* +1.3.6.1.4.1.2636.3.1.12.1.5.8.2.8.0|4|PIC slot @ 1/7/* +1.3.6.1.4.1.2636.3.1.12.1.5.9.1.0.0|4|Routing Engine slot +1.3.6.1.4.1.2636.3.1.12.1.5.10.1.0.0|4|FPM slot +1.3.6.1.4.1.2636.3.1.12.1.5.10.1.1.0|4|FPM Board slot +1.3.6.1.4.1.2636.3.1.12.1.5.10.1.2.0|4|FPM Display slot +1.3.6.1.4.1.2636.3.1.12.1.5.10.1.3.0|4|FPM slot +1.3.6.1.4.1.2636.3.1.12.1.5.10.1.4.0|4|FPM slot +1.3.6.1.4.1.2636.3.1.12.1.5.10.1.5.0|4|FPM slot +1.3.6.1.4.1.2636.3.1.12.1.5.12.0.0.0|4|CB slot +1.3.6.1.4.1.2636.3.1.12.1.5.20.1.1.0|4|MIC slot @ 0/0/* +1.3.6.1.4.1.2636.3.1.12.1.5.20.1.2.0|4|MIC slot @ 0/1/* +1.3.6.1.4.1.2636.3.1.12.1.5.20.1.3.0|4|MIC slot @ 0/2/* +1.3.6.1.4.1.2636.3.1.12.1.5.20.1.4.0|4|MIC slot @ 0/3/* +1.3.6.1.4.1.2636.3.1.12.1.5.20.1.5.0|4|MIC slot @ 0/4/* +1.3.6.1.4.1.2636.3.1.12.1.5.20.1.6.0|4|MIC slot @ 0/5/* +1.3.6.1.4.1.2636.3.1.12.1.5.20.2.1.0|4|MIC slot @ 1/0/* +1.3.6.1.4.1.2636.3.1.12.1.5.20.2.2.0|4|MIC slot @ 1/1/* +1.3.6.1.4.1.2636.3.1.12.1.5.20.2.3.0|4|MIC slot @ 1/2/* +1.3.6.1.4.1.2636.3.1.12.1.5.20.2.4.0|4|MIC slot @ 1/3/* +1.3.6.1.4.1.2636.3.1.12.1.5.20.2.5.0|4|MIC slot @ 1/4/* +1.3.6.1.4.1.2636.3.1.12.1.5.20.2.6.0|4|MIC slot @ 1/5/* +1.3.6.1.4.1.2636.3.1.12.1.6.1.1.0.0|2|3 +1.3.6.1.4.1.2636.3.1.12.1.6.2.1.0.0|2|3 +1.3.6.1.4.1.2636.3.1.12.1.6.2.2.0.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.6.4.1.0.0|2|3 +1.3.6.1.4.1.2636.3.1.12.1.6.4.1.1.0|2|3 +1.3.6.1.4.1.2636.3.1.12.1.6.4.1.2.0|2|3 +1.3.6.1.4.1.2636.3.1.12.1.6.4.1.3.0|2|3 +1.3.6.1.4.1.2636.3.1.12.1.6.4.1.4.0|2|3 +1.3.6.1.4.1.2636.3.1.12.1.6.4.1.5.0|2|3 +1.3.6.1.4.1.2636.3.1.12.1.6.6.1.0.0|2|3 +1.3.6.1.4.1.2636.3.1.12.1.6.6.1.1.0|2|3 +1.3.6.1.4.1.2636.3.1.12.1.6.7.1.0.0|2|3 +1.3.6.1.4.1.2636.3.1.12.1.6.7.2.0.0|2|3 +1.3.6.1.4.1.2636.3.1.12.1.6.8.1.1.0|2|3 +1.3.6.1.4.1.2636.3.1.12.1.6.8.1.2.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.6.8.1.3.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.6.8.1.4.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.6.8.1.5.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.6.8.1.6.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.6.8.1.7.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.6.8.1.8.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.6.8.2.1.0|2|3 +1.3.6.1.4.1.2636.3.1.12.1.6.8.2.2.0|2|3 +1.3.6.1.4.1.2636.3.1.12.1.6.8.2.3.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.6.8.2.4.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.6.8.2.5.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.6.8.2.6.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.6.8.2.7.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.6.8.2.8.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.6.9.1.0.0|2|3 +1.3.6.1.4.1.2636.3.1.12.1.6.10.1.0.0|2|3 +1.3.6.1.4.1.2636.3.1.12.1.6.10.1.1.0|2|3 +1.3.6.1.4.1.2636.3.1.12.1.6.10.1.2.0|2|3 +1.3.6.1.4.1.2636.3.1.12.1.6.10.1.3.0|2|3 +1.3.6.1.4.1.2636.3.1.12.1.6.10.1.4.0|2|3 +1.3.6.1.4.1.2636.3.1.12.1.6.10.1.5.0|2|3 +1.3.6.1.4.1.2636.3.1.12.1.6.12.0.0.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.6.20.1.1.0|2|3 +1.3.6.1.4.1.2636.3.1.12.1.6.20.1.2.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.6.20.1.3.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.6.20.1.4.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.6.20.1.5.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.6.20.1.6.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.6.20.2.1.0|2|3 +1.3.6.1.4.1.2636.3.1.12.1.6.20.2.2.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.6.20.2.3.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.6.20.2.4.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.6.20.2.5.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.6.20.2.6.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.1.1.0.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.2.1.0.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.2.2.0.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.4.1.0.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.4.1.1.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.4.1.2.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.4.1.3.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.4.1.4.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.4.1.5.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.6.1.0.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.6.1.1.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.7.1.0.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.7.2.0.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.8.1.1.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.8.1.2.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.8.1.3.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.8.1.4.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.8.1.5.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.8.1.6.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.8.1.7.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.8.1.8.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.8.2.1.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.8.2.2.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.8.2.3.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.8.2.4.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.8.2.5.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.8.2.6.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.8.2.7.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.8.2.8.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.9.1.0.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.10.1.0.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.10.1.1.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.10.1.2.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.10.1.3.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.10.1.4.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.10.1.5.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.12.0.0.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.20.1.1.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.20.1.2.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.20.1.3.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.20.1.4.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.20.1.5.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.20.1.6.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.20.2.1.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.20.2.2.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.20.2.3.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.20.2.4.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.20.2.5.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.20.2.6.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.8.1.1.0.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.2.1.0.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.2.2.0.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.4.1.0.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.4.1.1.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.4.1.2.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.4.1.3.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.4.1.4.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.4.1.5.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.6.1.0.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.6.1.1.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.7.1.0.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.7.2.0.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.8.1.1.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.8.1.2.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.8.1.3.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.8.1.4.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.8.1.5.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.8.1.6.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.8.1.7.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.8.1.8.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.8.2.1.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.8.2.2.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.8.2.3.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.8.2.4.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.8.2.5.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.8.2.6.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.8.2.7.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.8.2.8.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.9.1.0.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.10.1.0.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.10.1.1.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.10.1.2.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.10.1.3.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.10.1.4.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.10.1.5.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.12.0.0.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.20.1.1.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.20.1.2.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.20.1.3.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.20.1.4.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.20.1.5.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.20.1.6.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.20.2.1.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.20.2.2.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.20.2.3.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.20.2.4.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.20.2.5.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.20.2.6.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.13.1.1.1.1.0.0|2|1 +1.3.6.1.4.1.2636.3.1.13.1.1.2.1.0.0|2|2 +1.3.6.1.4.1.2636.3.1.13.1.1.4.1.0.0|2|4 +1.3.6.1.4.1.2636.3.1.13.1.1.4.1.1.0|2|4 +1.3.6.1.4.1.2636.3.1.13.1.1.4.1.2.0|2|4 +1.3.6.1.4.1.2636.3.1.13.1.1.4.1.3.0|2|4 +1.3.6.1.4.1.2636.3.1.13.1.1.4.1.4.0|2|4 +1.3.6.1.4.1.2636.3.1.13.1.1.4.1.5.0|2|4 +1.3.6.1.4.1.2636.3.1.13.1.1.6.1.0.0|2|6 +1.3.6.1.4.1.2636.3.1.13.1.1.6.1.1.0|2|6 +1.3.6.1.4.1.2636.3.1.13.1.1.7.1.0.0|2|7 +1.3.6.1.4.1.2636.3.1.13.1.1.7.2.0.0|2|7 +1.3.6.1.4.1.2636.3.1.13.1.1.8.1.1.0|2|8 +1.3.6.1.4.1.2636.3.1.13.1.1.8.2.1.0|2|8 +1.3.6.1.4.1.2636.3.1.13.1.1.8.2.2.0|2|8 +1.3.6.1.4.1.2636.3.1.13.1.1.9.1.0.0|2|9 +1.3.6.1.4.1.2636.3.1.13.1.1.10.1.0.0|2|10 +1.3.6.1.4.1.2636.3.1.13.1.1.10.1.1.0|2|10 +1.3.6.1.4.1.2636.3.1.13.1.1.10.1.2.0|2|10 +1.3.6.1.4.1.2636.3.1.13.1.1.10.1.3.0|2|10 +1.3.6.1.4.1.2636.3.1.13.1.1.10.1.4.0|2|10 +1.3.6.1.4.1.2636.3.1.13.1.1.10.1.5.0|2|10 +1.3.6.1.4.1.2636.3.1.13.1.1.20.1.1.0|2|20 +1.3.6.1.4.1.2636.3.1.13.1.1.20.2.1.0|2|20 +1.3.6.1.4.1.2636.3.1.13.1.2.1.1.0.0|2|1 +1.3.6.1.4.1.2636.3.1.13.1.2.2.1.0.0|2|1 +1.3.6.1.4.1.2636.3.1.13.1.2.4.1.0.0|2|1 +1.3.6.1.4.1.2636.3.1.13.1.2.4.1.1.0|2|1 +1.3.6.1.4.1.2636.3.1.13.1.2.4.1.2.0|2|1 +1.3.6.1.4.1.2636.3.1.13.1.2.4.1.3.0|2|1 +1.3.6.1.4.1.2636.3.1.13.1.2.4.1.4.0|2|1 +1.3.6.1.4.1.2636.3.1.13.1.2.4.1.5.0|2|1 +1.3.6.1.4.1.2636.3.1.13.1.2.6.1.0.0|2|1 +1.3.6.1.4.1.2636.3.1.13.1.2.6.1.1.0|2|1 +1.3.6.1.4.1.2636.3.1.13.1.2.7.1.0.0|2|1 +1.3.6.1.4.1.2636.3.1.13.1.2.7.2.0.0|2|2 +1.3.6.1.4.1.2636.3.1.13.1.2.8.1.1.0|2|1 +1.3.6.1.4.1.2636.3.1.13.1.2.8.2.1.0|2|2 +1.3.6.1.4.1.2636.3.1.13.1.2.8.2.2.0|2|2 +1.3.6.1.4.1.2636.3.1.13.1.2.9.1.0.0|2|1 +1.3.6.1.4.1.2636.3.1.13.1.2.10.1.0.0|2|1 +1.3.6.1.4.1.2636.3.1.13.1.2.10.1.1.0|2|1 +1.3.6.1.4.1.2636.3.1.13.1.2.10.1.2.0|2|1 +1.3.6.1.4.1.2636.3.1.13.1.2.10.1.3.0|2|1 +1.3.6.1.4.1.2636.3.1.13.1.2.10.1.4.0|2|1 +1.3.6.1.4.1.2636.3.1.13.1.2.10.1.5.0|2|1 +1.3.6.1.4.1.2636.3.1.13.1.2.20.1.1.0|2|1 +1.3.6.1.4.1.2636.3.1.13.1.2.20.2.1.0|2|2 +1.3.6.1.4.1.2636.3.1.13.1.3.1.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.3.2.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.3.4.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.3.4.1.1.0|2|1 +1.3.6.1.4.1.2636.3.1.13.1.3.4.1.2.0|2|2 +1.3.6.1.4.1.2636.3.1.13.1.3.4.1.3.0|2|3 +1.3.6.1.4.1.2636.3.1.13.1.3.4.1.4.0|2|4 +1.3.6.1.4.1.2636.3.1.13.1.3.4.1.5.0|2|5 +1.3.6.1.4.1.2636.3.1.13.1.3.6.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.3.6.1.1.0|2|1 +1.3.6.1.4.1.2636.3.1.13.1.3.7.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.3.7.2.0.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.3.8.1.1.0|2|1 +1.3.6.1.4.1.2636.3.1.13.1.3.8.2.1.0|2|1 +1.3.6.1.4.1.2636.3.1.13.1.3.8.2.2.0|2|2 +1.3.6.1.4.1.2636.3.1.13.1.3.9.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.3.10.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.3.10.1.1.0|2|1 +1.3.6.1.4.1.2636.3.1.13.1.3.10.1.2.0|2|2 +1.3.6.1.4.1.2636.3.1.13.1.3.10.1.3.0|2|3 +1.3.6.1.4.1.2636.3.1.13.1.3.10.1.4.0|2|4 +1.3.6.1.4.1.2636.3.1.13.1.3.10.1.5.0|2|5 +1.3.6.1.4.1.2636.3.1.13.1.3.20.1.1.0|2|1 +1.3.6.1.4.1.2636.3.1.13.1.3.20.2.1.0|2|1 +1.3.6.1.4.1.2636.3.1.13.1.4.1.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.4.2.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.4.4.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.4.4.1.1.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.4.4.1.2.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.4.4.1.3.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.4.4.1.4.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.4.4.1.5.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.4.6.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.4.6.1.1.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.4.7.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.4.7.2.0.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.4.8.1.1.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.4.8.2.1.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.4.8.2.2.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.4.9.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.4.10.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.4.10.1.1.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.4.10.1.2.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.4.10.1.3.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.4.10.1.4.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.4.10.1.5.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.4.20.1.1.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.4.20.2.1.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.5.1.1.0.0|4|midplane +1.3.6.1.4.1.2636.3.1.13.1.5.2.1.0.0|4|PEM 0 +1.3.6.1.4.1.2636.3.1.13.1.5.4.1.0.0|4|Fan Tray +1.3.6.1.4.1.2636.3.1.13.1.5.4.1.1.0|4|Fan 1 +1.3.6.1.4.1.2636.3.1.13.1.5.4.1.2.0|4|Fan 2 +1.3.6.1.4.1.2636.3.1.13.1.5.4.1.3.0|4|Fan 3 +1.3.6.1.4.1.2636.3.1.13.1.5.4.1.4.0|4|Fan 4 +1.3.6.1.4.1.2636.3.1.13.1.5.4.1.5.0|4|Fan 5 +1.3.6.1.4.1.2636.3.1.13.1.5.6.1.0.0|4|TFEB MX5-T +1.3.6.1.4.1.2636.3.1.13.1.5.6.1.1.0|4|TFEB Intake temperature sensor +1.3.6.1.4.1.2636.3.1.13.1.5.7.1.0.0|4|FPC: MPC BUILTIN @ 0/*/* +1.3.6.1.4.1.2636.3.1.13.1.5.7.2.0.0|4|FPC: MPC BUILTIN @ 1/*/* +1.3.6.1.4.1.2636.3.1.13.1.5.8.1.1.0|4|PIC: 4x 10GE XFP @ 0/0/* +1.3.6.1.4.1.2636.3.1.13.1.5.8.2.1.0|4|PIC: 10x 1GE(LAN) SFP @ 1/0/* +1.3.6.1.4.1.2636.3.1.13.1.5.8.2.2.0|4|PIC: 10x 1GE(LAN) SFP @ 1/1/* +1.3.6.1.4.1.2636.3.1.13.1.5.9.1.0.0|4|Routing Engine +1.3.6.1.4.1.2636.3.1.13.1.5.10.1.0.0|4|FPM +1.3.6.1.4.1.2636.3.1.13.1.5.10.1.1.0|4|FPM Board +1.3.6.1.4.1.2636.3.1.13.1.5.10.1.2.0|4|FPM Display +1.3.6.1.4.1.2636.3.1.13.1.5.10.1.3.0|4|FPM +1.3.6.1.4.1.2636.3.1.13.1.5.10.1.4.0|4|FPM +1.3.6.1.4.1.2636.3.1.13.1.5.10.1.5.0|4|FPM +1.3.6.1.4.1.2636.3.1.13.1.5.20.1.1.0|4|MIC: 4x 10GE XFP @ 0/0/* +1.3.6.1.4.1.2636.3.1.13.1.5.20.2.1.0|4|MIC: 3D 20x 1GE(LAN) SFP @ 1/0/* +1.3.6.1.4.1.2636.3.1.13.1.6.1.1.0.0|2|2 +1.3.6.1.4.1.2636.3.1.13.1.6.2.1.0.0|2|2 +1.3.6.1.4.1.2636.3.1.13.1.6.4.1.0.0|2|2 +1.3.6.1.4.1.2636.3.1.13.1.6.4.1.1.0|2|2 +1.3.6.1.4.1.2636.3.1.13.1.6.4.1.2.0|2|2 +1.3.6.1.4.1.2636.3.1.13.1.6.4.1.3.0|2|2 +1.3.6.1.4.1.2636.3.1.13.1.6.4.1.4.0|2|2 +1.3.6.1.4.1.2636.3.1.13.1.6.4.1.5.0|2|2 +1.3.6.1.4.1.2636.3.1.13.1.6.6.1.0.0|2|2 +1.3.6.1.4.1.2636.3.1.13.1.6.6.1.1.0|2|2 +1.3.6.1.4.1.2636.3.1.13.1.6.7.1.0.0|2|2 +1.3.6.1.4.1.2636.3.1.13.1.6.7.2.0.0|2|2 +1.3.6.1.4.1.2636.3.1.13.1.6.8.1.1.0|2|2 +1.3.6.1.4.1.2636.3.1.13.1.6.8.2.1.0|2|2 +1.3.6.1.4.1.2636.3.1.13.1.6.8.2.2.0|2|2 +1.3.6.1.4.1.2636.3.1.13.1.6.9.1.0.0|2|2 +1.3.6.1.4.1.2636.3.1.13.1.6.10.1.0.0|2|2 +1.3.6.1.4.1.2636.3.1.13.1.6.10.1.1.0|2|2 +1.3.6.1.4.1.2636.3.1.13.1.6.10.1.2.0|2|2 +1.3.6.1.4.1.2636.3.1.13.1.6.10.1.3.0|2|2 +1.3.6.1.4.1.2636.3.1.13.1.6.10.1.4.0|2|2 +1.3.6.1.4.1.2636.3.1.13.1.6.10.1.5.0|2|2 +1.3.6.1.4.1.2636.3.1.13.1.6.20.1.1.0|2|2 +1.3.6.1.4.1.2636.3.1.13.1.6.20.2.1.0|2|2 +1.3.6.1.4.1.2636.3.1.13.1.7.1.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.7.2.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.7.4.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.7.4.1.1.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.7.4.1.2.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.7.4.1.3.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.7.4.1.4.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.7.4.1.5.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.7.6.1.0.0|66|40 +1.3.6.1.4.1.2636.3.1.13.1.7.6.1.1.0|66|40 +1.3.6.1.4.1.2636.3.1.13.1.7.7.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.7.7.2.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.7.8.1.1.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.7.8.2.1.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.7.8.2.2.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.7.9.1.0.0|66|38 +1.3.6.1.4.1.2636.3.1.13.1.7.10.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.7.10.1.1.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.7.10.1.2.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.7.10.1.3.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.7.10.1.4.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.7.10.1.5.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.7.20.1.1.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.7.20.2.1.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.8.1.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.8.2.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.8.4.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.8.4.1.1.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.8.4.1.2.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.8.4.1.3.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.8.4.1.4.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.8.4.1.5.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.8.6.1.0.0|66|10 +1.3.6.1.4.1.2636.3.1.13.1.8.6.1.1.0|66|10 +1.3.6.1.4.1.2636.3.1.13.1.8.7.1.0.0|66|10 +1.3.6.1.4.1.2636.3.1.13.1.8.7.2.0.0|66|10 +1.3.6.1.4.1.2636.3.1.13.1.8.8.1.1.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.8.8.2.1.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.8.8.2.2.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.8.9.1.0.0|66|87 +1.3.6.1.4.1.2636.3.1.13.1.8.10.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.8.10.1.1.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.8.10.1.2.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.8.10.1.3.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.8.10.1.4.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.8.10.1.5.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.8.20.1.1.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.8.20.2.1.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.9.1.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.9.2.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.9.4.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.9.4.1.1.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.9.4.1.2.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.9.4.1.3.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.9.4.1.4.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.9.4.1.5.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.9.6.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.9.6.1.1.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.9.7.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.9.7.2.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.9.8.1.1.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.9.8.2.1.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.9.8.2.2.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.9.9.1.0.0|66|1 +1.3.6.1.4.1.2636.3.1.13.1.9.10.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.9.10.1.1.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.9.10.1.2.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.9.10.1.3.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.9.10.1.4.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.9.10.1.5.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.9.20.1.1.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.9.20.2.1.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.10.1.1.0.0|70|0 +1.3.6.1.4.1.2636.3.1.13.1.10.2.1.0.0|70|0 +1.3.6.1.4.1.2636.3.1.13.1.10.4.1.0.0|70|0 +1.3.6.1.4.1.2636.3.1.13.1.10.4.1.1.0|70|0 +1.3.6.1.4.1.2636.3.1.13.1.10.4.1.2.0|70|0 +1.3.6.1.4.1.2636.3.1.13.1.10.4.1.3.0|70|0 +1.3.6.1.4.1.2636.3.1.13.1.10.4.1.4.0|70|0 +1.3.6.1.4.1.2636.3.1.13.1.10.4.1.5.0|70|0 +1.3.6.1.4.1.2636.3.1.13.1.10.6.1.0.0|70|1073741824 +1.3.6.1.4.1.2636.3.1.13.1.10.6.1.1.0|70|1073741824 +1.3.6.1.4.1.2636.3.1.13.1.10.7.1.0.0|70|1073741824 +1.3.6.1.4.1.2636.3.1.13.1.10.7.2.0.0|70|1073741824 +1.3.6.1.4.1.2636.3.1.13.1.10.8.1.1.0|70|0 +1.3.6.1.4.1.2636.3.1.13.1.10.8.2.1.0|70|0 +1.3.6.1.4.1.2636.3.1.13.1.10.8.2.2.0|70|0 +1.3.6.1.4.1.2636.3.1.13.1.10.9.1.0.0|70|2147483648 +1.3.6.1.4.1.2636.3.1.13.1.10.10.1.0.0|70|0 +1.3.6.1.4.1.2636.3.1.13.1.10.10.1.1.0|70|0 +1.3.6.1.4.1.2636.3.1.13.1.10.10.1.2.0|70|0 +1.3.6.1.4.1.2636.3.1.13.1.10.10.1.3.0|70|0 +1.3.6.1.4.1.2636.3.1.13.1.10.10.1.4.0|70|0 +1.3.6.1.4.1.2636.3.1.13.1.10.10.1.5.0|70|0 +1.3.6.1.4.1.2636.3.1.13.1.10.20.1.1.0|70|0 +1.3.6.1.4.1.2636.3.1.13.1.10.20.2.1.0|70|0 +1.3.6.1.4.1.2636.3.1.13.1.11.1.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.11.2.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.11.4.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.11.4.1.1.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.11.4.1.2.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.11.4.1.3.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.11.4.1.4.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.11.4.1.5.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.11.6.1.0.0|66|19 +1.3.6.1.4.1.2636.3.1.13.1.11.6.1.1.0|66|19 +1.3.6.1.4.1.2636.3.1.13.1.11.7.1.0.0|66|19 +1.3.6.1.4.1.2636.3.1.13.1.11.7.2.0.0|66|19 +1.3.6.1.4.1.2636.3.1.13.1.11.8.1.1.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.11.8.2.1.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.11.8.2.2.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.11.9.1.0.0|66|39 +1.3.6.1.4.1.2636.3.1.13.1.11.10.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.11.10.1.1.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.11.10.1.2.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.11.10.1.3.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.11.10.1.4.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.11.10.1.5.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.11.20.1.1.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.11.20.2.1.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.12.1.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.12.2.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.12.4.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.12.4.1.1.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.12.4.1.2.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.12.4.1.3.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.12.4.1.4.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.12.4.1.5.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.12.6.1.0.0|66|22 +1.3.6.1.4.1.2636.3.1.13.1.12.6.1.1.0|66|22 +1.3.6.1.4.1.2636.3.1.13.1.12.7.1.0.0|66|22 +1.3.6.1.4.1.2636.3.1.13.1.12.7.2.0.0|66|22 +1.3.6.1.4.1.2636.3.1.13.1.12.8.1.1.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.12.8.2.1.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.12.8.2.2.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.12.9.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.12.10.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.12.10.1.1.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.12.10.1.2.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.12.10.1.3.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.12.10.1.4.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.12.10.1.5.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.12.20.1.1.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.12.20.2.1.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.13.1.1.0.0|2|122448300 +1.3.6.1.4.1.2636.3.1.13.1.13.2.1.0.0|2|122428664 +1.3.6.1.4.1.2636.3.1.13.1.13.4.1.0.0|2|122428664 +1.3.6.1.4.1.2636.3.1.13.1.13.4.1.1.0|2|122428664 +1.3.6.1.4.1.2636.3.1.13.1.13.4.1.2.0|2|122428664 +1.3.6.1.4.1.2636.3.1.13.1.13.4.1.3.0|2|122428664 +1.3.6.1.4.1.2636.3.1.13.1.13.4.1.4.0|2|122428664 +1.3.6.1.4.1.2636.3.1.13.1.13.4.1.5.0|2|122428665 +1.3.6.1.4.1.2636.3.1.13.1.13.6.1.0.0|2|122421412 +1.3.6.1.4.1.2636.3.1.13.1.13.6.1.1.0|2|122421413 +1.3.6.1.4.1.2636.3.1.13.1.13.7.1.0.0|2|122420833 +1.3.6.1.4.1.2636.3.1.13.1.13.7.2.0.0|2|122420807 +1.3.6.1.4.1.2636.3.1.13.1.13.8.1.1.0|2|122420145 +1.3.6.1.4.1.2636.3.1.13.1.13.8.2.1.0|2|122419639 +1.3.6.1.4.1.2636.3.1.13.1.13.8.2.2.0|2|122419618 +1.3.6.1.4.1.2636.3.1.13.1.13.9.1.0.0|2|122448300 +1.3.6.1.4.1.2636.3.1.13.1.13.10.1.0.0|2|122448357 +1.3.6.1.4.1.2636.3.1.13.1.13.10.1.1.0|2|122448357 +1.3.6.1.4.1.2636.3.1.13.1.13.10.1.2.0|2|122448358 +1.3.6.1.4.1.2636.3.1.13.1.13.10.1.3.0|2|122448358 +1.3.6.1.4.1.2636.3.1.13.1.13.10.1.4.0|2|122448358 +1.3.6.1.4.1.2636.3.1.13.1.13.10.1.5.0|2|122448358 +1.3.6.1.4.1.2636.3.1.13.1.13.20.1.1.0|2|122420110 +1.3.6.1.4.1.2636.3.1.13.1.13.20.2.1.0|2|122419599 +1.3.6.1.4.1.2636.3.1.13.1.14.1.1.0.0|67|0 +1.3.6.1.4.1.2636.3.1.13.1.14.2.1.0.0|67|0 +1.3.6.1.4.1.2636.3.1.13.1.14.4.1.0.0|67|0 +1.3.6.1.4.1.2636.3.1.13.1.14.4.1.1.0|67|0 +1.3.6.1.4.1.2636.3.1.13.1.14.4.1.2.0|67|0 +1.3.6.1.4.1.2636.3.1.13.1.14.4.1.3.0|67|0 +1.3.6.1.4.1.2636.3.1.13.1.14.4.1.4.0|67|0 +1.3.6.1.4.1.2636.3.1.13.1.14.4.1.5.0|67|0 +1.3.6.1.4.1.2636.3.1.13.1.14.6.1.0.0|67|0 +1.3.6.1.4.1.2636.3.1.13.1.14.6.1.1.0|67|0 +1.3.6.1.4.1.2636.3.1.13.1.14.7.1.0.0|67|8392 +1.3.6.1.4.1.2636.3.1.13.1.14.7.2.0.0|67|8419 +1.3.6.1.4.1.2636.3.1.13.1.14.8.1.1.0|67|9081 +1.3.6.1.4.1.2636.3.1.13.1.14.8.2.1.0|67|9587 +1.3.6.1.4.1.2636.3.1.13.1.14.8.2.2.0|67|9609 +1.3.6.1.4.1.2636.3.1.13.1.14.9.1.0.0|67|0 +1.3.6.1.4.1.2636.3.1.13.1.14.10.1.0.0|67|0 +1.3.6.1.4.1.2636.3.1.13.1.14.10.1.1.0|67|0 +1.3.6.1.4.1.2636.3.1.13.1.14.10.1.2.0|67|0 +1.3.6.1.4.1.2636.3.1.13.1.14.10.1.3.0|67|0 +1.3.6.1.4.1.2636.3.1.13.1.14.10.1.4.0|67|0 +1.3.6.1.4.1.2636.3.1.13.1.14.10.1.5.0|67|0 +1.3.6.1.4.1.2636.3.1.13.1.14.20.1.1.0|67|9118 +1.3.6.1.4.1.2636.3.1.13.1.14.20.2.1.0|67|9630 +1.3.6.1.4.1.2636.3.1.13.1.15.1.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.15.2.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.15.4.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.15.4.1.1.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.15.4.1.2.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.15.4.1.3.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.15.4.1.4.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.15.4.1.5.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.15.6.1.0.0|2|1024 +1.3.6.1.4.1.2636.3.1.13.1.15.6.1.1.0|2|1024 +1.3.6.1.4.1.2636.3.1.13.1.15.7.1.0.0|2|1024 +1.3.6.1.4.1.2636.3.1.13.1.15.7.2.0.0|2|1024 +1.3.6.1.4.1.2636.3.1.13.1.15.8.1.1.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.15.8.2.1.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.15.8.2.2.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.15.9.1.0.0|2|2048 +1.3.6.1.4.1.2636.3.1.13.1.15.10.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.15.10.1.1.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.15.10.1.2.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.15.10.1.3.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.15.10.1.4.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.15.10.1.5.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.15.20.1.1.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.15.20.2.1.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.16.1.1.0.0|2|1 +1.3.6.1.4.1.2636.3.1.13.1.16.2.1.0.0|2|1 +1.3.6.1.4.1.2636.3.1.13.1.16.4.1.0.0|2|1 +1.3.6.1.4.1.2636.3.1.13.1.16.4.1.1.0|2|1 +1.3.6.1.4.1.2636.3.1.13.1.16.4.1.2.0|2|1 +1.3.6.1.4.1.2636.3.1.13.1.16.4.1.3.0|2|1 +1.3.6.1.4.1.2636.3.1.13.1.16.4.1.4.0|2|1 +1.3.6.1.4.1.2636.3.1.13.1.16.4.1.5.0|2|1 +1.3.6.1.4.1.2636.3.1.13.1.16.6.1.0.0|2|1 +1.3.6.1.4.1.2636.3.1.13.1.16.6.1.1.0|2|1 +1.3.6.1.4.1.2636.3.1.13.1.16.7.1.0.0|2|1 +1.3.6.1.4.1.2636.3.1.13.1.16.7.2.0.0|2|1 +1.3.6.1.4.1.2636.3.1.13.1.16.8.1.1.0|2|1 +1.3.6.1.4.1.2636.3.1.13.1.16.8.2.1.0|2|1 +1.3.6.1.4.1.2636.3.1.13.1.16.8.2.2.0|2|1 +1.3.6.1.4.1.2636.3.1.13.1.16.9.1.0.0|2|1 +1.3.6.1.4.1.2636.3.1.13.1.16.10.1.0.0|2|1 +1.3.6.1.4.1.2636.3.1.13.1.16.10.1.1.0|2|1 +1.3.6.1.4.1.2636.3.1.13.1.16.10.1.2.0|2|1 +1.3.6.1.4.1.2636.3.1.13.1.16.10.1.3.0|2|1 +1.3.6.1.4.1.2636.3.1.13.1.16.10.1.4.0|2|1 +1.3.6.1.4.1.2636.3.1.13.1.16.10.1.5.0|2|1 +1.3.6.1.4.1.2636.3.1.13.1.16.20.1.1.0|2|1 +1.3.6.1.4.1.2636.3.1.13.1.16.20.2.1.0|2|1 +1.3.6.1.4.1.2636.3.1.13.1.17.1.1.0.0|2|2 +1.3.6.1.4.1.2636.3.1.13.1.17.2.1.0.0|2|2 +1.3.6.1.4.1.2636.3.1.13.1.17.4.1.0.0|2|2 +1.3.6.1.4.1.2636.3.1.13.1.17.4.1.1.0|2|2 +1.3.6.1.4.1.2636.3.1.13.1.17.4.1.2.0|2|2 +1.3.6.1.4.1.2636.3.1.13.1.17.4.1.3.0|2|2 +1.3.6.1.4.1.2636.3.1.13.1.17.4.1.4.0|2|2 +1.3.6.1.4.1.2636.3.1.13.1.17.4.1.5.0|2|2 +1.3.6.1.4.1.2636.3.1.13.1.17.6.1.0.0|2|2 +1.3.6.1.4.1.2636.3.1.13.1.17.6.1.1.0|2|2 +1.3.6.1.4.1.2636.3.1.13.1.17.7.1.0.0|2|2 +1.3.6.1.4.1.2636.3.1.13.1.17.7.2.0.0|2|2 +1.3.6.1.4.1.2636.3.1.13.1.17.8.1.1.0|2|2 +1.3.6.1.4.1.2636.3.1.13.1.17.8.2.1.0|2|2 +1.3.6.1.4.1.2636.3.1.13.1.17.8.2.2.0|2|2 +1.3.6.1.4.1.2636.3.1.13.1.17.9.1.0.0|2|2 +1.3.6.1.4.1.2636.3.1.13.1.17.10.1.0.0|2|2 +1.3.6.1.4.1.2636.3.1.13.1.17.10.1.1.0|2|2 +1.3.6.1.4.1.2636.3.1.13.1.17.10.1.2.0|2|2 +1.3.6.1.4.1.2636.3.1.13.1.17.10.1.3.0|2|2 +1.3.6.1.4.1.2636.3.1.13.1.17.10.1.4.0|2|2 +1.3.6.1.4.1.2636.3.1.13.1.17.10.1.5.0|2|2 +1.3.6.1.4.1.2636.3.1.13.1.17.20.1.1.0|2|2 +1.3.6.1.4.1.2636.3.1.13.1.17.20.2.1.0|2|2 +1.3.6.1.4.1.2636.3.1.13.1.18.1.1.0.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.13.1.18.2.1.0.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.13.1.18.4.1.0.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.13.1.18.4.1.1.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.13.1.18.4.1.2.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.13.1.18.4.1.3.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.13.1.18.4.1.4.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.13.1.18.4.1.5.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.13.1.18.6.1.0.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.13.1.18.6.1.1.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.13.1.18.7.1.0.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.13.1.18.7.2.0.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.13.1.18.8.1.1.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.13.1.18.8.2.1.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.13.1.18.8.2.2.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.13.1.18.9.1.0.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.13.1.18.10.1.0.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.13.1.18.10.1.1.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.13.1.18.10.1.2.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.13.1.18.10.1.3.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.13.1.18.10.1.4.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.13.1.18.10.1.5.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.13.1.18.20.1.1.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.13.1.18.20.2.1.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.13.1.19.1.1.0.0|4x|07E502010D043A002B0200 +1.3.6.1.4.1.2636.3.1.13.1.19.2.1.0.0|4x|07E502010D080E002B0200 +1.3.6.1.4.1.2636.3.1.13.1.19.4.1.0.0|4x|07E502010D080E002B0200 +1.3.6.1.4.1.2636.3.1.13.1.19.4.1.1.0|4x|07E502010D080E002B0200 +1.3.6.1.4.1.2636.3.1.13.1.19.4.1.2.0|4x|07E502010D080E002B0200 +1.3.6.1.4.1.2636.3.1.13.1.19.4.1.3.0|4x|07E502010D080E002B0200 +1.3.6.1.4.1.2636.3.1.13.1.19.4.1.4.0|4x|07E502010D080E002B0200 +1.3.6.1.4.1.2636.3.1.13.1.19.4.1.5.0|4x|07E502010D080E002B0200 +1.3.6.1.4.1.2636.3.1.13.1.19.6.1.0.0|4x|07E502010D091B002B0200 +1.3.6.1.4.1.2636.3.1.13.1.19.6.1.1.0|4x|07E502010D091B002B0200 +1.3.6.1.4.1.2636.3.1.13.1.19.7.1.0.0|4x|07E502010D0921002B0200 +1.3.6.1.4.1.2636.3.1.13.1.19.7.2.0.0|4x|07E502010D0921002B0200 +1.3.6.1.4.1.2636.3.1.13.1.19.8.1.1.0|4x|07E502010D0928002B0200 +1.3.6.1.4.1.2636.3.1.13.1.19.8.2.1.0|4x|07E502010D092D002B0200 +1.3.6.1.4.1.2636.3.1.13.1.19.8.2.2.0|4x|07E502010D092D002B0200 +1.3.6.1.4.1.2636.3.1.13.1.19.9.1.0.0|4x|07E502010D043A002B0200 +1.3.6.1.4.1.2636.3.1.13.1.19.10.1.0.0|4x|07E502010D043A002B0200 +1.3.6.1.4.1.2636.3.1.13.1.19.10.1.1.0|4x|07E502010D043A002B0200 +1.3.6.1.4.1.2636.3.1.13.1.19.10.1.2.0|4x|07E502010D043A002B0200 +1.3.6.1.4.1.2636.3.1.13.1.19.10.1.3.0|4x|07E502010D043A002B0200 +1.3.6.1.4.1.2636.3.1.13.1.19.10.1.4.0|4x|07E502010D043A002B0200 +1.3.6.1.4.1.2636.3.1.13.1.19.10.1.5.0|4x|07E502010D043A002B0200 +1.3.6.1.4.1.2636.3.1.13.1.19.20.1.1.0|4x|07E502010D0928002B0200 +1.3.6.1.4.1.2636.3.1.13.1.19.20.2.1.0|4x|07E502010D092D002B0200 +1.3.6.1.4.1.2636.3.1.13.1.20.1.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.20.2.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.20.4.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.20.4.1.1.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.20.4.1.2.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.20.4.1.3.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.20.4.1.4.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.20.4.1.5.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.20.6.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.20.6.1.1.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.20.7.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.20.7.2.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.20.8.1.1.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.20.8.2.1.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.20.8.2.2.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.20.9.1.0.0|66|42 +1.3.6.1.4.1.2636.3.1.13.1.20.10.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.20.10.1.1.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.20.10.1.2.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.20.10.1.3.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.20.10.1.4.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.20.10.1.5.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.20.20.1.1.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.20.20.2.1.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.21.1.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.21.2.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.21.4.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.21.4.1.1.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.21.4.1.2.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.21.4.1.3.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.21.4.1.4.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.21.4.1.5.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.21.6.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.21.6.1.1.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.21.7.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.21.7.2.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.21.8.1.1.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.21.8.2.1.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.21.8.2.2.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.21.9.1.0.0|66|24 +1.3.6.1.4.1.2636.3.1.13.1.21.10.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.21.10.1.1.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.21.10.1.2.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.21.10.1.3.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.21.10.1.4.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.21.10.1.5.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.21.20.1.1.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.21.20.2.1.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.22.1.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.22.2.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.22.4.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.22.4.1.1.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.22.4.1.2.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.22.4.1.3.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.22.4.1.4.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.22.4.1.5.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.22.6.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.22.6.1.1.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.22.7.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.22.7.2.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.22.8.1.1.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.22.8.2.1.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.22.8.2.2.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.22.9.1.0.0|66|14 +1.3.6.1.4.1.2636.3.1.13.1.22.10.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.22.10.1.1.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.22.10.1.2.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.22.10.1.3.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.22.10.1.4.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.22.10.1.5.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.22.20.1.1.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.22.20.2.1.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.23.1.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.23.2.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.23.4.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.23.4.1.1.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.23.4.1.2.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.23.4.1.3.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.23.4.1.4.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.23.4.1.5.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.23.6.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.23.6.1.1.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.23.7.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.23.7.2.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.23.8.1.1.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.23.8.2.1.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.23.8.2.2.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.23.9.1.0.0|66|44 +1.3.6.1.4.1.2636.3.1.13.1.23.10.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.23.10.1.1.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.23.10.1.2.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.23.10.1.3.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.23.10.1.4.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.23.10.1.5.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.23.20.1.1.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.23.20.2.1.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.24.1.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.24.2.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.24.4.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.24.4.1.1.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.24.4.1.2.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.24.4.1.3.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.24.4.1.4.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.24.4.1.5.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.24.6.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.24.6.1.1.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.24.7.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.24.7.2.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.24.8.1.1.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.24.8.2.1.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.24.8.2.2.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.24.9.1.0.0|66|20 +1.3.6.1.4.1.2636.3.1.13.1.24.10.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.24.10.1.1.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.24.10.1.2.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.24.10.1.3.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.24.10.1.4.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.24.10.1.5.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.24.20.1.1.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.24.20.2.1.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.25.1.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.25.2.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.25.4.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.25.4.1.1.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.25.4.1.2.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.25.4.1.3.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.25.4.1.4.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.25.4.1.5.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.25.6.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.25.6.1.1.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.25.7.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.25.7.2.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.25.8.1.1.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.25.8.2.1.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.25.8.2.2.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.25.9.1.0.0|66|11 +1.3.6.1.4.1.2636.3.1.13.1.25.10.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.25.10.1.1.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.25.10.1.2.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.25.10.1.3.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.25.10.1.4.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.25.10.1.5.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.25.20.1.1.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.25.20.2.1.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.26.1.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.26.2.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.26.4.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.26.4.1.1.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.26.4.1.2.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.26.4.1.3.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.26.4.1.4.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.26.4.1.5.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.26.6.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.26.6.1.1.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.26.7.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.26.7.2.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.26.8.1.1.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.26.8.2.1.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.26.8.2.2.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.26.9.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.26.10.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.26.10.1.1.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.26.10.1.2.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.26.10.1.3.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.26.10.1.4.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.26.10.1.5.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.26.20.1.1.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.26.20.2.1.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.27.1.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.27.2.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.27.4.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.27.4.1.1.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.27.4.1.2.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.27.4.1.3.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.27.4.1.4.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.27.4.1.5.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.27.6.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.27.6.1.1.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.27.7.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.27.7.2.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.27.8.1.1.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.27.8.2.1.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.27.8.2.2.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.27.9.1.0.0|66|39 +1.3.6.1.4.1.2636.3.1.13.1.27.10.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.27.10.1.1.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.27.10.1.2.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.27.10.1.3.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.27.10.1.4.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.27.10.1.5.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.27.20.1.1.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.27.20.2.1.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.28.1.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.28.2.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.28.4.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.28.4.1.1.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.28.4.1.2.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.28.4.1.3.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.28.4.1.4.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.28.4.1.5.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.28.6.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.28.6.1.1.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.28.7.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.28.7.2.0.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.28.8.1.1.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.28.8.2.1.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.28.8.2.2.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.28.9.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.28.10.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.28.10.1.1.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.28.10.1.2.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.28.10.1.3.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.28.10.1.4.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.28.10.1.5.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.28.20.1.1.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.28.20.2.1.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.29.1.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.29.2.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.29.4.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.29.4.1.1.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.29.4.1.2.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.29.4.1.3.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.29.4.1.4.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.29.4.1.5.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.29.6.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.29.6.1.1.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.29.7.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.29.7.2.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.29.8.1.1.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.29.8.2.1.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.29.8.2.2.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.29.9.1.0.0|66|42 +1.3.6.1.4.1.2636.3.1.13.1.29.10.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.29.10.1.1.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.29.10.1.2.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.29.10.1.3.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.29.10.1.4.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.29.10.1.5.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.29.20.1.1.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.29.20.2.1.0|66|0 +1.3.6.1.4.1.2636.3.1.14.1.1.9.1.0.0|2|9 +1.3.6.1.4.1.2636.3.1.14.1.2.9.1.0.0|2|1 +1.3.6.1.4.1.2636.3.1.14.1.3.9.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.14.1.4.9.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.14.1.5.9.1.0.0|4|Routing Engine +1.3.6.1.4.1.2636.3.1.14.1.6.9.1.0.0|2|2 +1.3.6.1.4.1.2636.3.1.14.1.7.9.1.0.0|2|1 +1.3.6.1.4.1.2636.3.1.14.1.8.9.1.0.0|65|0 +1.3.6.1.4.1.2636.3.1.14.1.9.9.1.0.0|67|0 +1.3.6.1.4.1.2636.3.1.14.1.10.9.1.0.0|2|2 +1.3.6.1.4.1.2636.3.1.14.1.11.9.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.14.1.12.9.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.14.1.13.9.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.14.1.14.9.1.0.0|65|0 +1.3.6.1.4.1.2636.3.1.14.1.15.9.1.0.0|2|2 +1.3.6.1.4.1.2636.3.1.14.1.16.9.1.0.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.1.2.1.0.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.1.2.2.0.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.1.4.1.0.0|2|4 +1.3.6.1.4.1.2636.3.1.15.1.1.4.1.1.0|2|4 +1.3.6.1.4.1.2636.3.1.15.1.1.4.1.2.0|2|4 +1.3.6.1.4.1.2636.3.1.15.1.1.4.1.3.0|2|4 +1.3.6.1.4.1.2636.3.1.15.1.1.4.1.4.0|2|4 +1.3.6.1.4.1.2636.3.1.15.1.1.4.1.5.0|2|4 +1.3.6.1.4.1.2636.3.1.15.1.1.6.1.0.0|2|6 +1.3.6.1.4.1.2636.3.1.15.1.1.6.1.1.0|2|6 +1.3.6.1.4.1.2636.3.1.15.1.1.7.1.0.0|2|7 +1.3.6.1.4.1.2636.3.1.15.1.1.7.2.0.0|2|7 +1.3.6.1.4.1.2636.3.1.15.1.1.8.1.1.0|2|8 +1.3.6.1.4.1.2636.3.1.15.1.1.8.1.2.0|2|8 +1.3.6.1.4.1.2636.3.1.15.1.1.8.1.3.0|2|8 +1.3.6.1.4.1.2636.3.1.15.1.1.8.1.4.0|2|8 +1.3.6.1.4.1.2636.3.1.15.1.1.8.1.5.0|2|8 +1.3.6.1.4.1.2636.3.1.15.1.1.8.1.6.0|2|8 +1.3.6.1.4.1.2636.3.1.15.1.1.8.1.7.0|2|8 +1.3.6.1.4.1.2636.3.1.15.1.1.8.1.8.0|2|8 +1.3.6.1.4.1.2636.3.1.15.1.1.8.2.1.0|2|8 +1.3.6.1.4.1.2636.3.1.15.1.1.8.2.2.0|2|8 +1.3.6.1.4.1.2636.3.1.15.1.1.8.2.3.0|2|8 +1.3.6.1.4.1.2636.3.1.15.1.1.8.2.4.0|2|8 +1.3.6.1.4.1.2636.3.1.15.1.1.8.2.5.0|2|8 +1.3.6.1.4.1.2636.3.1.15.1.1.8.2.6.0|2|8 +1.3.6.1.4.1.2636.3.1.15.1.1.8.2.7.0|2|8 +1.3.6.1.4.1.2636.3.1.15.1.1.8.2.8.0|2|8 +1.3.6.1.4.1.2636.3.1.15.1.1.9.1.0.0|2|9 +1.3.6.1.4.1.2636.3.1.15.1.1.10.1.0.0|2|10 +1.3.6.1.4.1.2636.3.1.15.1.1.10.1.1.0|2|10 +1.3.6.1.4.1.2636.3.1.15.1.1.10.1.2.0|2|10 +1.3.6.1.4.1.2636.3.1.15.1.1.10.1.3.0|2|10 +1.3.6.1.4.1.2636.3.1.15.1.1.10.1.4.0|2|10 +1.3.6.1.4.1.2636.3.1.15.1.1.10.1.5.0|2|10 +1.3.6.1.4.1.2636.3.1.15.1.1.12.0.0.0|2|12 +1.3.6.1.4.1.2636.3.1.15.1.1.20.1.1.0|2|20 +1.3.6.1.4.1.2636.3.1.15.1.1.20.1.2.0|2|20 +1.3.6.1.4.1.2636.3.1.15.1.1.20.1.3.0|2|20 +1.3.6.1.4.1.2636.3.1.15.1.1.20.1.4.0|2|20 +1.3.6.1.4.1.2636.3.1.15.1.1.20.1.5.0|2|20 +1.3.6.1.4.1.2636.3.1.15.1.1.20.1.6.0|2|20 +1.3.6.1.4.1.2636.3.1.15.1.1.20.2.1.0|2|20 +1.3.6.1.4.1.2636.3.1.15.1.1.20.2.2.0|2|20 +1.3.6.1.4.1.2636.3.1.15.1.1.20.2.3.0|2|20 +1.3.6.1.4.1.2636.3.1.15.1.1.20.2.4.0|2|20 +1.3.6.1.4.1.2636.3.1.15.1.1.20.2.5.0|2|20 +1.3.6.1.4.1.2636.3.1.15.1.1.20.2.6.0|2|20 +1.3.6.1.4.1.2636.3.1.15.1.2.2.1.0.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.2.2.2.0.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.2.4.1.0.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.2.4.1.1.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.2.4.1.2.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.2.4.1.3.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.2.4.1.4.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.2.4.1.5.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.2.6.1.0.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.2.6.1.1.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.2.7.1.0.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.2.7.2.0.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.2.8.1.1.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.2.8.1.2.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.2.8.1.3.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.2.8.1.4.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.2.8.1.5.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.2.8.1.6.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.2.8.1.7.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.2.8.1.8.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.2.8.2.1.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.2.8.2.2.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.2.8.2.3.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.2.8.2.4.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.2.8.2.5.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.2.8.2.6.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.2.8.2.7.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.2.8.2.8.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.2.9.1.0.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.2.10.1.0.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.2.10.1.1.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.2.10.1.2.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.2.10.1.3.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.2.10.1.4.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.2.10.1.5.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.2.12.0.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.2.20.1.1.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.2.20.1.2.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.2.20.1.3.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.2.20.1.4.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.2.20.1.5.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.2.20.1.6.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.2.20.2.1.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.2.20.2.2.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.2.20.2.3.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.2.20.2.4.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.2.20.2.5.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.2.20.2.6.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.3.2.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.3.2.2.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.3.4.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.3.4.1.1.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.3.4.1.2.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.3.4.1.3.0|2|3 +1.3.6.1.4.1.2636.3.1.15.1.3.4.1.4.0|2|4 +1.3.6.1.4.1.2636.3.1.15.1.3.4.1.5.0|2|5 +1.3.6.1.4.1.2636.3.1.15.1.3.6.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.3.6.1.1.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.3.7.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.3.7.2.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.3.8.1.1.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.3.8.1.2.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.3.8.1.3.0|2|3 +1.3.6.1.4.1.2636.3.1.15.1.3.8.1.4.0|2|4 +1.3.6.1.4.1.2636.3.1.15.1.3.8.1.5.0|2|5 +1.3.6.1.4.1.2636.3.1.15.1.3.8.1.6.0|2|6 +1.3.6.1.4.1.2636.3.1.15.1.3.8.1.7.0|2|7 +1.3.6.1.4.1.2636.3.1.15.1.3.8.1.8.0|2|8 +1.3.6.1.4.1.2636.3.1.15.1.3.8.2.1.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.3.8.2.2.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.3.8.2.3.0|2|3 +1.3.6.1.4.1.2636.3.1.15.1.3.8.2.4.0|2|4 +1.3.6.1.4.1.2636.3.1.15.1.3.8.2.5.0|2|5 +1.3.6.1.4.1.2636.3.1.15.1.3.8.2.6.0|2|6 +1.3.6.1.4.1.2636.3.1.15.1.3.8.2.7.0|2|7 +1.3.6.1.4.1.2636.3.1.15.1.3.8.2.8.0|2|8 +1.3.6.1.4.1.2636.3.1.15.1.3.9.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.3.10.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.3.10.1.1.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.3.10.1.2.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.3.10.1.3.0|2|3 +1.3.6.1.4.1.2636.3.1.15.1.3.10.1.4.0|2|4 +1.3.6.1.4.1.2636.3.1.15.1.3.10.1.5.0|2|5 +1.3.6.1.4.1.2636.3.1.15.1.3.12.0.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.3.20.1.1.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.3.20.1.2.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.3.20.1.3.0|2|3 +1.3.6.1.4.1.2636.3.1.15.1.3.20.1.4.0|2|4 +1.3.6.1.4.1.2636.3.1.15.1.3.20.1.5.0|2|5 +1.3.6.1.4.1.2636.3.1.15.1.3.20.1.6.0|2|6 +1.3.6.1.4.1.2636.3.1.15.1.3.20.2.1.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.3.20.2.2.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.3.20.2.3.0|2|3 +1.3.6.1.4.1.2636.3.1.15.1.3.20.2.4.0|2|4 +1.3.6.1.4.1.2636.3.1.15.1.3.20.2.5.0|2|5 +1.3.6.1.4.1.2636.3.1.15.1.3.20.2.6.0|2|6 +1.3.6.1.4.1.2636.3.1.15.1.4.2.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.2.2.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.4.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.4.1.1.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.4.1.2.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.4.1.3.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.4.1.4.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.4.1.5.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.6.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.6.1.1.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.7.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.7.2.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.8.1.1.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.8.1.2.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.8.1.3.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.8.1.4.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.8.1.5.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.8.1.6.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.8.1.7.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.8.1.8.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.8.2.1.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.8.2.2.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.8.2.3.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.8.2.4.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.8.2.5.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.8.2.6.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.8.2.7.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.8.2.8.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.9.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.10.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.10.1.1.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.10.1.2.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.10.1.3.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.10.1.4.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.10.1.5.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.12.0.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.20.1.1.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.20.1.2.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.20.1.3.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.20.1.4.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.20.1.5.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.20.1.6.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.20.2.1.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.20.2.2.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.20.2.3.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.20.2.4.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.20.2.5.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.20.2.6.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.5.2.1.0.0|4|PEM 0 +1.3.6.1.4.1.2636.3.1.15.1.5.2.2.0.0|4|PEM 1 +1.3.6.1.4.1.2636.3.1.15.1.5.4.1.0.0|4|Fan Tray +1.3.6.1.4.1.2636.3.1.15.1.5.4.1.1.0|4|Fan 1 +1.3.6.1.4.1.2636.3.1.15.1.5.4.1.2.0|4|Fan 2 +1.3.6.1.4.1.2636.3.1.15.1.5.4.1.3.0|4|Fan 3 +1.3.6.1.4.1.2636.3.1.15.1.5.4.1.4.0|4|Fan 4 +1.3.6.1.4.1.2636.3.1.15.1.5.4.1.5.0|4|Fan 5 +1.3.6.1.4.1.2636.3.1.15.1.5.6.1.0.0|4|TFEB MX5-T +1.3.6.1.4.1.2636.3.1.15.1.5.6.1.1.0|4|TFEB Intake temperature sensor +1.3.6.1.4.1.2636.3.1.15.1.5.7.1.0.0|4|FPC: MPC BUILTIN @ 0/*/* +1.3.6.1.4.1.2636.3.1.15.1.5.7.2.0.0|4|FPC: MPC BUILTIN @ 1/*/* +1.3.6.1.4.1.2636.3.1.15.1.5.8.1.1.0|4|PIC: 4x 10GE XFP @ 0/0/* +1.3.6.1.4.1.2636.3.1.15.1.5.8.1.2.0|4|PIC: @ 0/1/* +1.3.6.1.4.1.2636.3.1.15.1.5.8.1.3.0|4|PIC: @ 0/2/* +1.3.6.1.4.1.2636.3.1.15.1.5.8.1.4.0|4|PIC: @ 0/3/* +1.3.6.1.4.1.2636.3.1.15.1.5.8.1.5.0|4| +1.3.6.1.4.1.2636.3.1.15.1.5.8.1.6.0|4| +1.3.6.1.4.1.2636.3.1.15.1.5.8.1.7.0|4| +1.3.6.1.4.1.2636.3.1.15.1.5.8.1.8.0|4| +1.3.6.1.4.1.2636.3.1.15.1.5.8.2.1.0|4|PIC: 10x 1GE(LAN) SFP @ 1/0/* +1.3.6.1.4.1.2636.3.1.15.1.5.8.2.2.0|4|PIC: 10x 1GE(LAN) SFP @ 1/1/* +1.3.6.1.4.1.2636.3.1.15.1.5.8.2.3.0|4|PIC: @ 1/2/* +1.3.6.1.4.1.2636.3.1.15.1.5.8.2.4.0|4|PIC: @ 1/3/* +1.3.6.1.4.1.2636.3.1.15.1.5.8.2.5.0|4| +1.3.6.1.4.1.2636.3.1.15.1.5.8.2.6.0|4| +1.3.6.1.4.1.2636.3.1.15.1.5.8.2.7.0|4| +1.3.6.1.4.1.2636.3.1.15.1.5.8.2.8.0|4| +1.3.6.1.4.1.2636.3.1.15.1.5.9.1.0.0|4|Routing Engine +1.3.6.1.4.1.2636.3.1.15.1.5.10.1.0.0|4|FPM +1.3.6.1.4.1.2636.3.1.15.1.5.10.1.1.0|4|FPM Board +1.3.6.1.4.1.2636.3.1.15.1.5.10.1.2.0|4|FPM Display +1.3.6.1.4.1.2636.3.1.15.1.5.10.1.3.0|4|FPM +1.3.6.1.4.1.2636.3.1.15.1.5.10.1.4.0|4|FPM +1.3.6.1.4.1.2636.3.1.15.1.5.10.1.5.0|4|FPM +1.3.6.1.4.1.2636.3.1.15.1.5.12.0.0.0|4|CB +1.3.6.1.4.1.2636.3.1.15.1.5.20.1.1.0|4|MIC: 4x 10GE XFP @ 0/0/* +1.3.6.1.4.1.2636.3.1.15.1.5.20.1.2.0|4|MIC: @ 0/1/* +1.3.6.1.4.1.2636.3.1.15.1.5.20.1.3.0|4| +1.3.6.1.4.1.2636.3.1.15.1.5.20.1.4.0|4| +1.3.6.1.4.1.2636.3.1.15.1.5.20.1.5.0|4| +1.3.6.1.4.1.2636.3.1.15.1.5.20.1.6.0|4| +1.3.6.1.4.1.2636.3.1.15.1.5.20.2.1.0|4|MIC: 3D 20x 1GE(LAN) SFP @ 1/0/* +1.3.6.1.4.1.2636.3.1.15.1.5.20.2.2.0|4|MIC: @ 1/1/* +1.3.6.1.4.1.2636.3.1.15.1.5.20.2.3.0|4| +1.3.6.1.4.1.2636.3.1.15.1.5.20.2.4.0|4| +1.3.6.1.4.1.2636.3.1.15.1.5.20.2.5.0|4| +1.3.6.1.4.1.2636.3.1.15.1.5.20.2.6.0|4| +1.3.6.1.4.1.2636.3.1.15.1.6.2.1.0.0|2|7 +1.3.6.1.4.1.2636.3.1.15.1.6.2.2.0.0|2|7 +1.3.6.1.4.1.2636.3.1.15.1.6.4.1.0.0|2|13 +1.3.6.1.4.1.2636.3.1.15.1.6.4.1.1.0|2|13 +1.3.6.1.4.1.2636.3.1.15.1.6.4.1.2.0|2|13 +1.3.6.1.4.1.2636.3.1.15.1.6.4.1.3.0|2|13 +1.3.6.1.4.1.2636.3.1.15.1.6.4.1.4.0|2|13 +1.3.6.1.4.1.2636.3.1.15.1.6.4.1.5.0|2|13 +1.3.6.1.4.1.2636.3.1.15.1.6.6.1.0.0|2|5 +1.3.6.1.4.1.2636.3.1.15.1.6.6.1.1.0|2|5 +1.3.6.1.4.1.2636.3.1.15.1.6.7.1.0.0|2|3 +1.3.6.1.4.1.2636.3.1.15.1.6.7.2.0.0|2|3 +1.3.6.1.4.1.2636.3.1.15.1.6.8.1.1.0|2|11 +1.3.6.1.4.1.2636.3.1.15.1.6.8.1.2.0|2|11 +1.3.6.1.4.1.2636.3.1.15.1.6.8.1.3.0|2|11 +1.3.6.1.4.1.2636.3.1.15.1.6.8.1.4.0|2|11 +1.3.6.1.4.1.2636.3.1.15.1.6.8.1.5.0|2|11 +1.3.6.1.4.1.2636.3.1.15.1.6.8.1.6.0|2|11 +1.3.6.1.4.1.2636.3.1.15.1.6.8.1.7.0|2|11 +1.3.6.1.4.1.2636.3.1.15.1.6.8.1.8.0|2|11 +1.3.6.1.4.1.2636.3.1.15.1.6.8.2.1.0|2|11 +1.3.6.1.4.1.2636.3.1.15.1.6.8.2.2.0|2|11 +1.3.6.1.4.1.2636.3.1.15.1.6.8.2.3.0|2|11 +1.3.6.1.4.1.2636.3.1.15.1.6.8.2.4.0|2|11 +1.3.6.1.4.1.2636.3.1.15.1.6.8.2.5.0|2|11 +1.3.6.1.4.1.2636.3.1.15.1.6.8.2.6.0|2|11 +1.3.6.1.4.1.2636.3.1.15.1.6.8.2.7.0|2|11 +1.3.6.1.4.1.2636.3.1.15.1.6.8.2.8.0|2|11 +1.3.6.1.4.1.2636.3.1.15.1.6.9.1.0.0|2|6 +1.3.6.1.4.1.2636.3.1.15.1.6.10.1.0.0|2|8 +1.3.6.1.4.1.2636.3.1.15.1.6.10.1.1.0|2|8 +1.3.6.1.4.1.2636.3.1.15.1.6.10.1.2.0|2|8 +1.3.6.1.4.1.2636.3.1.15.1.6.10.1.3.0|2|8 +1.3.6.1.4.1.2636.3.1.15.1.6.10.1.4.0|2|8 +1.3.6.1.4.1.2636.3.1.15.1.6.10.1.5.0|2|8 +1.3.6.1.4.1.2636.3.1.15.1.6.12.0.0.0|2|5 +1.3.6.1.4.1.2636.3.1.15.1.6.20.1.1.0|2|11 +1.3.6.1.4.1.2636.3.1.15.1.6.20.1.2.0|2|11 +1.3.6.1.4.1.2636.3.1.15.1.6.20.1.3.0|2|11 +1.3.6.1.4.1.2636.3.1.15.1.6.20.1.4.0|2|11 +1.3.6.1.4.1.2636.3.1.15.1.6.20.1.5.0|2|11 +1.3.6.1.4.1.2636.3.1.15.1.6.20.1.6.0|2|11 +1.3.6.1.4.1.2636.3.1.15.1.6.20.2.1.0|2|11 +1.3.6.1.4.1.2636.3.1.15.1.6.20.2.2.0|2|11 +1.3.6.1.4.1.2636.3.1.15.1.6.20.2.3.0|2|11 +1.3.6.1.4.1.2636.3.1.15.1.6.20.2.4.0|2|11 +1.3.6.1.4.1.2636.3.1.15.1.6.20.2.5.0|2|11 +1.3.6.1.4.1.2636.3.1.15.1.6.20.2.6.0|2|11 +1.3.6.1.4.1.2636.3.1.15.1.7.2.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.7.2.2.0.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.7.4.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.7.4.1.1.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.7.4.1.2.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.7.4.1.3.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.7.4.1.4.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.7.4.1.5.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.7.6.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.7.6.1.1.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.7.7.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.7.7.2.0.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.7.8.1.1.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.7.8.1.2.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.7.8.1.3.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.7.8.1.4.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.7.8.1.5.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.7.8.1.6.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.7.8.1.7.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.7.8.1.8.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.7.8.2.1.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.7.8.2.2.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.7.8.2.3.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.7.8.2.4.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.7.8.2.5.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.7.8.2.6.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.7.8.2.7.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.7.8.2.8.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.7.9.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.7.10.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.7.10.1.1.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.7.10.1.2.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.7.10.1.3.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.7.10.1.4.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.7.10.1.5.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.7.12.0.0.0|2|-1 +1.3.6.1.4.1.2636.3.1.15.1.7.20.1.1.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.7.20.1.2.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.7.20.1.3.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.7.20.1.4.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.7.20.1.5.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.7.20.1.6.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.7.20.2.1.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.7.20.2.2.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.7.20.2.3.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.7.20.2.4.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.7.20.2.5.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.7.20.2.6.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.8.2.1.0.0|2|6 +1.3.6.1.4.1.2636.3.1.15.1.8.2.2.0.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.8.4.1.0.0|2|6 +1.3.6.1.4.1.2636.3.1.15.1.8.4.1.1.0|2|6 +1.3.6.1.4.1.2636.3.1.15.1.8.4.1.2.0|2|6 +1.3.6.1.4.1.2636.3.1.15.1.8.4.1.3.0|2|6 +1.3.6.1.4.1.2636.3.1.15.1.8.4.1.4.0|2|6 +1.3.6.1.4.1.2636.3.1.15.1.8.4.1.5.0|2|6 +1.3.6.1.4.1.2636.3.1.15.1.8.6.1.0.0|2|6 +1.3.6.1.4.1.2636.3.1.15.1.8.6.1.1.0|2|6 +1.3.6.1.4.1.2636.3.1.15.1.8.7.1.0.0|2|6 +1.3.6.1.4.1.2636.3.1.15.1.8.7.2.0.0|2|6 +1.3.6.1.4.1.2636.3.1.15.1.8.8.1.1.0|2|6 +1.3.6.1.4.1.2636.3.1.15.1.8.8.1.2.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.8.8.1.3.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.8.8.1.4.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.8.8.1.5.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.8.8.1.6.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.8.8.1.7.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.8.8.1.8.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.8.8.2.1.0|2|6 +1.3.6.1.4.1.2636.3.1.15.1.8.8.2.2.0|2|6 +1.3.6.1.4.1.2636.3.1.15.1.8.8.2.3.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.8.8.2.4.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.8.8.2.5.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.8.8.2.6.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.8.8.2.7.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.8.8.2.8.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.8.9.1.0.0|2|6 +1.3.6.1.4.1.2636.3.1.15.1.8.10.1.0.0|2|6 +1.3.6.1.4.1.2636.3.1.15.1.8.10.1.1.0|2|6 +1.3.6.1.4.1.2636.3.1.15.1.8.10.1.2.0|2|6 +1.3.6.1.4.1.2636.3.1.15.1.8.10.1.3.0|2|6 +1.3.6.1.4.1.2636.3.1.15.1.8.10.1.4.0|2|6 +1.3.6.1.4.1.2636.3.1.15.1.8.10.1.5.0|2|6 +1.3.6.1.4.1.2636.3.1.15.1.8.12.0.0.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.8.20.1.1.0|2|6 +1.3.6.1.4.1.2636.3.1.15.1.8.20.1.2.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.8.20.1.3.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.8.20.1.4.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.8.20.1.5.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.8.20.1.6.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.8.20.2.1.0|2|6 +1.3.6.1.4.1.2636.3.1.15.1.8.20.2.2.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.8.20.2.3.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.8.20.2.4.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.8.20.2.5.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.8.20.2.6.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.9.2.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.2.2.0.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.4.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.4.1.1.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.4.1.2.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.4.1.3.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.4.1.4.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.4.1.5.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.6.1.0.0|66|40 +1.3.6.1.4.1.2636.3.1.15.1.9.6.1.1.0|66|40 +1.3.6.1.4.1.2636.3.1.15.1.9.7.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.7.2.0.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.8.1.1.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.8.1.2.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.8.1.3.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.8.1.4.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.8.1.5.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.8.1.6.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.8.1.7.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.8.1.8.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.8.2.1.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.8.2.2.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.8.2.3.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.8.2.4.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.8.2.5.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.8.2.6.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.8.2.7.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.8.2.8.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.9.1.0.0|66|38 +1.3.6.1.4.1.2636.3.1.15.1.9.10.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.10.1.1.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.10.1.2.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.10.1.3.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.10.1.4.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.10.1.5.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.12.0.0.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.20.1.1.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.20.1.2.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.20.1.3.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.20.1.4.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.20.1.5.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.20.1.6.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.20.2.1.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.20.2.2.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.20.2.3.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.20.2.4.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.20.2.5.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.20.2.6.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.10.2.1.0.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.10.2.2.0.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.10.4.1.0.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.10.4.1.1.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.10.4.1.2.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.10.4.1.3.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.10.4.1.4.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.10.4.1.5.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.10.6.1.0.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.10.6.1.1.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.10.7.1.0.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.10.7.2.0.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.10.8.1.1.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.10.8.1.2.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.10.8.1.3.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.10.8.1.4.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.10.8.1.5.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.10.8.1.6.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.10.8.1.7.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.10.8.1.8.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.10.8.2.1.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.10.8.2.2.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.10.8.2.3.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.10.8.2.4.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.10.8.2.5.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.10.8.2.6.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.10.8.2.7.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.10.8.2.8.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.10.9.1.0.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.10.10.1.0.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.10.10.1.1.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.10.10.1.2.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.10.10.1.3.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.10.10.1.4.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.10.10.1.5.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.10.12.0.0.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.10.20.1.1.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.10.20.1.2.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.10.20.1.3.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.10.20.1.4.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.10.20.1.5.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.10.20.1.6.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.10.20.2.1.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.10.20.2.2.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.10.20.2.3.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.10.20.2.4.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.10.20.2.5.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.10.20.2.6.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.11.2.1.0.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.2.2.0.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.4.1.0.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.4.1.1.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.4.1.2.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.4.1.3.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.4.1.4.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.4.1.5.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.6.1.0.0|67|7810 +1.3.6.1.4.1.2636.3.1.15.1.11.6.1.1.0|67|7810 +1.3.6.1.4.1.2636.3.1.15.1.11.7.1.0.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.7.2.0.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.8.1.1.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.8.1.2.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.8.1.3.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.8.1.4.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.8.1.5.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.8.1.6.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.8.1.7.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.8.1.8.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.8.2.1.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.8.2.2.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.8.2.3.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.8.2.4.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.8.2.5.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.8.2.6.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.8.2.7.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.8.2.8.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.9.1.0.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.10.1.0.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.10.1.1.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.10.1.2.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.10.1.3.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.10.1.4.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.10.1.5.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.12.0.0.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.20.1.1.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.20.1.2.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.20.1.3.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.20.1.4.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.20.1.5.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.20.1.6.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.20.2.1.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.20.2.2.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.20.2.3.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.20.2.4.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.20.2.5.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.20.2.6.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.12.2.1.0.0|67|560 +1.3.6.1.4.1.2636.3.1.15.1.12.2.2.0.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.12.4.1.0.0|67|561 +1.3.6.1.4.1.2636.3.1.15.1.12.4.1.1.0|67|561 +1.3.6.1.4.1.2636.3.1.15.1.12.4.1.2.0|67|561 +1.3.6.1.4.1.2636.3.1.15.1.12.4.1.3.0|67|561 +1.3.6.1.4.1.2636.3.1.15.1.12.4.1.4.0|67|561 +1.3.6.1.4.1.2636.3.1.15.1.12.4.1.5.0|67|561 +1.3.6.1.4.1.2636.3.1.15.1.12.6.1.0.0|67|7810 +1.3.6.1.4.1.2636.3.1.15.1.12.6.1.1.0|67|7810 +1.3.6.1.4.1.2636.3.1.15.1.12.7.1.0.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.12.7.2.0.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.12.8.1.1.0|67|9009 +1.3.6.1.4.1.2636.3.1.15.1.12.8.1.2.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.12.8.1.3.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.12.8.1.4.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.12.8.1.5.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.12.8.1.6.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.12.8.1.7.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.12.8.1.8.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.12.8.2.1.0|67|9011 +1.3.6.1.4.1.2636.3.1.15.1.12.8.2.2.0|67|9011 +1.3.6.1.4.1.2636.3.1.15.1.12.8.2.3.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.12.8.2.4.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.12.8.2.5.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.12.8.2.6.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.12.8.2.7.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.12.8.2.8.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.12.9.1.0.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.12.10.1.0.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.12.10.1.1.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.12.10.1.2.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.12.10.1.3.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.12.10.1.4.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.12.10.1.5.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.12.12.0.0.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.12.20.1.1.0|67|9118 +1.3.6.1.4.1.2636.3.1.15.1.12.20.1.2.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.12.20.1.3.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.12.20.1.4.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.12.20.1.5.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.12.20.1.6.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.12.20.2.1.0|67|9630 +1.3.6.1.4.1.2636.3.1.15.1.12.20.2.2.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.12.20.2.3.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.12.20.2.4.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.12.20.2.5.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.12.20.2.6.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.13.2.1.0.0|2|122428929 +1.3.6.1.4.1.2636.3.1.15.1.13.2.2.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.13.4.1.0.0|2|122428929 +1.3.6.1.4.1.2636.3.1.15.1.13.4.1.1.0|2|122428929 +1.3.6.1.4.1.2636.3.1.15.1.13.4.1.2.0|2|122428929 +1.3.6.1.4.1.2636.3.1.15.1.13.4.1.3.0|2|122428929 +1.3.6.1.4.1.2636.3.1.15.1.13.4.1.4.0|2|122428930 +1.3.6.1.4.1.2636.3.1.15.1.13.4.1.5.0|2|122428930 +1.3.6.1.4.1.2636.3.1.15.1.13.6.1.0.0|2|122421681 +1.3.6.1.4.1.2636.3.1.15.1.13.6.1.1.0|2|122421681 +1.3.6.1.4.1.2636.3.1.15.1.13.7.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.13.7.2.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.13.8.1.1.0|2|122420482 +1.3.6.1.4.1.2636.3.1.15.1.13.8.1.2.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.13.8.1.3.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.13.8.1.4.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.13.8.1.5.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.13.8.1.6.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.13.8.1.7.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.13.8.1.8.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.13.8.2.1.0|2|122420483 +1.3.6.1.4.1.2636.3.1.15.1.13.8.2.2.0|2|122420483 +1.3.6.1.4.1.2636.3.1.15.1.13.8.2.3.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.13.8.2.4.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.13.8.2.5.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.13.8.2.6.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.13.8.2.7.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.13.8.2.8.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.13.9.1.0.0|2|122430421 +1.3.6.1.4.1.2636.3.1.15.1.13.10.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.13.10.1.1.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.13.10.1.2.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.13.10.1.3.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.13.10.1.4.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.13.10.1.5.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.13.12.0.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.13.20.1.1.0|2|122420378 +1.3.6.1.4.1.2636.3.1.15.1.13.20.1.2.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.13.20.1.3.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.13.20.1.4.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.13.20.1.5.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.13.20.1.6.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.13.20.2.1.0|2|122419867 +1.3.6.1.4.1.2636.3.1.15.1.13.20.2.2.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.13.20.2.3.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.13.20.2.4.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.13.20.2.5.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.13.20.2.6.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.14.2.1.0.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.2.2.0.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.4.1.0.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.4.1.1.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.4.1.2.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.4.1.3.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.4.1.4.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.4.1.5.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.6.1.0.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.6.1.1.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.7.1.0.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.7.2.0.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.8.1.1.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.8.1.2.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.8.1.3.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.8.1.4.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.8.1.5.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.8.1.6.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.8.1.7.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.8.1.8.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.8.2.1.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.8.2.2.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.8.2.3.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.8.2.4.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.8.2.5.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.8.2.6.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.8.2.7.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.8.2.8.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.9.1.0.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.10.1.0.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.10.1.1.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.10.1.2.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.10.1.3.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.10.1.4.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.10.1.5.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.12.0.0.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.20.1.1.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.20.1.2.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.20.1.3.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.20.1.4.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.20.1.5.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.20.1.6.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.20.2.1.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.20.2.2.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.20.2.3.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.20.2.4.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.20.2.5.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.20.2.6.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.15.2.1.0.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.2.2.0.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.4.1.0.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.4.1.1.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.4.1.2.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.4.1.3.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.4.1.4.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.4.1.5.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.6.1.0.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.6.1.1.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.7.1.0.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.7.2.0.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.8.1.1.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.8.1.2.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.8.1.3.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.8.1.4.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.8.1.5.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.8.1.6.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.8.1.7.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.8.1.8.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.8.2.1.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.8.2.2.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.8.2.3.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.8.2.4.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.8.2.5.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.8.2.6.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.8.2.7.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.8.2.8.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.9.1.0.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.10.1.0.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.10.1.1.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.10.1.2.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.10.1.3.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.10.1.4.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.10.1.5.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.12.0.0.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.20.1.1.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.20.1.2.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.20.1.3.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.20.1.4.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.20.1.5.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.20.1.6.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.20.2.1.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.20.2.2.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.20.2.3.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.20.2.4.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.20.2.5.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.20.2.6.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.16.2.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.2.2.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.4.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.4.1.1.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.4.1.2.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.4.1.3.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.4.1.4.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.4.1.5.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.6.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.6.1.1.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.7.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.7.2.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.8.1.1.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.8.1.2.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.8.1.3.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.8.1.4.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.8.1.5.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.8.1.6.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.8.1.7.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.8.1.8.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.8.2.1.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.8.2.2.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.8.2.3.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.8.2.4.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.8.2.5.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.8.2.6.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.8.2.7.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.8.2.8.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.9.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.10.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.10.1.1.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.10.1.2.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.10.1.3.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.10.1.4.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.10.1.5.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.12.0.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.20.1.1.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.20.1.2.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.20.1.3.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.20.1.4.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.20.1.5.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.20.1.6.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.20.2.1.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.20.2.2.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.20.2.3.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.20.2.4.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.20.2.5.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.20.2.6.0|2|0 +1.3.6.1.4.1.2636.3.1.16.0|2|1 +1.3.6.1.4.1.2636.3.1.17.0|2|1 +1.3.6.1.4.1.2636.3.1.18.0|6|1.3.6.1.4.1.2636.1.1.1.2.57 +1.3.6.1.4.1.2636.3.4.2.2.1.0|2|2 +1.3.6.1.4.1.2636.3.4.2.3.1.0|2|3 +1.3.6.1.4.1.2636.3.48.1.3.1.1.2.1|4|____juniper_private1____ +1.3.6.1.4.1.2636.3.48.1.3.1.1.3.1|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.1.516|4|08 00 00 4 +1.3.6.1.4.1.2636.3.60.1.1.1.1.1.517|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.1.1.1.1.518|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.1.1.1.1.519|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.1.1.1.1.520|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.1.1.1.1.521|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.1.1.1.1.522|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.1.1.1.1.523|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.1.1.1.1.524|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.1.1.1.1.525|4|08 00 00 4 +1.3.6.1.4.1.2636.3.60.1.1.1.1.1.526|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.1.1.1.1.527|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.1.1.1.1.528|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.1.1.1.1.529|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.1.1.1.1.530|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.1.1.1.1.531|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.1.1.1.1.532|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.1.1.1.1.533|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.1.1.1.1.534|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.1.1.1.1.535|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.1.1.1.1.541|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.1.1.1.1.556|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.1.1.1.1.557|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.1.1.1.1.558|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.1.1.1.2.516|4x|07E502010D0938002B0200 +1.3.6.1.4.1.2636.3.60.1.1.1.1.2.517|4x|0000000000000000000000 +1.3.6.1.4.1.2636.3.60.1.1.1.1.2.518|4x|0000000000000000000000 +1.3.6.1.4.1.2636.3.60.1.1.1.1.2.519|4x|0000000000000000000000 +1.3.6.1.4.1.2636.3.60.1.1.1.1.2.520|4x|0000000000000000000000 +1.3.6.1.4.1.2636.3.60.1.1.1.1.2.521|4x|0000000000000000000000 +1.3.6.1.4.1.2636.3.60.1.1.1.1.2.522|4x|0000000000000000000000 +1.3.6.1.4.1.2636.3.60.1.1.1.1.2.523|4x|0000000000000000000000 +1.3.6.1.4.1.2636.3.60.1.1.1.1.2.524|4x|0000000000000000000000 +1.3.6.1.4.1.2636.3.60.1.1.1.1.2.525|4x|07E502010D0938002B0200 +1.3.6.1.4.1.2636.3.60.1.1.1.1.2.526|4x|0000000000000000000000 +1.3.6.1.4.1.2636.3.60.1.1.1.1.2.527|4x|0000000000000000000000 +1.3.6.1.4.1.2636.3.60.1.1.1.1.2.528|4x|0000000000000000000000 +1.3.6.1.4.1.2636.3.60.1.1.1.1.2.529|4x|0000000000000000000000 +1.3.6.1.4.1.2636.3.60.1.1.1.1.2.530|4x|0000000000000000000000 +1.3.6.1.4.1.2636.3.60.1.1.1.1.2.531|4x|0000000000000000000000 +1.3.6.1.4.1.2636.3.60.1.1.1.1.2.532|4x|0000000000000000000000 +1.3.6.1.4.1.2636.3.60.1.1.1.1.2.533|4x|0000000000000000000000 +1.3.6.1.4.1.2636.3.60.1.1.1.1.2.534|4x|0000000000000000000000 +1.3.6.1.4.1.2636.3.60.1.1.1.1.2.535|4x|0000000000000000000000 +1.3.6.1.4.1.2636.3.60.1.1.1.1.2.541|4x|0000000000000000000000 +1.3.6.1.4.1.2636.3.60.1.1.1.1.2.556|4x|0000000000000000000000 +1.3.6.1.4.1.2636.3.60.1.1.1.1.2.557|4x|0000000000000000000000 +1.3.6.1.4.1.2636.3.60.1.1.1.1.2.558|4x|0000000000000000000000 +1.3.6.1.4.1.2636.3.60.1.1.1.1.3.516|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.1.1.1.3.517|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.1.1.1.3.518|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.1.1.1.3.519|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.1.1.1.3.520|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.1.1.1.3.521|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.1.1.1.3.522|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.1.1.1.3.523|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.1.1.1.3.524|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.1.1.1.3.525|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.1.1.1.3.526|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.1.1.1.3.527|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.1.1.1.3.528|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.1.1.1.3.529|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.1.1.1.3.530|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.1.1.1.3.531|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.1.1.1.3.532|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.1.1.1.3.533|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.1.1.1.3.534|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.1.1.1.3.535|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.1.1.1.3.541|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.1.1.1.3.556|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.1.1.1.3.557|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.1.1.1.3.558|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.1.1.1.4.516|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.1.1.1.4.517|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.1.1.1.4.518|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.1.1.1.4.519|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.1.1.1.4.520|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.1.1.1.4.521|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.1.1.1.4.522|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.1.1.1.4.523|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.1.1.1.4.524|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.1.1.1.4.525|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.1.1.1.4.526|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.1.1.1.4.527|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.1.1.1.4.528|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.1.1.1.4.529|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.1.1.1.4.530|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.1.1.1.4.531|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.1.1.1.4.532|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.1.1.1.4.533|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.1.1.1.4.534|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.1.1.1.4.535|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.1.1.1.4.541|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.1.1.1.4.556|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.1.1.1.4.557|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.1.1.1.4.558|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.1.1.1.5.516|2|-2677 +1.3.6.1.4.1.2636.3.60.1.1.1.1.5.517|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.5.518|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.5.519|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.5.520|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.5.521|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.5.522|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.5.523|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.5.524|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.5.525|2|-3698 +1.3.6.1.4.1.2636.3.60.1.1.1.1.5.526|2|-483 +1.3.6.1.4.1.2636.3.60.1.1.1.1.5.527|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.5.528|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.5.529|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.5.530|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.5.531|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.5.532|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.5.533|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.5.534|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.5.535|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.5.541|2|-214 +1.3.6.1.4.1.2636.3.60.1.1.1.1.5.556|2|-255 +1.3.6.1.4.1.2636.3.60.1.1.1.1.5.557|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.5.558|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.6.516|2|5684 +1.3.6.1.4.1.2636.3.60.1.1.1.1.6.517|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.6.518|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.6.519|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.6.520|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.6.521|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.6.522|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.6.523|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.6.524|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.6.525|2|11360 +1.3.6.1.4.1.2636.3.60.1.1.1.1.6.526|2|5376 +1.3.6.1.4.1.2636.3.60.1.1.1.1.6.527|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.6.528|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.6.529|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.6.530|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.6.531|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.6.532|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.6.533|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.6.534|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.6.535|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.6.541|2|7860 +1.3.6.1.4.1.2636.3.60.1.1.1.1.6.556|2|33209 +1.3.6.1.4.1.2636.3.60.1.1.1.1.6.557|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.6.558|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.7.516|2|-494 +1.3.6.1.4.1.2636.3.60.1.1.1.1.7.517|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.7.518|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.7.519|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.7.520|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.7.521|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.7.522|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.7.523|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.7.524|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.7.525|2|-557 +1.3.6.1.4.1.2636.3.60.1.1.1.1.7.526|2|-548 +1.3.6.1.4.1.2636.3.60.1.1.1.1.7.527|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.7.528|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.7.529|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.7.530|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.7.531|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.7.532|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.7.533|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.7.534|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.7.535|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.7.541|2|-215 +1.3.6.1.4.1.2636.3.60.1.1.1.1.7.556|2|-231 +1.3.6.1.4.1.2636.3.60.1.1.1.1.7.557|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.7.558|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.8.516|2|26 +1.3.6.1.4.1.2636.3.60.1.1.1.1.8.517|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.8.518|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.8.519|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.8.520|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.8.521|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.8.522|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.8.523|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.8.524|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.8.525|2|25 +1.3.6.1.4.1.2636.3.60.1.1.1.1.8.526|2|21 +1.3.6.1.4.1.2636.3.60.1.1.1.1.8.527|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.8.528|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.8.529|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.8.530|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.8.531|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.8.532|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.8.533|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.8.534|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.8.535|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.8.541|2|31 +1.3.6.1.4.1.2636.3.60.1.1.1.1.8.556|2|28 +1.3.6.1.4.1.2636.3.60.1.1.1.1.8.557|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.8.558|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.9.516|2|50 +1.3.6.1.4.1.2636.3.60.1.1.1.1.9.517|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.9.518|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.9.519|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.9.520|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.9.521|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.9.522|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.9.523|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.9.524|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.9.525|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.9.526|2|100 +1.3.6.1.4.1.2636.3.60.1.1.1.1.9.527|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.9.528|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.9.529|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.9.530|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.9.531|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.9.532|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.9.533|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.9.534|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.9.535|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.9.541|2|100 +1.3.6.1.4.1.2636.3.60.1.1.1.1.9.556|2|250 +1.3.6.1.4.1.2636.3.60.1.1.1.1.9.557|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.9.558|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.10.516|2|-2102 +1.3.6.1.4.1.2636.3.60.1.1.1.1.10.517|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.10.518|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.10.519|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.10.520|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.10.521|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.10.522|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.10.523|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.10.524|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.10.525|2|-2251 +1.3.6.1.4.1.2636.3.60.1.1.1.1.10.526|2|-2000 +1.3.6.1.4.1.2636.3.60.1.1.1.1.10.527|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.10.528|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.10.529|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.10.530|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.10.531|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.10.532|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.10.533|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.10.534|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.10.535|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.10.541|2|-2000 +1.3.6.1.4.1.2636.3.60.1.1.1.1.10.556|2|-1500 +1.3.6.1.4.1.2636.3.60.1.1.1.1.10.557|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.10.558|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.11.516|2|-100 +1.3.6.1.4.1.2636.3.60.1.1.1.1.11.517|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.11.518|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.11.519|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.11.520|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.11.521|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.11.522|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.11.523|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.11.524|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.11.525|2|-299 +1.3.6.1.4.1.2636.3.60.1.1.1.1.11.526|2|-100 +1.3.6.1.4.1.2636.3.60.1.1.1.1.11.527|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.11.528|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.11.529|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.11.530|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.11.531|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.11.532|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.11.533|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.11.534|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.11.535|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.11.541|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.11.556|2|150 +1.3.6.1.4.1.2636.3.60.1.1.1.1.11.557|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.11.558|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.12.516|2|-1698 +1.3.6.1.4.1.2636.3.60.1.1.1.1.12.517|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.12.518|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.12.519|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.12.520|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.12.521|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.12.522|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.12.523|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.12.524|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.12.525|2|-1950 +1.3.6.1.4.1.2636.3.60.1.1.1.1.12.526|2|-1801 +1.3.6.1.4.1.2636.3.60.1.1.1.1.12.527|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.12.528|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.12.529|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.12.530|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.12.531|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.12.532|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.12.533|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.12.534|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.12.535|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.12.541|2|-1801 +1.3.6.1.4.1.2636.3.60.1.1.1.1.12.556|2|-1400 +1.3.6.1.4.1.2636.3.60.1.1.1.1.12.557|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.12.558|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.13.516|2|13000 +1.3.6.1.4.1.2636.3.60.1.1.1.1.13.517|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.13.518|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.13.519|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.13.520|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.13.521|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.13.522|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.13.523|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.13.524|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.13.525|2|80000 +1.3.6.1.4.1.2636.3.60.1.1.1.1.13.526|2|17000 +1.3.6.1.4.1.2636.3.60.1.1.1.1.13.527|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.13.528|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.13.529|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.13.530|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.13.531|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.13.532|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.13.533|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.13.534|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.13.535|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.13.541|2|12000 +1.3.6.1.4.1.2636.3.60.1.1.1.1.13.556|2|80000 +1.3.6.1.4.1.2636.3.60.1.1.1.1.13.557|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.13.558|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.14.516|2|1000 +1.3.6.1.4.1.2636.3.60.1.1.1.1.14.517|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.14.518|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.14.519|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.14.520|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.14.521|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.14.522|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.14.523|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.14.524|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.14.525|2|100 +1.3.6.1.4.1.2636.3.60.1.1.1.1.14.526|2|1000 +1.3.6.1.4.1.2636.3.60.1.1.1.1.14.527|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.14.528|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.14.529|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.14.530|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.14.531|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.14.532|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.14.533|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.14.534|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.14.535|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.14.541|2|1000 +1.3.6.1.4.1.2636.3.60.1.1.1.1.14.556|2|15000 +1.3.6.1.4.1.2636.3.60.1.1.1.1.14.557|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.14.558|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.15.516|2|12500 +1.3.6.1.4.1.2636.3.60.1.1.1.1.15.517|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.15.518|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.15.519|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.15.520|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.15.521|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.15.522|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.15.523|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.15.524|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.15.525|2|70000 +1.3.6.1.4.1.2636.3.60.1.1.1.1.15.526|2|14000 +1.3.6.1.4.1.2636.3.60.1.1.1.1.15.527|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.15.528|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.15.529|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.15.530|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.15.531|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.15.532|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.15.533|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.15.534|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.15.535|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.15.541|2|11500 +1.3.6.1.4.1.2636.3.60.1.1.1.1.15.556|2|75000 +1.3.6.1.4.1.2636.3.60.1.1.1.1.15.557|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.15.558|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.16.516|2|2000 +1.3.6.1.4.1.2636.3.60.1.1.1.1.16.517|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.16.518|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.16.519|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.16.520|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.16.521|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.16.522|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.16.523|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.16.524|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.16.525|2|200 +1.3.6.1.4.1.2636.3.60.1.1.1.1.16.526|2|2000 +1.3.6.1.4.1.2636.3.60.1.1.1.1.16.527|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.16.528|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.16.529|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.16.530|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.16.531|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.16.532|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.16.533|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.16.534|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.16.535|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.16.541|2|2000 +1.3.6.1.4.1.2636.3.60.1.1.1.1.16.556|2|20000 +1.3.6.1.4.1.2636.3.60.1.1.1.1.16.557|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.16.558|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.17.516|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.17.517|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.17.518|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.17.519|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.17.520|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.17.521|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.17.522|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.17.523|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.17.524|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.17.525|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.17.526|2|-199 +1.3.6.1.4.1.2636.3.60.1.1.1.1.17.527|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.17.528|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.17.529|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.17.530|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.17.531|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.17.532|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.17.533|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.17.534|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.17.535|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.17.541|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.17.556|2|150 +1.3.6.1.4.1.2636.3.60.1.1.1.1.17.557|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.17.558|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.18.516|2|-1356 +1.3.6.1.4.1.2636.3.60.1.1.1.1.18.517|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.18.518|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.18.519|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.18.520|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.18.521|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.18.522|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.18.523|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.18.524|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.18.525|2|-1200 +1.3.6.1.4.1.2636.3.60.1.1.1.1.18.526|2|-1173 +1.3.6.1.4.1.2636.3.60.1.1.1.1.18.527|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.18.528|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.18.529|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.18.530|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.18.531|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.18.532|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.18.533|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.18.534|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.18.535|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.18.541|2|-903 +1.3.6.1.4.1.2636.3.60.1.1.1.1.18.556|2|-701 +1.3.6.1.4.1.2636.3.60.1.1.1.1.18.557|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.18.558|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.19.516|2|-300 +1.3.6.1.4.1.2636.3.60.1.1.1.1.19.517|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.19.518|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.19.519|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.19.520|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.19.521|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.19.522|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.19.523|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.19.524|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.19.525|2|-300 +1.3.6.1.4.1.2636.3.60.1.1.1.1.19.526|2|-199 +1.3.6.1.4.1.2636.3.60.1.1.1.1.19.527|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.19.528|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.19.529|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.19.530|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.19.531|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.19.532|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.19.533|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.19.534|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.19.535|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.19.541|2|-100 +1.3.6.1.4.1.2636.3.60.1.1.1.1.19.556|2|100 +1.3.6.1.4.1.2636.3.60.1.1.1.1.19.557|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.19.558|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.20.516|2|-950 +1.3.6.1.4.1.2636.3.60.1.1.1.1.20.517|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.20.518|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.20.519|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.20.520|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.20.521|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.20.522|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.20.523|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.20.524|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.20.525|2|-903 +1.3.6.1.4.1.2636.3.60.1.1.1.1.20.526|2|-1102 +1.3.6.1.4.1.2636.3.60.1.1.1.1.20.527|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.20.528|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.20.529|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.20.530|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.20.531|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.20.532|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.20.533|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.20.534|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.20.535|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.20.541|2|-801 +1.3.6.1.4.1.2636.3.60.1.1.1.1.20.556|2|-600 +1.3.6.1.4.1.2636.3.60.1.1.1.1.20.557|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.20.558|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.21.516|2|110 +1.3.6.1.4.1.2636.3.60.1.1.1.1.21.517|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.21.518|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.21.519|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.21.520|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.21.521|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.21.522|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.21.523|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.21.524|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.21.525|2|73 +1.3.6.1.4.1.2636.3.60.1.1.1.1.21.526|2|95 +1.3.6.1.4.1.2636.3.60.1.1.1.1.21.527|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.21.528|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.21.529|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.21.530|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.21.531|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.21.532|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.21.533|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.21.534|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.21.535|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.21.541|2|75 +1.3.6.1.4.1.2636.3.60.1.1.1.1.21.556|2|80 +1.3.6.1.4.1.2636.3.60.1.1.1.1.21.557|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.21.558|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.22.516|2|-40 +1.3.6.1.4.1.2636.3.60.1.1.1.1.22.517|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.22.518|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.22.519|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.22.520|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.22.521|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.22.522|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.22.523|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.22.524|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.22.525|2|-8 +1.3.6.1.4.1.2636.3.60.1.1.1.1.22.526|2|-25 +1.3.6.1.4.1.2636.3.60.1.1.1.1.22.527|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.22.528|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.22.529|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.22.530|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.22.531|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.22.532|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.22.533|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.22.534|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.22.535|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.22.541|2|-10 +1.3.6.1.4.1.2636.3.60.1.1.1.1.22.556|2|-15 +1.3.6.1.4.1.2636.3.60.1.1.1.1.22.557|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.22.558|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.23.516|2|93 +1.3.6.1.4.1.2636.3.60.1.1.1.1.23.517|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.23.518|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.23.519|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.23.520|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.23.521|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.23.522|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.23.523|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.23.524|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.23.525|2|70 +1.3.6.1.4.1.2636.3.60.1.1.1.1.23.526|2|90 +1.3.6.1.4.1.2636.3.60.1.1.1.1.23.527|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.23.528|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.23.529|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.23.530|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.23.531|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.23.532|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.23.533|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.23.534|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.23.535|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.23.541|2|70 +1.3.6.1.4.1.2636.3.60.1.1.1.1.23.556|2|75 +1.3.6.1.4.1.2636.3.60.1.1.1.1.23.557|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.23.558|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.24.516|2|-30 +1.3.6.1.4.1.2636.3.60.1.1.1.1.24.517|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.24.518|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.24.519|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.24.520|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.24.521|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.24.522|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.24.523|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.24.524|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.24.525|2|-5 +1.3.6.1.4.1.2636.3.60.1.1.1.1.24.526|2|-20 +1.3.6.1.4.1.2636.3.60.1.1.1.1.24.527|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.24.528|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.24.529|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.24.530|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.24.531|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.24.532|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.24.533|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.24.534|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.24.535|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.24.541|2|-5 +1.3.6.1.4.1.2636.3.60.1.1.1.1.24.556|2|-10 +1.3.6.1.4.1.2636.3.60.1.1.1.1.24.557|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.24.558|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.25.516|2|3352 +1.3.6.1.4.1.2636.3.60.1.1.1.1.25.517|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.25.518|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.25.519|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.25.520|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.25.521|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.25.522|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.25.523|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.25.524|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.25.525|2|3286 +1.3.6.1.4.1.2636.3.60.1.1.1.1.25.526|2|3287 +1.3.6.1.4.1.2636.3.60.1.1.1.1.25.527|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.25.528|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.25.529|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.25.530|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.25.531|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.25.532|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.25.533|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.25.534|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.25.535|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.25.541|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.25.556|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.25.557|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.25.558|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.26.516|2|3600 +1.3.6.1.4.1.2636.3.60.1.1.1.1.26.517|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.26.518|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.26.519|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.26.520|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.26.521|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.26.522|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.26.523|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.26.524|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.26.525|2|3630 +1.3.6.1.4.1.2636.3.60.1.1.1.1.26.526|2|3900 +1.3.6.1.4.1.2636.3.60.1.1.1.1.26.527|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.26.528|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.26.529|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.26.530|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.26.531|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.26.532|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.26.533|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.26.534|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.26.535|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.26.541|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.26.556|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.26.557|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.26.558|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.27.516|2|3000 +1.3.6.1.4.1.2636.3.60.1.1.1.1.27.517|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.27.518|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.27.519|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.27.520|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.27.521|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.27.522|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.27.523|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.27.524|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.27.525|2|2970 +1.3.6.1.4.1.2636.3.60.1.1.1.1.27.526|2|2700 +1.3.6.1.4.1.2636.3.60.1.1.1.1.27.527|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.27.528|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.27.529|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.27.530|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.27.531|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.27.532|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.27.533|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.27.534|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.27.535|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.27.541|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.27.556|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.27.557|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.27.558|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.28.516|2|3500 +1.3.6.1.4.1.2636.3.60.1.1.1.1.28.517|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.28.518|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.28.519|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.28.520|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.28.521|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.28.522|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.28.523|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.28.524|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.28.525|2|3465 +1.3.6.1.4.1.2636.3.60.1.1.1.1.28.526|2|3700 +1.3.6.1.4.1.2636.3.60.1.1.1.1.28.527|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.28.528|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.28.529|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.28.530|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.28.531|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.28.532|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.28.533|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.28.534|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.28.535|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.28.541|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.28.556|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.28.557|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.28.558|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.29.516|2|3100 +1.3.6.1.4.1.2636.3.60.1.1.1.1.29.517|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.29.518|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.29.519|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.29.520|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.29.521|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.29.522|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.29.523|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.29.524|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.29.525|2|3135 +1.3.6.1.4.1.2636.3.60.1.1.1.1.29.526|2|2900 +1.3.6.1.4.1.2636.3.60.1.1.1.1.29.527|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.29.528|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.29.529|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.29.530|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.29.531|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.29.532|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.29.533|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.29.534|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.29.535|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.29.541|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.29.556|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.29.557|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.29.558|2|0 +1.3.6.1.4.1.2636.3.60.1.1.1.1.30.516|2|1 +1.3.6.1.4.1.2636.3.60.1.1.1.1.30.517|2|1 +1.3.6.1.4.1.2636.3.60.1.1.1.1.30.518|2|1 +1.3.6.1.4.1.2636.3.60.1.1.1.1.30.519|2|1 +1.3.6.1.4.1.2636.3.60.1.1.1.1.30.520|2|1 +1.3.6.1.4.1.2636.3.60.1.1.1.1.30.521|2|1 +1.3.6.1.4.1.2636.3.60.1.1.1.1.30.522|2|1 +1.3.6.1.4.1.2636.3.60.1.1.1.1.30.523|2|1 +1.3.6.1.4.1.2636.3.60.1.1.1.1.30.524|2|1 +1.3.6.1.4.1.2636.3.60.1.1.1.1.30.525|2|1 +1.3.6.1.4.1.2636.3.60.1.1.1.1.30.526|2|1 +1.3.6.1.4.1.2636.3.60.1.1.1.1.30.527|2|1 +1.3.6.1.4.1.2636.3.60.1.1.1.1.30.528|2|1 +1.3.6.1.4.1.2636.3.60.1.1.1.1.30.529|2|1 +1.3.6.1.4.1.2636.3.60.1.1.1.1.30.530|2|1 +1.3.6.1.4.1.2636.3.60.1.1.1.1.30.531|2|1 +1.3.6.1.4.1.2636.3.60.1.1.1.1.30.532|2|1 +1.3.6.1.4.1.2636.3.60.1.1.1.1.30.533|2|1 +1.3.6.1.4.1.2636.3.60.1.1.1.1.30.534|2|1 +1.3.6.1.4.1.2636.3.60.1.1.1.1.30.535|2|1 +1.3.6.1.4.1.2636.3.60.1.1.1.1.30.541|2|1 +1.3.6.1.4.1.2636.3.60.1.1.1.1.30.556|2|1 +1.3.6.1.4.1.2636.3.60.1.1.1.1.30.557|2|1 +1.3.6.1.4.1.2636.3.60.1.1.1.1.30.558|2|1 +1.3.6.1.4.1.2636.3.60.1.2.1.1.1.516.0|2|0 +1.3.6.1.4.1.2636.3.60.1.2.1.1.1.517.0|2|0 +1.3.6.1.4.1.2636.3.60.1.2.1.1.1.518.0|2|0 +1.3.6.1.4.1.2636.3.60.1.2.1.1.1.519.0|2|0 +1.3.6.1.4.1.2636.3.60.1.2.1.1.1.520.0|2|0 +1.3.6.1.4.1.2636.3.60.1.2.1.1.1.521.0|2|0 +1.3.6.1.4.1.2636.3.60.1.2.1.1.1.522.0|2|0 +1.3.6.1.4.1.2636.3.60.1.2.1.1.1.523.0|2|0 +1.3.6.1.4.1.2636.3.60.1.2.1.1.1.524.0|2|0 +1.3.6.1.4.1.2636.3.60.1.2.1.1.1.525.0|2|0 +1.3.6.1.4.1.2636.3.60.1.2.1.1.1.526.0|2|0 +1.3.6.1.4.1.2636.3.60.1.2.1.1.1.527.0|2|0 +1.3.6.1.4.1.2636.3.60.1.2.1.1.1.528.0|2|0 +1.3.6.1.4.1.2636.3.60.1.2.1.1.1.529.0|2|0 +1.3.6.1.4.1.2636.3.60.1.2.1.1.1.530.0|2|0 +1.3.6.1.4.1.2636.3.60.1.2.1.1.1.531.0|2|0 +1.3.6.1.4.1.2636.3.60.1.2.1.1.1.532.0|2|0 +1.3.6.1.4.1.2636.3.60.1.2.1.1.1.533.0|2|0 +1.3.6.1.4.1.2636.3.60.1.2.1.1.1.534.0|2|0 +1.3.6.1.4.1.2636.3.60.1.2.1.1.1.535.0|2|0 +1.3.6.1.4.1.2636.3.60.1.2.1.1.1.541.0|2|0 +1.3.6.1.4.1.2636.3.60.1.2.1.1.1.556.0|2|0 +1.3.6.1.4.1.2636.3.60.1.2.1.1.1.557.0|2|0 +1.3.6.1.4.1.2636.3.60.1.2.1.1.1.558.0|2|0 +1.3.6.1.4.1.2636.3.60.1.2.1.1.2.516.0|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.2.1.1.2.517.0|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.2.1.1.2.518.0|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.2.1.1.2.519.0|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.2.1.1.2.520.0|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.2.1.1.2.521.0|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.2.1.1.2.522.0|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.2.1.1.2.523.0|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.2.1.1.2.524.0|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.2.1.1.2.525.0|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.2.1.1.2.526.0|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.2.1.1.2.527.0|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.2.1.1.2.528.0|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.2.1.1.2.529.0|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.2.1.1.2.530.0|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.2.1.1.2.531.0|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.2.1.1.2.532.0|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.2.1.1.2.533.0|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.2.1.1.2.534.0|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.2.1.1.2.535.0|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.2.1.1.2.541.0|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.2.1.1.2.556.0|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.2.1.1.2.557.0|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.2.1.1.2.558.0|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.2.1.1.3.516.0|4x|0000000000000000000000 +1.3.6.1.4.1.2636.3.60.1.2.1.1.3.517.0|4x|0000000000000000000000 +1.3.6.1.4.1.2636.3.60.1.2.1.1.3.518.0|4x|0000000000000000000000 +1.3.6.1.4.1.2636.3.60.1.2.1.1.3.519.0|4x|0000000000000000000000 +1.3.6.1.4.1.2636.3.60.1.2.1.1.3.520.0|4x|0000000000000000000000 +1.3.6.1.4.1.2636.3.60.1.2.1.1.3.521.0|4x|0000000000000000000000 +1.3.6.1.4.1.2636.3.60.1.2.1.1.3.522.0|4x|0000000000000000000000 +1.3.6.1.4.1.2636.3.60.1.2.1.1.3.523.0|4x|0000000000000000000000 +1.3.6.1.4.1.2636.3.60.1.2.1.1.3.524.0|4x|0000000000000000000000 +1.3.6.1.4.1.2636.3.60.1.2.1.1.3.525.0|4x|0000000000000000000000 +1.3.6.1.4.1.2636.3.60.1.2.1.1.3.526.0|4x|0000000000000000000000 +1.3.6.1.4.1.2636.3.60.1.2.1.1.3.527.0|4x|0000000000000000000000 +1.3.6.1.4.1.2636.3.60.1.2.1.1.3.528.0|4x|0000000000000000000000 +1.3.6.1.4.1.2636.3.60.1.2.1.1.3.529.0|4x|0000000000000000000000 +1.3.6.1.4.1.2636.3.60.1.2.1.1.3.530.0|4x|0000000000000000000000 +1.3.6.1.4.1.2636.3.60.1.2.1.1.3.531.0|4x|0000000000000000000000 +1.3.6.1.4.1.2636.3.60.1.2.1.1.3.532.0|4x|0000000000000000000000 +1.3.6.1.4.1.2636.3.60.1.2.1.1.3.533.0|4x|0000000000000000000000 +1.3.6.1.4.1.2636.3.60.1.2.1.1.3.534.0|4x|0000000000000000000000 +1.3.6.1.4.1.2636.3.60.1.2.1.1.3.535.0|4x|0000000000000000000000 +1.3.6.1.4.1.2636.3.60.1.2.1.1.3.541.0|4x|0000000000000000000000 +1.3.6.1.4.1.2636.3.60.1.2.1.1.3.556.0|4x|0000000000000000000000 +1.3.6.1.4.1.2636.3.60.1.2.1.1.3.557.0|4x|0000000000000000000000 +1.3.6.1.4.1.2636.3.60.1.2.1.1.3.558.0|4x|0000000000000000000000 +1.3.6.1.4.1.2636.3.60.1.2.1.1.4.516.0|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.2.1.1.4.517.0|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.2.1.1.4.518.0|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.2.1.1.4.519.0|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.2.1.1.4.520.0|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.2.1.1.4.521.0|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.2.1.1.4.522.0|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.2.1.1.4.523.0|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.2.1.1.4.524.0|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.2.1.1.4.525.0|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.2.1.1.4.526.0|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.2.1.1.4.527.0|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.2.1.1.4.528.0|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.2.1.1.4.529.0|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.2.1.1.4.530.0|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.2.1.1.4.531.0|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.2.1.1.4.532.0|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.2.1.1.4.533.0|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.2.1.1.4.534.0|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.2.1.1.4.535.0|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.2.1.1.4.541.0|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.2.1.1.4.556.0|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.2.1.1.4.557.0|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.2.1.1.4.558.0|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.2.1.1.5.516.0|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.2.1.1.5.517.0|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.2.1.1.5.518.0|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.2.1.1.5.519.0|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.2.1.1.5.520.0|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.2.1.1.5.521.0|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.2.1.1.5.522.0|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.2.1.1.5.523.0|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.2.1.1.5.524.0|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.2.1.1.5.525.0|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.2.1.1.5.526.0|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.2.1.1.5.527.0|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.2.1.1.5.528.0|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.2.1.1.5.529.0|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.2.1.1.5.530.0|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.2.1.1.5.531.0|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.2.1.1.5.532.0|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.2.1.1.5.533.0|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.2.1.1.5.534.0|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.2.1.1.5.535.0|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.2.1.1.5.541.0|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.2.1.1.5.556.0|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.2.1.1.5.557.0|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.2.1.1.5.558.0|4|00 00 00 +1.3.6.1.4.1.2636.3.60.1.2.1.1.6.516.0|2|-2677 +1.3.6.1.4.1.2636.3.60.1.2.1.1.6.517.0|2|0 +1.3.6.1.4.1.2636.3.60.1.2.1.1.6.518.0|2|0 +1.3.6.1.4.1.2636.3.60.1.2.1.1.6.519.0|2|0 +1.3.6.1.4.1.2636.3.60.1.2.1.1.6.520.0|2|0 +1.3.6.1.4.1.2636.3.60.1.2.1.1.6.521.0|2|0 +1.3.6.1.4.1.2636.3.60.1.2.1.1.6.522.0|2|0 +1.3.6.1.4.1.2636.3.60.1.2.1.1.6.523.0|2|0 +1.3.6.1.4.1.2636.3.60.1.2.1.1.6.524.0|2|0 +1.3.6.1.4.1.2636.3.60.1.2.1.1.6.525.0|2|-3221 +1.3.6.1.4.1.2636.3.60.1.2.1.1.6.526.0|2|-483 +1.3.6.1.4.1.2636.3.60.1.2.1.1.6.527.0|2|0 +1.3.6.1.4.1.2636.3.60.1.2.1.1.6.528.0|2|0 +1.3.6.1.4.1.2636.3.60.1.2.1.1.6.529.0|2|0 +1.3.6.1.4.1.2636.3.60.1.2.1.1.6.530.0|2|0 +1.3.6.1.4.1.2636.3.60.1.2.1.1.6.531.0|2|0 +1.3.6.1.4.1.2636.3.60.1.2.1.1.6.532.0|2|0 +1.3.6.1.4.1.2636.3.60.1.2.1.1.6.533.0|2|0 +1.3.6.1.4.1.2636.3.60.1.2.1.1.6.534.0|2|0 +1.3.6.1.4.1.2636.3.60.1.2.1.1.6.535.0|2|0 +1.3.6.1.4.1.2636.3.60.1.2.1.1.6.541.0|2|-218 +1.3.6.1.4.1.2636.3.60.1.2.1.1.6.556.0|2|-252 +1.3.6.1.4.1.2636.3.60.1.2.1.1.6.557.0|2|0 +1.3.6.1.4.1.2636.3.60.1.2.1.1.6.558.0|2|0 +1.3.6.1.4.1.2636.3.60.1.2.1.1.7.516.0|2|5678 +1.3.6.1.4.1.2636.3.60.1.2.1.1.7.517.0|2|0 +1.3.6.1.4.1.2636.3.60.1.2.1.1.7.518.0|2|0 +1.3.6.1.4.1.2636.3.60.1.2.1.1.7.519.0|2|0 +1.3.6.1.4.1.2636.3.60.1.2.1.1.7.520.0|2|0 +1.3.6.1.4.1.2636.3.60.1.2.1.1.7.521.0|2|0 +1.3.6.1.4.1.2636.3.60.1.2.1.1.7.522.0|2|0 +1.3.6.1.4.1.2636.3.60.1.2.1.1.7.523.0|2|0 +1.3.6.1.4.1.2636.3.60.1.2.1.1.7.524.0|2|0 +1.3.6.1.4.1.2636.3.60.1.2.1.1.7.525.0|2|11392 +1.3.6.1.4.1.2636.3.60.1.2.1.1.7.526.0|2|5378 +1.3.6.1.4.1.2636.3.60.1.2.1.1.7.527.0|2|0 +1.3.6.1.4.1.2636.3.60.1.2.1.1.7.528.0|2|0 +1.3.6.1.4.1.2636.3.60.1.2.1.1.7.529.0|2|0 +1.3.6.1.4.1.2636.3.60.1.2.1.1.7.530.0|2|0 +1.3.6.1.4.1.2636.3.60.1.2.1.1.7.531.0|2|0 +1.3.6.1.4.1.2636.3.60.1.2.1.1.7.532.0|2|0 +1.3.6.1.4.1.2636.3.60.1.2.1.1.7.533.0|2|0 +1.3.6.1.4.1.2636.3.60.1.2.1.1.7.534.0|2|0 +1.3.6.1.4.1.2636.3.60.1.2.1.1.7.535.0|2|0 +1.3.6.1.4.1.2636.3.60.1.2.1.1.7.541.0|2|7860 +1.3.6.1.4.1.2636.3.60.1.2.1.1.7.556.0|2|33209 +1.3.6.1.4.1.2636.3.60.1.2.1.1.7.557.0|2|0 +1.3.6.1.4.1.2636.3.60.1.2.1.1.7.558.0|2|0 +1.3.6.1.4.1.2636.3.60.1.2.1.1.8.516.0|2|-494 +1.3.6.1.4.1.2636.3.60.1.2.1.1.8.517.0|2|0 +1.3.6.1.4.1.2636.3.60.1.2.1.1.8.518.0|2|0 +1.3.6.1.4.1.2636.3.60.1.2.1.1.8.519.0|2|0 +1.3.6.1.4.1.2636.3.60.1.2.1.1.8.520.0|2|0 +1.3.6.1.4.1.2636.3.60.1.2.1.1.8.521.0|2|0 +1.3.6.1.4.1.2636.3.60.1.2.1.1.8.522.0|2|0 +1.3.6.1.4.1.2636.3.60.1.2.1.1.8.523.0|2|0 +1.3.6.1.4.1.2636.3.60.1.2.1.1.8.524.0|2|0 +1.3.6.1.4.1.2636.3.60.1.2.1.1.8.525.0|2|-559 +1.3.6.1.4.1.2636.3.60.1.2.1.1.8.526.0|2|-548 +1.3.6.1.4.1.2636.3.60.1.2.1.1.8.527.0|2|0 +1.3.6.1.4.1.2636.3.60.1.2.1.1.8.528.0|2|0 +1.3.6.1.4.1.2636.3.60.1.2.1.1.8.529.0|2|0 +1.3.6.1.4.1.2636.3.60.1.2.1.1.8.530.0|2|0 +1.3.6.1.4.1.2636.3.60.1.2.1.1.8.531.0|2|0 +1.3.6.1.4.1.2636.3.60.1.2.1.1.8.532.0|2|0 +1.3.6.1.4.1.2636.3.60.1.2.1.1.8.533.0|2|0 +1.3.6.1.4.1.2636.3.60.1.2.1.1.8.534.0|2|0 +1.3.6.1.4.1.2636.3.60.1.2.1.1.8.535.0|2|0 +1.3.6.1.4.1.2636.3.60.1.2.1.1.8.541.0|2|-215 +1.3.6.1.4.1.2636.3.60.1.2.1.1.8.556.0|2|-232 +1.3.6.1.4.1.2636.3.60.1.2.1.1.8.557.0|2|0 +1.3.6.1.4.1.2636.3.60.1.2.1.1.8.558.0|2|0 +1.3.6.1.4.1.2636.3.60.1.2.1.1.9.516.0|2|26 +1.3.6.1.4.1.2636.3.60.1.2.1.1.9.517.0|2|0 +1.3.6.1.4.1.2636.3.60.1.2.1.1.9.518.0|2|0 +1.3.6.1.4.1.2636.3.60.1.2.1.1.9.519.0|2|0 +1.3.6.1.4.1.2636.3.60.1.2.1.1.9.520.0|2|0 +1.3.6.1.4.1.2636.3.60.1.2.1.1.9.521.0|2|0 +1.3.6.1.4.1.2636.3.60.1.2.1.1.9.522.0|2|0 +1.3.6.1.4.1.2636.3.60.1.2.1.1.9.523.0|2|0 +1.3.6.1.4.1.2636.3.60.1.2.1.1.9.524.0|2|0 +1.3.6.1.4.1.2636.3.60.1.2.1.1.9.525.0|2|25 +1.3.6.1.4.1.2636.3.60.1.2.1.1.9.526.0|2|21 +1.3.6.1.4.1.2636.3.60.1.2.1.1.9.527.0|2|0 +1.3.6.1.4.1.2636.3.60.1.2.1.1.9.528.0|2|0 +1.3.6.1.4.1.2636.3.60.1.2.1.1.9.529.0|2|0 +1.3.6.1.4.1.2636.3.60.1.2.1.1.9.530.0|2|0 +1.3.6.1.4.1.2636.3.60.1.2.1.1.9.531.0|2|0 +1.3.6.1.4.1.2636.3.60.1.2.1.1.9.532.0|2|0 +1.3.6.1.4.1.2636.3.60.1.2.1.1.9.533.0|2|0 +1.3.6.1.4.1.2636.3.60.1.2.1.1.9.534.0|2|0 +1.3.6.1.4.1.2636.3.60.1.2.1.1.9.535.0|2|0 +1.3.6.1.4.1.2636.3.60.1.2.1.1.9.541.0|2|31 +1.3.6.1.4.1.2636.3.60.1.2.1.1.9.556.0|2|28 +1.3.6.1.4.1.2636.3.60.1.2.1.1.9.557.0|2|0 +1.3.6.1.4.1.2636.3.60.1.2.1.1.9.558.0|2|0 +1.3.6.1.4.1.2636.5.1.1.2.1.1.1.1.0.1.0.0.0.0.1.169.254.250.255|4x|00000000 +1.3.6.1.4.1.2636.5.1.1.2.1.1.1.2.0.1.0.0.0.0.1.169.254.250.255|2|1 +1.3.6.1.4.1.2636.5.1.1.2.1.1.1.3.0.1.0.0.0.0.1.169.254.250.255|2|1 +1.3.6.1.4.1.2636.5.1.1.2.1.1.1.4.0.1.0.0.0.0.1.169.254.250.255|66|4 +1.3.6.1.4.1.2636.5.1.1.2.1.1.1.5.0.1.0.0.0.0.1.169.254.250.255|66|0 +1.3.6.1.4.1.2636.5.1.1.2.1.1.1.6.0.1.0.0.0.0.1.169.254.250.255|2|1 +1.3.6.1.4.1.2636.5.1.1.2.1.1.1.7.0.1.0.0.0.0.1.169.254.250.255|4x|00000000 +1.3.6.1.4.1.2636.5.1.1.2.1.1.1.8.0.1.0.0.0.0.1.169.254.250.255|66|0 +1.3.6.1.4.1.2636.5.1.1.2.1.1.1.9.0.1.0.0.0.0.1.169.254.250.255|66|65534 +1.3.6.1.4.1.2636.5.1.1.2.1.1.1.10.0.1.0.0.0.0.1.169.254.250.255|2|1 +1.3.6.1.4.1.2636.5.1.1.2.1.1.1.11.0.1.0.0.0.0.1.169.254.250.255|4x|A9FEFAFF +1.3.6.1.4.1.2636.5.1.1.2.1.1.1.12.0.1.0.0.0.0.1.169.254.250.255|66|0 +1.3.6.1.4.1.2636.5.1.1.2.1.1.1.13.0.1.0.0.0.0.1.169.254.250.255|66|4294967294 +1.3.6.1.4.1.2636.5.1.1.2.1.1.1.14.0.1.0.0.0.0.1.169.254.250.255|66|0 +1.3.6.1.4.1.2636.5.1.1.2.1.1.1.15.0.1.0.0.0.0.1.169.254.250.255|66|0 +1.3.6.1.4.1.2636.5.1.1.2.2.1.1.1.0.1.0.0.0.0.1.169.254.250.255|4x|0000 +1.3.6.1.4.1.2636.5.1.1.2.2.1.1.5.0.1.0.0.0.0.1.169.254.250.255|4| +1.3.6.1.4.1.2636.5.1.1.2.4.1.1.1.0.1.0.0.0.0.1.169.254.250.255|66|543 +1.3.6.1.4.1.2636.5.1.1.2.4.1.1.2.0.1.0.0.0.0.1.169.254.250.255|66|543 +1.3.6.1.4.1.2636.5.1.1.2.6.1.1.1.0.1.0.0.0.0.1.169.254.250.255|65|0 +1.3.6.1.4.1.2636.5.1.1.2.6.1.1.2.0.1.0.0.0.0.1.169.254.250.255|65|0 +1.3.6.1.4.1.2636.5.1.1.2.6.1.1.3.0.1.0.0.0.0.1.169.254.250.255|65|0 +1.3.6.1.4.1.2636.5.1.1.2.6.1.1.4.0.1.0.0.0.0.1.169.254.250.255|65|0 +1.3.6.1.4.1.2636.5.1.1.2.6.2.1.1.1.1.5|2|1 +1.3.6.1.4.1.2636.5.1.1.2.6.2.1.1.1.1.128|2|1 +1.3.6.1.4.1.2636.5.1.1.2.6.2.1.1.1.2.5|2|2 +1.3.6.1.4.1.2636.5.1.1.2.6.2.1.1.1.2.128|2|2 +1.3.6.1.4.1.2636.5.1.1.2.6.2.1.1.1.25.65|2|25 +1.3.6.1.4.1.2636.5.1.1.2.6.2.1.1.3.1.128|2|1 +1.3.6.1.4.1.2636.5.1.1.2.6.2.1.2.1.1.5|66|5 +1.3.6.1.4.1.2636.5.1.1.2.6.2.1.2.1.1.128|66|128 +1.3.6.1.4.1.2636.5.1.1.2.6.2.1.2.1.2.5|66|5 +1.3.6.1.4.1.2636.5.1.1.2.6.2.1.2.1.2.128|66|128 +1.3.6.1.4.1.2636.5.1.1.2.6.2.1.2.1.25.65|66|65 +1.3.6.1.4.1.2636.5.1.1.2.6.2.1.2.3.1.128|66|128 +1.3.6.1.4.1.2636.5.1.1.2.6.2.1.7.1.1.5|66|0 +1.3.6.1.4.1.2636.5.1.1.2.6.2.1.7.1.1.128|66|0 +1.3.6.1.4.1.2636.5.1.1.2.6.2.1.7.1.2.5|66|0 +1.3.6.1.4.1.2636.5.1.1.2.6.2.1.7.1.2.128|66|0 +1.3.6.1.4.1.2636.5.1.1.2.6.2.1.7.1.25.65|66|0 +1.3.6.1.4.1.2636.5.1.1.2.6.2.1.7.3.1.128|66|0 +1.3.6.1.4.1.2636.5.1.1.2.6.2.1.8.1.1.5|66|0 +1.3.6.1.4.1.2636.5.1.1.2.6.2.1.8.1.1.128|66|0 +1.3.6.1.4.1.2636.5.1.1.2.6.2.1.8.1.2.5|66|0 +1.3.6.1.4.1.2636.5.1.1.2.6.2.1.8.1.2.128|66|0 +1.3.6.1.4.1.2636.5.1.1.2.6.2.1.8.1.25.65|66|0 +1.3.6.1.4.1.2636.5.1.1.2.6.2.1.8.3.1.128|66|0 +1.3.6.1.4.1.2636.5.1.1.2.6.2.1.9.1.1.5|66|0 +1.3.6.1.4.1.2636.5.1.1.2.6.2.1.9.1.1.128|66|0 +1.3.6.1.4.1.2636.5.1.1.2.6.2.1.9.1.2.5|66|0 +1.3.6.1.4.1.2636.5.1.1.2.6.2.1.9.1.2.128|66|0 +1.3.6.1.4.1.2636.5.1.1.2.6.2.1.9.1.25.65|66|0 +1.3.6.1.4.1.2636.5.1.1.2.6.2.1.9.3.1.128|66|0 +1.3.6.1.4.1.2636.5.1.1.2.6.2.1.10.1.1.5|66|0 +1.3.6.1.4.1.2636.5.1.1.2.6.2.1.10.1.1.128|66|0 +1.3.6.1.4.1.2636.5.1.1.2.6.2.1.10.1.2.5|66|0 +1.3.6.1.4.1.2636.5.1.1.2.6.2.1.10.1.2.128|66|0 +1.3.6.1.4.1.2636.5.1.1.2.6.2.1.10.1.25.65|66|0 +1.3.6.1.4.1.2636.5.1.1.2.6.2.1.10.3.1.128|66|0 +1.3.6.1.4.1.2636.5.1.1.2.6.2.1.11.1.1.5|66|0 +1.3.6.1.4.1.2636.5.1.1.2.6.2.1.11.1.1.128|66|0 +1.3.6.1.4.1.2636.5.1.1.2.6.2.1.11.1.2.5|66|0 +1.3.6.1.4.1.2636.5.1.1.2.6.2.1.11.1.2.128|66|0 +1.3.6.1.4.1.2636.5.1.1.2.6.2.1.11.1.25.65|66|0 +1.3.6.1.4.1.2636.5.1.1.2.6.2.1.11.3.1.128|66|0 +1.3.6.1.6.3.10.2.1.3.0|2|1224298