diff --git a/LibreNMS/Config.php b/LibreNMS/Config.php index fd06fcdf19..a9e93dd270 100644 --- a/LibreNMS/Config.php +++ b/LibreNMS/Config.php @@ -437,6 +437,8 @@ class Config self::deprecatedVariable('discovery_modules.cisco-vrf', 'discovery_modules.vrf'); self::deprecatedVariable('discovery_modules.toner', 'discovery_modules.printer-supplies'); self::deprecatedVariable('poller_modules.toner', 'poller_modules.printer-supplies'); + self::deprecatedVariable('discovery_modules.cisco-sla', 'discovery_modules.slas'); + self::deprecatedVariable('poller_modules.cisco-sla', 'poller_modules.slas'); self::deprecatedVariable('oxidized.group', 'oxidized.maps.group'); $persist = Eloquent::isConnected(); diff --git a/LibreNMS/Interfaces/Discovery/SlaDiscovery.php b/LibreNMS/Interfaces/Discovery/SlaDiscovery.php new file mode 100644 index 0000000000..ba78ea0089 --- /dev/null +++ b/LibreNMS/Interfaces/Discovery/SlaDiscovery.php @@ -0,0 +1,34 @@ +. + * + * @link https://www.librenms.org + * @copyright 2020 Tony Murray + * @author Tony Murray + */ + +namespace LibreNMS\Interfaces\Discovery; + +interface SlaDiscovery +{ + /** + * Discover additional information about the OS. + * Primarily this is just version, hardware, features, serial, but could be anything + */ + public function discoverSlas(); +} diff --git a/LibreNMS/Interfaces/Polling/SlaPolling.php b/LibreNMS/Interfaces/Polling/SlaPolling.php new file mode 100644 index 0000000000..b61fd6a9a2 --- /dev/null +++ b/LibreNMS/Interfaces/Polling/SlaPolling.php @@ -0,0 +1,37 @@ +. + * + * @link https://www.librenms.org + * @copyright 2020 Tony Murray + * @author Tony Murray + */ + +namespace LibreNMS\Interfaces\Polling; + +use Illuminate\Database\Eloquent\Collection; + +interface SlaPolling +{ + /** + * Poll Sla data for Sla in database. + * + * @param Collection $slas + */ + public function pollSlas(Collection $slas); +} diff --git a/LibreNMS/Modules/Slas.php b/LibreNMS/Modules/Slas.php new file mode 100644 index 0000000000..f5492172a0 --- /dev/null +++ b/LibreNMS/Modules/Slas.php @@ -0,0 +1,82 @@ +. + * + * @link https://www.librenms.org + */ + +namespace LibreNMS\Modules; + +use App\Models\Sla; +use App\Observers\ModuleModelObserver; +use LibreNMS\DB\SyncsModels; +use LibreNMS\Interfaces\Discovery\SlaDiscovery; +use LibreNMS\Interfaces\Module; +use LibreNMS\Interfaces\Polling\SlaPolling; +use LibreNMS\OS; + +class Slas implements Module +{ + use SyncsModels; + + /** + * Discover this module. Heavier processes can be run here + * Run infrequently (default 4 times a day) + * + * @param OS $os + */ + public function discover(OS $os) + { + if ($os instanceof SlaDiscovery) { + $slas = $os->discoverSlas(); + ModuleModelObserver::observe(Sla::class); + $this->syncModels($os->getDevice(), 'slas', $slas); + } + } + + /** + * 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) + { + if ($os instanceof SlaPolling) { + // Gather our SLA's from the DB. + $slas = $os->getDevice()->slas() + ->where('deleted', 0)->get(); + + if ($slas->isNotEmpty()) { + // We have SLA's, lets go!!! + $os->pollSlas($slas); + $os->getDevice()->slas()->saveMany($slas); + } + } + } + + /** + * 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()->slas()->delete(); + } +} diff --git a/LibreNMS/OS/Junos.php b/LibreNMS/OS/Junos.php index b58f677431..fecc48f4eb 100644 --- a/LibreNMS/OS/Junos.php +++ b/LibreNMS/OS/Junos.php @@ -26,10 +26,14 @@ namespace LibreNMS\OS; use App\Models\Device; +use App\Models\Sla; +use Carbon\Carbon; +use LibreNMS\Interfaces\Discovery\SlaDiscovery; use LibreNMS\Interfaces\Polling\OSPolling; +use LibreNMS\Interfaces\Polling\SlaPolling; use LibreNMS\RRD\RrdDefinition; -class Junos extends \LibreNMS\OS implements OSPolling +class Junos extends \LibreNMS\OS implements SlaDiscovery, OSPolling, SlaPolling { public function discoverOS(Device $device): void { @@ -64,4 +68,136 @@ class Junos extends \LibreNMS\OS implements OSPolling $this->enableGraph('junos_jsrx_spu_sessions'); } } + + public function discoverSlas() + { + $slas = collect(); + $sla_table = snmpwalk_cache_oid($this->getDeviceArray(), 'pingCtlTable', [], 'DISMAN-PING-MIB'); + + if (! empty($sla_table)) { + $sla_table = snmpwalk_cache_oid($this->getDeviceArray(), 'jnxPingResultsRttUs', $sla_table, 'JUNIPER-PING-MIB'); + } + + foreach ($sla_table as $sla_key => $sla_config) { + [$owner, $test] = explode('.', $sla_key, 2); + + $slas->push(new Sla([ + 'sla_nr' => hexdec(hash('crc32', $owner . $test)), // indexed by owner+test, convert to int + 'owner' => $owner, + 'tag' => $test, + 'rtt_type' => $this->retrieveJuniperType($sla_config['pingCtlType']), + 'rtt' => isset($sla_config['jnxPingResultsRttUs']) ? $sla_config['jnxPingResultsRttUs'] / 1000 : null, + 'status' => ($sla_config['pingCtlAdminStatus'] == 'enabled') ? 1 : 0, + 'opstatus' => ($sla_config['pingCtlRowStatus'] == 'active') ? 0 : 2, + ])); + } + + return $slas; + } + + public function pollSlas($slas) + { + $device = $this->getDeviceArray(); + + // Go get some data from the device. + $data = snmpwalk_group($device, 'pingCtlRowStatus', 'DISMAN-PING-MIB', 2); + $data = snmpwalk_group($device, 'pingResultsProbeResponses', 'DISMAN-PING-MIB', 2, $data); + $data = snmpwalk_group($device, 'pingResultsSentProbes', 'DISMAN-PING-MIB', 2, $data); + $data = snmpwalk_group($device, 'jnxPingResultsTable', 'JUNIPER-PING-MIB', 2, $data); + + // Get the needed information + foreach ($slas as $sla) { + $sla_nr = $sla->sla_nr; + $rtt_type = $sla->rtt_type; + $owner = $sla->owner; + $test = $sla->tag; + + // Lets process each SLA + + // Use DISMAN-PING Status codes. 0=Good 2=Critical + $sla->opstatus = $data[$owner][$test]['pingCtlRowStatus'] == '1' ? 0 : 2; + + $sla->rtt = $data[$owner][$test]['jnxPingResultsRttUs'] / 1000; + $time = Carbon::parse($data[$owner][$test]['jnxPingResultsTime'])->toDateTimeString(); + echo 'SLA : ' . $rtt_type . ' ' . $owner . ' ' . $test . '... ' . $sla->rtt . 'ms at ' . $time . "\n"; + + $fields = [ + 'rtt' => $sla->rtt, + ]; + + // The base RRD + $rrd_name = ['sla', $sla['sla_nr']]; + $rrd_def = RrdDefinition::make()->addDataset('rtt', 'GAUGE', 0, 300000); + $tags = compact('sla_nr', 'rrd_name', 'rrd_def'); + data_update($device, 'sla', $tags, $fields); + + // Let's gather some per-type fields. + switch ($rtt_type) { + case 'DnsQuery': + case 'HttpGet': + case 'HttpGetMetadata': + break; + case 'IcmpEcho': + case 'IcmpTimeStamp': + $icmp = [ + 'MinRttUs' => $data[$owner][$test]['jnxPingResultsMinRttUs'] / 1000, + 'MaxRttUs' => $data[$owner][$test]['jnxPingResultsMaxRttUs'] / 1000, + 'StdDevRttUs' => $data[$owner][$test]['jnxPingResultsStdDevRttUs'] / 1000, + 'ProbeResponses' => $data[$owner][$test]['pingResultsProbeResponses'], + 'ProbeLoss' => (int) $data[$owner][$test]['pingResultsSentProbes'] - (int) $data[$owner][$test]['pingResultsProbeResponses'], + ]; + $rrd_name = ['sla', $sla_nr, $rtt_type]; + $rrd_def = RrdDefinition::make() + ->addDataset('MinRttUs', 'GAUGE', 0, 300000) + ->addDataset('MaxRttUs', 'GAUGE', 0, 300000) + ->addDataset('StdDevRttUs', 'GAUGE', 0, 300000) + ->addDataset('ProbeResponses', 'GAUGE', 0, 300000) + ->addDataset('ProbeLoss', 'GAUGE', 0, 300000); + $tags = compact('rrd_name', 'rrd_def', 'sla_nr', 'rtt_type'); + data_update($device, 'sla', $tags, $icmp); + $fields = array_merge($fields, $icmp); + break; + case 'NtpQuery': + case 'UdpTimestamp': + break; + } + + d_echo('The following datasources were collected for #' . $sla['sla_nr'] . ":\n"); + d_echo($fields); + } + } + + private function calculateSlaNr($key): int + { + $sum = 0; + $length = strlen($key); + for ($i = 0; $i < $length; $i++) { + $sum += ord($key[$i]); + } + + return $sum; + } + + /** + * Retrieve specific Juniper PingCtlType + */ + private function retrieveJuniperType($rtt_type) + { + switch ($rtt_type) { + case 'enterprises.2636.3.7.2.1': + return 'IcmpTimeStamp'; + case 'enterprises.2636.3.7.2.2': + return 'HttpGet'; + case 'enterprises.2636.3.7.2.3': + return 'HttpGetMetadata'; + case 'enterprises.2636.3.7.2.4': + return 'DnsQuery'; + case 'enterprises.2636.3.7.2.5': + return 'NtpQuery'; + case 'enterprises.2636.3.7.2.6': + return 'UdpTimestamp'; + default: + return str_replace('ping', '', $rtt_type); + } + } } diff --git a/LibreNMS/OS/Shared/Cisco.php b/LibreNMS/OS/Shared/Cisco.php index 68b94e730d..3b03d7a06c 100644 --- a/LibreNMS/OS/Shared/Cisco.php +++ b/LibreNMS/OS/Shared/Cisco.php @@ -28,17 +28,21 @@ namespace LibreNMS\OS\Shared; use App\Models\Device; use App\Models\Mempool; use App\Models\PortsNac; +use App\Models\Sla; use Illuminate\Support\Arr; use LibreNMS\Device\Processor; use LibreNMS\Interfaces\Discovery\MempoolsDiscovery; use LibreNMS\Interfaces\Discovery\OSDiscovery; use LibreNMS\Interfaces\Discovery\ProcessorDiscovery; +use LibreNMS\Interfaces\Discovery\SlaDiscovery; use LibreNMS\Interfaces\Polling\NacPolling; +use LibreNMS\Interfaces\Polling\SlaPolling; use LibreNMS\OS; use LibreNMS\OS\Traits\YamlOSDiscovery; +use LibreNMS\RRD\RrdDefinition; use LibreNMS\Util\IP; -class Cisco extends OS implements OSDiscovery, ProcessorDiscovery, MempoolsDiscovery, NacPolling +class Cisco extends OS implements OSDiscovery, SlaDiscovery, ProcessorDiscovery, MempoolsDiscovery, NacPolling, SlaPolling { use YamlOSDiscovery { YamlOSDiscovery::discoverOS as discoverYamlOS; @@ -302,6 +306,56 @@ class Cisco extends OS implements OSDiscovery, ProcessorDiscovery, MempoolsDisco return $processors; } + public function discoverSlas() + { + $slas = collect(); + + $sla_data = snmpwalk_cache_oid($this->getDeviceArray(), 'rttMonCtrl', [], 'CISCO-RTTMON-MIB'); + + if (! empty($sla_data)) { + $sla_data = snmpwalk_cache_oid($this->getDeviceArray(), 'rttMonLatestRttOperCompletionTime', $sla_data, 'CISCO-RTTMON-MIB'); + } + + foreach ($sla_data as $index => $sla_config) { + $slas->push(new Sla([ + 'sla_nr' => $index, + 'owner' => $sla_config['rttMonCtrlAdminOwner'] ?? '', + 'tag' => $this->getSlaTag($sla_config), + 'rtt_type' => $sla_config['rttMonCtrlAdminRttType'], + 'rtt' => $sla_config['rttMonLatestRttOperCompletionTime'] ?? null, + 'status' => ($sla_config['rttMonCtrlAdminStatus'] == 'active') ? 1 : 0, + 'opstatus' => ($sla_config['rttMonLatestRttOperSense'] == 'ok') ? 0 : 2, + ])); + } + + return $slas; + } + + private function getSlaTag($data) + { + if (! empty($data['rttMonCtrlAdminTag'])) { + return $data['rttMonCtrlAdminTag']; + } + + switch ($data['rttMonCtrlAdminRttType']) { + case 'http': + return $data['rttMonEchoAdminURL']; + case 'dns': + return $data['rttMonEchoAdminTargetAddressString']; + case 'echo': + return IP::fromHexString($data['rttMonEchoAdminTargetAddress'], true); + case 'jitter': + $tag = IP::fromHexString($data['rttMonEchoAdminTargetAddress'], true) . ':' . $data['rttMonEchoAdminTargetPort']; + if (isset($data['rttMonEchoAdminCodecType']) && $data['rttMonEchoAdminCodecType'] != 'notApplicable') { + $tag .= ' (' . $data['rttMonEchoAdminCodecType'] . ' @ ' . $data['rttMonEchoAdminCodecInterval'] . 'ms)'; + } + + return $tag; + default: + return ''; + } + } + public function pollNac() { $nac = collect(); @@ -346,6 +400,110 @@ class Cisco extends OS implements OSDiscovery, ProcessorDiscovery, MempoolsDisco return $nac; } + public function pollSlas($slas) + { + $device = $this->getDeviceArray(); + + $data = snmpwalk_group($device, 'rttMonLatestRttOperTable', 'CISCO-RTTMON-MIB'); + $data = snmpwalk_group($device, 'ttMonLatestOper', 'CISCO-RTTMON-MIB', 1, $data); + + $time_offset = time() - $this->getDevice()->uptime; + + foreach ($slas as $sla) { + $sla_id = $sla->sla_id; + $sla_nr = $sla->sla_nr; + $rtt_type = $sla->rtt_type; + + // Lets process each SLA + $unixtime = intval(($data[$sla_nr]['rttMonLatestRttOperTime'] / 100 + $time_offset)); + $time = strftime('%Y-%m-%d %H:%M:%S', $unixtime); + + // Save data + $sla->rtt = $data[$sla_nr]['rttMonLatestRttOperCompletionTime']; + // Use Nagios Status codes. 0: Good, 2: Critical + $sla->opstatus = $data[$sla_nr]['rttMonLatestRttOperSense'] == 1 ? 0 : 2; + + echo 'SLA ' . $sla_nr . ': ' . $rtt_type . ' ' . $sla['owner'] . ' ' . $sla['tag'] . '... ' . $sla->rtt . 'ms at ' . $time . "\n"; + + $fields = [ + 'rtt' => $sla->rtt, + ]; + + // The base RRD + $rrd_name = ['sla', $sla['sla_nr']]; + $rrd_def = RrdDefinition::make()->addDataset('rtt', 'GAUGE', 0, 300000); + $tags = compact('sla_nr', 'rrd_name', 'rrd_def'); + data_update($device, 'sla', $tags, $fields); + + // Let's gather some per-type fields. + switch ($rtt_type) { + case 'jitter': + $jitter = [ + 'PacketLossSD' => $data[$sla_nr]['rttMonLatestJitterOperPacketLossSD'], + 'PacketLossDS' => $data[$sla_nr]['rttMonLatestJitterOperPacketLossDS'], + 'PacketOutOfSequence' => $data[$sla_nr]['rttMonLatestJitterOperPacketOutOfSequence'], + 'PacketMIA' => $data[$sla_nr]['rttMonLatestJitterOperPacketMIA'], + 'PacketLateArrival' => $data[$sla_nr]['rttMonLatestJitterOperPacketLateArrival'], + 'MOS' => isset($data[$sla_nr]['rttMonLatestJitterOperMOS']) ? intval($data[$sla_nr]['rttMonLatestJitterOperMOS']) / 100 : null, + 'ICPIF' => $data[$sla_nr]['rttMonLatestJitterOperICPIF'] ?? null, + 'OWAvgSD' => $data[$sla_nr]['rttMonLatestJitterOperOWAvgSD'] ?? null, + 'OWAvgDS' => $data[$sla_nr]['rttMonLatestJitterOperOWAvgDS'] ?? null, + 'AvgSDJ' => $data[$sla_nr]['rttMonLatestJitterOperAvgSDJ'] ?? null, + 'AvgDSJ' => $data[$sla_nr]['rttMonLatestJitterOperAvgDSJ'] ?? null, + ]; + $rrd_name = ['sla', $sla_nr, $rtt_type]; + $rrd_def = RrdDefinition::make() + ->addDataset('PacketLossSD', 'GAUGE', 0) + ->addDataset('PacketLossDS', 'GAUGE', 0) + ->addDataset('PacketOutOfSequence', 'GAUGE', 0) + ->addDataset('PacketMIA', 'GAUGE', 0) + ->addDataset('PacketLateArrival', 'GAUGE', 0) + ->addDataset('MOS', 'GAUGE', 0) + ->addDataset('ICPIF', 'GAUGE', 0) + ->addDataset('OWAvgSD', 'GAUGE', 0) + ->addDataset('OWAvgDS', 'GAUGE', 0) + ->addDataset('AvgSDJ', 'GAUGE', 0) + ->addDataset('AvgDSJ', 'GAUGE', 0); + $tags = compact('rrd_name', 'rrd_def', 'sla_nr', 'rtt_type'); + data_update($device, 'sla', $tags, $jitter); + $fields = array_merge($fields, $jitter); + break; + case 'icmpjitter': + $icmpjitter = [ + 'PacketLoss' => $data[$sla_nr]['rttMonLatestJitterOperPacketLossSD'], + 'PacketOosSD' => $data[$sla_nr]['rttMonLatestJitterOperPacketOutOfSequence'], + 'PacketOosDS' => $data[$sla_nr]['rttMonLatestJitterOperPacketMIA'], + 'PacketLateArrival' => $data[$sla_nr]['rttMonLatestJitterOperPacketLateArrival'], + 'JitterAvgSD' => $data[$sla_nr]['rttMonLatestJitterOperAvgSDJ'], + 'JitterAvgDS' => $data[$sla_nr]['rttMonLatestJitterOperAvgDSJ'], + 'LatencyOWAvgSD' => $data[$sla_nr]['rttMonLatestJitterOperOWAvgSD'], + 'LatencyOWAvgDS' => $data[$sla_nr]['rttMonLatestJitterOperOWAvgDS'], + 'JitterIAJOut' => $data[$sla_nr]['rttMonLatestJitterOperIAJOut'], + 'JitterIAJIn' => $data[$sla_nr]['rttMonLatestJitterOperIAJIn'], + ]; + $rrd_name = ['sla', $sla_nr, $rtt_type]; + $rrd_def = RrdDefinition::make() + ->addDataset('PacketLoss', 'GAUGE', 0) + ->addDataset('PacketOosSD', 'GAUGE', 0) + ->addDataset('PacketOosDS', 'GAUGE', 0) + ->addDataset('PacketLateArrival', 'GAUGE', 0) + ->addDataset('JitterAvgSD', 'GAUGE', 0) + ->addDataset('JitterAvgDS', 'GAUGE', 0) + ->addDataset('LatencyOWAvgSD', 'GAUGE', 0) + ->addDataset('LatencyOWAvgDS', 'GAUGE', 0) + ->addDataset('JitterIAJOut', 'GAUGE', 0) + ->addDataset('JitterIAJIn', 'GAUGE', 0); + $tags = compact('rrd_name', 'rrd_def', 'sla_nr', 'rtt_type'); + data_update($device, 'sla', $tags, $icmpjitter); + $fields = array_merge($fields, $icmpjitter); + break; + } + + d_echo('The following datasources were collected for #' . $sla['sla_nr'] . ":\n"); + d_echo($fields); + } + } + protected function getMainSerial() { $serial_output = snmp_get_multi($this->getDeviceArray(), ['entPhysicalSerialNum.1', 'entPhysicalSerialNum.1001'], '-OQUs', 'ENTITY-MIB:OLD-CISCO-CHASSIS-MIB'); diff --git a/app/Http/Controllers/AboutController.php b/app/Http/Controllers/AboutController.php index d86511701a..1f88522aed 100644 --- a/app/Http/Controllers/AboutController.php +++ b/app/Http/Controllers/AboutController.php @@ -43,6 +43,7 @@ use App\Models\Processor; use App\Models\Pseudowire; use App\Models\Sensor; use App\Models\Service; +use App\Models\Sla; use App\Models\Storage; use App\Models\Syslog; use App\Models\Vlan; @@ -96,6 +97,7 @@ class AboutController extends Controller 'stat_pw' => Pseudowire::count(), 'stat_sensors' => Sensor::count(), 'stat_services' => Service::count(), + 'stat_slas' => Sla::count(), 'stat_storage' => Storage::count(), 'stat_syslog' => Syslog::count(), 'stat_toner' => PrinterSupply::count(), diff --git a/app/Models/PrinterSupply.php b/app/Models/PrinterSupply.php index e1b01bbeba..b5aa1c4925 100644 --- a/app/Models/PrinterSupply.php +++ b/app/Models/PrinterSupply.php @@ -2,7 +2,9 @@ namespace App\Models; -class PrinterSupply extends DeviceRelatedModel +use LibreNMS\Interfaces\Models\Keyable; + +class PrinterSupply extends DeviceRelatedModel implements Keyable { protected $table = 'printer_supplies'; protected $primaryKey = 'supply_id'; diff --git a/app/Models/Sla.php b/app/Models/Sla.php index 78d308bfa2..e908179245 100644 --- a/app/Models/Sla.php +++ b/app/Models/Sla.php @@ -2,8 +2,30 @@ namespace App\Models; -class Sla extends DeviceRelatedModel +use LibreNMS\Interfaces\Models\Keyable; + +class Sla extends DeviceRelatedModel implements Keyable { + protected $table = 'slas'; protected $primaryKey = 'sla_id'; public $timestamps = false; + protected $fillable = [ + 'device_id', + 'sla_nr', + 'owner', + 'tag', + 'rtt_type', + 'rtt', + 'status', + 'opstatus', + 'deleted', + ]; + protected $attributes = [ // default values + 'deleted' => 0, + ]; + + public function getCompositeKey() + { + return "$this->owner-$this->tag"; + } } diff --git a/database/migrations/2021_06_11_084830_slas_add_rtt_field.php b/database/migrations/2021_06_11_084830_slas_add_rtt_field.php new file mode 100644 index 0000000000..736460378f --- /dev/null +++ b/database/migrations/2021_06_11_084830_slas_add_rtt_field.php @@ -0,0 +1,34 @@ +unsignedInteger('sla_nr')->change(); + $table->unsignedFloat('rtt')->nullable()->after('rtt_type'); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::table('slas', function (Blueprint $table) { + $table->integer('sla_nr')->change(); + $table->dropColumn('rtt'); + }); + } +} diff --git a/includes/callback.php b/includes/callback.php index 2f62b3f17f..8b9b31799a 100644 --- a/includes/callback.php +++ b/includes/callback.php @@ -55,6 +55,7 @@ if ($enabled == 1) { 'processors' => 'SELECT COUNT(*) AS `total`,`processor_type` FROM `processors` GROUP BY `processor_type`', 'pseudowires' => 'SELECT COUNT(*) AS `total` FROM `pseudowires`', 'sensors' => 'SELECT COUNT(*) AS `total`,`sensor_class` FROM `sensors` GROUP BY `sensor_class`', + 'sla' => 'SELECT COUNT(*) AS `total`,`rtt_type` FROM `slas` GROUP BY `rtt_type`', 'wireless' => 'SELECT COUNT(*) AS `total`,`sensor_class` FROM `wireless_sensors` GROUP BY `sensor_class`', 'storage' => 'SELECT COUNT(*) AS `total`,`storage_type` FROM `storage` GROUP BY `storage_type`', 'toner' => 'SELECT COUNT(*) AS `total`,`supply_type` FROM `printer_supplies` GROUP BY `supply_type`', diff --git a/includes/definitions/acano.yaml b/includes/definitions/acano.yaml index 9cb36a39c7..9f01bccc1f 100644 --- a/includes/definitions/acano.yaml +++ b/includes/definitions/acano.yaml @@ -14,13 +14,13 @@ poller_modules: cisco-mac-accounting: true cisco-voice: true cisco-remote-access-monitor: true - cisco-sla: true + slas: true cisco-ipsec-flow-monitor: true cipsec-tunnels: true cisco-otv: true discovery_modules: cisco-cef: true - cisco-sla: true + slas: true cisco-mac-accounting: true cisco-otv: true cisco-pw: true diff --git a/includes/definitions/acs.yaml b/includes/definitions/acs.yaml index bfcedb27ce..a5026fe80f 100644 --- a/includes/definitions/acs.yaml +++ b/includes/definitions/acs.yaml @@ -16,13 +16,13 @@ poller_modules: cisco-mac-accounting: true cisco-voice: true cisco-remote-access-monitor: true - cisco-sla: true + slas: true cisco-ipsec-flow-monitor: true cipsec-tunnels: true cisco-otv: true discovery_modules: cisco-cef: true - cisco-sla: true + slas: true cisco-mac-accounting: true cisco-otv: true cisco-pw: true diff --git a/includes/definitions/acsw.yaml b/includes/definitions/acsw.yaml index 0a95ed9177..68fb89d8e9 100644 --- a/includes/definitions/acsw.yaml +++ b/includes/definitions/acsw.yaml @@ -16,13 +16,13 @@ poller_modules: cisco-mac-accounting: true cisco-voice: true cisco-remote-access-monitor: true - cisco-sla: true + slas: true cisco-ipsec-flow-monitor: true cipsec-tunnels: true cisco-otv: true discovery_modules: cisco-cef: true - cisco-sla: true + slas: true cisco-mac-accounting: true cisco-otv: true cisco-pw: true diff --git a/includes/definitions/apic.yaml b/includes/definitions/apic.yaml index 318e013847..66b6a64331 100644 --- a/includes/definitions/apic.yaml +++ b/includes/definitions/apic.yaml @@ -13,13 +13,13 @@ poller_modules: cisco-mac-accounting: true cisco-voice: true cisco-remote-access-monitor: true - cisco-sla: true + slas: true cisco-ipsec-flow-monitor: true cipsec-tunnels: true cisco-otv: true discovery_modules: cisco-cef: true - cisco-sla: true + slas: true cisco-mac-accounting: true cisco-otv: true cisco-pw: true diff --git a/includes/definitions/cat1900.yaml b/includes/definitions/cat1900.yaml index 7e8546163a..3ff2ad9898 100644 --- a/includes/definitions/cat1900.yaml +++ b/includes/definitions/cat1900.yaml @@ -15,7 +15,7 @@ poller_modules: cisco-mac-accounting: true cisco-voice: true cisco-remote-access-monitor: true - cisco-sla: true + slas: true cisco-ipsec-flow-monitor: true cipsec-tunnels: true cisco-otv: true @@ -23,7 +23,7 @@ poller_modules: cisco-vpdn: true discovery_modules: cisco-cef: true - cisco-sla: true + slas: true cisco-mac-accounting: true cisco-otv: true cisco-pw: true diff --git a/includes/definitions/catos.yaml b/includes/definitions/catos.yaml index 40234c9696..1762f88354 100644 --- a/includes/definitions/catos.yaml +++ b/includes/definitions/catos.yaml @@ -16,14 +16,14 @@ poller_modules: cisco-mac-accounting: true cisco-voice: true cisco-remote-access-monitor: true - cisco-sla: true + slas: true cisco-ipsec-flow-monitor: true cipsec-tunnels: true cisco-otv: true ipmi: false discovery_modules: cisco-cef: true - cisco-sla: true + slas: true cisco-mac-accounting: true cisco-otv: true cisco-pw: true diff --git a/includes/definitions/cimc.yaml b/includes/definitions/cimc.yaml index b944361f78..9745b9ef6c 100644 --- a/includes/definitions/cimc.yaml +++ b/includes/definitions/cimc.yaml @@ -13,13 +13,13 @@ poller_modules: cisco-mac-accounting: true cisco-voice: true cisco-remote-access-monitor: true - cisco-sla: true + slas: true cisco-ipsec-flow-monitor: true cipsec-tunnels: true cisco-otv: true discovery_modules: cisco-cef: true - cisco-sla: true + slas: true cisco-mac-accounting: true cisco-otv: true cisco-pw: true diff --git a/includes/definitions/cips.yaml b/includes/definitions/cips.yaml index 59747e2c6e..3a7219de41 100644 --- a/includes/definitions/cips.yaml +++ b/includes/definitions/cips.yaml @@ -12,13 +12,13 @@ poller_modules: cisco-mac-accounting: true cisco-voice: true cisco-remote-access-monitor: true - cisco-sla: true + slas: true cisco-ipsec-flow-monitor: true cipsec-tunnels: true cisco-otv: true discovery_modules: cisco-cef: true - cisco-sla: true + slas: true cisco-mac-accounting: true cisco-otv: true cisco-pw: true diff --git a/includes/definitions/ciscosce.yaml b/includes/definitions/ciscosce.yaml index 19a286f66c..d65c5b6e4b 100644 --- a/includes/definitions/ciscosce.yaml +++ b/includes/definitions/ciscosce.yaml @@ -15,7 +15,7 @@ poller_modules: cisco-mac-accounting: false cisco-voice: false cisco-remote-access-monitor: false - cisco-sla: false + slas: false cisco-ipsec-flow-monitor: false cipsec-tunnels: false cisco-otv: false @@ -23,7 +23,7 @@ poller_modules: wireless: false discovery_modules: cisco-cef: false - cisco-sla: false + slas: false cisco-mac-accounting: false cisco-otv: false cisco-pw: false diff --git a/includes/definitions/ciscowap.yaml b/includes/definitions/ciscowap.yaml index afcec56c8c..72c883cffc 100644 --- a/includes/definitions/ciscowap.yaml +++ b/includes/definitions/ciscowap.yaml @@ -20,13 +20,13 @@ poller_modules: cisco-mac-accounting: true cisco-voice: true cisco-remote-access-monitor: true - cisco-sla: true + slas: true cisco-ipsec-flow-monitor: true cipsec-tunnels: true cisco-otv: true discovery_modules: cisco-cef: true - cisco-sla: true + slas: true cisco-mac-accounting: true cisco-otv: true cisco-pw: true diff --git a/includes/definitions/ciscowlc.yaml b/includes/definitions/ciscowlc.yaml index f40b501bee..981c89212a 100644 --- a/includes/definitions/ciscowlc.yaml +++ b/includes/definitions/ciscowlc.yaml @@ -15,13 +15,13 @@ poller_modules: cisco-mac-accounting: true cisco-voice: true cisco-remote-access-monitor: true - cisco-sla: true + slas: true cisco-ipsec-flow-monitor: true cipsec-tunnels: true cisco-otv: true discovery_modules: cisco-cef: true - cisco-sla: true + slas: true cisco-mac-accounting: true cisco-otv: true cisco-pw: true diff --git a/includes/definitions/fxos.yaml b/includes/definitions/fxos.yaml index a12f3ae851..98876f9668 100644 --- a/includes/definitions/fxos.yaml +++ b/includes/definitions/fxos.yaml @@ -13,13 +13,13 @@ poller_modules: cisco-mac-accounting: true cisco-voice: true cisco-remote-access-monitor: true - cisco-sla: true + slas: true cisco-ipsec-flow-monitor: true cipsec-tunnels: true cisco-otv: true discovery_modules: cisco-cef: true - cisco-sla: true + slas: true cisco-mac-accounting: true cisco-otv: true cisco-pw: true diff --git a/includes/definitions/ios.yaml b/includes/definitions/ios.yaml index 600c6ec28d..f60e9faa21 100644 --- a/includes/definitions/ios.yaml +++ b/includes/definitions/ios.yaml @@ -33,7 +33,7 @@ poller_modules: cisco-mac-accounting: true cisco-voice: true cisco-remote-access-monitor: true - cisco-sla: true + slas: true cisco-ipsec-flow-monitor: true cipsec-tunnels: true cisco-otv: true @@ -41,7 +41,7 @@ poller_modules: ipmi: false discovery_modules: cisco-cef: true - cisco-sla: true + slas: true cisco-mac-accounting: true cisco-otv: true cisco-pw: true diff --git a/includes/definitions/iosxe.yaml b/includes/definitions/iosxe.yaml index 6d8b7e67cc..61e46bcc91 100644 --- a/includes/definitions/iosxe.yaml +++ b/includes/definitions/iosxe.yaml @@ -17,7 +17,7 @@ poller_modules: cisco-mac-accounting: true cisco-voice: true cisco-remote-access-monitor: true - cisco-sla: true + slas: true cisco-ipsec-flow-monitor: true cipsec-tunnels: true cisco-otv: true @@ -26,7 +26,7 @@ poller_modules: cisco-qfp: true discovery_modules: cisco-cef: true - cisco-sla: true + slas: true cisco-mac-accounting: true cisco-otv: true cisco-pw: true diff --git a/includes/definitions/iosxr.yaml b/includes/definitions/iosxr.yaml index 4d09ae5dd1..8edeed8363 100644 --- a/includes/definitions/iosxr.yaml +++ b/includes/definitions/iosxr.yaml @@ -17,7 +17,7 @@ poller_modules: cisco-mac-accounting: true cisco-voice: true cisco-remote-access-monitor: true - cisco-sla: true + slas: true cisco-ipsec-flow-monitor: true cipsec-tunnels: true cisco-otv: true @@ -25,7 +25,7 @@ poller_modules: cisco-vpdn: true discovery_modules: cisco-cef: true - cisco-sla: true + slas: true cisco-mac-accounting: true cisco-otv: true cisco-pw: true diff --git a/includes/definitions/ise.yaml b/includes/definitions/ise.yaml index ee5de85505..5160bb7283 100644 --- a/includes/definitions/ise.yaml +++ b/includes/definitions/ise.yaml @@ -12,13 +12,13 @@ poller_modules: cisco-mac-accounting: true cisco-voice: true cisco-remote-access-monitor: true - cisco-sla: true + slas: true cisco-ipsec-flow-monitor: true cipsec-tunnels: true cisco-otv: true discovery_modules: cisco-cef: true - cisco-sla: true + slas: true cisco-mac-accounting: true cisco-otv: true cisco-pw: true diff --git a/includes/definitions/junos.yaml b/includes/definitions/junos.yaml index 988d6fcc03..72700d25e7 100644 --- a/includes/definitions/junos.yaml +++ b/includes/definitions/junos.yaml @@ -6,7 +6,10 @@ over: - { graph: device_processor, text: 'CPU Usage' } - { graph: device_mempool, text: 'Memory Usage' } discovery_modules: + slas: true vrf: true +poller_modules: + slas: true discovery: - sysObjectID: .1.3.6.1.4.1.2636 diff --git a/includes/definitions/nxos.yaml b/includes/definitions/nxos.yaml index 88e97c5071..8e1d8ef332 100644 --- a/includes/definitions/nxos.yaml +++ b/includes/definitions/nxos.yaml @@ -15,7 +15,7 @@ poller_modules: cisco-mac-accounting: true cisco-voice: true cisco-remote-access-monitor: true - cisco-sla: true + slas: true cisco-ipsec-flow-monitor: true cipsec-tunnels: true cisco-otv: true @@ -23,7 +23,7 @@ poller_modules: cisco-vpdn: true discovery_modules: cisco-cef: true - cisco-sla: true + slas: true cisco-mac-accounting: true cisco-otv: true cisco-pw: true diff --git a/includes/definitions/ons.yaml b/includes/definitions/ons.yaml index 99fcf68c50..0fc55d0cdc 100644 --- a/includes/definitions/ons.yaml +++ b/includes/definitions/ons.yaml @@ -14,13 +14,13 @@ poller_modules: cisco-mac-accounting: true cisco-voice: true cisco-remote-access-monitor: true - cisco-sla: true + slas: true cisco-ipsec-flow-monitor: true cipsec-tunnels: true cisco-otv: true discovery_modules: cisco-cef: true - cisco-sla: true + slas: true cisco-mac-accounting: true cisco-otv: true cisco-pw: true diff --git a/includes/definitions/pixos.yaml b/includes/definitions/pixos.yaml index dda076082a..b267b448f8 100644 --- a/includes/definitions/pixos.yaml +++ b/includes/definitions/pixos.yaml @@ -16,7 +16,7 @@ poller_modules: cisco-mac-accounting: true cisco-voice: true cisco-remote-access-monitor: true - cisco-sla: true + slas: true cisco-ipsec-flow-monitor: true cipsec-tunnels: true cisco-otv: true @@ -34,7 +34,7 @@ discovery_modules: bgp-peers: false stp: false cisco-cef: true - cisco-sla: true + slas: true cisco-mac-accounting: true cisco-otv: true cisco-pw: true diff --git a/includes/definitions/primeinfrastructure.yaml b/includes/definitions/primeinfrastructure.yaml index 3f0104464d..d878ebbdb8 100644 --- a/includes/definitions/primeinfrastructure.yaml +++ b/includes/definitions/primeinfrastructure.yaml @@ -13,13 +13,13 @@ poller_modules: cisco-mac-accounting: true cisco-voice: true cisco-remote-access-monitor: true - cisco-sla: true + slas: true cisco-ipsec-flow-monitor: true cipsec-tunnels: true cisco-otv: true discovery_modules: cisco-cef: true - cisco-sla: true + slas: true cisco-mac-accounting: true cisco-otv: true cisco-pw: true diff --git a/includes/definitions/sanos.yaml b/includes/definitions/sanos.yaml index 4104529a41..01acab3c44 100644 --- a/includes/definitions/sanos.yaml +++ b/includes/definitions/sanos.yaml @@ -15,13 +15,13 @@ poller_modules: cisco-mac-accounting: true cisco-voice: true cisco-remote-access-monitor: true - cisco-sla: true + slas: true cisco-ipsec-flow-monitor: true cipsec-tunnels: true cisco-otv: true discovery_modules: cisco-cef: true - cisco-sla: true + slas: true cisco-mac-accounting: true cisco-otv: true cisco-pw: true diff --git a/includes/definitions/tpconductor.yaml b/includes/definitions/tpconductor.yaml index da59551d48..87a2ae9d43 100644 --- a/includes/definitions/tpconductor.yaml +++ b/includes/definitions/tpconductor.yaml @@ -8,13 +8,13 @@ poller_modules: cisco-mac-accounting: true cisco-voice: true cisco-remote-access-monitor: true - cisco-sla: true + slas: true cisco-ipsec-flow-monitor: true cipsec-tunnels: true cisco-otv: true discovery_modules: cisco-cef: true - cisco-sla: true + slas: true cisco-mac-accounting: true cisco-otv: true cisco-pw: true diff --git a/includes/definitions/ucos.yaml b/includes/definitions/ucos.yaml index be4494e60b..9c645d6722 100644 --- a/includes/definitions/ucos.yaml +++ b/includes/definitions/ucos.yaml @@ -12,13 +12,13 @@ poller_modules: cisco-mac-accounting: true cisco-voice: true cisco-remote-access-monitor: true - cisco-sla: true + slas: true cisco-ipsec-flow-monitor: true cipsec-tunnels: true cisco-otv: true discovery_modules: cisco-cef: true - cisco-sla: true + slas: true cisco-mac-accounting: true cisco-otv: true cisco-pw: true diff --git a/includes/definitions/vccodec.yaml b/includes/definitions/vccodec.yaml index 412eff15ac..ec6df87d86 100644 --- a/includes/definitions/vccodec.yaml +++ b/includes/definitions/vccodec.yaml @@ -8,13 +8,13 @@ poller_modules: cisco-mac-accounting: true cisco-voice: true cisco-remote-access-monitor: true - cisco-sla: true + slas: true cisco-ipsec-flow-monitor: true cipsec-tunnels: true cisco-otv: true discovery_modules: cisco-cef: true - cisco-sla: true + slas: true cisco-mac-accounting: true cisco-otv: true cisco-pw: true diff --git a/includes/definitions/vcs.yaml b/includes/definitions/vcs.yaml index 492a40cba8..ec911b71f4 100644 --- a/includes/definitions/vcs.yaml +++ b/includes/definitions/vcs.yaml @@ -8,13 +8,13 @@ poller_modules: cisco-mac-accounting: true cisco-voice: true cisco-remote-access-monitor: true - cisco-sla: true + slas: true cisco-ipsec-flow-monitor: true cipsec-tunnels: true cisco-otv: true discovery_modules: cisco-cef: true - cisco-sla: true + slas: true cisco-mac-accounting: true cisco-otv: true cisco-pw: true diff --git a/includes/definitions/waas.yaml b/includes/definitions/waas.yaml index e865e63934..b1670ea456 100644 --- a/includes/definitions/waas.yaml +++ b/includes/definitions/waas.yaml @@ -17,7 +17,7 @@ poller_modules: cisco-mac-accounting: false cisco-otv: false cisco-remote-access-monitor: false - cisco-sla: false + slas: false cisco-voice: false ipmi: false ospf: false @@ -30,7 +30,7 @@ discovery_modules: cisco-mac-accounting: false cisco-otv: false cisco-pw: false - cisco-sla: false + slas: false cisco-vrf-lite: false vrf: false libvirt-vminfo: false diff --git a/includes/discovery/cisco-sla.inc.php b/includes/discovery/cisco-sla.inc.php deleted file mode 100644 index 92ed19ec5f..0000000000 --- a/includes/discovery/cisco-sla.inc.php +++ /dev/null @@ -1,97 +0,0 @@ - $device['device_id']]); - - foreach ($sla_table as $sla_nr => $sla_config) { - $query_data = [ - 'device_id' => $device['device_id'], - 'sla_nr' => $sla_nr, - ]; - $sla_id = dbFetchCell('SELECT `sla_id` FROM `slas` WHERE `device_id` = :device_id AND `sla_nr` = :sla_nr', $query_data); - - $data = [ - 'device_id' => $device['device_id'], - 'sla_nr' => $sla_nr, - 'owner' => $sla_config['rttMonCtrlAdminOwner'], - 'tag' => $sla_config['rttMonCtrlAdminTag'], - 'rtt_type' => $sla_config['rttMonCtrlAdminRttType'], - 'status' => ($sla_config['rttMonCtrlAdminStatus'] == 'active') ? 1 : 0, - 'opstatus' => ($sla_config['rttMonLatestRttOperSense'] == 'ok') ? 0 : 2, - 'deleted' => 0, - ]; - - // Some fallbacks for when the tag is empty - if (! $data['tag']) { - switch ($data['rtt_type']) { - case 'http': - $data['tag'] = $sla_config['rttMonEchoAdminURL']; - break; - - case 'dns': - $data['tag'] = $sla_config['rttMonEchoAdminTargetAddressString']; - break; - - case 'echo': - $data['tag'] = IP::fromHexString($sla_config['rttMonEchoAdminTargetAddress'], true); - break; - - case 'jitter': - if ($sla_config['rttMonEchoAdminCodecType'] != 'notApplicable') { - $codec_info = ' (' . $sla_config['rttMonEchoAdminCodecType'] . ' @ ' . preg_replace('/milliseconds/', 'ms', $sla_config['rttMonEchoAdminCodecInterval']) . ')'; - } else { - $codec_info = ''; - } - $data['tag'] = IP::fromHexString($sla_config['rttMonEchoAdminTargetAddress'], true) . ':' . $sla_config['rttMonEchoAdminTargetPort'] . $codec_info; - break; - }//end switch - }//end if - - if (! $sla_id) { - $sla_id = dbInsert($data, 'slas'); - echo '+'; - } else { - // Remove from the list - $existing_slas = array_diff($existing_slas, [$sla_id]); - - dbUpdate($data, 'slas', 'sla_id = ?', [$sla_id]); - echo '.'; - } - }//end foreach - - // Mark all remaining SLAs as deleted - foreach ($existing_slas as $existing_sla) { - dbUpdate(['deleted' => 1], 'slas', 'sla_id = ?', [$existing_sla]); - echo '-'; - } - - echo "\n"; -} diff --git a/includes/discovery/slas.inc.php b/includes/discovery/slas.inc.php new file mode 100644 index 0000000000..c494aae350 --- /dev/null +++ b/includes/discovery/slas.inc.php @@ -0,0 +1,8 @@ +discover($os); diff --git a/includes/helpers.php b/includes/helpers.php index 2d01431025..8fd11a91d5 100644 --- a/includes/helpers.php +++ b/includes/helpers.php @@ -78,3 +78,19 @@ function cast_number($number) { return \LibreNMS\Util\Number::cast($number); } + +if (! function_exists('trans_fb')) { + /** + * Translate the given message with a fallback string if none exists. + * + * @param string $key + * @param string $fallback + * @param array $replace + * @param string $locale + * @return \Symfony\Component\Translation\TranslatorInterface|string + */ + function trans_fb($key, $fallback, $replace = [], $locale = null) + { + return ($key === ($translation = trans($key, $replace, $locale))) ? $fallback : $translation; + } +} diff --git a/includes/html/graphs/device/sla_IcmpEcho.inc.php b/includes/html/graphs/device/sla_IcmpEcho.inc.php new file mode 100644 index 0000000000..ab064e5143 --- /dev/null +++ b/includes/html/graphs/device/sla_IcmpEcho.inc.php @@ -0,0 +1,34 @@ + + * + * This program is free software: you can redistribute it and/or modify it + * under the terms of the GNU General Public License as published by the + * Free Software Foundation, either version 3 of the License, or (at your + * option) any later version. Please see LICENSE.txt at the top level of + * the source code distribution for details. + */ + +$sla = dbFetchRow('SELECT `sla_nr` FROM `slas` WHERE `sla_id` = ?', [$vars['id']]); + +require 'includes/html/graphs/common.inc.php'; +$rrd_options .= ' -l 0 -E '; +$rrd_filename = Rrd::name($device['hostname'], ['sla', $sla['sla_nr'], 'IcmpEcho']); + +if (Rrd::checkRrdExists($rrd_filename)) { + $rrd_options .= " COMMENT:'Packet loss\: Cur Avg Min Max\\n' "; + + // Calculating percentage + $rrd_options .= ' DEF:ProbeResponses=' . $rrd_filename . ':ProbeResponses:AVERAGE '; + $rrd_options .= ' DEF:ProbeLoss=' . $rrd_filename . ':ProbeLoss:AVERAGE '; + $rrd_options .= ' CDEF:ProbeCount=ProbeResponses,ProbeLoss,+ '; + $rrd_options .= ' CDEF:PercentageLoss=ProbeLoss,UNKN,NE,0,ProbeLoss,IF,ProbeCount,/,100,*,CEIL '; + + $rrd_options .= " LINE1:PercentageLoss#CC0000:'PercentageLoss'"; + $rrd_options .= ' GPRINT:PercentageLoss:LAST:%6.1lf%% '; + $rrd_options .= ' GPRINT:PercentageLoss:AVERAGE:%6.1lf%% '; + $rrd_options .= ' GPRINT:PercentageLoss:MIN:%6.1lf%% '; + $rrd_options .= ' GPRINT:PercentageLoss:MAX:%6.1lf%%\\l '; +} diff --git a/includes/html/graphs/device/sla_IcmpTimeStamp.inc.php b/includes/html/graphs/device/sla_IcmpTimeStamp.inc.php new file mode 100644 index 0000000000..4d6304b6f2 --- /dev/null +++ b/includes/html/graphs/device/sla_IcmpTimeStamp.inc.php @@ -0,0 +1,34 @@ + + * + * This program is free software: you can redistribute it and/or modify it + * under the terms of the GNU General Public License as published by the + * Free Software Foundation, either version 3 of the License, or (at your + * option) any later version. Please see LICENSE.txt at the top level of + * the source code distribution for details. + */ + +$sla = dbFetchRow('SELECT `sla_nr` FROM `slas` WHERE `sla_id` = ?', [$vars['id']]); + +require 'includes/html/graphs/common.inc.php'; +$rrd_options .= ' -l 0 -E '; +$rrd_filename = Rrd::name($device['hostname'], ['sla', $sla['sla_nr'], 'IcmpTimeStamp']); + +if (Rrd::checkRrdExists($rrd_filename)) { + $rrd_options .= " COMMENT:'Packet loss\: Cur Avg Min Max\\n' "; + + // Calculating percentage + $rrd_options .= ' DEF:ProbeResponses=' . $rrd_filename . ':ProbeResponses:AVERAGE '; + $rrd_options .= ' DEF:ProbeLoss=' . $rrd_filename . ':ProbeLoss:AVERAGE '; + $rrd_options .= ' CDEF:ProbeCount=ProbeResponses,ProbeLoss,+ '; + $rrd_options .= ' CDEF:PercentageLoss=ProbeLoss,UNKN,NE,0,ProbeLoss,IF,ProbeCount,/,100,*,CEIL '; + + $rrd_options .= " LINE1:PercentageLoss#CC0000:'PercentageLoss'"; + $rrd_options .= ' GPRINT:PercentageLoss:LAST:%6.1lf%% '; + $rrd_options .= ' GPRINT:PercentageLoss:AVERAGE:%6.1lf%% '; + $rrd_options .= ' GPRINT:PercentageLoss:MIN:%6.1lf%% '; + $rrd_options .= ' GPRINT:PercentageLoss:MAX:%6.1lf%%\\l '; +} diff --git a/includes/html/pages/device/sla/IcmpEcho.inc.php b/includes/html/pages/device/sla/IcmpEcho.inc.php new file mode 100644 index 0000000000..6ae9c000c1 --- /dev/null +++ b/includes/html/pages/device/sla/IcmpEcho.inc.php @@ -0,0 +1,15 @@ +
+

Packet Loss

+
+
+ +
diff --git a/includes/html/pages/device/sla/IcmpTimeStamp.inc.php b/includes/html/pages/device/sla/IcmpTimeStamp.inc.php new file mode 100644 index 0000000000..0ace87221c --- /dev/null +++ b/includes/html/pages/device/sla/IcmpTimeStamp.inc.php @@ -0,0 +1,15 @@ +
+

Packet Loss

+
+
+ +
diff --git a/includes/html/pages/device/slas.inc.php b/includes/html/pages/device/slas.inc.php index 1d721397e9..1840d9d3d5 100644 --- a/includes/html/pages/device/slas.inc.php +++ b/includes/html/pages/device/slas.inc.php @@ -2,7 +2,7 @@ if ($vars['id']) { $sla = dbFetchRow('SELECT `tag`, `sla_nr`,`rtt_type` FROM `slas` WHERE `sla_id` = ?', [$vars['id']]); - $name = 'SLA #' . $sla['sla_nr'] . ' - ' . \LibreNMS\Config::get("sla_type_labels.{$sla['rtt_type']}", ucfirst($sla['rtt_type'])); + $name = 'SLA #' . $sla['sla_nr'] . ' - ' . trans_fb("modules.slas.{$sla['rtt_type']}", ucfirst($sla['rtt_type'])); if ($sla['tag']) { $name .= ': ' . $sla['tag']; } @@ -40,8 +40,7 @@ if ($vars['id']) { $sla_types = ['all' => 'All']; foreach ($slas as $sla) { $sla_type = $sla['rtt_type']; - - $sla_types[$sla_type] = ! in_array($sla_type, $sla_types) ? \LibreNMS\Config::get("sla_type_labels.$sla_type", 'Unknown') : ucfirst($sla_type); + $sla_types[$sla_type] = trans_fb("modules.slas.{$sla_type}", ucfirst($sla_type)); } asort($sla_types); @@ -118,7 +117,7 @@ if ($vars['id']) { } // These Types have more graphs. Display a sub-page - if (($sla['rtt_type'] == 'jitter') || ($sla['rtt_type'] == 'icmpjitter')) { + if (($sla['rtt_type'] == 'jitter') || ($sla['rtt_type'] == 'icmpjitter') || ($sla['rtt_type'] == 'IcmpEcho') || ($sla['rtt_type'] == 'IcmpTimeStamp')) { $name = '' . $name . ''; } else { $name = htmlentities($name); diff --git a/includes/polling/cisco-sla.inc.php b/includes/polling/cisco-sla.inc.php deleted file mode 100644 index 932abd9b7f..0000000000 --- a/includes/polling/cisco-sla.inc.php +++ /dev/null @@ -1,127 +0,0 @@ - 0) { - // We have SLA's, lets go!!! - - // Go get some data from the device. - $rttMonLatestRttOperTable = snmpwalk_array_num($device, '.1.3.6.1.4.1.9.9.42.1.2.10.1', 1); - $rttMonLatestOper = snmpwalk_array_num($device, '.1.3.6.1.4.1.9.9.42.1.5', 1); - - $uptime = snmp_get($device, 'sysUpTime.0', '-Otv'); - $time_offset = (time() - intval($uptime) / 100); - - foreach ($slas as $sla) { - $sla_nr = $sla['sla_nr']; - $rtt_type = $sla['rtt_type']; - - // Lets process each SLA - $unixtime = intval(($rttMonLatestRttOperTable['1.3.6.1.4.1.9.9.42.1.2.10.1.5'][$sla_nr] / 100 + $time_offset)); - $time = strftime('%Y-%m-%d %H:%M:%S', $unixtime); - $update = []; - - // Use Nagios Status codes. - $opstatus = $rttMonLatestRttOperTable['1.3.6.1.4.1.9.9.42.1.2.10.1.2'][$sla_nr]; - if ($opstatus == 1) { - $opstatus = 0; // 0=Good - } else { - $opstatus = 2; // 2=Critical - } - - // Populating the update array means we need to update the DB. - if ($opstatus != $sla['opstatus']) { - $update['opstatus'] = $opstatus; - } - - $rtt = $rttMonLatestRttOperTable['1.3.6.1.4.1.9.9.42.1.2.10.1.1'][$sla_nr]; - echo 'SLA ' . $sla_nr . ': ' . $rtt_type . ' ' . $sla['owner'] . ' ' . $sla['tag'] . '... ' . $rtt . 'ms at ' . $time . '\n'; - - $fields = [ - 'rtt' => $rtt, - ]; - - // The base RRD - $rrd_name = ['sla', $sla_nr]; - $rrd_def = RrdDefinition::make()->addDataset('rtt', 'GAUGE', 0, 300000); - $tags = compact('sla_nr', 'rrd_name', 'rrd_def'); - data_update($device, 'sla', $tags, $fields); - - // Let's gather some per-type fields. - switch ($rtt_type) { - case 'jitter': - $jitter = [ - 'PacketLossSD' => $rttMonLatestOper['1.3.6.1.4.1.9.9.42.1.5.2.1.26'][$sla_nr], - 'PacketLossDS' => $rttMonLatestOper['1.3.6.1.4.1.9.9.42.1.5.2.1.27'][$sla_nr], - 'PacketOutOfSequence' => $rttMonLatestOper['1.3.6.1.4.1.9.9.42.1.5.2.1.28'][$sla_nr], - 'PacketMIA' => $rttMonLatestOper['1.3.6.1.4.1.9.9.42.1.5.2.1.29'][$sla_nr], - 'PacketLateArrival' => $rttMonLatestOper['1.3.6.1.4.1.9.9.42.1.5.2.1.30'][$sla_nr], - 'MOS' => $rttMonLatestOper['1.3.6.1.4.1.9.9.42.1.5.2.1.42'][$sla_nr] / 100, - 'ICPIF' => $rttMonLatestOper['1.3.6.1.4.1.9.9.42.1.5.2.1.43'][$sla_nr], - 'OWAvgSD' => $rttMonLatestOper['1.3.6.1.4.1.9.9.42.1.5.2.1.49'][$sla_nr], - 'OWAvgDS' => $rttMonLatestOper['1.3.6.1.4.1.9.9.42.1.5.2.1.50'][$sla_nr], - 'AvgSDJ' => $rttMonLatestOper['1.3.6.1.4.1.9.9.42.1.5.2.1.47'][$sla_nr], - 'AvgDSJ' => $rttMonLatestOper['1.3.6.1.4.1.9.9.42.1.5.2.1.48'][$sla_nr], - ]; - $rrd_name = ['sla', $sla_nr, $rtt_type]; - $rrd_def = RrdDefinition::make() - ->addDataset('PacketLossSD', 'GAUGE', 0) - ->addDataset('PacketLossDS', 'GAUGE', 0) - ->addDataset('PacketOutOfSequence', 'GAUGE', 0) - ->addDataset('PacketMIA', 'GAUGE', 0) - ->addDataset('PacketLateArrival', 'GAUGE', 0) - ->addDataset('MOS', 'GAUGE', 0) - ->addDataset('ICPIF', 'GAUGE', 0) - ->addDataset('OWAvgSD', 'GAUGE', 0) - ->addDataset('OWAvgDS', 'GAUGE', 0) - ->addDataset('AvgSDJ', 'GAUGE', 0) - ->addDataset('AvgDSJ', 'GAUGE', 0); - $tags = compact('rrd_name', 'rrd_def', 'sla_nr', 'rtt_type'); - data_update($device, 'sla', $tags, $jitter); - $fields = array_merge($fields, $jitter); - break; - case 'icmpjitter': - $icmpjitter = [ - 'PacketLoss' => $rttMonLatestOper['1.3.6.1.4.1.9.9.42.1.5.4.1.26'][$sla_nr], - 'PacketOosSD' => $rttMonLatestOper['1.3.6.1.4.1.9.9.42.1.5.4.1.28'][$sla_nr], - 'PacketOosDS' => $rttMonLatestOper['1.3.6.1.4.1.9.9.42.1.5.4.1.29'][$sla_nr], - 'PacketLateArrival' => $rttMonLatestOper['1.3.6.1.4.1.9.9.42.1.5.4.1.32'][$sla_nr], - 'JitterAvgSD' => $rttMonLatestOper['1.3.6.1.4.1.9.9.42.1.5.4.1.45'][$sla_nr], - 'JitterAvgDS' => $rttMonLatestOper['1.3.6.1.4.1.9.9.42.1.5.4.1.46'][$sla_nr], - 'LatencyOWAvgSD' => $rttMonLatestOper['1.3.6.1.4.1.9.9.42.1.5.4.1.47'][$sla_nr], - 'LatencyOWAvgDS' => $rttMonLatestOper['1.3.6.1.4.1.9.9.42.1.5.4.1.48'][$sla_nr], - 'JitterIAJOut' => $rttMonLatestOper['1.3.6.1.4.1.9.9.42.1.5.4.1.49'][$sla_nr], - 'JitterIAJIn' => $rttMonLatestOper['1.3.6.1.4.1.9.9.42.1.5.4.1.50'][$sla_nr], - ]; - $rrd_name = ['sla', $sla_nr, $rtt_type]; - $rrd_def = RrdDefinition::make() - ->addDataset('PacketLoss', 'GAUGE', 0) - ->addDataset('PacketOosSD', 'GAUGE', 0) - ->addDataset('PacketOosDS', 'GAUGE', 0) - ->addDataset('PacketLateArrival', 'GAUGE', 0) - ->addDataset('JitterAvgSD', 'GAUGE', 0) - ->addDataset('JitterAvgDS', 'GAUGE', 0) - ->addDataset('LatencyOWAvgSD', 'GAUGE', 0) - ->addDataset('LatencyOWAvgDS', 'GAUGE', 0) - ->addDataset('JitterIAJOut', 'GAUGE', 0) - ->addDataset('JitterIAJIn', 'GAUGE', 0); - $tags = compact('rrd_name', 'rrd_def', 'sla_nr', 'rtt_type'); - data_update($device, 'sla', $tags, $icmpjitter); - $fields = array_merge($fields, $icmpjitter); - break; - } - - d_echo('The following datasources were collected for #' . $sla['sla_nr'] . ":\n"); - d_echo($fields); - - // Update the DB if necessary - if (count($update) > 0) { - $updated = dbUpdate($update, 'slas', '`sla_id` = ?', [$sla['sla_id']]); - } - } -} - -unset($slas); diff --git a/includes/polling/slas.inc.php b/includes/polling/slas.inc.php new file mode 100644 index 0000000000..e2705f6b33 --- /dev/null +++ b/includes/polling/slas.inc.php @@ -0,0 +1,26 @@ +. + * + * @link https://www.librenms.org + */ + +use LibreNMS\OS; + +if (! $os instanceof OS) { + $os = OS::make($device); +} +(new \LibreNMS\Modules\Slas())->poll($os); diff --git a/mibs/junos/mib-jnx-ping.txt b/mibs/junos/JUNIPER-PING-MIB similarity index 100% rename from mibs/junos/mib-jnx-ping.txt rename to mibs/junos/JUNIPER-PING-MIB diff --git a/mibs/junos/mib-rfc2925a.txt b/mibs/junos/mib-rfc2925a.txt deleted file mode 100644 index 09ca338c02..0000000000 --- a/mibs/junos/mib-rfc2925a.txt +++ /dev/null @@ -1,1141 +0,0 @@ - -DISMAN-PING-MIB DEFINITIONS ::= BEGIN - -IMPORTS - MODULE-IDENTITY, OBJECT-TYPE, Integer32, - Unsigned32, mib-2, - NOTIFICATION-TYPE, OBJECT-IDENTITY - FROM SNMPv2-SMI -- RFC2578 - TEXTUAL-CONVENTION, RowStatus, - StorageType, DateAndTime, TruthValue - FROM SNMPv2-TC -- RFC2579 - MODULE-COMPLIANCE, OBJECT-GROUP, - NOTIFICATION-GROUP - FROM SNMPv2-CONF -- RFC2580 - InterfaceIndexOrZero -- RFC2863 - FROM IF-MIB - SnmpAdminString - FROM SNMP-FRAMEWORK-MIB -- RFC2571 - InetAddressType, InetAddress - FROM INET-ADDRESS-MIB; -- RFC2851 - - pingMIB MODULE-IDENTITY - LAST-UPDATED "200009210000Z" -- 21 September 2000 - ORGANIZATION "IETF Distributed Management Working Group" - CONTACT-INFO - "Kenneth White - - International Business Machines Corporation - Network Computing Software Division - Research Triangle Park, NC, USA - - E-mail: wkenneth@us.ibm.com" - DESCRIPTION - "The Ping MIB (DISMAN-PING-MIB) provides the capability of - controlling the use of the ping function at a remote - host." - - -- Revision history - - REVISION "200009210000Z" -- 21 September 2000 - DESCRIPTION - "Initial version, published as RFC 2925." - - ::= { mib-2 80 } - - -- Textual Conventions - - OperationResponseStatus ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "Used to report the result of an operation: - - responseReceived(1) - Operation completes successfully. - unknown(2) - Operation failed due to unknown error. - internalError(3) - An implementation detected an error - in its own processing that caused an operation - to fail. - requestTimedOut(4) - Operation failed to receive a - valid reply within the time limit imposed on it. - unknownDestinationAddress(5) - Invalid destination - address. - noRouteToTarget(6) - Could not find a route to target. - interfaceInactiveToTarget(7) - The interface to be - used in sending a probe is inactive without an - alternate route existing. - arpFailure(8) - Unable to resolve a target address to a - media specific address. - maxConcurrentLimitReached(9) - The maximum number of - concurrent active operations would have been exceeded - if the corresponding operation was allowed. - unableToResolveDnsName(10) - The DNS name specified was - unable to be mapped to an IP address. - invalidHostAddress(11) - The IP address for a host - has been determined to be invalid. Examples of this - are broadcast or multicast addresses." - SYNTAX INTEGER { - responseReceived(1), - unknown(2), - internalError(3), - requestTimedOut(4), - unknownDestinationAddress(5), - noRouteToTarget(6), - interfaceInactiveToTarget(7), - arpFailure(8), - maxConcurrentLimitReached(9), - unableToResolveDnsName(10), - invalidHostAddress(11) - } - - -- Top level structure of the MIB - - pingNotifications OBJECT IDENTIFIER ::= { pingMIB 0 } - pingObjects OBJECT IDENTIFIER - ::= { pingMIB 1 } - pingConformance OBJECT IDENTIFIER ::= { pingMIB 2 } - - - -- The registration node (point) for ping implementation types - - pingImplementationTypeDomains OBJECT IDENTIFIER ::= { pingMIB 3 } - - pingIcmpEcho OBJECT-IDENTITY - STATUS current - DESCRIPTION - "Indicates that an implementation is using the Internet - Control Message Protocol (ICMP) 'ECHO' facility." - ::= { pingImplementationTypeDomains 1 } - - pingUdpEcho OBJECT-IDENTITY - STATUS current - DESCRIPTION - "Indicates that an implementation is using the UDP echo - port (7)." - REFERENCE - "RFC 862, 'Echo Protocol'." - ::= { pingImplementationTypeDomains 2 } - - pingSnmpQuery OBJECT-IDENTITY - STATUS current - DESCRIPTION - "Indicates that an implementation is an SNMP query to - calculate a round trip time." - ::= { pingImplementationTypeDomains 3 } - - pingTcpConnectionAttempt OBJECT-IDENTITY - STATUS current - DESCRIPTION - "Indicates that an implementation is attempting to - connect to a TCP port in order to calculate a round - trip time." - ::= { pingImplementationTypeDomains 4 } - - - -- Simple Object Definitions - - pingMaxConcurrentRequests OBJECT-TYPE - SYNTAX Unsigned32 - UNITS "requests" - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "The maximum number of concurrent active ping requests - that are allowed within an agent implementation. A value - of 0 for this object implies that there is no limit for - the number of concurrent active requests in effect." - DEFVAL { 10 } - ::= { pingObjects 1 } - - -- Ping Control Table - - pingCtlTable OBJECT-TYPE - SYNTAX SEQUENCE OF PingCtlEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Defines the ping Control Table for providing, via SNMP, - the capability of performing ping operations at - a remote host. The results of these operations are - stored in the pingResultsTable and the - pingProbeHistoryTable." - ::= { pingObjects 2 } - - pingCtlEntry OBJECT-TYPE - SYNTAX PingCtlEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Defines an entry in the pingCtlTable. The first index - element, pingCtlOwnerIndex, is of type SnmpAdminString, - a textual convention that allows for use of the SNMPv3 - View-Based Access Control Model (RFC 2575 [11], VACM) - and allows an management application to identify its - entries. The second index, pingCtlTestName (also an - SnmpAdminString), enables the same management - application to have multiple outstanding requests." - INDEX { - pingCtlOwnerIndex, - pingCtlTestName - } - ::= { pingCtlTable 1 } - - PingCtlEntry ::= - SEQUENCE { - pingCtlOwnerIndex SnmpAdminString, - pingCtlTestName SnmpAdminString, - pingCtlTargetAddressType InetAddressType, - pingCtlTargetAddress InetAddress, - pingCtlDataSize Unsigned32, - pingCtlTimeOut Unsigned32, - pingCtlProbeCount Unsigned32, - pingCtlAdminStatus INTEGER, - pingCtlDataFill OCTET STRING, - pingCtlFrequency Unsigned32, - pingCtlMaxRows Unsigned32, - pingCtlStorageType StorageType, - pingCtlTrapGeneration BITS, - pingCtlTrapProbeFailureFilter Unsigned32, - pingCtlTrapTestFailureFilter Unsigned32, - pingCtlType OBJECT IDENTIFIER, - pingCtlDescr SnmpAdminString, - pingCtlSourceAddressType InetAddressType, - pingCtlSourceAddress InetAddress, - pingCtlIfIndex InterfaceIndexOrZero, - pingCtlByPassRouteTable TruthValue, - pingCtlDSField Unsigned32, - pingCtlRowStatus RowStatus - } - - pingCtlOwnerIndex OBJECT-TYPE - SYNTAX SnmpAdminString (SIZE(0..32)) - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "To facilitate the provisioning of access control by a - security administrator using the View-Based Access - Control Model (RFC 2575, VACM) for tables in which - multiple users may need to independently create or - modify entries, the initial index is used as an 'owner - index'. Such an initial index has a syntax of - SnmpAdminString, and can thus be trivially mapped to a - securityName or groupName as defined in VACM, in - accordance with a security policy. - - When used in conjunction with such a security policy all - entries in the table belonging to a particular user (or - group) will have the same value for this initial index. - For a given user's entries in a particular table, the - object identifiers for the information in these entries - will have the same subidentifiers (except for the 'column' - subidentifier) up to the end of the encoded owner index. - To configure VACM to permit access to this portion of the - table, one would create vacmViewTreeFamilyTable entries - with the value of vacmViewTreeFamilySubtree including - the owner index portion, and vacmViewTreeFamilyMask - 'wildcarding' the column subidentifier. More elaborate - configurations are possible." - ::= { pingCtlEntry 1 } - - pingCtlTestName OBJECT-TYPE - SYNTAX SnmpAdminString (SIZE(0..32)) - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The name of the ping test. This is locally unique, within - the scope of an pingCtlOwnerIndex." - ::= { pingCtlEntry 2 } - - pingCtlTargetAddressType OBJECT-TYPE - SYNTAX InetAddressType - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "Specifies the type of host address to be used at a remote - host for performing a ping operation." - DEFVAL { unknown } - ::= { pingCtlEntry 3 } - - pingCtlTargetAddress OBJECT-TYPE - SYNTAX InetAddress - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "Specifies the host address to be used at a remote host for - performing a ping operation. The host address type is - determined by the object value of corresponding - pingCtlTargetAddressType. - A value for this object MUST be set prior to transitioning - its corresponding pingCtlEntry to active(1) via - pingCtlRowStatus." - DEFVAL { ''H } - ::= { pingCtlEntry 4 } - - pingCtlDataSize OBJECT-TYPE - SYNTAX Unsigned32 (0..65507) - UNITS "octets" - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "Specifies the size of the data portion to be - transmitted in a ping operation in octets. A ping - request is usually an ICMP message encoded - into an IP packet. An IP packet has a maximum size - of 65535 octets. Subtracting the size of the ICMP - or UDP header (both 8 octets) and the size of the IP - header (20 octets) yields a maximum size of 65507 - octets." - DEFVAL { 0 } - ::= { pingCtlEntry 5 } - - pingCtlTimeOut OBJECT-TYPE - SYNTAX Unsigned32 (1..60) - UNITS "seconds" - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "Specifies the time-out value, in seconds, for a - remote ping operation." - DEFVAL { 3 } - ::= { pingCtlEntry 6 } - - pingCtlProbeCount OBJECT-TYPE - SYNTAX Unsigned32 (1..15) - UNITS "probes" - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "Specifies the number of times to perform a ping - operation at a remote host." - DEFVAL { 1 } - ::= { pingCtlEntry 7 } - - pingCtlAdminStatus OBJECT-TYPE - SYNTAX INTEGER { - enabled(1), -- test should be started - disabled(2) -- test should be stopped - } - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "Reflects the desired state that a pingCtlEntry should be - in: - - enabled(1) - Attempt to activate the test as defined by - this pingCtlEntry. - disabled(2) - Deactivate the test as defined by this - pingCtlEntry. - - Refer to the corresponding pingResultsOperStatus to - determine the operational state of the test defined by - this entry." - DEFVAL { disabled } - ::= { pingCtlEntry 8 } - - pingCtlDataFill OBJECT-TYPE - SYNTAX OCTET STRING (SIZE(0..1024)) - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The content of this object is used together with the - corresponding pingCtlDataSize value to determine how to - fill the data portion of a probe packet. The option of - selecting a data fill pattern can be useful when links - are compressed or have data pattern sensitivities. The - contents of pingCtlDataFill should be repeated in a ping - packet when the size of the data portion of the ping - packet is greater than the size of pingCtlDataFill." - DEFVAL { '00'H } - ::= { pingCtlEntry 9 } - - pingCtlFrequency OBJECT-TYPE - SYNTAX Unsigned32 - UNITS "seconds" - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The number of seconds to wait before repeating a ping test - as defined by the value of the various objects in the - corresponding row. - - A single ping test consists of a series of ping probes. - The number of probes is determined by the value of the - corresponding pingCtlProbeCount object. After a single - test completes the number of seconds as defined by the - value of pingCtlFrequency MUST elapse before the - next ping test is started. - - A value of 0 for this object implies that the test - as defined by the corresponding entry will not be - repeated." - DEFVAL { 0 } - ::= { pingCtlEntry 10 } - - pingCtlMaxRows OBJECT-TYPE - SYNTAX Unsigned32 - UNITS "rows" - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The maximum number of entries allowed in the - pingProbeHistoryTable. An implementation of this - MIB will remove the oldest entry in the - pingProbeHistoryTable to allow the addition of an - new entry once the number of rows in the - pingProbeHistoryTable reaches this value. - - Old entries are not removed when a new test is - started. Entries are added to the pingProbeHistoryTable - until pingCtlMaxRows is reached before entries begin to - be removed. - - A value of 0 for this object disables creation of - pingProbeHistoryTable entries." - DEFVAL { 50 } - ::= { pingCtlEntry 11 } - - pingCtlStorageType OBJECT-TYPE - SYNTAX StorageType - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The storage type for this conceptual row. - Conceptual rows having the value 'permanent' need not - allow write-access to any columnar objects in the row." - DEFVAL { nonVolatile } - ::= { pingCtlEntry 12 } - - pingCtlTrapGeneration OBJECT-TYPE - SYNTAX BITS { - probeFailure(0), - testFailure(1), - testCompletion(2) - } - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The value of this object determines when and if - to generate a notification for this entry: - - probeFailure(0) - Generate a pingProbeFailed - notification subject to the value of - pingCtlTrapProbeFailureFilter. The object - pingCtlTrapProbeFailureFilter can be used - to specify the number of successive probe failures - that are required before a pingProbeFailed - notification can be generated. - testFailure(1) - Generate a pingTestFailed - notification. In this instance the object - pingCtlTrapTestFailureFilter can be used to - determine the number of probe failures that - signal when a test fails. - testCompletion(2) - Generate a pingTestCompleted - notification. - - The value of this object defaults to zero, indicating - that none of the above options have been selected." - ::= { pingCtlEntry 13 } - - pingCtlTrapProbeFailureFilter OBJECT-TYPE - SYNTAX Unsigned32 (0..15) - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The value of this object is used to determine when - to generate a pingProbeFailed NOTIFICATION. - - Setting pingCtlTrapGeneration - to probeFailure(0) implies that a pingProbeFailed - NOTIFICATION is generated only when the number of - successive probe failures as indicated by the - value of pingCtlTrapPrbefailureFilter fail within - a given ping test." - DEFVAL { 1 } - ::= { pingCtlEntry 14 } - - pingCtlTrapTestFailureFilter OBJECT-TYPE - SYNTAX Unsigned32 (0..15) - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The value of this object is used to determine when - to generate a pingTestFailed NOTIFICATION. - - Setting pingCtlTrapGeneration to testFailure(1) - implies that a pingTestFailed NOTIFICATION is - generated only when the number of ping failures - within a test exceed the value of - pingCtlTrapTestFailureFilter." - DEFVAL { 1 } - ::= { pingCtlEntry 15 } - - pingCtlType OBJECT-TYPE - SYNTAX OBJECT IDENTIFIER - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The value of this object is used to either report or - select the implementation method to be used for - calculating a ping response time. The value of this - object MAY be selected from pingImplementationTypeDomains. - - Additional implementation types SHOULD be allocated as - required by implementers of the DISMAN-PING-MIB under - their enterprise specific registration point and not - beneath pingImplementationTypeDomains." - DEFVAL { pingIcmpEcho } - ::= { pingCtlEntry 16 } - - pingCtlDescr OBJECT-TYPE - SYNTAX SnmpAdminString - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The purpose of this object is to provide a - descriptive name of the remote ping test." - DEFVAL { '00'H } - ::= { pingCtlEntry 17 } - - pingCtlSourceAddressType OBJECT-TYPE - SYNTAX InetAddressType - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "Specifies the type of the source address, - pingCtlSourceAddress, to be used at a remote host - when performing a ping operation." - DEFVAL { ipv4 } - ::= { pingCtlEntry 18 } - - pingCtlSourceAddress OBJECT-TYPE - SYNTAX InetAddress - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "Use the specified IP address (which must be given - in numeric form, not as a hostname) as the source - address in outgoing probe packets. On hosts with - more than one IP address, this option can be used - to force the source address to be something other - than the primary IP address of the interface the - probe packet is sent on. If the IP address is not - one of this machine's interface addresses, an error - is returned and nothing is sent. A zero length - octet string value for this object disables source - address specification. - - The address type (InetAddressType) that relates to - this object is specified by the corresponding value - of pingCtlSourceAddressType." - DEFVAL { ''H } - ::= { pingCtlEntry 19 } - - pingCtlIfIndex OBJECT-TYPE - SYNTAX InterfaceIndexOrZero - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "Setting this object to an interface's ifIndex prior - to starting a remote ping operation directs - the ping probes to be transmitted over the - specified interface. A value of zero for this object - means that this option is not enabled." - DEFVAL { 0 } - ::= { pingCtlEntry 20 } - - pingCtlByPassRouteTable OBJECT-TYPE - SYNTAX TruthValue - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The purpose of this object is to optionally enable - bypassing the route table. If enabled, the remote - host will bypass the normal routing tables and send - directly to a host on an attached network. If the - host is not on a directly-attached network, an - error is returned. This option can be used to perform - the ping operation to a local host through an - interface that has no route defined (e.g., after the - interface was dropped by routed)." - DEFVAL { false } - ::= { pingCtlEntry 21 } - - pingCtlDSField OBJECT-TYPE - SYNTAX Unsigned32 (0..255) - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "Specifies the value to store in the Differentiated - Services (DS) Field in the IP packet used to - encapsulate the ping probe. The DS Field is defined - as the Type of Service (TOS) octet in a IPv4 header - or as the Traffic Class octet in a IPv6 header. - - The value of this object must be a decimal integer - in the range from 0 to 255. This option can be used - to determine what effect an explicit DS Field setting - has on a ping response. Not all values are legal or - meaningful. A value of 0 means that the function - represented by this option is not supported. DS Field - usage is often not supported by IP implementations and - not all values are supported. Refer to RFC 2474 for - guidance on usage of this field." - REFERENCE - "Refer to RFC 2474 for the definition of the - Differentiated Services Field and to RFC 1812 - Section 5.3.2 for Type of Service (TOS)." - DEFVAL { 0 } - ::= { pingCtlEntry 22 } - - pingCtlRowStatus OBJECT-TYPE - SYNTAX RowStatus - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "This object allows entries to be created and deleted - in the pingCtlTable. Deletion of an entry in this - table results in all corresponding (same - pingCtlOwnerIndex and pingCtlTestName index values) - pingResultsTable and pingProbeHistoryTable entries - being deleted. - - A value MUST be specified for pingCtlTargetAddress - prior to a transition to active(1) state being - accepted. - - Activation of a remote ping operation is controlled - via pingCtlAdminStatus and not by changing - this object's value to active(1). - - Transitions in and out of active(1) state are not - allowed while an entry's pingResultsOperStatus is - active(1) with the exception that deletion of - an entry in this table by setting its RowStatus - object to destroy(6) will stop an active - ping operation. - - The operational state of a ping operation - can be determined by examination of its - pingResultsOperStatus object." - REFERENCE - "See definition of RowStatus in RFC 2579, 'Textual - Conventions for SMIv2.'" - ::= { pingCtlEntry 23 } - --- Ping Results Table - - pingResultsTable OBJECT-TYPE - SYNTAX SEQUENCE OF PingResultsEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Defines the Ping Results Table for providing - the capability of performing ping operations at - a remote host. The results of these operations are - stored in the pingResultsTable and the pingPastProbeTable. - - An entry is added to the pingResultsTable when an - pingCtlEntry is started by successful transition - of its pingCtlAdminStatus object to enabled(1). - An entry is removed from the pingResultsTable when - its corresponding pingCtlEntry is deleted." - ::= { pingObjects 3 } - - pingResultsEntry OBJECT-TYPE - SYNTAX PingResultsEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Defines an entry in the pingResultsTable. The - pingResultsTable has the same indexing as the - pingCtlTable in order for a pingResultsEntry to - correspond to the pingCtlEntry that caused it to - be created." - INDEX { - pingCtlOwnerIndex, - pingCtlTestName - } - ::= { pingResultsTable 1 } - - PingResultsEntry ::= - SEQUENCE { - pingResultsOperStatus INTEGER, - pingResultsIpTargetAddressType InetAddressType, - pingResultsIpTargetAddress InetAddress, - pingResultsMinRtt Unsigned32, - pingResultsMaxRtt Unsigned32, - pingResultsAverageRtt Unsigned32, - pingResultsProbeResponses Unsigned32, - pingResultsSentProbes Unsigned32, - pingResultsRttSumOfSquares Unsigned32, - pingResultsLastGoodProbe DateAndTime - } - - pingResultsOperStatus OBJECT-TYPE - SYNTAX INTEGER { - enabled(1), -- test is in progress - disabled(2) -- test has stopped - } - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Reflects the operational state of a pingCtlEntry: - enabled(1) - Test is active. - disabled(2) - Test has stopped." - ::= { pingResultsEntry 1 } - - pingResultsIpTargetAddressType OBJECT-TYPE - SYNTAX InetAddressType - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This objects indicates the type of address stored - in the corresponding pingResultsIpTargetAddress - object." - DEFVAL { unknown } - ::= { pingResultsEntry 2 } - - pingResultsIpTargetAddress OBJECT-TYPE - SYNTAX InetAddress - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This objects reports the IP address associated - with a pingCtlTargetAddress value when the destination - address is specified as a DNS name. The value of - this object should be a zero length octet string - when a DNS name is not specified or when a - specified DNS name fails to resolve." - DEFVAL { ''H } - ::= { pingResultsEntry 3 } - - pingResultsMinRtt OBJECT-TYPE - SYNTAX Unsigned32 - UNITS "milliseconds" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The minimum ping round-trip-time (RTT) received. A value - of 0 for this object implies that no RTT has been received." - ::= { pingResultsEntry 4 } - - pingResultsMaxRtt OBJECT-TYPE - SYNTAX Unsigned32 - UNITS "milliseconds" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The maximum ping round-trip-time (RTT) received. A value - of 0 for this object implies that no RTT has been received." - ::= { pingResultsEntry 5 } - - pingResultsAverageRtt OBJECT-TYPE - SYNTAX Unsigned32 - UNITS "milliseconds" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The current average ping round-trip-time (RTT)." - ::= { pingResultsEntry 6 } - - pingResultsProbeResponses OBJECT-TYPE - SYNTAX Unsigned32 - UNITS "responses" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of responses received for the corresponding - pingCtlEntry and pingResultsEntry. The value of this object - MUST be reported as 0 when no probe responses have been - received." - ::= { pingResultsEntry 7 } - - pingResultsSentProbes OBJECT-TYPE - SYNTAX Unsigned32 - UNITS "probes" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The value of this object reflects the number of probes sent - for the corresponding pingCtlEntry and pingResultsEntry. - The value of this object MUST be reported as 0 when no probes - have been sent." - ::= { pingResultsEntry 8 } - - pingResultsRttSumOfSquares OBJECT-TYPE - SYNTAX Unsigned32 - UNITS "milliseconds" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This object contains the sum of the squares for all ping - responses received. Its purpose is to enable standard - deviation calculation. The value of this object MUST - be reported as 0 when no ping responses have been - received." - ::= { pingResultsEntry 9 } - - pingResultsLastGoodProbe OBJECT-TYPE - SYNTAX DateAndTime - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Date and time when the last response was received for - a probe." - ::= { pingResultsEntry 10 } - - -- Ping Probe History Table - - pingProbeHistoryTable OBJECT-TYPE - SYNTAX SEQUENCE OF PingProbeHistoryEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Defines a table for storing the results of a ping - operation. Entries in this table are limited by - the value of the corresponding pingCtlMaxRows - object. - - An entry in this table is created when the result of - a ping probe is determined. The initial 2 instance - identifier index values identify the pingCtlEntry - that a probe result (pingProbeHistoryEntry) belongs - to. An entry is removed from this table when - its corresponding pingCtlEntry is deleted. - - An implementation of this MIB will remove the oldest - entry in the pingProbeHistoryTable to allow the - addition of an new entry once the number of rows in - the pingProbeHistoryTable reaches the value specified - by pingCtlMaxRows." - ::= { pingObjects 4 } - - pingProbeHistoryEntry OBJECT-TYPE - SYNTAX PingProbeHistoryEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Defines an entry in the pingProbeHistoryTable. - The first two index elements identify the - pingCtlEntry that a pingProbeHistoryEntry belongs - to. The third index element selects a single - probe result." - INDEX { - pingCtlOwnerIndex, - pingCtlTestName, - pingProbeHistoryIndex - } - ::= { pingProbeHistoryTable 1 } - - PingProbeHistoryEntry ::= - SEQUENCE { - pingProbeHistoryIndex Unsigned32, - pingProbeHistoryResponse Unsigned32, - pingProbeHistoryStatus OperationResponseStatus, - pingProbeHistoryLastRC Integer32, - pingProbeHistoryTime DateAndTime - } - - pingProbeHistoryIndex OBJECT-TYPE - SYNTAX Unsigned32 (1..'ffffffff'h) - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "An entry in this table is created when the result of - a ping probe is determined. The initial 2 instance - identifier index values identify the pingCtlEntry - that a probe result (pingProbeHistoryEntry) belongs - to. - - An implementation MUST start assigning - pingProbeHistoryIndex values at 1 and wrap after - exceeding the maximum possible value as defined by - the limit of this object ('ffffffff'h)." - ::= { pingProbeHistoryEntry 1 } - - pingProbeHistoryResponse OBJECT-TYPE - SYNTAX Unsigned32 - UNITS "milliseconds" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The amount of time measured in milliseconds from when - a probe was sent to when its response was received or - when it timed out. The value of this object is reported - as 0 when it is not possible to transmit a probe." - ::= { pingProbeHistoryEntry 2 } - - pingProbeHistoryStatus OBJECT-TYPE - SYNTAX OperationResponseStatus - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The result of a particular probe done by a remote host." - ::= { pingProbeHistoryEntry 3 } - - pingProbeHistoryLastRC OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The last implementation method specific reply code received. - If the ICMP Echo capability is being used then a successful - probe ends when an ICMP response is received that contains - the code ICMP_ECHOREPLY(0). The ICMP responses are defined - normally in the ip_icmp include file." - ::= { pingProbeHistoryEntry 4 } - - pingProbeHistoryTime OBJECT-TYPE - SYNTAX DateAndTime - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Timestamp for when this probe result was determined." - ::= { pingProbeHistoryEntry 5 } - - - -- Notification Definition section - - pingProbeFailed NOTIFICATION-TYPE - OBJECTS { - pingCtlTargetAddressType, - pingCtlTargetAddress, - pingResultsOperStatus, - pingResultsIpTargetAddressType, - pingResultsIpTargetAddress, - pingResultsMinRtt, - pingResultsMaxRtt, - pingResultsAverageRtt, - pingResultsProbeResponses, - pingResultsSentProbes, - pingResultsRttSumOfSquares, - pingResultsLastGoodProbe - } - STATUS current - DESCRIPTION - "Generated when a probe failure is detected when the - corresponding pingCtlTrapGeneration object is set to - probeFailure(0) subject to the value of - pingCtlTrapProbeFailureFilter. The object - pingCtlTrapProbeFailureFilter can be used to specify the - number of successive probe failures that are required - before this notification can be generated." - ::= { pingNotifications 1 } - - pingTestFailed NOTIFICATION-TYPE - OBJECTS { - pingCtlTargetAddressType, - pingCtlTargetAddress, - pingResultsOperStatus, - pingResultsIpTargetAddressType, - pingResultsIpTargetAddress, - pingResultsMinRtt, - pingResultsMaxRtt, - pingResultsAverageRtt, - pingResultsProbeResponses, - pingResultsSentProbes, - pingResultsRttSumOfSquares, - pingResultsLastGoodProbe - } - STATUS current - DESCRIPTION - "Generated when a ping test is determined to have failed - when the corresponding pingCtlTrapGeneration object is - set to testFailure(1). In this instance - pingCtlTrapTestFailureFilter should specify the number of - probes in a test required to have failed in order to - consider the test as failed." - ::= { pingNotifications 2 } - - pingTestCompleted NOTIFICATION-TYPE - OBJECTS { - pingCtlTargetAddressType, - pingCtlTargetAddress, - pingResultsOperStatus, - pingResultsIpTargetAddressType, - pingResultsIpTargetAddress, - pingResultsMinRtt, - pingResultsMaxRtt, - pingResultsAverageRtt, - pingResultsProbeResponses, - pingResultsSentProbes, - pingResultsRttSumOfSquares, - pingResultsLastGoodProbe - } - STATUS current - DESCRIPTION - "Generated at the completion of a ping test when the - corresponding pingCtlTrapGeneration object is set to - testCompletion(4)." - ::= { pingNotifications 3 } - - -- Conformance information - -- Compliance statements - - pingCompliances OBJECT IDENTIFIER ::= { pingConformance 1 } - pingGroups OBJECT IDENTIFIER ::= { pingConformance 2 } - - -- Compliance statements - - pingCompliance MODULE-COMPLIANCE - STATUS current - DESCRIPTION - "The compliance statement for the DISMAN-PING-MIB." - MODULE -- this module - MANDATORY-GROUPS { - pingGroup, - pingNotificationsGroup - } - GROUP pingTimeStampGroup - DESCRIPTION - "This group is mandatory for implementations that have - access to a system clock and are capable of setting - the values for DateAndTime objects. It is RECOMMENDED - that when this group is not supported that the values - for the objects in this group be reported as - '0000000000000000'H." - - OBJECT pingMaxConcurrentRequests - MIN-ACCESS read-only - DESCRIPTION - "The agent is not required to support set - operations to this object." - - OBJECT pingCtlStorageType - MIN-ACCESS read-only - DESCRIPTION - "Write access is not required. It is also allowed - for implementations to support only the volatile - StorageType enumeration." - - OBJECT pingCtlType - MIN-ACCESS read-only - DESCRIPTION - "Write access is not required. In addition, the only - value that MUST be supported by an implementation is - pingIcmpEcho." - - OBJECT pingCtlByPassRouteTable - MIN-ACCESS read-only - DESCRIPTION - "This object is not required by implementations that - are not capable of its implementation. The function - represented by this object is implementable if the - setsockopt SOL_SOCKET SO_DONTROUTE option is - supported." - - OBJECT pingCtlSourceAddressType - SYNTAX InetAddressType - MIN-ACCESS read-only - DESCRIPTION - "This object is not required by implementations that - are not capable of binding the send socket with a - source address. An implementation is only required to - support IPv4 and IPv6 addresses." - - OBJECT pingCtlSourceAddress - SYNTAX InetAddress (SIZE(0|4|16)) - MIN-ACCESS read-only - DESCRIPTION - "This object is not required by implementations that - are not capable of binding the send socket with a - source address. An implementation is only required to - support IPv4 and globally unique IPv6 addresses." - - OBJECT pingCtlIfIndex - MIN-ACCESS read-only - DESCRIPTION - "Write access is not required. When write access is - not supported return a 0 as the value of this object. - A value of 0 means that the function represented by - this option is not supported." - - OBJECT pingCtlDSField - MIN-ACCESS read-only - DESCRIPTION - "Write access is not required. When write access is - not supported return a 0 as the value of this object. - A value of 0 means that the function represented by - this option is not supported." - - OBJECT pingResultsIpTargetAddressType - SYNTAX InetAddressType - DESCRIPTION - "An implementation is only required to - support IPv4 and IPv6 addresses." - - OBJECT pingResultsIpTargetAddress - SYNTAX InetAddress (SIZE(0|4|16)) - DESCRIPTION - "An implementation is only required to - support IPv4 and globally unique IPv6 addresses." - - ::= { pingCompliances 1 } - - -- MIB groupings - - pingGroup OBJECT-GROUP - OBJECTS { - pingMaxConcurrentRequests, - pingCtlTargetAddressType, - pingCtlTargetAddress, - pingCtlDataSize, - pingCtlTimeOut, - pingCtlProbeCount, - pingCtlAdminStatus, - pingCtlDataFill, - pingCtlFrequency, - pingCtlMaxRows, - pingCtlStorageType, - pingCtlTrapGeneration, - pingCtlTrapProbeFailureFilter, - pingCtlTrapTestFailureFilter, - pingCtlType, - pingCtlDescr, - pingCtlByPassRouteTable, - pingCtlSourceAddressType, - pingCtlSourceAddress, - pingCtlIfIndex, - pingCtlDSField, - pingCtlRowStatus, - pingResultsOperStatus, - pingResultsIpTargetAddressType, - pingResultsIpTargetAddress, - pingResultsMinRtt, - pingResultsMaxRtt, - pingResultsAverageRtt, - pingResultsProbeResponses, - pingResultsSentProbes, - pingResultsRttSumOfSquares, - pingProbeHistoryResponse, - pingProbeHistoryStatus, - pingProbeHistoryLastRC - } - STATUS current - DESCRIPTION - "The group of objects that comprise the remote ping - capability." - ::= { pingGroups 1 } - - pingTimeStampGroup OBJECT-GROUP - OBJECTS { - pingResultsLastGoodProbe, - pingProbeHistoryTime - } - STATUS current - DESCRIPTION - "The group of DateAndTime objects." - ::= { pingGroups 2 } - - pingNotificationsGroup NOTIFICATION-GROUP - NOTIFICATIONS { - pingProbeFailed, - pingTestFailed, - pingTestCompleted - } - STATUS current - DESCRIPTION - "The notification which are required to be supported by - implementations of this MIB." - ::= { pingGroups 3 } - -END diff --git a/mibs/junose/rfc2925p.mi2 b/mibs/junose/rfc2925p.mi2 deleted file mode 100644 index 0cc1dae186..0000000000 --- a/mibs/junose/rfc2925p.mi2 +++ /dev/null @@ -1,1145 +0,0 @@ - -DISMAN-PING-MIB DEFINITIONS ::= BEGIN - --- ***************************************************************************** --- Copyright (C) The Internet Society (2000). All Rights Reserved. --- This version of this MIB module is part of RFC 2925; see the RFC itself for --- full legal notices. --- ***************************************************************************** - -IMPORTS - MODULE-IDENTITY, OBJECT-TYPE, Integer32, - Unsigned32, mib-2, - NOTIFICATION-TYPE, OBJECT-IDENTITY - FROM SNMPv2-SMI -- RFC2578 - TEXTUAL-CONVENTION, RowStatus, - StorageType, DateAndTime, TruthValue - FROM SNMPv2-TC -- RFC2579 - MODULE-COMPLIANCE, OBJECT-GROUP, - NOTIFICATION-GROUP - FROM SNMPv2-CONF -- RFC2580 - InterfaceIndexOrZero -- RFC2863 - FROM IF-MIB - SnmpAdminString - FROM SNMP-FRAMEWORK-MIB -- RFC2571 - InetAddressType, InetAddress - FROM INET-ADDRESS-MIB; -- RFC2851 - - pingMIB MODULE-IDENTITY - LAST-UPDATED "200009210000Z" -- 21 September 2000 - ORGANIZATION "IETF Distributed Management Working Group" - CONTACT-INFO - "Kenneth White - - International Business Machines Corporation - Network Computing Software Division - Research Triangle Park, NC, USA - - E-mail: wkenneth@us.ibm.com" - DESCRIPTION - "The Ping MIB (DISMAN-PING-MIB) provides the capability of - controlling the use of the ping function at a remote - host." - - -- Revision history - - REVISION "200009210000Z" -- 21 September 2000 - DESCRIPTION - "Initial version, published as RFC 2925." - - ::= { mib-2 80 } - - -- Textual Conventions - - OperationResponseStatus ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "Used to report the result of an operation: - - responseReceived(1) - Operation completes successfully. - unknown(2) - Operation failed due to unknown error. - internalError(3) - An implementation detected an error - in its own processing that caused an operation - to fail. - requestTimedOut(4) - Operation failed to receive a - valid reply within the time limit imposed on it. - unknownDestinationAddress(5) - Invalid destination - address. - noRouteToTarget(6) - Could not find a route to target. - interfaceInactiveToTarget(7) - The interface to be - used in sending a probe is inactive without an - alternate route existing. - arpFailure(8) - Unable to resolve a target address to a - media specific address. - maxConcurrentLimitReached(9) - The maximum number of - concurrent active operations would have been exceeded - if the corresponding operation was allowed. - unableToResolveDnsName(10) - The DNS name specified was - unable to be mapped to an IP address. - invalidHostAddress(11) - The IP address for a host - has been determined to be invalid. Examples of this - are broadcast or multicast addresses." - SYNTAX INTEGER { - responseReceived(1), - unknown(2), - internalError(3), - requestTimedOut(4), - unknownDestinationAddress(5), - noRouteToTarget(6), - interfaceInactiveToTarget(7), - arpFailure(8), - maxConcurrentLimitReached(9), - unableToResolveDnsName(10), - invalidHostAddress(11) - } - - -- Top level structure of the MIB - - pingNotifications OBJECT IDENTIFIER ::= { pingMIB 0 } - pingObjects OBJECT IDENTIFIER ::= { pingMIB 1 } - pingConformance OBJECT IDENTIFIER ::= { pingMIB 2 } - - -- The registration node (point) for ping implementation types - - pingImplementationTypeDomains OBJECT IDENTIFIER ::= { pingMIB 3 } - - pingIcmpEcho OBJECT-IDENTITY - STATUS current - DESCRIPTION - "Indicates that an implementation is using the Internet - Control Message Protocol (ICMP) 'ECHO' facility." - ::= { pingImplementationTypeDomains 1 } - - pingUdpEcho OBJECT-IDENTITY - STATUS current - DESCRIPTION - "Indicates that an implementation is using the UDP echo - port (7)." - REFERENCE - "RFC 862, 'Echo Protocol'." - ::= { pingImplementationTypeDomains 2 } - - pingSnmpQuery OBJECT-IDENTITY - STATUS current - DESCRIPTION - "Indicates that an implementation is an SNMP query to - calculate a round trip time." - ::= { pingImplementationTypeDomains 3 } - - pingTcpConnectionAttempt OBJECT-IDENTITY - STATUS current - DESCRIPTION - "Indicates that an implementation is attempting to - connect to a TCP port in order to calculate a round - trip time." - ::= { pingImplementationTypeDomains 4 } - - -- Simple Object Definitions - - pingMaxConcurrentRequests OBJECT-TYPE - SYNTAX Unsigned32 - UNITS "requests" - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "The maximum number of concurrent active ping requests - that are allowed within an agent implementation. A value - of 0 for this object implies that there is no limit for - the number of concurrent active requests in effect." - DEFVAL { 10 } - ::= { pingObjects 1 } - - -- Ping Control Table - - pingCtlTable OBJECT-TYPE - SYNTAX SEQUENCE OF PingCtlEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Defines the ping Control Table for providing, via SNMP, - the capability of performing ping operations at - a remote host. The results of these operations are - stored in the pingResultsTable and the - pingProbeHistoryTable." - ::= { pingObjects 2 } - - pingCtlEntry OBJECT-TYPE - SYNTAX PingCtlEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Defines an entry in the pingCtlTable. The first index - element, pingCtlOwnerIndex, is of type SnmpAdminString, - a textual convention that allows for use of the SNMPv3 - View-Based Access Control Model (RFC 2575 [11], VACM) - and allows an management application to identify its - entries. The second index, pingCtlTestName (also an - SnmpAdminString), enables the same management - application to have multiple outstanding requests." - INDEX { - pingCtlOwnerIndex, - pingCtlTestName - } - ::= { pingCtlTable 1 } - - PingCtlEntry ::= - SEQUENCE { - pingCtlOwnerIndex SnmpAdminString, - pingCtlTestName SnmpAdminString, - pingCtlTargetAddressType InetAddressType, - pingCtlTargetAddress InetAddress, - pingCtlDataSize Unsigned32, - pingCtlTimeOut Unsigned32, - pingCtlProbeCount Unsigned32, - pingCtlAdminStatus INTEGER, - pingCtlDataFill OCTET STRING, - pingCtlFrequency Unsigned32, - pingCtlMaxRows Unsigned32, - pingCtlStorageType StorageType, - pingCtlTrapGeneration BITS, - pingCtlTrapProbeFailureFilter Unsigned32, - pingCtlTrapTestFailureFilter Unsigned32, - pingCtlType OBJECT IDENTIFIER, - pingCtlDescr SnmpAdminString, - pingCtlSourceAddressType InetAddressType, - pingCtlSourceAddress InetAddress, - pingCtlIfIndex InterfaceIndexOrZero, - pingCtlByPassRouteTable TruthValue, - pingCtlDSField Unsigned32, - pingCtlRowStatus RowStatus - } - - pingCtlOwnerIndex OBJECT-TYPE - SYNTAX SnmpAdminString (SIZE(0..32)) - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "To facilitate the provisioning of access control by a - security administrator using the View-Based Access - Control Model (RFC 2575, VACM) for tables in which - multiple users may need to independently create or - modify entries, the initial index is used as an 'owner - index'. Such an initial index has a syntax of - SnmpAdminString, and can thus be trivially mapped to a - securityName or groupName as defined in VACM, in - accordance with a security policy. - - When used in conjunction with such a security policy all - entries in the table belonging to a particular user (or - group) will have the same value for this initial index. - For a given user's entries in a particular table, the - object identifiers for the information in these entries - will have the same subidentifiers (except for the 'column' - subidentifier) up to the end of the encoded owner index. - To configure VACM to permit access to this portion of the - table, one would create vacmViewTreeFamilyTable entries - with the value of vacmViewTreeFamilySubtree including - the owner index portion, and vacmViewTreeFamilyMask - 'wildcarding' the column subidentifier. More elaborate - configurations are possible." - ::= { pingCtlEntry 1 } - - pingCtlTestName OBJECT-TYPE - SYNTAX SnmpAdminString (SIZE(0..32)) - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The name of the ping test. This is locally unique, within - the scope of an pingCtlOwnerIndex." - ::= { pingCtlEntry 2 } - - pingCtlTargetAddressType OBJECT-TYPE - SYNTAX InetAddressType - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "Specifies the type of host address to be used at a remote - host for performing a ping operation." - DEFVAL { unknown } - ::= { pingCtlEntry 3 } - - pingCtlTargetAddress OBJECT-TYPE - SYNTAX InetAddress - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "Specifies the host address to be used at a remote host for - performing a ping operation. The host address type is - determined by the object value of corresponding - pingCtlTargetAddressType. - - A value for this object MUST be set prior to transitioning - its corresponding pingCtlEntry to active(1) via - pingCtlRowStatus." - DEFVAL { ''H } - ::= { pingCtlEntry 4 } - - pingCtlDataSize OBJECT-TYPE - SYNTAX Unsigned32 (0..65507) - UNITS "octets" - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "Specifies the size of the data portion to be - transmitted in a ping operation in octets. A ping - request is usually an ICMP message encoded - into an IP packet. An IP packet has a maximum size - of 65535 octets. Subtracting the size of the ICMP - or UDP header (both 8 octets) and the size of the IP - header (20 octets) yields a maximum size of 65507 - octets." - DEFVAL { 0 } - ::= { pingCtlEntry 5 } - - pingCtlTimeOut OBJECT-TYPE - SYNTAX Unsigned32 (1..60) - UNITS "seconds" - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "Specifies the time-out value, in seconds, for a - remote ping operation." - DEFVAL { 3 } - ::= { pingCtlEntry 6 } - - pingCtlProbeCount OBJECT-TYPE - SYNTAX Unsigned32 (1..15) - UNITS "probes" - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "Specifies the number of times to perform a ping - operation at a remote host." - DEFVAL { 1 } - ::= { pingCtlEntry 7 } - - pingCtlAdminStatus OBJECT-TYPE - SYNTAX INTEGER { - enabled(1), -- test should be started - disabled(2) -- test should be stopped - } - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "Reflects the desired state that a pingCtlEntry should be - in: - - enabled(1) - Attempt to activate the test as defined by - this pingCtlEntry. - disabled(2) - Deactivate the test as defined by this - pingCtlEntry. - - Refer to the corresponding pingResultsOperStatus to - determine the operational state of the test defined by - this entry." - DEFVAL { disabled } - ::= { pingCtlEntry 8 } - - pingCtlDataFill OBJECT-TYPE - SYNTAX OCTET STRING (SIZE(0..1024)) - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The content of this object is used together with the - corresponding pingCtlDataSize value to determine how to - fill the data portion of a probe packet. The option of - selecting a data fill pattern can be useful when links - are compressed or have data pattern sensitivities. The - contents of pingCtlDataFill should be repeated in a ping - packet when the size of the data portion of the ping - packet is greater than the size of pingCtlDataFill." - DEFVAL { '00'H } - ::= { pingCtlEntry 9 } - - pingCtlFrequency OBJECT-TYPE - SYNTAX Unsigned32 - UNITS "seconds" - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The number of seconds to wait before repeating a ping test - as defined by the value of the various objects in the - corresponding row. - - A single ping test consists of a series of ping probes. - The number of probes is determined by the value of the - corresponding pingCtlProbeCount object. After a single - test completes the number of seconds as defined by the - value of pingCtlFrequency MUST elapse before the - next ping test is started. - - A value of 0 for this object implies that the test - as defined by the corresponding entry will not be - repeated." - DEFVAL { 0 } - ::= { pingCtlEntry 10 } - - pingCtlMaxRows OBJECT-TYPE - SYNTAX Unsigned32 - UNITS "rows" - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The maximum number of entries allowed in the - pingProbeHistoryTable. An implementation of this - MIB will remove the oldest entry in the - pingProbeHistoryTable to allow the addition of an - new entry once the number of rows in the - pingProbeHistoryTable reaches this value. - - Old entries are not removed when a new test is - started. Entries are added to the pingProbeHistoryTable - until pingCtlMaxRows is reached before entries begin to - be removed. - - A value of 0 for this object disables creation of - pingProbeHistoryTable entries." - DEFVAL { 50 } - ::= { pingCtlEntry 11 } - - pingCtlStorageType OBJECT-TYPE - SYNTAX StorageType - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The storage type for this conceptual row. - Conceptual rows having the value 'permanent' need not - allow write-access to any columnar objects in the row." - DEFVAL { nonVolatile } - ::= { pingCtlEntry 12 } - - pingCtlTrapGeneration OBJECT-TYPE - SYNTAX BITS { - probeFailure(0), - testFailure(1), - testCompletion(2) - } - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The value of this object determines when and if - to generate a notification for this entry: - - probeFailure(0) - Generate a pingProbeFailed - notification subject to the value of - pingCtlTrapProbeFailureFilter. The object - pingCtlTrapProbeFailureFilter can be used - to specify the number of successive probe failures - that are required before a pingProbeFailed - notification can be generated. - testFailure(1) - Generate a pingTestFailed - notification. In this instance the object - pingCtlTrapTestFailureFilter can be used to - determine the number of probe failures that - signal when a test fails. - testCompletion(2) - Generate a pingTestCompleted - notification. - - The value of this object defaults to zero, indicating - that none of the above options have been selected." - ::= { pingCtlEntry 13 } - - pingCtlTrapProbeFailureFilter OBJECT-TYPE - SYNTAX Unsigned32 (0..15) - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The value of this object is used to determine when - to generate a pingProbeFailed NOTIFICATION. - - Setting pingCtlTrapGeneration - to probeFailure(0) implies that a pingProbeFailed - NOTIFICATION is generated only when the number of - successive probe failures as indicated by the - value of pingCtlTrapPrbefailureFilter fail within - a given ping test." - DEFVAL { 1 } - ::= { pingCtlEntry 14 } - - pingCtlTrapTestFailureFilter OBJECT-TYPE - SYNTAX Unsigned32 (0..15) - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The value of this object is used to determine when - to generate a pingTestFailed NOTIFICATION. - - Setting pingCtlTrapGeneration to testFailure(1) - implies that a pingTestFailed NOTIFICATION is - generated only when the number of ping failures - within a test exceed the value of - pingCtlTrapTestFailureFilter." - DEFVAL { 1 } - ::= { pingCtlEntry 15 } - - pingCtlType OBJECT-TYPE - SYNTAX OBJECT IDENTIFIER - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The value of this object is used to either report or - select the implementation method to be used for - calculating a ping response time. The value of this - object MAY be selected from pingImplementationTypeDomains. - - Additional implementation types SHOULD be allocated as - required by implementers of the DISMAN-PING-MIB under - their enterprise specific registration point and not - beneath pingImplementationTypeDomains." - DEFVAL { pingIcmpEcho } - ::= { pingCtlEntry 16 } - - pingCtlDescr OBJECT-TYPE - SYNTAX SnmpAdminString - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The purpose of this object is to provide a - descriptive name of the remote ping test." - DEFVAL { '00'H } - ::= { pingCtlEntry 17 } - - pingCtlSourceAddressType OBJECT-TYPE - SYNTAX InetAddressType - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "Specifies the type of the source address, - pingCtlSourceAddress, to be used at a remote host - when performing a ping operation." - DEFVAL { ipv4 } - ::= { pingCtlEntry 18 } - - pingCtlSourceAddress OBJECT-TYPE - SYNTAX InetAddress - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "Use the specified IP address (which must be given - in numeric form, not as a hostname) as the source - address in outgoing probe packets. On hosts with - more than one IP address, this option can be used - to force the source address to be something other - than the primary IP address of the interface the - probe packet is sent on. If the IP address is not - one of this machine's interface addresses, an error - is returned and nothing is sent. A zero length - octet string value for this object disables source - address specification. - - The address type (InetAddressType) that relates to - this object is specified by the corresponding value - of pingCtlSourceAddressType." - DEFVAL { ''H } - ::= { pingCtlEntry 19 } - - pingCtlIfIndex OBJECT-TYPE - SYNTAX InterfaceIndexOrZero - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "Setting this object to an interface's ifIndex prior - to starting a remote ping operation directs - the ping probes to be transmitted over the - specified interface. A value of zero for this object - means that this option is not enabled." - DEFVAL { 0 } - ::= { pingCtlEntry 20 } - - pingCtlByPassRouteTable OBJECT-TYPE - SYNTAX TruthValue - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The purpose of this object is to optionally enable - bypassing the route table. If enabled, the remote - host will bypass the normal routing tables and send - directly to a host on an attached network. If the - host is not on a directly-attached network, an - error is returned. This option can be used to perform - the ping operation to a local host through an - interface that has no route defined (e.g., after the - interface was dropped by routed)." - DEFVAL { false } - ::= { pingCtlEntry 21 } - - pingCtlDSField OBJECT-TYPE - SYNTAX Unsigned32 (0..255) - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "Specifies the value to store in the Differentiated - Services (DS) Field in the IP packet used to - encapsulate the ping probe. The DS Field is defined - as the Type of Service (TOS) octet in a IPv4 header - or as the Traffic Class octet in a IPv6 header. - - The value of this object must be a decimal integer - in the range from 0 to 255. This option can be used - to determine what effect an explicit DS Field setting - has on a ping response. Not all values are legal or - meaningful. A value of 0 means that the function - represented by this option is not supported. DS Field - usage is often not supported by IP implementations and - not all values are supported. Refer to RFC 2474 for - guidance on usage of this field." - REFERENCE - "Refer to RFC 2474 for the definition of the - Differentiated Services Field and to RFC 1812 - Section 5.3.2 for Type of Service (TOS)." - DEFVAL { 0 } - ::= { pingCtlEntry 22 } - - pingCtlRowStatus OBJECT-TYPE - SYNTAX RowStatus - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "This object allows entries to be created and deleted - in the pingCtlTable. Deletion of an entry in this - table results in all corresponding (same - pingCtlOwnerIndex and pingCtlTestName index values) - pingResultsTable and pingProbeHistoryTable entries - being deleted. - - A value MUST be specified for pingCtlTargetAddress - prior to a transition to active(1) state being - accepted. - - Activation of a remote ping operation is controlled - via pingCtlAdminStatus and not by changing - this object's value to active(1). - - Transitions in and out of active(1) state are not - allowed while an entry's pingResultsOperStatus is - active(1) with the exception that deletion of - an entry in this table by setting its RowStatus - object to destroy(6) will stop an active - ping operation. - - The operational state of a ping operation - can be determined by examination of its - pingResultsOperStatus object." - REFERENCE - "See definition of RowStatus in RFC 2579, 'Textual - Conventions for SMIv2.'" - ::= { pingCtlEntry 23 } - --- Ping Results Table - - pingResultsTable OBJECT-TYPE - SYNTAX SEQUENCE OF PingResultsEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Defines the Ping Results Table for providing - the capability of performing ping operations at - a remote host. The results of these operations are - stored in the pingResultsTable and the pingPastProbeTable. - - An entry is added to the pingResultsTable when an - pingCtlEntry is started by successful transition - of its pingCtlAdminStatus object to enabled(1). - An entry is removed from the pingResultsTable when - its corresponding pingCtlEntry is deleted." - ::= { pingObjects 3 } - - pingResultsEntry OBJECT-TYPE - SYNTAX PingResultsEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Defines an entry in the pingResultsTable. The - pingResultsTable has the same indexing as the - pingCtlTable in order for a pingResultsEntry to - correspond to the pingCtlEntry that caused it to - be created." - INDEX { - pingCtlOwnerIndex, - pingCtlTestName - } - ::= { pingResultsTable 1 } - - PingResultsEntry ::= - SEQUENCE { - pingResultsOperStatus INTEGER, - pingResultsIpTargetAddressType InetAddressType, - pingResultsIpTargetAddress InetAddress, - pingResultsMinRtt Unsigned32, - pingResultsMaxRtt Unsigned32, - pingResultsAverageRtt Unsigned32, - pingResultsProbeResponses Unsigned32, - pingResultsSentProbes Unsigned32, - pingResultsRttSumOfSquares Unsigned32, - pingResultsLastGoodProbe DateAndTime - } - - pingResultsOperStatus OBJECT-TYPE - SYNTAX INTEGER { - enabled(1), -- test is in progress - disabled(2) -- test has stopped - } - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Reflects the operational state of a pingCtlEntry: - enabled(1) - Test is active. - disabled(2) - Test has stopped." - ::= { pingResultsEntry 1 } - - pingResultsIpTargetAddressType OBJECT-TYPE - SYNTAX InetAddressType - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This objects indicates the type of address stored - in the corresponding pingResultsIpTargetAddress - object." - DEFVAL { unknown } - ::= { pingResultsEntry 2 } - - pingResultsIpTargetAddress OBJECT-TYPE - SYNTAX InetAddress - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This objects reports the IP address associated - with a pingCtlTargetAddress value when the destination - address is specified as a DNS name. The value of - this object should be a zero length octet string - when a DNS name is not specified or when a - specified DNS name fails to resolve." - DEFVAL { ''H } - ::= { pingResultsEntry 3 } - - pingResultsMinRtt OBJECT-TYPE - SYNTAX Unsigned32 - UNITS "milliseconds" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The minimum ping round-trip-time (RTT) received. A value - of 0 for this object implies that no RTT has been received." - ::= { pingResultsEntry 4 } - - pingResultsMaxRtt OBJECT-TYPE - SYNTAX Unsigned32 - UNITS "milliseconds" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The maximum ping round-trip-time (RTT) received. A value - of 0 for this object implies that no RTT has been received." - ::= { pingResultsEntry 5 } - - pingResultsAverageRtt OBJECT-TYPE - SYNTAX Unsigned32 - UNITS "milliseconds" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The current average ping round-trip-time (RTT)." - ::= { pingResultsEntry 6 } - - pingResultsProbeResponses OBJECT-TYPE - SYNTAX Unsigned32 - UNITS "responses" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of responses received for the corresponding - pingCtlEntry and pingResultsEntry. The value of this object - MUST be reported as 0 when no probe responses have been - received." - ::= { pingResultsEntry 7 } - - pingResultsSentProbes OBJECT-TYPE - SYNTAX Unsigned32 - UNITS "probes" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The value of this object reflects the number of probes sent - for the corresponding pingCtlEntry and pingResultsEntry. - The value of this object MUST be reported as 0 when no probes - have been sent." - ::= { pingResultsEntry 8 } - - pingResultsRttSumOfSquares OBJECT-TYPE - SYNTAX Unsigned32 - UNITS "milliseconds" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This object contains the sum of the squares for all ping - responses received. Its purpose is to enable standard - deviation calculation. The value of this object MUST - be reported as 0 when no ping responses have been - received." - ::= { pingResultsEntry 9 } - - pingResultsLastGoodProbe OBJECT-TYPE - SYNTAX DateAndTime - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Date and time when the last response was received for - a probe." - ::= { pingResultsEntry 10 } - - -- Ping Probe History Table - - pingProbeHistoryTable OBJECT-TYPE - SYNTAX SEQUENCE OF PingProbeHistoryEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Defines a table for storing the results of a ping - operation. Entries in this table are limited by - the value of the corresponding pingCtlMaxRows - object. - - An entry in this table is created when the result of - a ping probe is determined. The initial 2 instance - identifier index values identify the pingCtlEntry - that a probe result (pingProbeHistoryEntry) belongs - to. An entry is removed from this table when - its corresponding pingCtlEntry is deleted. - - An implementation of this MIB will remove the oldest - entry in the pingProbeHistoryTable to allow the - addition of an new entry once the number of rows in - the pingProbeHistoryTable reaches the value specified - by pingCtlMaxRows." - ::= { pingObjects 4 } - - pingProbeHistoryEntry OBJECT-TYPE - SYNTAX PingProbeHistoryEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Defines an entry in the pingProbeHistoryTable. - The first two index elements identify the - pingCtlEntry that a pingProbeHistoryEntry belongs - to. The third index element selects a single - probe result." - INDEX { - pingCtlOwnerIndex, - pingCtlTestName, - pingProbeHistoryIndex - } - ::= { pingProbeHistoryTable 1 } - - PingProbeHistoryEntry ::= - SEQUENCE { - pingProbeHistoryIndex Unsigned32, - pingProbeHistoryResponse Unsigned32, - pingProbeHistoryStatus OperationResponseStatus, - pingProbeHistoryLastRC Integer32, - pingProbeHistoryTime DateAndTime - } - - pingProbeHistoryIndex OBJECT-TYPE - SYNTAX Unsigned32 (1..'ffffffff'h) - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "An entry in this table is created when the result of - a ping probe is determined. The initial 2 instance - identifier index values identify the pingCtlEntry - that a probe result (pingProbeHistoryEntry) belongs - to. - - An implementation MUST start assigning - pingProbeHistoryIndex values at 1 and wrap after - exceeding the maximum possible value as defined by - the limit of this object ('ffffffff'h)." - ::= { pingProbeHistoryEntry 1 } - - pingProbeHistoryResponse OBJECT-TYPE - SYNTAX Unsigned32 - UNITS "milliseconds" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The amount of time measured in milliseconds from when - a probe was sent to when its response was received or - when it timed out. The value of this object is reported - as 0 when it is not possible to transmit a probe." - ::= { pingProbeHistoryEntry 2 } - - pingProbeHistoryStatus OBJECT-TYPE - SYNTAX OperationResponseStatus - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The result of a particular probe done by a remote host." - ::= { pingProbeHistoryEntry 3 } - - pingProbeHistoryLastRC OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The last implementation method specific reply code received. - If the ICMP Echo capability is being used then a successful - probe ends when an ICMP response is received that contains - the code ICMP_ECHOREPLY(0). The ICMP responses are defined - normally in the ip_icmp include file." - ::= { pingProbeHistoryEntry 4 } - - pingProbeHistoryTime OBJECT-TYPE - SYNTAX DateAndTime - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Timestamp for when this probe result was determined." - ::= { pingProbeHistoryEntry 5 } - - -- Notification Definition section - - pingProbeFailed NOTIFICATION-TYPE - OBJECTS { - pingCtlTargetAddressType, - pingCtlTargetAddress, - pingResultsOperStatus, - pingResultsIpTargetAddressType, - pingResultsIpTargetAddress, - pingResultsMinRtt, - pingResultsMaxRtt, - pingResultsAverageRtt, - pingResultsProbeResponses, - pingResultsSentProbes, - pingResultsRttSumOfSquares, - pingResultsLastGoodProbe - } - STATUS current - DESCRIPTION - "Generated when a probe failure is detected when the - corresponding pingCtlTrapGeneration object is set to - probeFailure(0) subject to the value of - pingCtlTrapProbeFailureFilter. The object - pingCtlTrapProbeFailureFilter can be used to specify the - number of successive probe failures that are required - before this notification can be generated." - ::= { pingNotifications 1 } - - pingTestFailed NOTIFICATION-TYPE - OBJECTS { - pingCtlTargetAddressType, - pingCtlTargetAddress, - pingResultsOperStatus, - pingResultsIpTargetAddressType, - pingResultsIpTargetAddress, - pingResultsMinRtt, - pingResultsMaxRtt, - pingResultsAverageRtt, - pingResultsProbeResponses, - pingResultsSentProbes, - pingResultsRttSumOfSquares, - pingResultsLastGoodProbe - } - - STATUS current - DESCRIPTION - "Generated when a ping test is determined to have failed - when the corresponding pingCtlTrapGeneration object is - set to testFailure(1). In this instance - pingCtlTrapTestFailureFilter should specify the number of - probes in a test required to have failed in order to - consider the test as failed." - ::= { pingNotifications 2 } - - pingTestCompleted NOTIFICATION-TYPE - OBJECTS { - pingCtlTargetAddressType, - pingCtlTargetAddress, - pingResultsOperStatus, - pingResultsIpTargetAddressType, - pingResultsIpTargetAddress, - pingResultsMinRtt, - pingResultsMaxRtt, - pingResultsAverageRtt, - pingResultsProbeResponses, - pingResultsSentProbes, - pingResultsRttSumOfSquares, - pingResultsLastGoodProbe - } - STATUS current - DESCRIPTION - "Generated at the completion of a ping test when the - corresponding pingCtlTrapGeneration object is set to - testCompletion(4)." - ::= { pingNotifications 3 } - - -- Conformance information - -- Compliance statements - - pingCompliances OBJECT IDENTIFIER ::= { pingConformance 1 } - pingGroups OBJECT IDENTIFIER ::= { pingConformance 2 } - - -- Compliance statements - - pingCompliance MODULE-COMPLIANCE - STATUS current - DESCRIPTION - "The compliance statement for the DISMAN-PING-MIB." - MODULE -- this module - MANDATORY-GROUPS { - pingGroup, - pingNotificationsGroup - } - GROUP pingTimeStampGroup - DESCRIPTION - "This group is mandatory for implementations that have - access to a system clock and are capable of setting - the values for DateAndTime objects. It is RECOMMENDED - that when this group is not supported that the values - for the objects in this group be reported as - '0000000000000000'H." - - OBJECT pingMaxConcurrentRequests - MIN-ACCESS read-only - DESCRIPTION - "The agent is not required to support set - operations to this object." - - OBJECT pingCtlStorageType - MIN-ACCESS read-only - DESCRIPTION - "Write access is not required. It is also allowed - for implementations to support only the volatile - StorageType enumeration." - - OBJECT pingCtlType - MIN-ACCESS read-only - DESCRIPTION - "Write access is not required. In addition, the only - value that MUST be supported by an implementation is - pingIcmpEcho." - - OBJECT pingCtlByPassRouteTable - MIN-ACCESS read-only - DESCRIPTION - "This object is not required by implementations that - are not capable of its implementation. The function - represented by this object is implementable if the - setsockopt SOL_SOCKET SO_DONTROUTE option is - supported." - - OBJECT pingCtlSourceAddressType - SYNTAX InetAddressType { unknown(0), ipv4(1), ipv6(2) } - MIN-ACCESS read-only - DESCRIPTION - "This object is not required by implementations that - are not capable of binding the send socket with a - source address. An implementation is only required to - support IPv4 and IPv6 addresses." - - OBJECT pingCtlSourceAddress - SYNTAX InetAddress (SIZE(0|4|16)) - MIN-ACCESS read-only - DESCRIPTION - "This object is not required by implementations that - are not capable of binding the send socket with a - source address. An implementation is only required to - support IPv4 and globally unique IPv6 addresses." - - OBJECT pingCtlIfIndex - MIN-ACCESS read-only - DESCRIPTION - "Write access is not required. When write access is - not supported return a 0 as the value of this object. - A value of 0 means that the function represented by - this option is not supported." - - OBJECT pingCtlDSField - MIN-ACCESS read-only - DESCRIPTION - "Write access is not required. When write access is - not supported return a 0 as the value of this object. - A value of 0 means that the function represented by - this option is not supported." - - OBJECT pingResultsIpTargetAddressType - SYNTAX InetAddressType { unknown(0), ipv4(1), ipv6(2) } - DESCRIPTION - "An implementation is only required to - support IPv4 and IPv6 addresses." - - OBJECT pingResultsIpTargetAddress - SYNTAX InetAddress (SIZE(0|4|16)) - DESCRIPTION - "An implementation is only required to - support IPv4 and globally unique IPv6 addresses." - - ::= { pingCompliances 1 } - - -- MIB groupings - - pingGroup OBJECT-GROUP - OBJECTS { - pingMaxConcurrentRequests, - pingCtlTargetAddressType, - pingCtlTargetAddress, - pingCtlDataSize, - pingCtlTimeOut, - pingCtlProbeCount, - pingCtlAdminStatus, - pingCtlDataFill, - pingCtlFrequency, - pingCtlMaxRows, - pingCtlStorageType, - pingCtlTrapGeneration, - pingCtlTrapProbeFailureFilter, - pingCtlTrapTestFailureFilter, - pingCtlType, - pingCtlDescr, - pingCtlByPassRouteTable, - pingCtlSourceAddressType, - pingCtlSourceAddress, - pingCtlIfIndex, - pingCtlDSField, - pingCtlRowStatus, - pingResultsOperStatus, - pingResultsIpTargetAddressType, - pingResultsIpTargetAddress, - pingResultsMinRtt, - pingResultsMaxRtt, - pingResultsAverageRtt, - pingResultsProbeResponses, - pingResultsSentProbes, - pingResultsRttSumOfSquares, - pingProbeHistoryResponse, - pingProbeHistoryStatus, - pingProbeHistoryLastRC - } - STATUS current - DESCRIPTION - "The group of objects that comprise the remote ping - capability." - ::= { pingGroups 1 } - - pingTimeStampGroup OBJECT-GROUP - OBJECTS { - pingResultsLastGoodProbe, - pingProbeHistoryTime - } - STATUS current - DESCRIPTION - "The group of DateAndTime objects." - ::= { pingGroups 2 } - - pingNotificationsGroup NOTIFICATION-GROUP - NOTIFICATIONS { - pingProbeFailed, - pingTestFailed, - pingTestCompleted - } - STATUS current - DESCRIPTION - "The notification which are required to be supported by - implementations of this MIB." - ::= { pingGroups 3 } - -END diff --git a/misc/config_definitions.json b/misc/config_definitions.json index f0d0db1900..6d03437554 100644 --- a/misc/config_definitions.json +++ b/misc/config_definitions.json @@ -1049,7 +1049,7 @@ "default": false, "type": "boolean" }, - "discovery_modules.cisco-sla": { + "discovery_modules.slas": { "order": 80, "group": "discovery", "section": "discovery_modules", @@ -1529,10 +1529,6 @@ "default": true, "type": "boolean" }, - "enable_sla": { - "default": false, - "type": "boolean" - }, "enable_syslog": { "default": false, "type": "boolean" @@ -4417,7 +4413,7 @@ "default": false, "type": "boolean" }, - "poller_modules.cisco-sla": { + "poller_modules.slas": { "order": 140, "group": "poller", "section": "poller_modules", @@ -4980,90 +4976,6 @@ "mono": "mono" } }, - "sla_type_labels.dhcp": { - "default": "DHCP", - "type": "text" - }, - "sla_type_labels.dlsw": { - "default": "DLSW", - "type": "text" - }, - "sla_type_labels.dns": { - "default": "DNS", - "type": "text" - }, - "sla_type_labels.echo": { - "default": "ICMP ping", - "type": "text" - }, - "sla_type_labels.ethernetJitter": { - "default": "Ethernet jitter", - "type": "text" - }, - "sla_type_labels.ethernetPing": { - "default": "Ethernet ping", - "type": "text" - }, - "sla_type_labels.fileIO": { - "default": "File I/O", - "type": "text" - }, - "sla_type_labels.ftp": { - "default": "FTP", - "type": "text" - }, - "sla_type_labels.http": { - "default": "HTTP", - "type": "text" - }, - "sla_type_labels.icmpjitter": { - "default": "ICMP jitter", - "type": "text" - }, - "sla_type_labels.jitter": { - "default": "Jitter", - "type": "text" - }, - "sla_type_labels.lspGroup": { - "default": "LSP group", - "type": "text" - }, - "sla_type_labels.lspPing": { - "default": "LSP ping", - "type": "text" - }, - "sla_type_labels.lspPingPseudowire": { - "default": "LSP Pseudowire ping", - "type": "text" - }, - "sla_type_labels.lspTrace": { - "default": "LSP trace", - "type": "text" - }, - "sla_type_labels.pathEcho": { - "default": "Path ICMP ping", - "type": "text" - }, - "sla_type_labels.rtp": { - "default": "RTP", - "type": "text" - }, - "sla_type_labels.script": { - "default": "Script", - "type": "text" - }, - "sla_type_labels.tcpConnect": { - "default": "TCP connect", - "type": "text" - }, - "sla_type_labels.udpEcho": { - "default": "UDP ping", - "type": "text" - }, - "sla_type_labels.voip": { - "default": "VoIP", - "type": "text" - }, "smokeping.pings": { "default": 5, "group": "external", diff --git a/misc/db_schema.yaml b/misc/db_schema.yaml index ee3a1ddab0..2d5d9ad197 100644 --- a/misc/db_schema.yaml +++ b/misc/db_schema.yaml @@ -1849,10 +1849,11 @@ slas: Columns: - { Field: sla_id, Type: 'int unsigned', 'Null': false, Extra: auto_increment } - { Field: device_id, Type: 'int unsigned', 'Null': false, Extra: '' } - - { Field: sla_nr, Type: int, 'Null': false, Extra: '' } + - { Field: sla_nr, Type: 'int unsigned', 'Null': false, Extra: '' } - { Field: owner, Type: varchar(255), 'Null': false, Extra: '' } - { Field: tag, Type: varchar(255), 'Null': false, Extra: '' } - { Field: rtt_type, Type: varchar(16), 'Null': false, Extra: '' } + - { Field: rtt, Type: 'double(8,2) unsigned', 'Null': true, Extra: '' } - { Field: status, Type: tinyint, 'Null': false, Extra: '' } - { Field: opstatus, Type: tinyint, 'Null': false, Extra: '', Default: '0' } - { Field: deleted, Type: tinyint, 'Null': false, Extra: '', Default: '0' } diff --git a/misc/os_schema.json b/misc/os_schema.json index ab139c4fa6..95248ce673 100644 --- a/misc/os_schema.json +++ b/misc/os_schema.json @@ -78,7 +78,7 @@ "cisco-remote-access-monitor": { "type": "boolean" }, - "cisco-sla": { + "slas": { "type": "boolean" }, "cisco-ipsec-flow-monitor": { @@ -219,7 +219,7 @@ "cisco-cef": { "type": "boolean" }, - "cisco-sla": { + "slas": { "type": "boolean" }, "cisco-mac-accounting": { diff --git a/resources/lang/en/modules.php b/resources/lang/en/modules.php new file mode 100644 index 0000000000..183581f133 --- /dev/null +++ b/resources/lang/en/modules.php @@ -0,0 +1,36 @@ + [ + 'types' => [ + 'dhcp' => 'DHCP', + 'dlsw' => 'DLSW', + 'dns' => 'DNS', + 'DnsQuery' => 'DNS Query', + 'echo' => 'ICMP Ping', + 'ethernetJitter' => 'Ethernet Jitter', + 'ethernetPing' => 'Ethernet Ping', + 'fileIO' => 'File I/O', + 'ftp' => 'FTP', + 'http' => 'HTTP', + 'HttpGet' => 'HTTP Get', + 'HttpGetMetadata' => 'HTTP Get Metadata', + 'IcmpEcho' => 'ICMP Echo', + 'icmpjitter' => 'ICMP Jitter', + 'IcmpTimeStamp' => 'ICMP TimeStamp', + 'jitter' => 'Jitter', + 'lspGroup' => 'LSP Group', + 'lspPing' => 'LSP Ping', + 'lspPingPseudowire' => 'LSP Pseudowire Ping"', + 'lspTrace' => 'LSP Trace', + 'NtpQuery' => 'NTP Query', + 'pathEcho' => 'Path ICMP Ping', + 'rtp' => 'RTP', + 'script' => 'Script', + 'tcpConnect' => 'TCP Connect', + 'udpEcho' => 'UDP Ping', + 'UdpTimestamp' => 'UDP Timestamp', + 'voip' => 'VoIP', + ], + ], +]; diff --git a/tests/data/iosxr_asr9010.json b/tests/data/iosxr_asr9010.json index cb694108fa..c08de084b5 100644 --- a/tests/data/iosxr_asr9010.json +++ b/tests/data/iosxr_asr9010.json @@ -42619,5 +42619,122 @@ } ] } + }, + "slas": { + "discovery": { + "slas": [ + { + "sla_nr": 10, + "owner": "", + "tag": "194.53.124.254:1000", + "rtt_type": "jitter", + "rtt": 1.0, + "status": 1, + "opstatus": 0, + "deleted": 0 + }, + { + "sla_nr": 11, + "owner": "", + "tag": "194.53.125.33:1000", + "rtt_type": "jitter", + "rtt": 1.0, + "status": 1, + "opstatus": 0, + "deleted": 0 + }, + { + "sla_nr": 12, + "owner": "", + "tag": "194.53.125.37:1000", + "rtt_type": "jitter", + "rtt": 1.0, + "status": 1, + "opstatus": 0, + "deleted": 0 + }, + { + "sla_nr": 50, + "owner": "", + "tag": "194.53.124.211:1000", + "rtt_type": "jitter", + "rtt": 1.0, + "status": 1, + "opstatus": 0, + "deleted": 0 + }, + { + "sla_nr": 51, + "owner": "", + "tag": "194.53.124.212:1000", + "rtt_type": "jitter", + "rtt": 1.0, + "status": 1, + "opstatus": 0, + "deleted": 0 + }, + { + "sla_nr": 52, + "owner": "", + "tag": "194.53.124.213:1000", + "rtt_type": "jitter", + "rtt": 1.0, + "status": 1, + "opstatus": 0, + "deleted": 0 + }, + { + "sla_nr": 100, + "owner": "", + "tag": "194.53.124.239", + "rtt_type": "echo", + "rtt": 1.0, + "status": 1, + "opstatus": 0, + "deleted": 0 + }, + { + "sla_nr": 190, + "owner": "", + "tag": "194.53.124.222:1000", + "rtt_type": "jitter", + "rtt": 1.0, + "status": 1, + "opstatus": 0, + "deleted": 0 + }, + { + "sla_nr": 191, + "owner": "", + "tag": "194.53.124.223:1000", + "rtt_type": "jitter", + "rtt": 1.0, + "status": 1, + "opstatus": 0, + "deleted": 0 + }, + { + "sla_nr": 300, + "owner": "", + "tag": "194.53.124.32:1000", + "rtt_type": "jitter", + "rtt": 1.0, + "status": 1, + "opstatus": 0, + "deleted": 0 + }, + { + "sla_nr": 1000, + "owner": "", + "tag": "10.30.1.2", + "rtt_type": "echo", + "rtt": 3.0, + "status": 1, + "opstatus": 0, + "deleted": 0 + } + ] + }, + "poller": "matches discovery" } } diff --git a/tests/data/junos_vmx.json b/tests/data/junos_vmx.json new file mode 100644 index 0000000000..f99841ac17 --- /dev/null +++ b/tests/data/junos_vmx.json @@ -0,0 +1,13783 @@ +{ + "os": { + "discovery": { + "devices": [ + { + "sysName": "", + "sysObjectID": ".1.3.6.1.4.1.2636.1.1.1.2.108", + "sysDescr": "Juniper Networks, Inc. vmx internet router, kernel JUNOS 18.2R1.9, Build date: 2018-06-28 04:23:52 UTC Copyright (c) 1996-2018 Juniper Networks, Inc.", + "sysContact": "", + "version": "18.2R1.9", + "hardware": "Juniper VMX Internet Backbone Router", + "features": null, + "os": "junos", + "type": "network", + "serial": "VM600B272BD3", + "icon": "junos.png", + "location": "" + } + ] + }, + "poller": "matches discovery" + }, + "ports": { + "discovery": { + "ports": [ + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "fxp0", + "ifName": "fxp0", + "portName": null, + "ifIndex": 1, + "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": "fxp0", + "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": "dsc", + "ifName": "dsc", + "portName": null, + "ifIndex": 5, + "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": "other", + "ifAlias": "dsc", + "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": "lo0", + "ifName": "lo0", + "portName": null, + "ifIndex": 6, + "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": "softwareLoopback", + "ifAlias": "lo0", + "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": "tap", + "ifName": "tap", + "portName": null, + "ifIndex": 7, + "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": "other", + "ifAlias": "tap", + "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": "gre", + "ifName": "gre", + "portName": null, + "ifIndex": 8, + "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": "tunnel", + "ifAlias": "gre", + "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": "ipip", + "ifName": "ipip", + "portName": null, + "ifIndex": 9, + "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": "tunnel", + "ifAlias": "ipip", + "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": "pime", + "ifName": "pime", + "portName": null, + "ifIndex": 10, + "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": "tunnel", + "ifAlias": "pime", + "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": "pimd", + "ifName": "pimd", + "portName": null, + "ifIndex": 11, + "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": "tunnel", + "ifAlias": "pimd", + "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": "mtun", + "ifName": "mtun", + "portName": null, + "ifIndex": 12, + "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": "tunnel", + "ifAlias": "mtun", + "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": "fxp0.0", + "ifName": "fxp0.0", + "portName": null, + "ifIndex": 13, + "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": "fxp0.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": "lo0.16384", + "ifName": "lo0.16384", + "portName": null, + "ifIndex": 21, + "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": "softwareLoopback", + "ifAlias": "lo0.16384", + "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": "lo0.16385", + "ifName": "lo0.16385", + "portName": null, + "ifIndex": 22, + "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": "softwareLoopback", + "ifAlias": "lo0.16385", + "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": "em1", + "ifName": "em1", + "portName": null, + "ifIndex": 23, + "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": "em1", + "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": "em1.0", + "ifName": "em1.0", + "portName": null, + "ifIndex": 24, + "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": "em1.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": "cbp0", + "ifName": "cbp0", + "portName": null, + "ifIndex": 501, + "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": "other", + "ifAlias": "cbp0", + "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": "demux0", + "ifName": "demux0", + "portName": null, + "ifIndex": 502, + "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": "other", + "ifAlias": "demux0", + "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": "esi", + "ifName": "esi", + "portName": null, + "ifIndex": 503, + "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": "other", + "ifAlias": "esi", + "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": "fti0", + "ifName": "fti0", + "portName": null, + "ifIndex": 504, + "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": "other", + "ifAlias": "fti0", + "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": "fti1", + "ifName": "fti1", + "portName": null, + "ifIndex": 505, + "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": "other", + "ifAlias": "fti1", + "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": "fti2", + "ifName": "fti2", + "portName": null, + "ifIndex": 506, + "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": "other", + "ifAlias": "fti2", + "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": "fti3", + "ifName": "fti3", + "portName": null, + "ifIndex": 507, + "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": "other", + "ifAlias": "fti3", + "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": "fti4", + "ifName": "fti4", + "portName": null, + "ifIndex": 508, + "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": "other", + "ifAlias": "fti4", + "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": "fti5", + "ifName": "fti5", + "portName": null, + "ifIndex": 509, + "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": "other", + "ifAlias": "fti5", + "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": "fti6", + "ifName": "fti6", + "portName": null, + "ifIndex": 510, + "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": "other", + "ifAlias": "fti6", + "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": "fti7", + "ifName": "fti7", + "portName": null, + "ifIndex": 511, + "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": "other", + "ifAlias": "fti7", + "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": "irb", + "ifName": "irb", + "portName": null, + "ifIndex": 512, + "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": "other", + "ifAlias": "irb", + "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": "jsrv", + "ifName": "jsrv", + "portName": null, + "ifIndex": 513, + "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": "other", + "ifAlias": "jsrv", + "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": "jsrv.1", + "ifName": "jsrv.1", + "portName": null, + "ifIndex": 514, + "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": "jsrv.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": "pip0", + "ifName": "pip0", + "portName": null, + "ifIndex": 515, + "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": "other", + "ifAlias": "pip0", + "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": "pp0", + "ifName": "pp0", + "portName": null, + "ifIndex": 516, + "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": "other", + "ifAlias": "pp0", + "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": "rbeb", + "ifName": "rbeb", + "portName": null, + "ifIndex": 517, + "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": "other", + "ifAlias": "rbeb", + "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": "vtep", + "ifName": "vtep", + "portName": null, + "ifIndex": 518, + "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": "other", + "ifAlias": "vtep", + "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": "lc-0/0/0", + "ifName": "lc-0/0/0", + "portName": null, + "ifIndex": 519, + "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": "other", + "ifAlias": "lc-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": "lc-0/0/0.32769", + "ifName": "lc-0/0/0.32769", + "portName": null, + "ifIndex": 520, + "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": "lc-0/0/0.32769", + "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": "pfh-0/0/0", + "ifName": "pfh-0/0/0", + "portName": null, + "ifIndex": 521, + "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": "other", + "ifAlias": "pfh-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": "pfe-0/0/0", + "ifName": "pfe-0/0/0", + "portName": null, + "ifIndex": 522, + "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": "other", + "ifAlias": "pfe-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": "pfe-0/0/0.16383", + "ifName": "pfe-0/0/0.16383", + "portName": null, + "ifIndex": 523, + "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": "pfe-0/0/0.16383", + "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": "pfh-0/0/0.16383", + "ifName": "pfh-0/0/0.16383", + "portName": null, + "ifIndex": 524, + "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": "pfh-0/0/0.16383", + "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": "pfh-0/0/0.16384", + "ifName": "pfh-0/0/0.16384", + "portName": null, + "ifIndex": 525, + "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": "pfh-0/0/0.16384", + "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-0/0/0", + "ifName": "ge-0/0/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": "Core: to GVA-ED01 Gi4", + "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-0/0/1", + "ifName": "ge-0/0/1", + "portName": null, + "ifIndex": 527, + "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": "Core: to GVA-ED02 Gi4", + "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-0/0/2", + "ifName": "ge-0/0/2", + "portName": null, + "ifIndex": 528, + "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": "DC: GVA-Backend", + "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-0/0/3", + "ifName": "ge-0/0/3", + "portName": null, + "ifIndex": 529, + "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": "DC: GVA-Frontend", + "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-0/0/4", + "ifName": "ge-0/0/4", + "portName": null, + "ifIndex": 530, + "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": "DCI: to LAU-DC01\n20 67 65 2D 30 C2 A7 2F 30 2F 34 ", + "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-0/0/5", + "ifName": "ge-0/0/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-0/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-0/0/6", + "ifName": "ge-0/0/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-0/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-0/0/7", + "ifName": "ge-0/0/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-0/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-0/0/8", + "ifName": "ge-0/0/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-0/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-0/0/9", + "ifName": "ge-0/0/9", + "portName": null, + "ifIndex": 535, + "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-0/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": "irb.10", + "ifName": "irb.10", + "portName": null, + "ifIndex": 536, + "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": "GVA-Backend", + "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": "irb.11", + "ifName": "irb.11", + "portName": null, + "ifIndex": 537, + "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": "GVA-Frontend", + "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-0/0/0.0", + "ifName": "ge-0/0/0.0", + "portName": null, + "ifIndex": 538, + "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-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": "ge-0/0/1.0", + "ifName": "ge-0/0/1.0", + "portName": null, + "ifIndex": 539, + "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-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": "ge-0/0/2.0", + "ifName": "ge-0/0/2.0", + "portName": null, + "ifIndex": 540, + "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-0/0/2.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-0/0/3.0", + "ifName": "ge-0/0/3.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": "propVirtual", + "ifAlias": "ge-0/0/3.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": "lo0.100", + "ifName": "lo0.100", + "portName": null, + "ifIndex": 542, + "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": "softwareLoopback", + "ifAlias": "lo0.100", + "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": "lo0.200", + "ifName": "lo0.200", + "portName": null, + "ifIndex": 543, + "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": "softwareLoopback", + "ifAlias": "lo0.200", + "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-0/0/4.0", + "ifName": "ge-0/0/4.0", + "portName": null, + "ifIndex": 544, + "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-0/0/4.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 + } + ] + }, + "poller": { + "ports": [ + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "fxp0", + "ifName": "fxp0", + "portName": null, + "ifIndex": 1, + "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": null, + "ifMtu": 1514, + "ifType": "ethernetCsmacd", + "ifAlias": "fxp0", + "ifPhysAddress": "0c201622e800", + "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": 16808, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 16780, + "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": 2733814, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 5502125, + "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": "dsc", + "ifName": "dsc", + "portName": null, + "ifIndex": 5, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 2147483647, + "ifType": "other", + "ifAlias": "dsc", + "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": 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": "lo0", + "ifName": "lo0", + "portName": null, + "ifIndex": 6, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 2147483647, + "ifType": "softwareLoopback", + "ifAlias": "lo0", + "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": 15614, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 15614, + "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": 797484, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 797484, + "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": "tap", + "ifName": "tap", + "portName": null, + "ifIndex": 7, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 2147483647, + "ifType": "other", + "ifAlias": "tap", + "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": 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": "gre", + "ifName": "gre", + "portName": null, + "ifIndex": 8, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 2147483647, + "ifType": "tunnel", + "ifAlias": "gre", + "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": 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": "ipip", + "ifName": "ipip", + "portName": null, + "ifIndex": 9, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 2147483647, + "ifType": "tunnel", + "ifAlias": "ipip", + "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": 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": "pime", + "ifName": "pime", + "portName": null, + "ifIndex": 10, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 2147483647, + "ifType": "tunnel", + "ifAlias": "pime", + "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": 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": "pimd", + "ifName": "pimd", + "portName": null, + "ifIndex": 11, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 2147483647, + "ifType": "tunnel", + "ifAlias": "pimd", + "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": 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": "mtun", + "ifName": "mtun", + "portName": null, + "ifIndex": 12, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 2147483647, + "ifType": "tunnel", + "ifAlias": "mtun", + "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": 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": "fxp0.0", + "ifName": "fxp0.0", + "portName": null, + "ifIndex": 13, + "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": null, + "ifMtu": 1500, + "ifType": "propVirtual", + "ifAlias": "fxp0.0", + "ifPhysAddress": "0c201622e800", + "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": 16791, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 16781, + "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": 2732905, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 5502546, + "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": "lo0.16384", + "ifName": "lo0.16384", + "portName": null, + "ifIndex": 21, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 2147483647, + "ifType": "softwareLoopback", + "ifAlias": "lo0.16384", + "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": 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": "lo0.16385", + "ifName": "lo0.16385", + "portName": null, + "ifIndex": 22, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 2147483647, + "ifType": "softwareLoopback", + "ifAlias": "lo0.16385", + "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": 15614, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 15614, + "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": 797484, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 797484, + "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": "em1", + "ifName": "em1", + "portName": null, + "ifIndex": 23, + "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": null, + "ifMtu": 1514, + "ifType": "ethernetCsmacd", + "ifAlias": "em1", + "ifPhysAddress": "0c201622e801", + "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": 319928, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 322454, + "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": 35074760, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 21991184, + "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": "em1.0", + "ifName": "em1.0", + "portName": null, + "ifIndex": 24, + "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": null, + "ifMtu": 1500, + "ifType": "propVirtual", + "ifAlias": "em1.0", + "ifPhysAddress": "0c201622e801", + "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": 319906, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 322454, + "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": 35073440, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 21810528, + "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": "cbp0", + "ifName": "cbp0", + "portName": null, + "ifIndex": 501, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 9192, + "ifType": "other", + "ifAlias": "cbp0", + "ifPhysAddress": "2c6bf5e50c11", + "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": 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": "demux0", + "ifName": "demux0", + "portName": null, + "ifIndex": 502, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 9192, + "ifType": "other", + "ifAlias": "demux0", + "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": 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": "esi", + "ifName": "esi", + "portName": null, + "ifIndex": 503, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 2147483647, + "ifType": "other", + "ifAlias": "esi", + "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": 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": "fti0", + "ifName": "fti0", + "portName": null, + "ifIndex": 504, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 2147483647, + "ifType": "other", + "ifAlias": "fti0", + "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": 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": "fti1", + "ifName": "fti1", + "portName": null, + "ifIndex": 505, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 2147483647, + "ifType": "other", + "ifAlias": "fti1", + "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": 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": "fti2", + "ifName": "fti2", + "portName": null, + "ifIndex": 506, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 2147483647, + "ifType": "other", + "ifAlias": "fti2", + "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": 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": "fti3", + "ifName": "fti3", + "portName": null, + "ifIndex": 507, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 2147483647, + "ifType": "other", + "ifAlias": "fti3", + "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": 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": "fti4", + "ifName": "fti4", + "portName": null, + "ifIndex": 508, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 2147483647, + "ifType": "other", + "ifAlias": "fti4", + "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": 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": "fti5", + "ifName": "fti5", + "portName": null, + "ifIndex": 509, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 2147483647, + "ifType": "other", + "ifAlias": "fti5", + "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": 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": "fti6", + "ifName": "fti6", + "portName": null, + "ifIndex": 510, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 2147483647, + "ifType": "other", + "ifAlias": "fti6", + "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": 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": "fti7", + "ifName": "fti7", + "portName": null, + "ifIndex": 511, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 2147483647, + "ifType": "other", + "ifAlias": "fti7", + "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": 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": "irb", + "ifName": "irb", + "portName": null, + "ifIndex": 512, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1514, + "ifType": "other", + "ifAlias": "irb", + "ifPhysAddress": "2c6bf5e513f0", + "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": 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": "jsrv", + "ifName": "jsrv", + "portName": null, + "ifIndex": 513, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1514, + "ifType": "other", + "ifAlias": "jsrv", + "ifPhysAddress": "2c6bf5e513c0", + "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": 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": "jsrv.1", + "ifName": "jsrv.1", + "portName": null, + "ifIndex": 514, + "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": null, + "ifMtu": 1514, + "ifType": "propVirtual", + "ifAlias": "jsrv.1", + "ifPhysAddress": "2c6bf5e513c0", + "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": 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": "pip0", + "ifName": "pip0", + "portName": null, + "ifIndex": 515, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 9192, + "ifType": "other", + "ifAlias": "pip0", + "ifPhysAddress": "2c6bf5e513b0", + "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": 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": "pp0", + "ifName": "pp0", + "portName": null, + "ifIndex": 516, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1532, + "ifType": "other", + "ifAlias": "pp0", + "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": 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": "rbeb", + "ifName": "rbeb", + "portName": null, + "ifIndex": 517, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 2147483647, + "ifType": "other", + "ifAlias": "rbeb", + "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": 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": "vtep", + "ifName": "vtep", + "portName": null, + "ifIndex": 518, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 2147483647, + "ifType": "other", + "ifAlias": "vtep", + "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": 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": "lc-0/0/0", + "ifName": "lc-0/0/0", + "portName": null, + "ifIndex": 519, + "ifSpeed": 800000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 800, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 0, + "ifType": "other", + "ifAlias": "lc-0/0/0", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 2663, + "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": "lc-0/0/0.32769", + "ifName": "lc-0/0/0.32769", + "portName": null, + "ifIndex": 520, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 2147483647, + "ifType": "propVirtual", + "ifAlias": "lc-0/0/0.32769", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 2663, + "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": "pfh-0/0/0", + "ifName": "pfh-0/0/0", + "portName": null, + "ifIndex": 521, + "ifSpeed": 800000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 800, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 0, + "ifType": "other", + "ifAlias": "pfh-0/0/0", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 2663, + "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": "pfe-0/0/0", + "ifName": "pfe-0/0/0", + "portName": null, + "ifIndex": 522, + "ifSpeed": 800000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 800, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 0, + "ifType": "other", + "ifAlias": "pfe-0/0/0", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 2663, + "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": "pfe-0/0/0.16383", + "ifName": "pfe-0/0/0.16383", + "portName": null, + "ifIndex": 523, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 2147483647, + "ifType": "propVirtual", + "ifAlias": "pfe-0/0/0.16383", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 2673, + "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": "pfh-0/0/0.16383", + "ifName": "pfh-0/0/0.16383", + "portName": null, + "ifIndex": 524, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 2147483647, + "ifType": "propVirtual", + "ifAlias": "pfh-0/0/0.16383", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 2673, + "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": "pfh-0/0/0.16384", + "ifName": "pfh-0/0/0.16384", + "portName": null, + "ifIndex": 525, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 2147483647, + "ifType": "propVirtual", + "ifAlias": "pfh-0/0/0.16384", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 2673, + "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": "core", + "port_descr_descr": "to GVA-ED01 Gi4", + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ge-0/0/0", + "ifName": "ge-0/0/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": "Core: to GVA-ED01 Gi4", + "ifPhysAddress": "0c2016e8b702", + "ifHardType": null, + "ifLastChange": 3220, + "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": 965, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 6710, + "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": 47626, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 457718, + "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": "core", + "port_descr_descr": "to GVA-ED02 Gi4", + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ge-0/0/1", + "ifName": "ge-0/0/1", + "portName": null, + "ifIndex": 527, + "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": "Core: to GVA-ED02 Gi4", + "ifPhysAddress": "0c2016e8b703", + "ifHardType": null, + "ifLastChange": 3220, + "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": 6610, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 960, + "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": 431544, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 66711, + "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": "dc", + "port_descr_descr": "GVA-Backend", + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ge-0/0/2", + "ifName": "ge-0/0/2", + "portName": null, + "ifIndex": 528, + "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": "DC: GVA-Backend", + "ifPhysAddress": "0c2016e8b704", + "ifHardType": null, + "ifLastChange": 3220, + "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": "dc", + "port_descr_descr": "GVA-Frontend", + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ge-0/0/3", + "ifName": "ge-0/0/3", + "portName": null, + "ifIndex": 529, + "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": "DC: GVA-Frontend", + "ifPhysAddress": "0c2016e8b705", + "ifHardType": null, + "ifLastChange": 3220, + "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": "dci", + "port_descr_descr": "to LAU-DC01\n20 67 65 2D 30 C2 A7 2F 30 2F 34", + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ge-0/0/4", + "ifName": "ge-0/0/4", + "portName": null, + "ifIndex": 530, + "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": "DCI: to LAU-DC01\n20 67 65 2D 30 C2 A7 2F 30 2F 34 ", + "ifPhysAddress": "0c2016e8b706", + "ifHardType": null, + "ifLastChange": 3220, + "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": 13437, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 14217, + "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": 1074168, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 1167416, + "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-0/0/5", + "ifName": "ge-0/0/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-0/0/5", + "ifPhysAddress": "0c2016e8b707", + "ifHardType": null, + "ifLastChange": 3233, + "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-0/0/6", + "ifName": "ge-0/0/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-0/0/6", + "ifPhysAddress": "0c2016e8b708", + "ifHardType": null, + "ifLastChange": 3233, + "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-0/0/7", + "ifName": "ge-0/0/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-0/0/7", + "ifPhysAddress": "0c2016e8b709", + "ifHardType": null, + "ifLastChange": 3233, + "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-0/0/8", + "ifName": "ge-0/0/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-0/0/8", + "ifPhysAddress": "0c2016e8b70a", + "ifHardType": null, + "ifLastChange": 3233, + "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-0/0/9", + "ifName": "ge-0/0/9", + "portName": null, + "ifIndex": 535, + "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-0/0/9", + "ifPhysAddress": "0c2016e8b70b", + "ifHardType": null, + "ifLastChange": 3233, + "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": "irb.10", + "ifName": "irb.10", + "portName": null, + "ifIndex": 536, + "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": null, + "ifMtu": 1500, + "ifType": "propVirtual", + "ifAlias": "GVA-Backend", + "ifPhysAddress": "2c6bf5e513f0", + "ifHardType": null, + "ifLastChange": 10720, + "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": "irb.11", + "ifName": "irb.11", + "portName": null, + "ifIndex": 537, + "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": null, + "ifMtu": 1500, + "ifType": "propVirtual", + "ifAlias": "GVA-Frontend", + "ifPhysAddress": "2c6bf5e513f0", + "ifHardType": null, + "ifLastChange": 10720, + "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-0/0/0.0", + "ifName": "ge-0/0/0.0", + "portName": null, + "ifIndex": 538, + "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": 1500, + "ifType": "propVirtual", + "ifAlias": "ge-0/0/0.0", + "ifPhysAddress": "0c2016e8b702", + "ifHardType": null, + "ifLastChange": 3220, + "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": 961, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 12461, + "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": 47685, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 843026, + "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-0/0/1.0", + "ifName": "ge-0/0/1.0", + "portName": null, + "ifIndex": 539, + "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": 1500, + "ifType": "propVirtual", + "ifAlias": "ge-0/0/1.0", + "ifPhysAddress": "0c2016e8b703", + "ifHardType": null, + "ifLastChange": 3220, + "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": 6608, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 960, + "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": 431680, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 60951, + "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-0/0/2.0", + "ifName": "ge-0/0/2.0", + "portName": null, + "ifIndex": 540, + "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-0/0/2.0", + "ifPhysAddress": "0c2016e8b704", + "ifHardType": null, + "ifLastChange": 3220, + "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-0/0/3.0", + "ifName": "ge-0/0/3.0", + "portName": null, + "ifIndex": 541, + "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-0/0/3.0", + "ifPhysAddress": "0c2016e8b705", + "ifHardType": null, + "ifLastChange": 3220, + "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": "lo0.100", + "ifName": "lo0.100", + "portName": null, + "ifIndex": 542, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 2147483647, + "ifType": "softwareLoopback", + "ifAlias": "lo0.100", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 303, + "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": "lo0.200", + "ifName": "lo0.200", + "portName": null, + "ifIndex": 543, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 2147483647, + "ifType": "softwareLoopback", + "ifAlias": "lo0.200", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 304, + "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-0/0/4.0", + "ifName": "ge-0/0/4.0", + "portName": null, + "ifIndex": 544, + "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": 1500, + "ifType": "propVirtual", + "ifAlias": "ge-0/0/4.0", + "ifPhysAddress": "0c2016e8b706", + "ifHardType": null, + "ifLastChange": 3220, + "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": 13437, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 26890, + "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": 1074328, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 2171992, + "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.9.1.0.0", + "processor_index": "9.1.0.0", + "processor_type": "junos", + "processor_usage": 26, + "processor_descr": "Routing Engine 0", + "processor_precision": 1, + "processor_perc_warn": 75 + } + ] + }, + "poller": "matches discovery" + }, + "mempools": { + "discovery": { + "mempools": [ + { + "mempool_index": "7.1.0.0", + "entPhysicalIndex": null, + "mempool_type": "junos", + "mempool_class": "system", + "mempool_precision": 1048576, + "mempool_descr": "FPC: Virtual FPC @ 0/*/*", + "mempool_perc": 0, + "mempool_perc_oid": ".1.3.6.1.4.1.2636.3.1.13.1.11.7.1.0.0", + "mempool_used": 0, + "mempool_used_oid": null, + "mempool_free": 535822336, + "mempool_free_oid": null, + "mempool_total": 535822336, + "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 0", + "mempool_perc": 25, + "mempool_perc_oid": ".1.3.6.1.4.1.2636.3.1.13.1.11.9.1.0.0", + "mempool_used": 256901120, + "mempool_used_oid": null, + "mempool_free": 770703360, + "mempool_free_oid": null, + "mempool_total": 1027604480, + "mempool_total_oid": null, + "mempool_largestfree": null, + "mempool_lowestfree": null, + "mempool_deleted": 0, + "mempool_perc_warn": 90 + } + ] + }, + "poller": "matches discovery" + }, + "vrf": { + "discovery": { + "vrfs": [ + { + "vrf_oid": "2.68.67", + "vrf_name": "DC", + "bgpLocalAs": null, + "mplsVpnVrfRouteDistinguisher": "172.16.2.10:200", + "mplsVpnVrfDescription": "DC", + "ifIndices": "536,537,543,544" + }, + { + "vrf_oid": "8.87.65.78.95.69.68.71.69", + "vrf_name": "WAN_EDGE", + "bgpLocalAs": null, + "mplsVpnVrfRouteDistinguisher": "172.16.1.10:100", + "mplsVpnVrfDescription": "WAN_EDGE", + "ifIndices": "538,539,542" + } + ] + } + }, + "slas": { + "discovery": { + "slas": [ + { + "sla_nr": 664440489, + "owner": "test-rpm3", + "tag": "timestamp", + "rtt_type": "IcmpTimeStamp", + "rtt": 47.84, + "status": 1, + "opstatus": 0, + "deleted": 0 + }, + { + "sla_nr": 1077751536, + "owner": "test-rpm", + "tag": "internet", + "rtt_type": "IcmpEcho", + "rtt": 22.84, + "status": 1, + "opstatus": 0, + "deleted": 0 + } + ] + }, + "poller": "matches discovery" + }, + "sensors": { + "discovery": { + "sensors": [ + { + "sensor_deleted": 0, + "sensor_class": "loss", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.50.1.2.1.26.116.101.115.116.45.114.112.109.46.105.110.116.101.114.110.101.116.46.97.108.108.84.101.115.116.115", + "sensor_index": "jnxRpmResSumPercentLost.test-rpm.internet.allTests", + "sensor_type": "junos", + "sensor_descr": "test-rpm.internet.allTests Probe Loss", + "group": "RPM Probes", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2538860, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "test-rpm.interne", + "entPhysicalIndex_measured": "probes", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "loss", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.50.1.2.1.29.116.101.115.116.45.114.112.109.46.105.110.116.101.114.110.101.116.46.99.117.114.114.101.110.116.84.101.115.116", + "sensor_index": "jnxRpmResSumPercentLost.test-rpm.internet.currentTest", + "sensor_type": "junos", + "sensor_descr": "test-rpm.internet.currentTest Probe Loss", + "group": "RPM Probes", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "test-rpm.interne", + "entPhysicalIndex_measured": "probes", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "loss", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.50.1.2.1.35.116.101.115.116.45.114.112.109.46.105.110.116.101.114.110.101.116.46.108.97.115.116.67.111.109.112.108.101.116.101.100.84.101.115.116", + "sensor_index": "jnxRpmResSumPercentLost.test-rpm.internet.lastCompletedTest", + "sensor_type": "junos", + "sensor_descr": "test-rpm.internet.lastCompletedTest Probe Loss", + "group": "RPM Probes", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "test-rpm.interne", + "entPhysicalIndex_measured": "probes", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "loss", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.50.1.2.1.28.116.101.115.116.45.114.112.109.51.46.116.105.109.101.115.116.97.109.112.46.97.108.108.84.101.115.116.115", + "sensor_index": "jnxRpmResSumPercentLost.test-rpm3.timestamp.allTests", + "sensor_type": "junos", + "sensor_descr": "test-rpm3.timestamp.allTests Probe Loss", + "group": "RPM Probes", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 6592546, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "test-rpm3.timest", + "entPhysicalIndex_measured": "probes", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "loss", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.50.1.2.1.31.116.101.115.116.45.114.112.109.51.46.116.105.109.101.115.116.97.109.112.46.99.117.114.114.101.110.116.84.101.115.116", + "sensor_index": "jnxRpmResSumPercentLost.test-rpm3.timestamp.currentTest", + "sensor_type": "junos", + "sensor_descr": "test-rpm3.timestamp.currentTest Probe Loss", + "group": "RPM Probes", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 100000000, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "test-rpm3.timest", + "entPhysicalIndex_measured": "probes", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "loss", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.50.1.2.1.37.116.101.115.116.45.114.112.109.51.46.116.105.109.101.115.116.97.109.112.46.108.97.115.116.67.111.109.112.108.101.116.101.100.84.101.115.116", + "sensor_index": "jnxRpmResSumPercentLost.test-rpm3.timestamp.lastCompletedTest", + "sensor_type": "junos", + "sensor_descr": "test-rpm3.timestamp.lastCompletedTest Probe Loss", + "group": "RPM Probes", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "test-rpm3.timest", + "entPhysicalIndex_measured": "probes", + "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.20.1.1.0", + "sensor_index": "jnxFruName.20.1.1.0", + "sensor_type": "jnxFruTable", + "sensor_descr": "MIC: Virtual @ 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.7.1.0.0", + "sensor_index": "jnxFruName.7.1.0.0", + "sensor_type": "jnxFruTable", + "sensor_descr": "FPC: Virtual FPC @ 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.1.1.0", + "sensor_index": "jnxFruName.8.1.1.0", + "sensor_type": "jnxFruTable", + "sensor_descr": "PIC: Virtual @ 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.9.1.0.0", + "sensor_index": "jnxFruName.9.1.0.0", + "sensor_type": "jnxFruTable", + "sensor_descr": "Routing Engine 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.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": 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": "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" + } + ], + "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": "loss", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.50.1.2.1.26.116.101.115.116.45.114.112.109.46.105.110.116.101.114.110.101.116.46.97.108.108.84.101.115.116.115", + "sensor_index": "jnxRpmResSumPercentLost.test-rpm.internet.allTests", + "sensor_type": "junos", + "sensor_descr": "test-rpm.internet.allTests Probe Loss", + "group": "RPM Probes", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "test-rpm.interne", + "entPhysicalIndex_measured": "probes", + "sensor_prev": 2538860, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "loss", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.50.1.2.1.29.116.101.115.116.45.114.112.109.46.105.110.116.101.114.110.101.116.46.99.117.114.114.101.110.116.84.101.115.116", + "sensor_index": "jnxRpmResSumPercentLost.test-rpm.internet.currentTest", + "sensor_type": "junos", + "sensor_descr": "test-rpm.internet.currentTest Probe Loss", + "group": "RPM Probes", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "test-rpm.interne", + "entPhysicalIndex_measured": "probes", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "loss", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.50.1.2.1.35.116.101.115.116.45.114.112.109.46.105.110.116.101.114.110.101.116.46.108.97.115.116.67.111.109.112.108.101.116.101.100.84.101.115.116", + "sensor_index": "jnxRpmResSumPercentLost.test-rpm.internet.lastCompletedTest", + "sensor_type": "junos", + "sensor_descr": "test-rpm.internet.lastCompletedTest Probe Loss", + "group": "RPM Probes", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "test-rpm.interne", + "entPhysicalIndex_measured": "probes", + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "loss", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.50.1.2.1.28.116.101.115.116.45.114.112.109.51.46.116.105.109.101.115.116.97.109.112.46.97.108.108.84.101.115.116.115", + "sensor_index": "jnxRpmResSumPercentLost.test-rpm3.timestamp.allTests", + "sensor_type": "junos", + "sensor_descr": "test-rpm3.timestamp.allTests Probe Loss", + "group": "RPM Probes", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "test-rpm3.timest", + "entPhysicalIndex_measured": "probes", + "sensor_prev": 6592546, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "loss", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.50.1.2.1.31.116.101.115.116.45.114.112.109.51.46.116.105.109.101.115.116.97.109.112.46.99.117.114.114.101.110.116.84.101.115.116", + "sensor_index": "jnxRpmResSumPercentLost.test-rpm3.timestamp.currentTest", + "sensor_type": "junos", + "sensor_descr": "test-rpm3.timestamp.currentTest Probe Loss", + "group": "RPM Probes", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "test-rpm3.timest", + "entPhysicalIndex_measured": "probes", + "sensor_prev": 100000000, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "loss", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2636.3.50.1.2.1.37.116.101.115.116.45.114.112.109.51.46.116.105.109.101.115.116.97.109.112.46.108.97.115.116.67.111.109.112.108.101.116.101.100.84.101.115.116", + "sensor_index": "jnxRpmResSumPercentLost.test-rpm3.timestamp.lastCompletedTest", + "sensor_type": "junos", + "sensor_descr": "test-rpm3.timestamp.lastCompletedTest Probe Loss", + "group": "RPM Probes", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "test-rpm3.timest", + "entPhysicalIndex_measured": "probes", + "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.20.1.1.0", + "sensor_index": "jnxFruName.20.1.1.0", + "sensor_type": "jnxFruTable", + "sensor_descr": "MIC: Virtual @ 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.7.1.0.0", + "sensor_index": "jnxFruName.7.1.0.0", + "sensor_type": "jnxFruTable", + "sensor_descr": "FPC: Virtual FPC @ 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.1.1.0", + "sensor_index": "jnxFruName.8.1.1.0", + "sensor_type": "jnxFruTable", + "sensor_descr": "PIC: Virtual @ 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.9.1.0.0", + "sensor_index": "jnxFruName.9.1.0.0", + "sensor_type": "jnxFruTable", + "sensor_descr": "Routing Engine 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.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": 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": "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" + } + ], + "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": "hrStorageFlashMemory", + "storage_descr": "/dev/gpt/junos: root file system, mounted on: /.mount", + "storage_size": 21403592704, + "storage_units": 1024, + "storage_used": 1227826176, + "storage_free": 0, + "storage_perc": 0, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "16", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/dev/ada1s1e, mounted on: /.mount/config", + "storage_size": 316487680, + "storage_units": 2048, + "storage_used": 34816, + "storage_free": 0, + "storage_perc": 0, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "17", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/dev/ada1s1f, mounted on: /.mount/var", + "storage_size": 5957548032, + "storage_units": 2048, + "storage_used": 89348096, + "storage_free": 0, + "storage_perc": 0, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "18", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "tmpfs, mounted on: /.mount/tmp", + "storage_size": 3234828288, + "storage_units": 4096, + "storage_used": 12288, + "storage_free": 0, + "storage_perc": 0, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "50", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "tmpfs, mounted on: /.mount/mfs", + "storage_size": 171216896, + "storage_units": 4096, + "storage_used": 1617920, + "storage_free": 0, + "storage_perc": 0, + "storage_perc_warn": 60, + "storage_deleted": 0 + } + ] + }, + "poller": { + "storage": [ + { + "storage_mib": "hrstorage", + "storage_index": "1", + "storage_type": "hrStorageFlashMemory", + "storage_descr": "/dev/gpt/junos: root file system, mounted on: /.mount", + "storage_size": 21403592704, + "storage_units": 1024, + "storage_used": 1227826176, + "storage_free": 20175766528, + "storage_perc": 6, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "16", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/dev/ada1s1e, mounted on: /.mount/config", + "storage_size": 316487680, + "storage_units": 2048, + "storage_used": 34816, + "storage_free": 316452864, + "storage_perc": 0, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "17", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "/dev/ada1s1f, mounted on: /.mount/var", + "storage_size": 5957548032, + "storage_units": 2048, + "storage_used": 89348096, + "storage_free": 5868199936, + "storage_perc": 1, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "18", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "tmpfs, mounted on: /.mount/tmp", + "storage_size": 3234828288, + "storage_units": 4096, + "storage_used": 12288, + "storage_free": 3234816000, + "storage_perc": 0, + "storage_perc_warn": 60, + "storage_deleted": 0 + }, + { + "storage_mib": "hrstorage", + "storage_index": "50", + "storage_type": "hrStorageFixedDisk", + "storage_descr": "tmpfs, mounted on: /.mount/mfs", + "storage_size": 171216896, + "storage_units": 4096, + "storage_used": 1617920, + "storage_free": 169598976, + "storage_perc": 1, + "storage_perc_warn": 60, + "storage_deleted": 0 + } + ] + } + }, + "bgp-peers": { + "discovery": { + "bgpPeers": [ + { + "astext": "PROTON, CH", + "bgpPeerIdentifier": "10.1.1.1", + "bgpPeerRemoteAs": 62371, + "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": 64999, + "vrfLocalAs": null + }, + { + "astext": "PROTON, CH", + "bgpPeerIdentifier": "10.1.1.5", + "bgpPeerRemoteAs": 62371, + "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": 64999, + "vrfLocalAs": null + } + ], + "bgpPeers_cbgp": [ + { + "bgpPeerIdentifier": "10.1.1.1", + "afi": "ipv4", + "safi": "unicast", + "AcceptedPrefixes": 0, + "DeniedPrefixes": 0, + "PrefixAdminLimit": 0, + "PrefixThreshold": 0, + "PrefixClearThreshold": 0, + "AdvertisedPrefixes": 0, + "SuppressedPrefixes": 0, + "WithdrawnPrefixes": 0, + "AcceptedPrefixes_delta": 0, + "AcceptedPrefixes_prev": 0, + "DeniedPrefixes_delta": 0, + "DeniedPrefixes_prev": 0, + "AdvertisedPrefixes_delta": 0, + "AdvertisedPrefixes_prev": 0, + "SuppressedPrefixes_delta": 0, + "SuppressedPrefixes_prev": 0, + "WithdrawnPrefixes_delta": 0, + "WithdrawnPrefixes_prev": 0, + "context_name": "" + }, + { + "bgpPeerIdentifier": "10.1.1.5", + "afi": "ipv4", + "safi": "unicast", + "AcceptedPrefixes": 0, + "DeniedPrefixes": 0, + "PrefixAdminLimit": 0, + "PrefixThreshold": 0, + "PrefixClearThreshold": 0, + "AdvertisedPrefixes": 0, + "SuppressedPrefixes": 0, + "WithdrawnPrefixes": 0, + "AcceptedPrefixes_delta": 0, + "AcceptedPrefixes_prev": 0, + "DeniedPrefixes_delta": 0, + "DeniedPrefixes_prev": 0, + "AdvertisedPrefixes_delta": 0, + "AdvertisedPrefixes_prev": 0, + "SuppressedPrefixes_delta": 0, + "SuppressedPrefixes_prev": 0, + "WithdrawnPrefixes_delta": 0, + "WithdrawnPrefixes_prev": 0, + "context_name": "" + } + ] + }, + "poller": { + "bgpPeers": [ + { + "astext": "PROTON, CH", + "bgpPeerIdentifier": "10.1.1.1", + "bgpPeerRemoteAs": 62371, + "bgpPeerState": "established", + "bgpPeerAdminStatus": "running", + "bgpPeerLastErrorCode": 0, + "bgpPeerLastErrorSubCode": 0, + "bgpPeerLastErrorText": null, + "bgpLocalAddr": "10.1.1.2", + "bgpPeerRemoteAddr": "0.0.0.0", + "bgpPeerDescr": "", + "bgpPeerInUpdates": 2, + "bgpPeerOutUpdates": 2, + "bgpPeerInTotalMessages": 468, + "bgpPeerOutTotalMessages": 478, + "bgpPeerFsmEstablishedTime": 12859, + "bgpPeerInUpdateElapsedTime": 0, + "context_name": "", + "bgpLocalAs": 64999, + "vrfLocalAs": null + }, + { + "astext": "PROTON, CH", + "bgpPeerIdentifier": "10.1.1.5", + "bgpPeerRemoteAs": 62371, + "bgpPeerState": "established", + "bgpPeerAdminStatus": "running", + "bgpPeerLastErrorCode": 0, + "bgpPeerLastErrorSubCode": 0, + "bgpPeerLastErrorText": null, + "bgpLocalAddr": "10.1.1.6", + "bgpPeerRemoteAddr": "0.0.0.0", + "bgpPeerDescr": "", + "bgpPeerInUpdates": 2, + "bgpPeerOutUpdates": 2, + "bgpPeerInTotalMessages": 470, + "bgpPeerOutTotalMessages": 477, + "bgpPeerFsmEstablishedTime": 12855, + "bgpPeerInUpdateElapsedTime": 0, + "context_name": "", + "bgpLocalAs": 64999, + "vrfLocalAs": null + } + ], + "bgpPeers_cbgp": [ + { + "bgpPeerIdentifier": "10.1.1.1", + "afi": "ipv4", + "safi": "unicast", + "AcceptedPrefixes": 1, + "DeniedPrefixes": 0, + "PrefixAdminLimit": 0, + "PrefixThreshold": 0, + "PrefixClearThreshold": 0, + "AdvertisedPrefixes": 2, + "SuppressedPrefixes": 0, + "WithdrawnPrefixes": 0, + "AcceptedPrefixes_delta": 1, + "AcceptedPrefixes_prev": 0, + "DeniedPrefixes_delta": 0, + "DeniedPrefixes_prev": 0, + "AdvertisedPrefixes_delta": 2, + "AdvertisedPrefixes_prev": 0, + "SuppressedPrefixes_delta": 0, + "SuppressedPrefixes_prev": 0, + "WithdrawnPrefixes_delta": 0, + "WithdrawnPrefixes_prev": 0, + "context_name": "" + }, + { + "bgpPeerIdentifier": "10.1.1.5", + "afi": "ipv4", + "safi": "unicast", + "AcceptedPrefixes": 1, + "DeniedPrefixes": 0, + "PrefixAdminLimit": 0, + "PrefixThreshold": 0, + "PrefixClearThreshold": 0, + "AdvertisedPrefixes": 2, + "SuppressedPrefixes": 0, + "WithdrawnPrefixes": 0, + "AcceptedPrefixes_delta": 1, + "AcceptedPrefixes_prev": 0, + "DeniedPrefixes_delta": 0, + "DeniedPrefixes_prev": 0, + "AdvertisedPrefixes_delta": 2, + "AdvertisedPrefixes_prev": 0, + "SuppressedPrefixes_delta": 0, + "SuppressedPrefixes_prev": 0, + "WithdrawnPrefixes_delta": 0, + "WithdrawnPrefixes_prev": 0, + "context_name": "" + } + ] + } + }, + "vlans": { + "discovery": { + "vlans": [ + { + "vlan_vlan": 0, + "vlan_domain": 1, + "vlan_name": "____juniper_private1____", + "vlan_type": null, + "vlan_mtu": null + }, + { + "vlan_vlan": 10, + "vlan_domain": 1, + "vlan_name": "GVA-Backend", + "vlan_type": null, + "vlan_mtu": null + }, + { + "vlan_vlan": 11, + "vlan_domain": 1, + "vlan_name": "GVA-Frontend", + "vlan_type": null, + "vlan_mtu": null + } + ], + "ports_vlans": [ + { + "vlan": 10, + "baseport": 4098, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 1 + }, + { + "vlan": 11, + "baseport": 4099, + "priority": 0, + "state": "unknown", + "cost": 0, + "untagged": 1 + } + ] + } + }, + "ospf": { + "poller": { + "ospf_ports": [], + "ospf_instances": [ + { + "ospf_instance_id": 0, + "ospfRouterId": "0.0.0.0", + "ospfAdminStat": "disabled", + "ospfVersionNumber": "version2", + "ospfAreaBdrRtrStatus": "false", + "ospfASBdrRtrStatus": "false", + "ospfExternLsaCount": 0, + "ospfExternLsaCksumSum": 0, + "ospfTOSSupport": "false", + "ospfOriginateNewLsas": 0, + "ospfRxNewLsas": 0, + "ospfExtLsdbLimit": 0, + "ospfMulticastExtensions": 0, + "ospfExitOverflowInterval": 0, + "ospfDemandExtensions": "false", + "context_name": null + } + ], + "ospf_areas": [], + "ospf_nbrs": [] + } + } +} diff --git a/tests/module_tables.yaml b/tests/module_tables.yaml index 124b7dafd5..26382ba578 100644 --- a/tests/module_tables.yaml +++ b/tests/module_tables.yaml @@ -116,6 +116,10 @@ sensors: - { custom: 'INNER JOIN ( SELECT i.state_index_id FROM `sensors_to_state_indexes` i LEFT JOIN `sensors` s ON (i.`sensor_id` = s.`sensor_id`) WHERE `device_id`=? GROUP BY i.state_index_id) d ON d.state_index_id = state_indexes.state_index_id' } order_by: state_indexes.state_name, state_translations.state_value custom_where: '' +slas: + slas: + excluded_fields: [device_id, sla_id] + order_by: sla_nr storage: storage: excluded_fields: [device_id, storage_id] diff --git a/tests/snmpsim/junos_vmx.snmprec b/tests/snmpsim/junos_vmx.snmprec new file mode 100644 index 0000000000..d1b1264b96 --- /dev/null +++ b/tests/snmpsim/junos_vmx.snmprec @@ -0,0 +1,5200 @@ +1.3.6.1.2.1.1.1.0|4|Juniper Networks, Inc. vmx internet router, kernel JUNOS 18.2R1.9, Build date: 2018-06-28 04:23:52 UTC Copyright (c) 1996-2018 Juniper Networks, Inc. +1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.2636.1.1.1.2.108 +1.3.6.1.2.1.1.3.0|67|1289140 +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.1|4|fxp0 +1.3.6.1.2.1.2.2.1.2.4|4|lsi +1.3.6.1.2.1.2.2.1.2.5|4|dsc +1.3.6.1.2.1.2.2.1.2.6|4|lo0 +1.3.6.1.2.1.2.2.1.2.7|4|tap +1.3.6.1.2.1.2.2.1.2.8|4|gre +1.3.6.1.2.1.2.2.1.2.9|4|ipip +1.3.6.1.2.1.2.2.1.2.10|4|pime +1.3.6.1.2.1.2.2.1.2.11|4|pimd +1.3.6.1.2.1.2.2.1.2.12|4|mtun +1.3.6.1.2.1.2.2.1.2.13|4|fxp0.0 +1.3.6.1.2.1.2.2.1.2.21|4|lo0.16384 +1.3.6.1.2.1.2.2.1.2.22|4|lo0.16385 +1.3.6.1.2.1.2.2.1.2.23|4|em1 +1.3.6.1.2.1.2.2.1.2.24|4|em1.0 +1.3.6.1.2.1.2.2.1.2.501|4|cbp0 +1.3.6.1.2.1.2.2.1.2.502|4|demux0 +1.3.6.1.2.1.2.2.1.2.503|4|esi +1.3.6.1.2.1.2.2.1.2.504|4|fti0 +1.3.6.1.2.1.2.2.1.2.505|4|fti1 +1.3.6.1.2.1.2.2.1.2.506|4|fti2 +1.3.6.1.2.1.2.2.1.2.507|4|fti3 +1.3.6.1.2.1.2.2.1.2.508|4|fti4 +1.3.6.1.2.1.2.2.1.2.509|4|fti5 +1.3.6.1.2.1.2.2.1.2.510|4|fti6 +1.3.6.1.2.1.2.2.1.2.511|4|fti7 +1.3.6.1.2.1.2.2.1.2.512|4|irb +1.3.6.1.2.1.2.2.1.2.513|4|jsrv +1.3.6.1.2.1.2.2.1.2.514|4|jsrv.1 +1.3.6.1.2.1.2.2.1.2.515|4|pip0 +1.3.6.1.2.1.2.2.1.2.516|4|pp0 +1.3.6.1.2.1.2.2.1.2.517|4|rbeb +1.3.6.1.2.1.2.2.1.2.518|4|vtep +1.3.6.1.2.1.2.2.1.2.519|4|lc-0/0/0 +1.3.6.1.2.1.2.2.1.2.520|4|lc-0/0/0.32769 +1.3.6.1.2.1.2.2.1.2.521|4|pfh-0/0/0 +1.3.6.1.2.1.2.2.1.2.522|4|pfe-0/0/0 +1.3.6.1.2.1.2.2.1.2.523|4|pfe-0/0/0.16383 +1.3.6.1.2.1.2.2.1.2.524|4|pfh-0/0/0.16383 +1.3.6.1.2.1.2.2.1.2.525|4|pfh-0/0/0.16384 +1.3.6.1.2.1.2.2.1.2.526|4|ge-0/0/0 +1.3.6.1.2.1.2.2.1.2.527|4|ge-0/0/1 +1.3.6.1.2.1.2.2.1.2.528|4|ge-0/0/2 +1.3.6.1.2.1.2.2.1.2.529|4|ge-0/0/3 +1.3.6.1.2.1.2.2.1.2.530|4|ge-0/0/4 +1.3.6.1.2.1.2.2.1.2.531|4|ge-0/0/5 +1.3.6.1.2.1.2.2.1.2.532|4|ge-0/0/6 +1.3.6.1.2.1.2.2.1.2.533|4|ge-0/0/7 +1.3.6.1.2.1.2.2.1.2.534|4|ge-0/0/8 +1.3.6.1.2.1.2.2.1.2.535|4|ge-0/0/9 +1.3.6.1.2.1.2.2.1.2.536|4|irb.10 +1.3.6.1.2.1.2.2.1.2.537|4|irb.11 +1.3.6.1.2.1.2.2.1.2.538|4|ge-0/0/0.0 +1.3.6.1.2.1.2.2.1.2.539|4|ge-0/0/1.0 +1.3.6.1.2.1.2.2.1.2.540|4|ge-0/0/2.0 +1.3.6.1.2.1.2.2.1.2.541|4|ge-0/0/3.0 +1.3.6.1.2.1.2.2.1.2.542|4|lo0.100 +1.3.6.1.2.1.2.2.1.2.543|4|lo0.200 +1.3.6.1.2.1.2.2.1.2.544|4|ge-0/0/4.0 +1.3.6.1.2.1.2.2.1.3.1|2|6 +1.3.6.1.2.1.2.2.1.3.4|2|150 +1.3.6.1.2.1.2.2.1.3.5|2|1 +1.3.6.1.2.1.2.2.1.3.6|2|24 +1.3.6.1.2.1.2.2.1.3.7|2|1 +1.3.6.1.2.1.2.2.1.3.8|2|131 +1.3.6.1.2.1.2.2.1.3.9|2|131 +1.3.6.1.2.1.2.2.1.3.10|2|131 +1.3.6.1.2.1.2.2.1.3.11|2|131 +1.3.6.1.2.1.2.2.1.3.12|2|131 +1.3.6.1.2.1.2.2.1.3.13|2|53 +1.3.6.1.2.1.2.2.1.3.21|2|24 +1.3.6.1.2.1.2.2.1.3.22|2|24 +1.3.6.1.2.1.2.2.1.3.23|2|6 +1.3.6.1.2.1.2.2.1.3.24|2|53 +1.3.6.1.2.1.2.2.1.3.501|2|1 +1.3.6.1.2.1.2.2.1.3.502|2|1 +1.3.6.1.2.1.2.2.1.3.503|2|1 +1.3.6.1.2.1.2.2.1.3.504|2|1 +1.3.6.1.2.1.2.2.1.3.505|2|1 +1.3.6.1.2.1.2.2.1.3.506|2|1 +1.3.6.1.2.1.2.2.1.3.507|2|1 +1.3.6.1.2.1.2.2.1.3.508|2|1 +1.3.6.1.2.1.2.2.1.3.509|2|1 +1.3.6.1.2.1.2.2.1.3.510|2|1 +1.3.6.1.2.1.2.2.1.3.511|2|1 +1.3.6.1.2.1.2.2.1.3.512|2|1 +1.3.6.1.2.1.2.2.1.3.513|2|1 +1.3.6.1.2.1.2.2.1.3.514|2|53 +1.3.6.1.2.1.2.2.1.3.515|2|1 +1.3.6.1.2.1.2.2.1.3.516|2|1 +1.3.6.1.2.1.2.2.1.3.517|2|1 +1.3.6.1.2.1.2.2.1.3.518|2|1 +1.3.6.1.2.1.2.2.1.3.519|2|1 +1.3.6.1.2.1.2.2.1.3.520|2|53 +1.3.6.1.2.1.2.2.1.3.521|2|1 +1.3.6.1.2.1.2.2.1.3.522|2|1 +1.3.6.1.2.1.2.2.1.3.523|2|53 +1.3.6.1.2.1.2.2.1.3.524|2|53 +1.3.6.1.2.1.2.2.1.3.525|2|53 +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.536|2|53 +1.3.6.1.2.1.2.2.1.3.537|2|53 +1.3.6.1.2.1.2.2.1.3.538|2|53 +1.3.6.1.2.1.2.2.1.3.539|2|53 +1.3.6.1.2.1.2.2.1.3.540|2|53 +1.3.6.1.2.1.2.2.1.3.541|2|53 +1.3.6.1.2.1.2.2.1.3.542|2|24 +1.3.6.1.2.1.2.2.1.3.543|2|24 +1.3.6.1.2.1.2.2.1.3.544|2|53 +1.3.6.1.2.1.2.2.1.4.1|2|1514 +1.3.6.1.2.1.2.2.1.4.4|2|2147483647 +1.3.6.1.2.1.2.2.1.4.5|2|2147483647 +1.3.6.1.2.1.2.2.1.4.6|2|2147483647 +1.3.6.1.2.1.2.2.1.4.7|2|2147483647 +1.3.6.1.2.1.2.2.1.4.8|2|2147483647 +1.3.6.1.2.1.2.2.1.4.9|2|2147483647 +1.3.6.1.2.1.2.2.1.4.10|2|2147483647 +1.3.6.1.2.1.2.2.1.4.11|2|2147483647 +1.3.6.1.2.1.2.2.1.4.12|2|2147483647 +1.3.6.1.2.1.2.2.1.4.13|2|1500 +1.3.6.1.2.1.2.2.1.4.21|2|2147483647 +1.3.6.1.2.1.2.2.1.4.22|2|2147483647 +1.3.6.1.2.1.2.2.1.4.23|2|1514 +1.3.6.1.2.1.2.2.1.4.24|2|1500 +1.3.6.1.2.1.2.2.1.4.501|2|9192 +1.3.6.1.2.1.2.2.1.4.502|2|9192 +1.3.6.1.2.1.2.2.1.4.503|2|2147483647 +1.3.6.1.2.1.2.2.1.4.504|2|2147483647 +1.3.6.1.2.1.2.2.1.4.505|2|2147483647 +1.3.6.1.2.1.2.2.1.4.506|2|2147483647 +1.3.6.1.2.1.2.2.1.4.507|2|2147483647 +1.3.6.1.2.1.2.2.1.4.508|2|2147483647 +1.3.6.1.2.1.2.2.1.4.509|2|2147483647 +1.3.6.1.2.1.2.2.1.4.510|2|2147483647 +1.3.6.1.2.1.2.2.1.4.511|2|2147483647 +1.3.6.1.2.1.2.2.1.4.512|2|1514 +1.3.6.1.2.1.2.2.1.4.513|2|1514 +1.3.6.1.2.1.2.2.1.4.514|2|1514 +1.3.6.1.2.1.2.2.1.4.515|2|9192 +1.3.6.1.2.1.2.2.1.4.516|2|1532 +1.3.6.1.2.1.2.2.1.4.517|2|2147483647 +1.3.6.1.2.1.2.2.1.4.518|2|2147483647 +1.3.6.1.2.1.2.2.1.4.519|2|0 +1.3.6.1.2.1.2.2.1.4.520|2|2147483647 +1.3.6.1.2.1.2.2.1.4.521|2|0 +1.3.6.1.2.1.2.2.1.4.522|2|0 +1.3.6.1.2.1.2.2.1.4.523|2|2147483647 +1.3.6.1.2.1.2.2.1.4.524|2|2147483647 +1.3.6.1.2.1.2.2.1.4.525|2|2147483647 +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.536|2|1500 +1.3.6.1.2.1.2.2.1.4.537|2|1500 +1.3.6.1.2.1.2.2.1.4.538|2|1500 +1.3.6.1.2.1.2.2.1.4.539|2|1500 +1.3.6.1.2.1.2.2.1.4.540|2|1514 +1.3.6.1.2.1.2.2.1.4.541|2|1514 +1.3.6.1.2.1.2.2.1.4.542|2|2147483647 +1.3.6.1.2.1.2.2.1.4.543|2|2147483647 +1.3.6.1.2.1.2.2.1.4.544|2|1500 +1.3.6.1.2.1.2.2.1.6.1|4x|0C201622E800 +1.3.6.1.2.1.2.2.1.6.4|4| +1.3.6.1.2.1.2.2.1.6.5|4| +1.3.6.1.2.1.2.2.1.6.6|4| +1.3.6.1.2.1.2.2.1.6.7|4| +1.3.6.1.2.1.2.2.1.6.8|4| +1.3.6.1.2.1.2.2.1.6.9|4| +1.3.6.1.2.1.2.2.1.6.10|4| +1.3.6.1.2.1.2.2.1.6.11|4| +1.3.6.1.2.1.2.2.1.6.12|4| +1.3.6.1.2.1.2.2.1.6.13|4x|0C201622E800 +1.3.6.1.2.1.2.2.1.6.21|4| +1.3.6.1.2.1.2.2.1.6.22|4| +1.3.6.1.2.1.2.2.1.6.23|4x|0C201622E801 +1.3.6.1.2.1.2.2.1.6.24|4x|0C201622E801 +1.3.6.1.2.1.2.2.1.6.501|4x|2C6BF5E50C11 +1.3.6.1.2.1.2.2.1.6.502|4| +1.3.6.1.2.1.2.2.1.6.503|4| +1.3.6.1.2.1.2.2.1.6.504|4| +1.3.6.1.2.1.2.2.1.6.505|4| +1.3.6.1.2.1.2.2.1.6.506|4| +1.3.6.1.2.1.2.2.1.6.507|4| +1.3.6.1.2.1.2.2.1.6.508|4| +1.3.6.1.2.1.2.2.1.6.509|4| +1.3.6.1.2.1.2.2.1.6.510|4| +1.3.6.1.2.1.2.2.1.6.511|4| +1.3.6.1.2.1.2.2.1.6.512|4x|2C6BF5E513F0 +1.3.6.1.2.1.2.2.1.6.513|4x|2C6BF5E513C0 +1.3.6.1.2.1.2.2.1.6.514|4x|2C6BF5E513C0 +1.3.6.1.2.1.2.2.1.6.515|4x|2C6BF5E513B0 +1.3.6.1.2.1.2.2.1.6.516|4| +1.3.6.1.2.1.2.2.1.6.517|4| +1.3.6.1.2.1.2.2.1.6.518|4| +1.3.6.1.2.1.2.2.1.6.519|4| +1.3.6.1.2.1.2.2.1.6.520|4| +1.3.6.1.2.1.2.2.1.6.521|4| +1.3.6.1.2.1.2.2.1.6.522|4| +1.3.6.1.2.1.2.2.1.6.523|4| +1.3.6.1.2.1.2.2.1.6.524|4| +1.3.6.1.2.1.2.2.1.6.525|4| +1.3.6.1.2.1.2.2.1.6.526|4x|0C2016E8B702 +1.3.6.1.2.1.2.2.1.6.527|4x|0C2016E8B703 +1.3.6.1.2.1.2.2.1.6.528|4x|0C2016E8B704 +1.3.6.1.2.1.2.2.1.6.529|4x|0C2016E8B705 +1.3.6.1.2.1.2.2.1.6.530|4x|0C2016E8B706 +1.3.6.1.2.1.2.2.1.6.531|4x|0C2016E8B707 +1.3.6.1.2.1.2.2.1.6.532|4x|0C2016E8B708 +1.3.6.1.2.1.2.2.1.6.533|4x|0C2016E8B709 +1.3.6.1.2.1.2.2.1.6.534|4x|0C2016E8B70A +1.3.6.1.2.1.2.2.1.6.535|4x|0C2016E8B70B +1.3.6.1.2.1.2.2.1.6.536|4x|2C6BF5E513F0 +1.3.6.1.2.1.2.2.1.6.537|4x|2C6BF5E513F0 +1.3.6.1.2.1.2.2.1.6.538|4x|0C2016E8B702 +1.3.6.1.2.1.2.2.1.6.539|4x|0C2016E8B703 +1.3.6.1.2.1.2.2.1.6.540|4x|0C2016E8B704 +1.3.6.1.2.1.2.2.1.6.541|4x|0C2016E8B705 +1.3.6.1.2.1.2.2.1.6.542|4| +1.3.6.1.2.1.2.2.1.6.543|4| +1.3.6.1.2.1.2.2.1.6.544|4x|0C2016E8B706 +1.3.6.1.2.1.2.2.1.7.1|2|1 +1.3.6.1.2.1.2.2.1.7.4|2|1 +1.3.6.1.2.1.2.2.1.7.5|2|1 +1.3.6.1.2.1.2.2.1.7.6|2|1 +1.3.6.1.2.1.2.2.1.7.7|2|1 +1.3.6.1.2.1.2.2.1.7.8|2|1 +1.3.6.1.2.1.2.2.1.7.9|2|1 +1.3.6.1.2.1.2.2.1.7.10|2|1 +1.3.6.1.2.1.2.2.1.7.11|2|1 +1.3.6.1.2.1.2.2.1.7.12|2|1 +1.3.6.1.2.1.2.2.1.7.13|2|1 +1.3.6.1.2.1.2.2.1.7.21|2|1 +1.3.6.1.2.1.2.2.1.7.22|2|1 +1.3.6.1.2.1.2.2.1.7.23|2|1 +1.3.6.1.2.1.2.2.1.7.24|2|1 +1.3.6.1.2.1.2.2.1.7.501|2|1 +1.3.6.1.2.1.2.2.1.7.502|2|1 +1.3.6.1.2.1.2.2.1.7.503|2|1 +1.3.6.1.2.1.2.2.1.7.504|2|1 +1.3.6.1.2.1.2.2.1.7.505|2|1 +1.3.6.1.2.1.2.2.1.7.506|2|1 +1.3.6.1.2.1.2.2.1.7.507|2|1 +1.3.6.1.2.1.2.2.1.7.508|2|1 +1.3.6.1.2.1.2.2.1.7.509|2|1 +1.3.6.1.2.1.2.2.1.7.510|2|1 +1.3.6.1.2.1.2.2.1.7.511|2|1 +1.3.6.1.2.1.2.2.1.7.512|2|1 +1.3.6.1.2.1.2.2.1.7.513|2|1 +1.3.6.1.2.1.2.2.1.7.514|2|1 +1.3.6.1.2.1.2.2.1.7.515|2|1 +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.536|2|1 +1.3.6.1.2.1.2.2.1.7.537|2|1 +1.3.6.1.2.1.2.2.1.7.538|2|1 +1.3.6.1.2.1.2.2.1.7.539|2|1 +1.3.6.1.2.1.2.2.1.7.540|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.542|2|1 +1.3.6.1.2.1.2.2.1.7.543|2|1 +1.3.6.1.2.1.2.2.1.7.544|2|1 +1.3.6.1.2.1.2.2.1.8.1|2|1 +1.3.6.1.2.1.2.2.1.8.4|2|1 +1.3.6.1.2.1.2.2.1.8.5|2|1 +1.3.6.1.2.1.2.2.1.8.6|2|1 +1.3.6.1.2.1.2.2.1.8.7|2|1 +1.3.6.1.2.1.2.2.1.8.8|2|1 +1.3.6.1.2.1.2.2.1.8.9|2|1 +1.3.6.1.2.1.2.2.1.8.10|2|1 +1.3.6.1.2.1.2.2.1.8.11|2|1 +1.3.6.1.2.1.2.2.1.8.12|2|1 +1.3.6.1.2.1.2.2.1.8.13|2|1 +1.3.6.1.2.1.2.2.1.8.21|2|1 +1.3.6.1.2.1.2.2.1.8.22|2|1 +1.3.6.1.2.1.2.2.1.8.23|2|1 +1.3.6.1.2.1.2.2.1.8.24|2|1 +1.3.6.1.2.1.2.2.1.8.501|2|1 +1.3.6.1.2.1.2.2.1.8.502|2|1 +1.3.6.1.2.1.2.2.1.8.503|2|1 +1.3.6.1.2.1.2.2.1.8.504|2|1 +1.3.6.1.2.1.2.2.1.8.505|2|1 +1.3.6.1.2.1.2.2.1.8.506|2|1 +1.3.6.1.2.1.2.2.1.8.507|2|1 +1.3.6.1.2.1.2.2.1.8.508|2|1 +1.3.6.1.2.1.2.2.1.8.509|2|1 +1.3.6.1.2.1.2.2.1.8.510|2|1 +1.3.6.1.2.1.2.2.1.8.511|2|1 +1.3.6.1.2.1.2.2.1.8.512|2|1 +1.3.6.1.2.1.2.2.1.8.513|2|1 +1.3.6.1.2.1.2.2.1.8.514|2|1 +1.3.6.1.2.1.2.2.1.8.515|2|1 +1.3.6.1.2.1.2.2.1.8.516|2|1 +1.3.6.1.2.1.2.2.1.8.517|2|1 +1.3.6.1.2.1.2.2.1.8.518|2|1 +1.3.6.1.2.1.2.2.1.8.519|2|1 +1.3.6.1.2.1.2.2.1.8.520|2|1 +1.3.6.1.2.1.2.2.1.8.521|2|1 +1.3.6.1.2.1.2.2.1.8.522|2|1 +1.3.6.1.2.1.2.2.1.8.523|2|1 +1.3.6.1.2.1.2.2.1.8.524|2|1 +1.3.6.1.2.1.2.2.1.8.525|2|1 +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|1 +1.3.6.1.2.1.2.2.1.8.528|2|1 +1.3.6.1.2.1.2.2.1.8.529|2|1 +1.3.6.1.2.1.2.2.1.8.530|2|1 +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|2 +1.3.6.1.2.1.2.2.1.8.536|2|1 +1.3.6.1.2.1.2.2.1.8.537|2|1 +1.3.6.1.2.1.2.2.1.8.538|2|1 +1.3.6.1.2.1.2.2.1.8.539|2|1 +1.3.6.1.2.1.2.2.1.8.540|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.542|2|1 +1.3.6.1.2.1.2.2.1.8.543|2|1 +1.3.6.1.2.1.2.2.1.8.544|2|1 +1.3.6.1.2.1.2.2.1.9.1|67|0 +1.3.6.1.2.1.2.2.1.9.4|67|0 +1.3.6.1.2.1.2.2.1.9.5|67|0 +1.3.6.1.2.1.2.2.1.9.6|67|0 +1.3.6.1.2.1.2.2.1.9.7|67|0 +1.3.6.1.2.1.2.2.1.9.8|67|0 +1.3.6.1.2.1.2.2.1.9.9|67|0 +1.3.6.1.2.1.2.2.1.9.10|67|0 +1.3.6.1.2.1.2.2.1.9.11|67|0 +1.3.6.1.2.1.2.2.1.9.12|67|0 +1.3.6.1.2.1.2.2.1.9.13|67|0 +1.3.6.1.2.1.2.2.1.9.21|67|0 +1.3.6.1.2.1.2.2.1.9.22|67|0 +1.3.6.1.2.1.2.2.1.9.23|67|0 +1.3.6.1.2.1.2.2.1.9.24|67|0 +1.3.6.1.2.1.2.2.1.9.501|67|0 +1.3.6.1.2.1.2.2.1.9.502|67|0 +1.3.6.1.2.1.2.2.1.9.503|67|0 +1.3.6.1.2.1.2.2.1.9.504|67|0 +1.3.6.1.2.1.2.2.1.9.505|67|0 +1.3.6.1.2.1.2.2.1.9.506|67|0 +1.3.6.1.2.1.2.2.1.9.507|67|0 +1.3.6.1.2.1.2.2.1.9.508|67|0 +1.3.6.1.2.1.2.2.1.9.509|67|0 +1.3.6.1.2.1.2.2.1.9.510|67|0 +1.3.6.1.2.1.2.2.1.9.511|67|0 +1.3.6.1.2.1.2.2.1.9.512|67|0 +1.3.6.1.2.1.2.2.1.9.513|67|0 +1.3.6.1.2.1.2.2.1.9.514|67|0 +1.3.6.1.2.1.2.2.1.9.515|67|0 +1.3.6.1.2.1.2.2.1.9.516|67|0 +1.3.6.1.2.1.2.2.1.9.517|67|0 +1.3.6.1.2.1.2.2.1.9.518|67|0 +1.3.6.1.2.1.2.2.1.9.519|67|2663 +1.3.6.1.2.1.2.2.1.9.520|67|2663 +1.3.6.1.2.1.2.2.1.9.521|67|2663 +1.3.6.1.2.1.2.2.1.9.522|67|2663 +1.3.6.1.2.1.2.2.1.9.523|67|2673 +1.3.6.1.2.1.2.2.1.9.524|67|2673 +1.3.6.1.2.1.2.2.1.9.525|67|2673 +1.3.6.1.2.1.2.2.1.9.526|67|3220 +1.3.6.1.2.1.2.2.1.9.527|67|3220 +1.3.6.1.2.1.2.2.1.9.528|67|3220 +1.3.6.1.2.1.2.2.1.9.529|67|3220 +1.3.6.1.2.1.2.2.1.9.530|67|3220 +1.3.6.1.2.1.2.2.1.9.531|67|3233 +1.3.6.1.2.1.2.2.1.9.532|67|3233 +1.3.6.1.2.1.2.2.1.9.533|67|3233 +1.3.6.1.2.1.2.2.1.9.534|67|3233 +1.3.6.1.2.1.2.2.1.9.535|67|3233 +1.3.6.1.2.1.2.2.1.9.536|67|10720 +1.3.6.1.2.1.2.2.1.9.537|67|10720 +1.3.6.1.2.1.2.2.1.9.538|67|3220 +1.3.6.1.2.1.2.2.1.9.539|67|3220 +1.3.6.1.2.1.2.2.1.9.540|67|3220 +1.3.6.1.2.1.2.2.1.9.541|67|3220 +1.3.6.1.2.1.2.2.1.9.542|67|303 +1.3.6.1.2.1.2.2.1.9.543|67|304 +1.3.6.1.2.1.2.2.1.9.544|67|3220 +1.3.6.1.2.1.2.2.1.13.1|65|0 +1.3.6.1.2.1.2.2.1.13.4|65|0 +1.3.6.1.2.1.2.2.1.13.5|65|0 +1.3.6.1.2.1.2.2.1.13.6|65|0 +1.3.6.1.2.1.2.2.1.13.7|65|0 +1.3.6.1.2.1.2.2.1.13.8|65|0 +1.3.6.1.2.1.2.2.1.13.9|65|0 +1.3.6.1.2.1.2.2.1.13.10|65|0 +1.3.6.1.2.1.2.2.1.13.11|65|0 +1.3.6.1.2.1.2.2.1.13.12|65|0 +1.3.6.1.2.1.2.2.1.13.13|65|0 +1.3.6.1.2.1.2.2.1.13.21|65|0 +1.3.6.1.2.1.2.2.1.13.22|65|0 +1.3.6.1.2.1.2.2.1.13.23|65|0 +1.3.6.1.2.1.2.2.1.13.24|65|0 +1.3.6.1.2.1.2.2.1.13.501|65|0 +1.3.6.1.2.1.2.2.1.13.502|65|0 +1.3.6.1.2.1.2.2.1.13.503|65|0 +1.3.6.1.2.1.2.2.1.13.504|65|0 +1.3.6.1.2.1.2.2.1.13.505|65|0 +1.3.6.1.2.1.2.2.1.13.506|65|0 +1.3.6.1.2.1.2.2.1.13.507|65|0 +1.3.6.1.2.1.2.2.1.13.508|65|0 +1.3.6.1.2.1.2.2.1.13.509|65|0 +1.3.6.1.2.1.2.2.1.13.510|65|0 +1.3.6.1.2.1.2.2.1.13.511|65|0 +1.3.6.1.2.1.2.2.1.13.512|65|0 +1.3.6.1.2.1.2.2.1.13.513|65|0 +1.3.6.1.2.1.2.2.1.13.514|65|0 +1.3.6.1.2.1.2.2.1.13.515|65|0 +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.536|65|0 +1.3.6.1.2.1.2.2.1.13.537|65|0 +1.3.6.1.2.1.2.2.1.13.538|65|0 +1.3.6.1.2.1.2.2.1.13.539|65|0 +1.3.6.1.2.1.2.2.1.13.540|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.542|65|0 +1.3.6.1.2.1.2.2.1.13.543|65|0 +1.3.6.1.2.1.2.2.1.13.544|65|0 +1.3.6.1.2.1.2.2.1.14.1|65|0 +1.3.6.1.2.1.2.2.1.14.4|65|0 +1.3.6.1.2.1.2.2.1.14.5|65|0 +1.3.6.1.2.1.2.2.1.14.6|65|0 +1.3.6.1.2.1.2.2.1.14.7|65|0 +1.3.6.1.2.1.2.2.1.14.8|65|0 +1.3.6.1.2.1.2.2.1.14.9|65|0 +1.3.6.1.2.1.2.2.1.14.10|65|0 +1.3.6.1.2.1.2.2.1.14.11|65|0 +1.3.6.1.2.1.2.2.1.14.12|65|0 +1.3.6.1.2.1.2.2.1.14.13|65|0 +1.3.6.1.2.1.2.2.1.14.21|65|0 +1.3.6.1.2.1.2.2.1.14.22|65|0 +1.3.6.1.2.1.2.2.1.14.23|65|0 +1.3.6.1.2.1.2.2.1.14.24|65|0 +1.3.6.1.2.1.2.2.1.14.501|65|0 +1.3.6.1.2.1.2.2.1.14.502|65|0 +1.3.6.1.2.1.2.2.1.14.503|65|0 +1.3.6.1.2.1.2.2.1.14.504|65|0 +1.3.6.1.2.1.2.2.1.14.505|65|0 +1.3.6.1.2.1.2.2.1.14.506|65|0 +1.3.6.1.2.1.2.2.1.14.507|65|0 +1.3.6.1.2.1.2.2.1.14.508|65|0 +1.3.6.1.2.1.2.2.1.14.509|65|0 +1.3.6.1.2.1.2.2.1.14.510|65|0 +1.3.6.1.2.1.2.2.1.14.511|65|0 +1.3.6.1.2.1.2.2.1.14.512|65|0 +1.3.6.1.2.1.2.2.1.14.513|65|0 +1.3.6.1.2.1.2.2.1.14.514|65|0 +1.3.6.1.2.1.2.2.1.14.515|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.536|65|0 +1.3.6.1.2.1.2.2.1.14.537|65|0 +1.3.6.1.2.1.2.2.1.14.538|65|0 +1.3.6.1.2.1.2.2.1.14.539|65|0 +1.3.6.1.2.1.2.2.1.14.540|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.542|65|0 +1.3.6.1.2.1.2.2.1.14.543|65|0 +1.3.6.1.2.1.2.2.1.14.544|65|0 +1.3.6.1.2.1.2.2.1.19.1|65|0 +1.3.6.1.2.1.2.2.1.19.4|65|0 +1.3.6.1.2.1.2.2.1.19.5|65|0 +1.3.6.1.2.1.2.2.1.19.6|65|0 +1.3.6.1.2.1.2.2.1.19.7|65|0 +1.3.6.1.2.1.2.2.1.19.8|65|0 +1.3.6.1.2.1.2.2.1.19.9|65|0 +1.3.6.1.2.1.2.2.1.19.10|65|0 +1.3.6.1.2.1.2.2.1.19.11|65|0 +1.3.6.1.2.1.2.2.1.19.12|65|0 +1.3.6.1.2.1.2.2.1.19.13|65|0 +1.3.6.1.2.1.2.2.1.19.21|65|0 +1.3.6.1.2.1.2.2.1.19.22|65|0 +1.3.6.1.2.1.2.2.1.19.23|65|0 +1.3.6.1.2.1.2.2.1.19.24|65|0 +1.3.6.1.2.1.2.2.1.19.501|65|0 +1.3.6.1.2.1.2.2.1.19.502|65|0 +1.3.6.1.2.1.2.2.1.19.503|65|0 +1.3.6.1.2.1.2.2.1.19.504|65|0 +1.3.6.1.2.1.2.2.1.19.505|65|0 +1.3.6.1.2.1.2.2.1.19.506|65|0 +1.3.6.1.2.1.2.2.1.19.507|65|0 +1.3.6.1.2.1.2.2.1.19.508|65|0 +1.3.6.1.2.1.2.2.1.19.509|65|0 +1.3.6.1.2.1.2.2.1.19.510|65|0 +1.3.6.1.2.1.2.2.1.19.511|65|0 +1.3.6.1.2.1.2.2.1.19.512|65|0 +1.3.6.1.2.1.2.2.1.19.513|65|0 +1.3.6.1.2.1.2.2.1.19.514|65|0 +1.3.6.1.2.1.2.2.1.19.515|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.536|65|0 +1.3.6.1.2.1.2.2.1.19.537|65|0 +1.3.6.1.2.1.2.2.1.19.538|65|0 +1.3.6.1.2.1.2.2.1.19.539|65|0 +1.3.6.1.2.1.2.2.1.19.540|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.542|65|0 +1.3.6.1.2.1.2.2.1.19.543|65|0 +1.3.6.1.2.1.2.2.1.19.544|65|0 +1.3.6.1.2.1.2.2.1.20.1|65|0 +1.3.6.1.2.1.2.2.1.20.4|65|0 +1.3.6.1.2.1.2.2.1.20.5|65|0 +1.3.6.1.2.1.2.2.1.20.6|65|0 +1.3.6.1.2.1.2.2.1.20.7|65|0 +1.3.6.1.2.1.2.2.1.20.8|65|0 +1.3.6.1.2.1.2.2.1.20.9|65|0 +1.3.6.1.2.1.2.2.1.20.10|65|0 +1.3.6.1.2.1.2.2.1.20.11|65|0 +1.3.6.1.2.1.2.2.1.20.12|65|0 +1.3.6.1.2.1.2.2.1.20.13|65|0 +1.3.6.1.2.1.2.2.1.20.21|65|0 +1.3.6.1.2.1.2.2.1.20.22|65|0 +1.3.6.1.2.1.2.2.1.20.23|65|0 +1.3.6.1.2.1.2.2.1.20.24|65|0 +1.3.6.1.2.1.2.2.1.20.501|65|0 +1.3.6.1.2.1.2.2.1.20.502|65|0 +1.3.6.1.2.1.2.2.1.20.503|65|0 +1.3.6.1.2.1.2.2.1.20.504|65|0 +1.3.6.1.2.1.2.2.1.20.505|65|0 +1.3.6.1.2.1.2.2.1.20.506|65|0 +1.3.6.1.2.1.2.2.1.20.507|65|0 +1.3.6.1.2.1.2.2.1.20.508|65|0 +1.3.6.1.2.1.2.2.1.20.509|65|0 +1.3.6.1.2.1.2.2.1.20.510|65|0 +1.3.6.1.2.1.2.2.1.20.511|65|0 +1.3.6.1.2.1.2.2.1.20.512|65|0 +1.3.6.1.2.1.2.2.1.20.513|65|0 +1.3.6.1.2.1.2.2.1.20.514|65|0 +1.3.6.1.2.1.2.2.1.20.515|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.536|65|0 +1.3.6.1.2.1.2.2.1.20.537|65|0 +1.3.6.1.2.1.2.2.1.20.538|65|0 +1.3.6.1.2.1.2.2.1.20.539|65|0 +1.3.6.1.2.1.2.2.1.20.540|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.542|65|0 +1.3.6.1.2.1.2.2.1.20.543|65|0 +1.3.6.1.2.1.2.2.1.20.544|65|0 +1.3.6.1.2.1.4.3.0|65|344616 +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|1 +1.3.6.1.2.1.4.8.0|65|0 +1.3.6.1.2.1.4.9.0|65|360223 +1.3.6.1.2.1.4.10.0|65|363635 +1.3.6.1.2.1.4.11.0|65|0 +1.3.6.1.2.1.4.12.0|65|13 +1.3.6.1.2.1.4.14.0|65|0 +1.3.6.1.2.1.4.15.0|65|0 +1.3.6.1.2.1.4.16.0|65|0 +1.3.6.1.2.1.4.17.0|65|0 +1.3.6.1.2.1.4.18.0|65|0 +1.3.6.1.2.1.4.19.0|65|0 +1.3.6.1.2.1.4.20.1.2.10.0.0.4|2|24 +1.3.6.1.2.1.4.20.1.2.10.1.1.2|2|538 +1.3.6.1.2.1.4.20.1.2.10.1.1.6|2|539 +1.3.6.1.2.1.4.20.1.2.10.2.0.1|2|536 +1.3.6.1.2.1.4.20.1.2.10.2.1.0|2|544 +1.3.6.1.2.1.4.20.1.2.127.0.0.1|2|21 +1.3.6.1.2.1.4.20.1.2.128.0.0.1|2|24 +1.3.6.1.2.1.4.20.1.2.128.0.0.4|2|24 +1.3.6.1.2.1.4.20.1.2.128.0.0.127|2|514 +1.3.6.1.2.1.4.20.1.2.172.16.0.200|2|13 +1.3.6.1.2.1.4.20.1.2.172.16.1.10|2|542 +1.3.6.1.2.1.4.20.1.2.172.16.2.10|2|543 +1.3.6.1.2.1.4.20.1.2.185.70.40.1|2|537 +1.3.6.1.2.1.4.20.1.3.10.0.0.4|64|255.0.0.0 +1.3.6.1.2.1.4.20.1.3.10.1.1.2|64|255.255.255.252 +1.3.6.1.2.1.4.20.1.3.10.1.1.6|64|255.255.255.252 +1.3.6.1.2.1.4.20.1.3.10.2.0.1|64|255.255.255.0 +1.3.6.1.2.1.4.20.1.3.10.2.1.0|64|255.255.255.254 +1.3.6.1.2.1.4.20.1.3.127.0.0.1|64|255.255.255.255 +1.3.6.1.2.1.4.20.1.3.128.0.0.1|64|192.0.0.0 +1.3.6.1.2.1.4.20.1.3.128.0.0.4|64|192.0.0.0 +1.3.6.1.2.1.4.20.1.3.128.0.0.127|64|192.0.0.0 +1.3.6.1.2.1.4.20.1.3.172.16.0.200|64|255.255.255.0 +1.3.6.1.2.1.4.20.1.3.172.16.1.10|64|255.255.255.255 +1.3.6.1.2.1.4.20.1.3.172.16.2.10|64|255.255.255.255 +1.3.6.1.2.1.4.20.1.3.185.70.40.1|64|255.255.255.0 +1.3.6.1.2.1.4.22.1.2.13.172.16.0.10|4x|0CF4C7FF4800 +1.3.6.1.2.1.4.22.1.2.13.172.16.0.200|4x|0C201622E800 +1.3.6.1.2.1.4.22.1.2.24.10.0.0.4|4x|0C201622E801 +1.3.6.1.2.1.4.22.1.2.24.128.0.0.1|4x|0C201622E801 +1.3.6.1.2.1.4.22.1.2.24.128.0.0.4|4x|0C201622E801 +1.3.6.1.2.1.4.22.1.2.24.128.0.0.16|4x|0C2016E8B701 +1.3.6.1.2.1.4.22.1.2.514.128.0.0.127|4x|2C6BF5E513C0 +1.3.6.1.2.1.4.22.1.2.536.10.2.0.1|4x|2C6BF5E513F0 +1.3.6.1.2.1.4.22.1.2.537.185.70.40.1|4x|2C6BF5E513F0 +1.3.6.1.2.1.4.22.1.2.538.10.1.1.1|4x|0CFA46684104 +1.3.6.1.2.1.4.22.1.2.538.10.1.1.2|4x|0C2016E8B702 +1.3.6.1.2.1.4.22.1.2.539.10.1.1.5|4x|0CFA46E41204 +1.3.6.1.2.1.4.22.1.2.539.10.1.1.6|4x|0C2016E8B703 +1.3.6.1.2.1.4.22.1.2.544.10.2.1.0|4x|0C2016E8B706 +1.3.6.1.2.1.4.22.1.2.544.10.2.1.1|4x|0C20167DD306 +1.3.6.1.2.1.4.24.3.0|66|0 +1.3.6.1.2.1.4.34.1.3.2.16.254.192.0.0.0.0.0.0.0.10.0.0.0.0.0.4|2|24 +1.3.6.1.2.1.4.34.1.5.2.16.254.192.0.0.0.0.0.0.0.10.0.0.0.0.0.4|6|0.0 +1.3.6.1.2.1.4.34.1.6.2.16.254.192.0.0.0.0.0.0.0.10.0.0.0.0.0.4|2|2 +1.3.6.1.2.1.4.35.1.4.13.1.4.172.16.0.10|4x|0CF4C7FF4800 +1.3.6.1.2.1.4.35.1.4.13.1.4.172.16.0.200|4x|0C201622E800 +1.3.6.1.2.1.4.35.1.4.24.1.4.10.0.0.4|4x|0C201622E801 +1.3.6.1.2.1.4.35.1.4.24.1.4.128.0.0.1|4x|0C201622E801 +1.3.6.1.2.1.4.35.1.4.24.1.4.128.0.0.4|4x|0C201622E801 +1.3.6.1.2.1.4.35.1.4.24.1.4.128.0.0.16|4x|0C2016E8B701 +1.3.6.1.2.1.4.35.1.4.24.2.16.254.128.0.0.0.0.0.0.14.32.22.255.254.34.232.1|4x|0C201622E801 +1.3.6.1.2.1.4.35.1.4.24.2.16.254.192.0.0.0.0.0.0.0.10.0.0.0.0.0.4|4x|0C201622E801 +1.3.6.1.2.1.4.35.1.4.24.2.16.254.192.0.0.0.0.0.0.0.10.0.0.0.0.0.16|4x|0C2016E8B701 +1.3.6.1.2.1.4.35.1.4.514.1.4.128.0.0.127|4x|2C6BF5E513C0 +1.3.6.1.2.1.4.35.1.4.536.1.4.10.2.0.1|4x|2C6BF5E513F0 +1.3.6.1.2.1.4.35.1.4.537.1.4.185.70.40.1|4x|2C6BF5E513F0 +1.3.6.1.2.1.4.35.1.4.538.1.4.10.1.1.1|4x|0CFA46684104 +1.3.6.1.2.1.4.35.1.4.538.1.4.10.1.1.2|4x|0C2016E8B702 +1.3.6.1.2.1.4.35.1.4.539.1.4.10.1.1.5|4x|0CFA46E41204 +1.3.6.1.2.1.4.35.1.4.539.1.4.10.1.1.6|4x|0C2016E8B703 +1.3.6.1.2.1.4.35.1.4.544.1.4.10.2.1.0|4x|0C2016E8B706 +1.3.6.1.2.1.4.35.1.4.544.1.4.10.2.1.1|4x|0C20167DD306 +1.3.6.1.2.1.5.1.0|65|30547 +1.3.6.1.2.1.5.2.0|65|0 +1.3.6.1.2.1.5.3.0|65|0 +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|12967 +1.3.6.1.2.1.5.9.0|65|5645 +1.3.6.1.2.1.5.10.0|65|0 +1.3.6.1.2.1.5.11.0|65|11935 +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|31414 +1.3.6.1.2.1.5.15.0|65|0 +1.3.6.1.2.1.5.16.0|65|21 +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|5750 +1.3.6.1.2.1.5.22.0|65|12967 +1.3.6.1.2.1.5.23.0|65|12676 +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|30547 +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|31414 +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|0 +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|5645 +1.3.6.1.2.1.5.30.1.3.1.3|65|0 +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|12967 +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|11935 +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|12967 +1.3.6.1.2.1.5.30.1.4.1.3|65|21 +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|5750 +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|12676 +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|6533 +1.3.6.1.2.1.6.6.0|65|39 +1.3.6.1.2.1.6.7.0|65|6465 +1.3.6.1.2.1.6.8.0|65|2 +1.3.6.1.2.1.6.9.0|66|31 +1.3.6.1.2.1.6.10.0|65|289408 +1.3.6.1.2.1.6.11.0|65|136316 +1.3.6.1.2.1.6.12.0|65|0 +1.3.6.1.2.1.6.14.0|65|0 +1.3.6.1.2.1.6.15.0|65|27535 +1.3.6.1.2.1.7.1.0|65|17861 +1.3.6.1.2.1.7.2.0|65|21 +1.3.6.1.2.1.7.3.0|65|0 +1.3.6.1.2.1.7.4.0|65|16586 +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.538|2|3 +1.3.6.1.2.1.10.7.2.1.19.539|2|3 +1.3.6.1.2.1.10.7.2.1.19.540|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.544|2|3 +1.3.6.1.2.1.10.166.11.1.2.1.1.2.2.68.67.536|2|2 +1.3.6.1.2.1.10.166.11.1.2.1.1.2.2.68.67.537|2|2 +1.3.6.1.2.1.10.166.11.1.2.1.1.2.2.68.67.543|2|2 +1.3.6.1.2.1.10.166.11.1.2.1.1.2.2.68.67.544|2|2 +1.3.6.1.2.1.10.166.11.1.2.1.1.2.8.87.65.78.95.69.68.71.69.538|2|2 +1.3.6.1.2.1.10.166.11.1.2.1.1.2.8.87.65.78.95.69.68.71.69.539|2|2 +1.3.6.1.2.1.10.166.11.1.2.1.1.2.8.87.65.78.95.69.68.71.69.542|2|2 +1.3.6.1.2.1.10.166.11.1.2.2.1.3.2.68.67|4|DC +1.3.6.1.2.1.10.166.11.1.2.2.1.3.8.87.65.78.95.69.68.71.69|4|WAN_EDGE +1.3.6.1.2.1.10.166.11.1.2.2.1.4.2.68.67|4|172.16.2.10:200 +1.3.6.1.2.1.10.166.11.1.2.2.1.4.8.87.65.78.95.69.68.71.69|4|172.16.1.10:100 +1.3.6.1.2.1.11.1.0|65|16552 +1.3.6.1.2.1.11.2.0|65|13794 +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|130062 +1.3.6.1.2.1.11.14.0|65|0 +1.3.6.1.2.1.11.15.0|65|945 +1.3.6.1.2.1.11.16.0|65|147 +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|13796 +1.3.6.1.2.1.11.29.0|65|0 +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.14.1.1.0|64|0.0.0.0 +1.3.6.1.2.1.14.1.2.0|2|2 +1.3.6.1.2.1.14.1.3.0|2|2 +1.3.6.1.2.1.14.1.4.0|2|2 +1.3.6.1.2.1.14.1.5.0|2|2 +1.3.6.1.2.1.14.1.6.0|66|0 +1.3.6.1.2.1.14.1.7.0|2|0 +1.3.6.1.2.1.14.1.8.0|2|2 +1.3.6.1.2.1.14.1.9.0|65|0 +1.3.6.1.2.1.14.1.10.0|65|0 +1.3.6.1.2.1.14.1.11.0|2|0 +1.3.6.1.2.1.14.1.12.0|2|0 +1.3.6.1.2.1.14.1.13.0|2|0 +1.3.6.1.2.1.14.1.14.0|2|2 +1.3.6.1.2.1.15.2.0|2|64999 +1.3.6.1.2.1.17.1.4.1.2.4098|2|528 +1.3.6.1.2.1.17.1.4.1.2.4099|2|529 +1.3.6.1.2.1.17.7.1.1.1.0|2|1 +1.3.6.1.2.1.17.7.1.4.3.1.2.10|4|4098 +1.3.6.1.2.1.17.7.1.4.3.1.2.11|4|4099 +1.3.6.1.2.1.17.7.1.4.3.1.4.10|4|4098 +1.3.6.1.2.1.17.7.1.4.3.1.4.11|4|4099 +1.3.6.1.2.1.17.7.1.4.5.1.1.4098|66|10 +1.3.6.1.2.1.17.7.1.4.5.1.1.4099|66|11 +1.3.6.1.2.1.25.1.1.0|67|1299222 +1.3.6.1.2.1.25.1.5.0|66|0 +1.3.6.1.2.1.25.1.6.0|66|185 +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.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.1.32|2|32 +1.3.6.1.2.1.25.2.3.1.1.33|2|33 +1.3.6.1.2.1.25.2.3.1.1.34|2|34 +1.3.6.1.2.1.25.2.3.1.1.35|2|35 +1.3.6.1.2.1.25.2.3.1.1.36|2|36 +1.3.6.1.2.1.25.2.3.1.1.37|2|37 +1.3.6.1.2.1.25.2.3.1.1.38|2|38 +1.3.6.1.2.1.25.2.3.1.1.39|2|39 +1.3.6.1.2.1.25.2.3.1.1.40|2|40 +1.3.6.1.2.1.25.2.3.1.1.41|2|41 +1.3.6.1.2.1.25.2.3.1.1.42|2|42 +1.3.6.1.2.1.25.2.3.1.1.43|2|43 +1.3.6.1.2.1.25.2.3.1.1.44|2|44 +1.3.6.1.2.1.25.2.3.1.1.45|2|45 +1.3.6.1.2.1.25.2.3.1.1.46|2|46 +1.3.6.1.2.1.25.2.3.1.1.47|2|47 +1.3.6.1.2.1.25.2.3.1.1.48|2|48 +1.3.6.1.2.1.25.2.3.1.1.49|2|49 +1.3.6.1.2.1.25.2.3.1.1.50|2|50 +1.3.6.1.2.1.25.2.3.1.1.51|2|51 +1.3.6.1.2.1.25.2.3.1.2.1|6|1.3.6.1.2.1.25.2.1.9 +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.3 +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.4 +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.2.32|6|1.3.6.1.2.1.25.2.1.4 +1.3.6.1.2.1.25.2.3.1.2.33|6|1.3.6.1.2.1.25.2.1.4 +1.3.6.1.2.1.25.2.3.1.2.34|6|1.3.6.1.2.1.25.2.1.4 +1.3.6.1.2.1.25.2.3.1.2.35|6|1.3.6.1.2.1.25.2.1.4 +1.3.6.1.2.1.25.2.3.1.2.36|6|1.3.6.1.2.1.25.2.1.4 +1.3.6.1.2.1.25.2.3.1.2.37|6|1.3.6.1.2.1.25.2.1.4 +1.3.6.1.2.1.25.2.3.1.2.38|6|1.3.6.1.2.1.25.2.1.4 +1.3.6.1.2.1.25.2.3.1.2.39|6|1.3.6.1.2.1.25.2.1.4 +1.3.6.1.2.1.25.2.3.1.2.40|6|1.3.6.1.2.1.25.2.1.4 +1.3.6.1.2.1.25.2.3.1.2.41|6|1.3.6.1.2.1.25.2.1.4 +1.3.6.1.2.1.25.2.3.1.2.42|6|1.3.6.1.2.1.25.2.1.4 +1.3.6.1.2.1.25.2.3.1.2.43|6|1.3.6.1.2.1.25.2.1.4 +1.3.6.1.2.1.25.2.3.1.2.44|6|1.3.6.1.2.1.25.2.1.4 +1.3.6.1.2.1.25.2.3.1.2.45|6|1.3.6.1.2.1.25.2.1.4 +1.3.6.1.2.1.25.2.3.1.2.46|6|1.3.6.1.2.1.25.2.1.4 +1.3.6.1.2.1.25.2.3.1.2.47|6|1.3.6.1.2.1.25.2.1.4 +1.3.6.1.2.1.25.2.3.1.2.48|6|1.3.6.1.2.1.25.2.1.4 +1.3.6.1.2.1.25.2.3.1.2.49|6|1.3.6.1.2.1.25.2.1.4 +1.3.6.1.2.1.25.2.3.1.2.50|6|1.3.6.1.2.1.25.2.1.4 +1.3.6.1.2.1.25.2.3.1.2.51|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/gpt/junos: root file system, mounted on: /.mount +1.3.6.1.2.1.25.2.3.1.3.10|4|/dev/md0.uzip, mounted on: / +1.3.6.1.2.1.25.2.3.1.3.11|4|devfs: dev file system, mounted on: /dev +1.3.6.1.2.1.25.2.3.1.3.12|4|devfs: dev file system, mounted on: /.mount/dev +1.3.6.1.2.1.25.2.3.1.3.13|4|/dev/md1.uzip, mounted on: /.mount/packages/mnt/os-libs-11 +1.3.6.1.2.1.25.2.3.1.3.14|4|/dev/md2.uzip, mounted on: /.mount/packages/mnt/os-runtime +1.3.6.1.2.1.25.2.3.1.3.15|4|procfs: process file system, mounted on: /.mount/proc +1.3.6.1.2.1.25.2.3.1.3.16|4|/dev/ada1s1e, mounted on: /.mount/config +1.3.6.1.2.1.25.2.3.1.3.17|4|/dev/ada1s1f, mounted on: /.mount/var +1.3.6.1.2.1.25.2.3.1.3.18|4|tmpfs, mounted on: /.mount/tmp +1.3.6.1.2.1.25.2.3.1.3.19|4|/dev/md3.uzip, mounted on: /.mount/packages/mnt/os-zoneinfo64-c84f54dd +1.3.6.1.2.1.25.2.3.1.3.20|4|/dev/md4.uzip, mounted on: /.mount/packages/mnt/junos-net +1.3.6.1.2.1.25.2.3.1.3.21|4|/dev/md5.uzip, mounted on: /.mount/packages/mnt/junos-libs +1.3.6.1.2.1.25.2.3.1.3.22|4|/dev/md6.uzip, mounted on: /.mount/packages/mnt/os-libs-compat32-11 +1.3.6.1.2.1.25.2.3.1.3.23|4|/dev/md7.uzip, mounted on: /.mount/packages/mnt/os-compat32 +1.3.6.1.2.1.25.2.3.1.3.24|4|/dev/md8.uzip, mounted on: /.mount/packages/mnt/junos-libs-compat32 +1.3.6.1.2.1.25.2.3.1.3.25|4|/dev/md9.uzip, mounted on: /.mount/packages/mnt/junos-runtime +1.3.6.1.2.1.25.2.3.1.3.26|4|/dev/md10.uzip, mounted on: /.mount/packages/mnt/junos-runtime/web-api/jail/junos-libs +1.3.6.1.2.1.25.2.3.1.3.27|4|/dev/md11.uzip, mounted on: /.mount/packages/mnt/junos-runtime/web-api/jail/junos-net +1.3.6.1.2.1.25.2.3.1.3.28|4|/var/jails/rest-api, mounted on: /.mount/packages/mnt/junos-runtime/web-api/var +1.3.6.1.2.1.25.2.3.1.3.29|4|/dev/md12, mounted on: /.mount/packages/mnt/junos-runtime/web-api/jail/rt +1.3.6.1.2.1.25.2.3.1.3.30|4|/dev/md13, mounted on: /.mount/packages/mnt/jsim-pfe32-8969596a +1.3.6.1.2.1.25.2.3.1.3.31|4|/dev/md14.uzip, mounted on: /.mount/packages/mnt/sflow-mx32-e1bb1549 +1.3.6.1.2.1.25.2.3.1.3.32|4|/dev/md15.uzip, mounted on: /.mount/packages/mnt/py-extensions32-4e740886 +1.3.6.1.2.1.25.2.3.1.3.33|4|/dev/md16.uzip, mounted on: /.mount/packages/mnt/py-base32-7d174f52 +1.3.6.1.2.1.25.2.3.1.3.34|4|/dev/md17.uzip, mounted on: /.mount/packages/mnt/os-vmguest64-065e256c +1.3.6.1.2.1.25.2.3.1.3.35|4|/dev/md18.uzip, mounted on: /.mount/packages/mnt/os-crypto +1.3.6.1.2.1.25.2.3.1.3.36|4|/dev/md19.uzip, mounted on: /.mount/packages/mnt/junos-libs-compat32-mx +1.3.6.1.2.1.25.2.3.1.3.37|4|/dev/md20.uzip, mounted on: /.mount/packages/mnt/junos-runtime-mx +1.3.6.1.2.1.25.2.3.1.3.38|4|/dev/md21.uzip, mounted on: /.mount/packages/mnt/junos-platform +1.3.6.1.2.1.25.2.3.1.3.39|4|/dev/md22.uzip, mounted on: /.mount/packages/mnt/junos-modules64-00ae4a0d +1.3.6.1.2.1.25.2.3.1.3.40|4|/dev/md23.uzip, mounted on: /.mount/packages/mnt/junos-modules-mx64-7e0a85ad +1.3.6.1.2.1.25.2.3.1.3.41|4|/dev/md24.uzip, mounted on: /.mount/packages/mnt/junos-libs-mx +1.3.6.1.2.1.25.2.3.1.3.42|4|/dev/md25.uzip, mounted on: /.mount/packages/mnt/junos-dp-crypto-support-mtx32-a9664fad +1.3.6.1.2.1.25.2.3.1.3.43|4|/dev/md26.uzip, mounted on: /.mount/packages/mnt/junos-daemons64-1db2befe +1.3.6.1.2.1.25.2.3.1.3.44|4|/dev/md27.uzip, mounted on: /.mount/packages/mnt/junos-daemons-mx64-48dcc0ba +1.3.6.1.2.1.25.2.3.1.3.45|4|/dev/md28, mounted on: /.mount/packages/mnt/jsim-wrlinux32-e7b5498f +1.3.6.1.2.1.25.2.3.1.3.46|4|/dev/md29, mounted on: /.mount/packages/mnt/jsim-pfe-vmx32-1187171a +1.3.6.1.2.1.25.2.3.1.3.47|4|/dev/md30.uzip, mounted on: /.mount/packages/mnt/jsd-jet-132-a8ba9263 +1.3.6.1.2.1.25.2.3.1.3.48|4|/dev/md31.uzip, mounted on: /.mount/packages/mnt/jinsight32-e5314d62 +1.3.6.1.2.1.25.2.3.1.3.49|4|/dev/md32.uzip, mounted on: /.mount/packages/mnt/jdocs32-f367df78 +1.3.6.1.2.1.25.2.3.1.3.50|4|tmpfs, mounted on: /.mount/mfs +1.3.6.1.2.1.25.2.3.1.3.51|4|junosprocfs, mounted on: /.mount/junosproc +1.3.6.1.2.1.25.2.3.1.4.1|2|1024 +1.3.6.1.2.1.25.2.3.1.4.10|2|2048 +1.3.6.1.2.1.25.2.3.1.4.11|2|512 +1.3.6.1.2.1.25.2.3.1.4.12|2|512 +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|4096 +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|4096 +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|2048 +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|2048 +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|2048 +1.3.6.1.2.1.25.2.3.1.4.32|2|2048 +1.3.6.1.2.1.25.2.3.1.4.33|2|2048 +1.3.6.1.2.1.25.2.3.1.4.34|2|2048 +1.3.6.1.2.1.25.2.3.1.4.35|2|2048 +1.3.6.1.2.1.25.2.3.1.4.36|2|2048 +1.3.6.1.2.1.25.2.3.1.4.37|2|2048 +1.3.6.1.2.1.25.2.3.1.4.38|2|2048 +1.3.6.1.2.1.25.2.3.1.4.39|2|2048 +1.3.6.1.2.1.25.2.3.1.4.40|2|2048 +1.3.6.1.2.1.25.2.3.1.4.41|2|2048 +1.3.6.1.2.1.25.2.3.1.4.42|2|2048 +1.3.6.1.2.1.25.2.3.1.4.43|2|2048 +1.3.6.1.2.1.25.2.3.1.4.44|2|2048 +1.3.6.1.2.1.25.2.3.1.4.45|2|2048 +1.3.6.1.2.1.25.2.3.1.4.46|2|2048 +1.3.6.1.2.1.25.2.3.1.4.47|2|2048 +1.3.6.1.2.1.25.2.3.1.4.48|2|2048 +1.3.6.1.2.1.25.2.3.1.4.49|2|2048 +1.3.6.1.2.1.25.2.3.1.4.50|2|4096 +1.3.6.1.2.1.25.2.3.1.4.51|2|4096 +1.3.6.1.2.1.25.2.3.1.5.1|2|20901946 +1.3.6.1.2.1.25.2.3.1.5.10|2|10989 +1.3.6.1.2.1.25.2.3.1.5.11|2|2 +1.3.6.1.2.1.25.2.3.1.5.12|2|2 +1.3.6.1.2.1.25.2.3.1.5.13|2|10692 +1.3.6.1.2.1.25.2.3.1.5.14|2|13037 +1.3.6.1.2.1.25.2.3.1.5.15|2|1 +1.3.6.1.2.1.25.2.3.1.5.16|2|154535 +1.3.6.1.2.1.25.2.3.1.5.17|2|2908959 +1.3.6.1.2.1.25.2.3.1.5.18|2|789753 +1.3.6.1.2.1.25.2.3.1.5.19|2|784 +1.3.6.1.2.1.25.2.3.1.5.20|2|9076 +1.3.6.1.2.1.25.2.3.1.5.21|2|19217 +1.3.6.1.2.1.25.2.3.1.5.22|2|9261 +1.3.6.1.2.1.25.2.3.1.5.23|2|281 +1.3.6.1.2.1.25.2.3.1.5.24|2|62774 +1.3.6.1.2.1.25.2.3.1.5.25|2|310917 +1.3.6.1.2.1.25.2.3.1.5.26|2|62774 +1.3.6.1.2.1.25.2.3.1.5.27|2|9076 +1.3.6.1.2.1.25.2.3.1.5.28|2|2908959 +1.3.6.1.2.1.25.2.3.1.5.29|2|8827 +1.3.6.1.2.1.25.2.3.1.5.30|2|52987 +1.3.6.1.2.1.25.2.3.1.5.31|2|1936 +1.3.6.1.2.1.25.2.3.1.5.32|2|7079 +1.3.6.1.2.1.25.2.3.1.5.33|2|7526 +1.3.6.1.2.1.25.2.3.1.5.34|2|48 +1.3.6.1.2.1.25.2.3.1.5.35|2|4121 +1.3.6.1.2.1.25.2.3.1.5.36|2|3507 +1.3.6.1.2.1.25.2.3.1.5.37|2|142605 +1.3.6.1.2.1.25.2.3.1.5.38|2|26159 +1.3.6.1.2.1.25.2.3.1.5.39|2|18092 +1.3.6.1.2.1.25.2.3.1.5.40|2|2629 +1.3.6.1.2.1.25.2.3.1.5.41|2|391 +1.3.6.1.2.1.25.2.3.1.5.42|2|15905 +1.3.6.1.2.1.25.2.3.1.5.43|2|134289 +1.3.6.1.2.1.25.2.3.1.5.44|2|83491 +1.3.6.1.2.1.25.2.3.1.5.45|2|44825 +1.3.6.1.2.1.25.2.3.1.5.46|2|99829 +1.3.6.1.2.1.25.2.3.1.5.47|2|6203 +1.3.6.1.2.1.25.2.3.1.5.48|2|2730 +1.3.6.1.2.1.25.2.3.1.5.49|2|6440 +1.3.6.1.2.1.25.2.3.1.5.50|2|41801 +1.3.6.1.2.1.25.2.3.1.5.51|2|1 +1.3.6.1.2.1.25.2.3.1.6.1|2|1199049 +1.3.6.1.2.1.25.2.3.1.6.10|2|10989 +1.3.6.1.2.1.25.2.3.1.6.11|2|2 +1.3.6.1.2.1.25.2.3.1.6.12|2|2 +1.3.6.1.2.1.25.2.3.1.6.13|2|10692 +1.3.6.1.2.1.25.2.3.1.6.14|2|13037 +1.3.6.1.2.1.25.2.3.1.6.15|2|1 +1.3.6.1.2.1.25.2.3.1.6.16|2|17 +1.3.6.1.2.1.25.2.3.1.6.17|2|43627 +1.3.6.1.2.1.25.2.3.1.6.18|2|3 +1.3.6.1.2.1.25.2.3.1.6.19|2|784 +1.3.6.1.2.1.25.2.3.1.6.20|2|9076 +1.3.6.1.2.1.25.2.3.1.6.21|2|19217 +1.3.6.1.2.1.25.2.3.1.6.22|2|9261 +1.3.6.1.2.1.25.2.3.1.6.23|2|281 +1.3.6.1.2.1.25.2.3.1.6.24|2|62774 +1.3.6.1.2.1.25.2.3.1.6.25|2|310917 +1.3.6.1.2.1.25.2.3.1.6.26|2|62774 +1.3.6.1.2.1.25.2.3.1.6.27|2|9076 +1.3.6.1.2.1.25.2.3.1.6.28|2|43627 +1.3.6.1.2.1.25.2.3.1.6.29|2|8827 +1.3.6.1.2.1.25.2.3.1.6.30|2|52987 +1.3.6.1.2.1.25.2.3.1.6.31|2|1936 +1.3.6.1.2.1.25.2.3.1.6.32|2|7079 +1.3.6.1.2.1.25.2.3.1.6.33|2|7526 +1.3.6.1.2.1.25.2.3.1.6.34|2|48 +1.3.6.1.2.1.25.2.3.1.6.35|2|4121 +1.3.6.1.2.1.25.2.3.1.6.36|2|3507 +1.3.6.1.2.1.25.2.3.1.6.37|2|142605 +1.3.6.1.2.1.25.2.3.1.6.38|2|26159 +1.3.6.1.2.1.25.2.3.1.6.39|2|18092 +1.3.6.1.2.1.25.2.3.1.6.40|2|2629 +1.3.6.1.2.1.25.2.3.1.6.41|2|391 +1.3.6.1.2.1.25.2.3.1.6.42|2|15905 +1.3.6.1.2.1.25.2.3.1.6.43|2|134289 +1.3.6.1.2.1.25.2.3.1.6.44|2|83491 +1.3.6.1.2.1.25.2.3.1.6.45|2|44825 +1.3.6.1.2.1.25.2.3.1.6.46|2|99829 +1.3.6.1.2.1.25.2.3.1.6.47|2|6203 +1.3.6.1.2.1.25.2.3.1.6.48|2|2730 +1.3.6.1.2.1.25.2.3.1.6.49|2|6440 +1.3.6.1.2.1.25.2.3.1.6.50|2|395 +1.3.6.1.2.1.25.2.3.1.6.51|2|1 +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.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.2.3.1.7.32|65|0 +1.3.6.1.2.1.25.2.3.1.7.33|65|0 +1.3.6.1.2.1.25.2.3.1.7.34|65|0 +1.3.6.1.2.1.25.2.3.1.7.35|65|0 +1.3.6.1.2.1.25.2.3.1.7.36|65|0 +1.3.6.1.2.1.25.2.3.1.7.37|65|0 +1.3.6.1.2.1.25.2.3.1.7.38|65|0 +1.3.6.1.2.1.25.2.3.1.7.39|65|0 +1.3.6.1.2.1.25.2.3.1.7.40|65|0 +1.3.6.1.2.1.25.2.3.1.7.41|65|0 +1.3.6.1.2.1.25.2.3.1.7.42|65|0 +1.3.6.1.2.1.25.2.3.1.7.43|65|0 +1.3.6.1.2.1.25.2.3.1.7.44|65|0 +1.3.6.1.2.1.25.2.3.1.7.45|65|0 +1.3.6.1.2.1.25.2.3.1.7.46|65|0 +1.3.6.1.2.1.25.2.3.1.7.47|65|0 +1.3.6.1.2.1.25.2.3.1.7.48|65|0 +1.3.6.1.2.1.25.2.3.1.7.49|65|0 +1.3.6.1.2.1.25.2.3.1.7.50|65|0 +1.3.6.1.2.1.25.2.3.1.7.51|65|0 +1.3.6.1.2.1.25.3.3.1.1.0|2|0 +1.3.6.1.2.1.25.3.3.1.2.0|2|28 +1.3.6.1.2.1.25.6.3.1.2.2|4|JUNOS Base OS Software Suite [18.2R1.9] +1.3.6.1.2.1.31.1.1.1.1.1|4|fxp0 +1.3.6.1.2.1.31.1.1.1.1.4|4|lsi +1.3.6.1.2.1.31.1.1.1.1.5|4|dsc +1.3.6.1.2.1.31.1.1.1.1.6|4|lo0 +1.3.6.1.2.1.31.1.1.1.1.7|4|tap +1.3.6.1.2.1.31.1.1.1.1.8|4|gre +1.3.6.1.2.1.31.1.1.1.1.9|4|ipip +1.3.6.1.2.1.31.1.1.1.1.10|4|pime +1.3.6.1.2.1.31.1.1.1.1.11|4|pimd +1.3.6.1.2.1.31.1.1.1.1.12|4|mtun +1.3.6.1.2.1.31.1.1.1.1.13|4|fxp0.0 +1.3.6.1.2.1.31.1.1.1.1.21|4|lo0.16384 +1.3.6.1.2.1.31.1.1.1.1.22|4|lo0.16385 +1.3.6.1.2.1.31.1.1.1.1.23|4|em1 +1.3.6.1.2.1.31.1.1.1.1.24|4|em1.0 +1.3.6.1.2.1.31.1.1.1.1.501|4|cbp0 +1.3.6.1.2.1.31.1.1.1.1.502|4|demux0 +1.3.6.1.2.1.31.1.1.1.1.503|4|esi +1.3.6.1.2.1.31.1.1.1.1.504|4|fti0 +1.3.6.1.2.1.31.1.1.1.1.505|4|fti1 +1.3.6.1.2.1.31.1.1.1.1.506|4|fti2 +1.3.6.1.2.1.31.1.1.1.1.507|4|fti3 +1.3.6.1.2.1.31.1.1.1.1.508|4|fti4 +1.3.6.1.2.1.31.1.1.1.1.509|4|fti5 +1.3.6.1.2.1.31.1.1.1.1.510|4|fti6 +1.3.6.1.2.1.31.1.1.1.1.511|4|fti7 +1.3.6.1.2.1.31.1.1.1.1.512|4|irb +1.3.6.1.2.1.31.1.1.1.1.513|4|jsrv +1.3.6.1.2.1.31.1.1.1.1.514|4|jsrv.1 +1.3.6.1.2.1.31.1.1.1.1.515|4|pip0 +1.3.6.1.2.1.31.1.1.1.1.516|4|pp0 +1.3.6.1.2.1.31.1.1.1.1.517|4|rbeb +1.3.6.1.2.1.31.1.1.1.1.518|4|vtep +1.3.6.1.2.1.31.1.1.1.1.519|4|lc-0/0/0 +1.3.6.1.2.1.31.1.1.1.1.520|4|lc-0/0/0.32769 +1.3.6.1.2.1.31.1.1.1.1.521|4|pfh-0/0/0 +1.3.6.1.2.1.31.1.1.1.1.522|4|pfe-0/0/0 +1.3.6.1.2.1.31.1.1.1.1.523|4|pfe-0/0/0.16383 +1.3.6.1.2.1.31.1.1.1.1.524|4|pfh-0/0/0.16383 +1.3.6.1.2.1.31.1.1.1.1.525|4|pfh-0/0/0.16384 +1.3.6.1.2.1.31.1.1.1.1.526|4|ge-0/0/0 +1.3.6.1.2.1.31.1.1.1.1.527|4|ge-0/0/1 +1.3.6.1.2.1.31.1.1.1.1.528|4|ge-0/0/2 +1.3.6.1.2.1.31.1.1.1.1.529|4|ge-0/0/3 +1.3.6.1.2.1.31.1.1.1.1.530|4|ge-0/0/4 +1.3.6.1.2.1.31.1.1.1.1.531|4|ge-0/0/5 +1.3.6.1.2.1.31.1.1.1.1.532|4|ge-0/0/6 +1.3.6.1.2.1.31.1.1.1.1.533|4|ge-0/0/7 +1.3.6.1.2.1.31.1.1.1.1.534|4|ge-0/0/8 +1.3.6.1.2.1.31.1.1.1.1.535|4|ge-0/0/9 +1.3.6.1.2.1.31.1.1.1.1.536|4|irb.10 +1.3.6.1.2.1.31.1.1.1.1.537|4|irb.11 +1.3.6.1.2.1.31.1.1.1.1.538|4|ge-0/0/0.0 +1.3.6.1.2.1.31.1.1.1.1.539|4|ge-0/0/1.0 +1.3.6.1.2.1.31.1.1.1.1.540|4|ge-0/0/2.0 +1.3.6.1.2.1.31.1.1.1.1.541|4|ge-0/0/3.0 +1.3.6.1.2.1.31.1.1.1.1.542|4|lo0.100 +1.3.6.1.2.1.31.1.1.1.1.543|4|lo0.200 +1.3.6.1.2.1.31.1.1.1.1.544|4|ge-0/0/4.0 +1.3.6.1.2.1.31.1.1.1.2.1|65|0 +1.3.6.1.2.1.31.1.1.1.2.4|65|0 +1.3.6.1.2.1.31.1.1.1.2.5|65|0 +1.3.6.1.2.1.31.1.1.1.2.6|65|0 +1.3.6.1.2.1.31.1.1.1.2.7|65|0 +1.3.6.1.2.1.31.1.1.1.2.8|65|0 +1.3.6.1.2.1.31.1.1.1.2.9|65|0 +1.3.6.1.2.1.31.1.1.1.2.10|65|0 +1.3.6.1.2.1.31.1.1.1.2.11|65|0 +1.3.6.1.2.1.31.1.1.1.2.12|65|0 +1.3.6.1.2.1.31.1.1.1.2.13|65|0 +1.3.6.1.2.1.31.1.1.1.2.21|65|0 +1.3.6.1.2.1.31.1.1.1.2.22|65|0 +1.3.6.1.2.1.31.1.1.1.2.23|65|0 +1.3.6.1.2.1.31.1.1.1.2.24|65|0 +1.3.6.1.2.1.31.1.1.1.2.501|65|0 +1.3.6.1.2.1.31.1.1.1.2.502|65|0 +1.3.6.1.2.1.31.1.1.1.2.503|65|0 +1.3.6.1.2.1.31.1.1.1.2.504|65|0 +1.3.6.1.2.1.31.1.1.1.2.505|65|0 +1.3.6.1.2.1.31.1.1.1.2.506|65|0 +1.3.6.1.2.1.31.1.1.1.2.507|65|0 +1.3.6.1.2.1.31.1.1.1.2.508|65|0 +1.3.6.1.2.1.31.1.1.1.2.509|65|0 +1.3.6.1.2.1.31.1.1.1.2.510|65|0 +1.3.6.1.2.1.31.1.1.1.2.511|65|0 +1.3.6.1.2.1.31.1.1.1.2.512|65|0 +1.3.6.1.2.1.31.1.1.1.2.513|65|0 +1.3.6.1.2.1.31.1.1.1.2.514|65|0 +1.3.6.1.2.1.31.1.1.1.2.515|65|0 +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|0 +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|0 +1.3.6.1.2.1.31.1.1.1.2.536|65|0 +1.3.6.1.2.1.31.1.1.1.2.537|65|0 +1.3.6.1.2.1.31.1.1.1.2.538|65|0 +1.3.6.1.2.1.31.1.1.1.2.539|65|0 +1.3.6.1.2.1.31.1.1.1.2.540|65|0 +1.3.6.1.2.1.31.1.1.1.2.541|65|0 +1.3.6.1.2.1.31.1.1.1.2.542|65|0 +1.3.6.1.2.1.31.1.1.1.2.543|65|0 +1.3.6.1.2.1.31.1.1.1.2.544|65|0 +1.3.6.1.2.1.31.1.1.1.3.1|65|0 +1.3.6.1.2.1.31.1.1.1.3.4|65|0 +1.3.6.1.2.1.31.1.1.1.3.5|65|0 +1.3.6.1.2.1.31.1.1.1.3.6|65|0 +1.3.6.1.2.1.31.1.1.1.3.7|65|0 +1.3.6.1.2.1.31.1.1.1.3.8|65|0 +1.3.6.1.2.1.31.1.1.1.3.9|65|0 +1.3.6.1.2.1.31.1.1.1.3.10|65|0 +1.3.6.1.2.1.31.1.1.1.3.11|65|0 +1.3.6.1.2.1.31.1.1.1.3.12|65|0 +1.3.6.1.2.1.31.1.1.1.3.13|65|0 +1.3.6.1.2.1.31.1.1.1.3.21|65|0 +1.3.6.1.2.1.31.1.1.1.3.22|65|0 +1.3.6.1.2.1.31.1.1.1.3.23|65|0 +1.3.6.1.2.1.31.1.1.1.3.24|65|0 +1.3.6.1.2.1.31.1.1.1.3.501|65|0 +1.3.6.1.2.1.31.1.1.1.3.502|65|0 +1.3.6.1.2.1.31.1.1.1.3.503|65|0 +1.3.6.1.2.1.31.1.1.1.3.504|65|0 +1.3.6.1.2.1.31.1.1.1.3.505|65|0 +1.3.6.1.2.1.31.1.1.1.3.506|65|0 +1.3.6.1.2.1.31.1.1.1.3.507|65|0 +1.3.6.1.2.1.31.1.1.1.3.508|65|0 +1.3.6.1.2.1.31.1.1.1.3.509|65|0 +1.3.6.1.2.1.31.1.1.1.3.510|65|0 +1.3.6.1.2.1.31.1.1.1.3.511|65|0 +1.3.6.1.2.1.31.1.1.1.3.512|65|0 +1.3.6.1.2.1.31.1.1.1.3.513|65|0 +1.3.6.1.2.1.31.1.1.1.3.514|65|0 +1.3.6.1.2.1.31.1.1.1.3.515|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|0 +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|0 +1.3.6.1.2.1.31.1.1.1.3.536|65|0 +1.3.6.1.2.1.31.1.1.1.3.537|65|0 +1.3.6.1.2.1.31.1.1.1.3.538|65|0 +1.3.6.1.2.1.31.1.1.1.3.539|65|0 +1.3.6.1.2.1.31.1.1.1.3.540|65|0 +1.3.6.1.2.1.31.1.1.1.3.541|65|0 +1.3.6.1.2.1.31.1.1.1.3.542|65|0 +1.3.6.1.2.1.31.1.1.1.3.543|65|0 +1.3.6.1.2.1.31.1.1.1.3.544|65|0 +1.3.6.1.2.1.31.1.1.1.4.1|65|0 +1.3.6.1.2.1.31.1.1.1.4.4|65|0 +1.3.6.1.2.1.31.1.1.1.4.5|65|0 +1.3.6.1.2.1.31.1.1.1.4.6|65|0 +1.3.6.1.2.1.31.1.1.1.4.7|65|0 +1.3.6.1.2.1.31.1.1.1.4.8|65|0 +1.3.6.1.2.1.31.1.1.1.4.9|65|0 +1.3.6.1.2.1.31.1.1.1.4.10|65|0 +1.3.6.1.2.1.31.1.1.1.4.11|65|0 +1.3.6.1.2.1.31.1.1.1.4.12|65|0 +1.3.6.1.2.1.31.1.1.1.4.13|65|0 +1.3.6.1.2.1.31.1.1.1.4.21|65|0 +1.3.6.1.2.1.31.1.1.1.4.22|65|0 +1.3.6.1.2.1.31.1.1.1.4.23|65|0 +1.3.6.1.2.1.31.1.1.1.4.24|65|0 +1.3.6.1.2.1.31.1.1.1.4.501|65|0 +1.3.6.1.2.1.31.1.1.1.4.502|65|0 +1.3.6.1.2.1.31.1.1.1.4.503|65|0 +1.3.6.1.2.1.31.1.1.1.4.504|65|0 +1.3.6.1.2.1.31.1.1.1.4.505|65|0 +1.3.6.1.2.1.31.1.1.1.4.506|65|0 +1.3.6.1.2.1.31.1.1.1.4.507|65|0 +1.3.6.1.2.1.31.1.1.1.4.508|65|0 +1.3.6.1.2.1.31.1.1.1.4.509|65|0 +1.3.6.1.2.1.31.1.1.1.4.510|65|0 +1.3.6.1.2.1.31.1.1.1.4.511|65|0 +1.3.6.1.2.1.31.1.1.1.4.512|65|0 +1.3.6.1.2.1.31.1.1.1.4.513|65|0 +1.3.6.1.2.1.31.1.1.1.4.514|65|0 +1.3.6.1.2.1.31.1.1.1.4.515|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|0 +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|0 +1.3.6.1.2.1.31.1.1.1.4.536|65|0 +1.3.6.1.2.1.31.1.1.1.4.537|65|0 +1.3.6.1.2.1.31.1.1.1.4.538|65|0 +1.3.6.1.2.1.31.1.1.1.4.539|65|0 +1.3.6.1.2.1.31.1.1.1.4.540|65|0 +1.3.6.1.2.1.31.1.1.1.4.541|65|0 +1.3.6.1.2.1.31.1.1.1.4.542|65|0 +1.3.6.1.2.1.31.1.1.1.4.543|65|0 +1.3.6.1.2.1.31.1.1.1.4.544|65|0 +1.3.6.1.2.1.31.1.1.1.5.1|65|0 +1.3.6.1.2.1.31.1.1.1.5.4|65|0 +1.3.6.1.2.1.31.1.1.1.5.5|65|0 +1.3.6.1.2.1.31.1.1.1.5.6|65|0 +1.3.6.1.2.1.31.1.1.1.5.7|65|0 +1.3.6.1.2.1.31.1.1.1.5.8|65|0 +1.3.6.1.2.1.31.1.1.1.5.9|65|0 +1.3.6.1.2.1.31.1.1.1.5.10|65|0 +1.3.6.1.2.1.31.1.1.1.5.11|65|0 +1.3.6.1.2.1.31.1.1.1.5.12|65|0 +1.3.6.1.2.1.31.1.1.1.5.13|65|0 +1.3.6.1.2.1.31.1.1.1.5.21|65|0 +1.3.6.1.2.1.31.1.1.1.5.22|65|0 +1.3.6.1.2.1.31.1.1.1.5.23|65|0 +1.3.6.1.2.1.31.1.1.1.5.24|65|0 +1.3.6.1.2.1.31.1.1.1.5.501|65|0 +1.3.6.1.2.1.31.1.1.1.5.502|65|0 +1.3.6.1.2.1.31.1.1.1.5.503|65|0 +1.3.6.1.2.1.31.1.1.1.5.504|65|0 +1.3.6.1.2.1.31.1.1.1.5.505|65|0 +1.3.6.1.2.1.31.1.1.1.5.506|65|0 +1.3.6.1.2.1.31.1.1.1.5.507|65|0 +1.3.6.1.2.1.31.1.1.1.5.508|65|0 +1.3.6.1.2.1.31.1.1.1.5.509|65|0 +1.3.6.1.2.1.31.1.1.1.5.510|65|0 +1.3.6.1.2.1.31.1.1.1.5.511|65|0 +1.3.6.1.2.1.31.1.1.1.5.512|65|0 +1.3.6.1.2.1.31.1.1.1.5.513|65|0 +1.3.6.1.2.1.31.1.1.1.5.514|65|0 +1.3.6.1.2.1.31.1.1.1.5.515|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.536|65|0 +1.3.6.1.2.1.31.1.1.1.5.537|65|0 +1.3.6.1.2.1.31.1.1.1.5.538|65|0 +1.3.6.1.2.1.31.1.1.1.5.539|65|0 +1.3.6.1.2.1.31.1.1.1.5.540|65|0 +1.3.6.1.2.1.31.1.1.1.5.541|65|0 +1.3.6.1.2.1.31.1.1.1.5.542|65|0 +1.3.6.1.2.1.31.1.1.1.5.543|65|0 +1.3.6.1.2.1.31.1.1.1.5.544|65|0 +1.3.6.1.2.1.31.1.1.1.6.1|70|2733814 +1.3.6.1.2.1.31.1.1.1.6.4|70|0 +1.3.6.1.2.1.31.1.1.1.6.5|70|0 +1.3.6.1.2.1.31.1.1.1.6.6|70|797484 +1.3.6.1.2.1.31.1.1.1.6.7|70|0 +1.3.6.1.2.1.31.1.1.1.6.8|70|0 +1.3.6.1.2.1.31.1.1.1.6.9|70|0 +1.3.6.1.2.1.31.1.1.1.6.10|70|0 +1.3.6.1.2.1.31.1.1.1.6.11|70|0 +1.3.6.1.2.1.31.1.1.1.6.12|70|0 +1.3.6.1.2.1.31.1.1.1.6.13|70|2732905 +1.3.6.1.2.1.31.1.1.1.6.21|70|0 +1.3.6.1.2.1.31.1.1.1.6.22|70|797484 +1.3.6.1.2.1.31.1.1.1.6.23|70|35074760 +1.3.6.1.2.1.31.1.1.1.6.24|70|35073440 +1.3.6.1.2.1.31.1.1.1.6.501|70|0 +1.3.6.1.2.1.31.1.1.1.6.502|70|0 +1.3.6.1.2.1.31.1.1.1.6.503|70|0 +1.3.6.1.2.1.31.1.1.1.6.504|70|0 +1.3.6.1.2.1.31.1.1.1.6.505|70|0 +1.3.6.1.2.1.31.1.1.1.6.506|70|0 +1.3.6.1.2.1.31.1.1.1.6.507|70|0 +1.3.6.1.2.1.31.1.1.1.6.508|70|0 +1.3.6.1.2.1.31.1.1.1.6.509|70|0 +1.3.6.1.2.1.31.1.1.1.6.510|70|0 +1.3.6.1.2.1.31.1.1.1.6.511|70|0 +1.3.6.1.2.1.31.1.1.1.6.512|70|0 +1.3.6.1.2.1.31.1.1.1.6.513|70|0 +1.3.6.1.2.1.31.1.1.1.6.514|70|0 +1.3.6.1.2.1.31.1.1.1.6.515|70|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|47626 +1.3.6.1.2.1.31.1.1.1.6.527|70|431544 +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|1074168 +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|0 +1.3.6.1.2.1.31.1.1.1.6.536|70|0 +1.3.6.1.2.1.31.1.1.1.6.537|70|0 +1.3.6.1.2.1.31.1.1.1.6.538|70|47685 +1.3.6.1.2.1.31.1.1.1.6.539|70|431680 +1.3.6.1.2.1.31.1.1.1.6.540|70|0 +1.3.6.1.2.1.31.1.1.1.6.541|70|0 +1.3.6.1.2.1.31.1.1.1.6.542|70|0 +1.3.6.1.2.1.31.1.1.1.6.543|70|0 +1.3.6.1.2.1.31.1.1.1.6.544|70|1074328 +1.3.6.1.2.1.31.1.1.1.7.1|70|16808 +1.3.6.1.2.1.31.1.1.1.7.4|70|0 +1.3.6.1.2.1.31.1.1.1.7.5|70|0 +1.3.6.1.2.1.31.1.1.1.7.6|70|15614 +1.3.6.1.2.1.31.1.1.1.7.7|70|0 +1.3.6.1.2.1.31.1.1.1.7.8|70|0 +1.3.6.1.2.1.31.1.1.1.7.9|70|0 +1.3.6.1.2.1.31.1.1.1.7.10|70|0 +1.3.6.1.2.1.31.1.1.1.7.11|70|0 +1.3.6.1.2.1.31.1.1.1.7.12|70|0 +1.3.6.1.2.1.31.1.1.1.7.13|70|16791 +1.3.6.1.2.1.31.1.1.1.7.21|70|0 +1.3.6.1.2.1.31.1.1.1.7.22|70|15614 +1.3.6.1.2.1.31.1.1.1.7.23|70|319928 +1.3.6.1.2.1.31.1.1.1.7.24|70|319906 +1.3.6.1.2.1.31.1.1.1.7.501|70|0 +1.3.6.1.2.1.31.1.1.1.7.502|70|0 +1.3.6.1.2.1.31.1.1.1.7.503|70|0 +1.3.6.1.2.1.31.1.1.1.7.504|70|0 +1.3.6.1.2.1.31.1.1.1.7.505|70|0 +1.3.6.1.2.1.31.1.1.1.7.506|70|0 +1.3.6.1.2.1.31.1.1.1.7.507|70|0 +1.3.6.1.2.1.31.1.1.1.7.508|70|0 +1.3.6.1.2.1.31.1.1.1.7.509|70|0 +1.3.6.1.2.1.31.1.1.1.7.510|70|0 +1.3.6.1.2.1.31.1.1.1.7.511|70|0 +1.3.6.1.2.1.31.1.1.1.7.512|70|0 +1.3.6.1.2.1.31.1.1.1.7.513|70|0 +1.3.6.1.2.1.31.1.1.1.7.514|70|0 +1.3.6.1.2.1.31.1.1.1.7.515|70|0 +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|965 +1.3.6.1.2.1.31.1.1.1.7.527|70|6610 +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|13437 +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|0 +1.3.6.1.2.1.31.1.1.1.7.536|70|0 +1.3.6.1.2.1.31.1.1.1.7.537|70|0 +1.3.6.1.2.1.31.1.1.1.7.538|70|961 +1.3.6.1.2.1.31.1.1.1.7.539|70|6608 +1.3.6.1.2.1.31.1.1.1.7.540|70|0 +1.3.6.1.2.1.31.1.1.1.7.541|70|0 +1.3.6.1.2.1.31.1.1.1.7.542|70|0 +1.3.6.1.2.1.31.1.1.1.7.543|70|0 +1.3.6.1.2.1.31.1.1.1.7.544|70|13437 +1.3.6.1.2.1.31.1.1.1.8.1|70|0 +1.3.6.1.2.1.31.1.1.1.8.4|70|0 +1.3.6.1.2.1.31.1.1.1.8.5|70|0 +1.3.6.1.2.1.31.1.1.1.8.6|70|0 +1.3.6.1.2.1.31.1.1.1.8.7|70|0 +1.3.6.1.2.1.31.1.1.1.8.8|70|0 +1.3.6.1.2.1.31.1.1.1.8.9|70|0 +1.3.6.1.2.1.31.1.1.1.8.10|70|0 +1.3.6.1.2.1.31.1.1.1.8.11|70|0 +1.3.6.1.2.1.31.1.1.1.8.12|70|0 +1.3.6.1.2.1.31.1.1.1.8.13|70|0 +1.3.6.1.2.1.31.1.1.1.8.21|70|0 +1.3.6.1.2.1.31.1.1.1.8.22|70|0 +1.3.6.1.2.1.31.1.1.1.8.23|70|0 +1.3.6.1.2.1.31.1.1.1.8.24|70|0 +1.3.6.1.2.1.31.1.1.1.8.501|70|0 +1.3.6.1.2.1.31.1.1.1.8.502|70|0 +1.3.6.1.2.1.31.1.1.1.8.503|70|0 +1.3.6.1.2.1.31.1.1.1.8.504|70|0 +1.3.6.1.2.1.31.1.1.1.8.505|70|0 +1.3.6.1.2.1.31.1.1.1.8.506|70|0 +1.3.6.1.2.1.31.1.1.1.8.507|70|0 +1.3.6.1.2.1.31.1.1.1.8.508|70|0 +1.3.6.1.2.1.31.1.1.1.8.509|70|0 +1.3.6.1.2.1.31.1.1.1.8.510|70|0 +1.3.6.1.2.1.31.1.1.1.8.511|70|0 +1.3.6.1.2.1.31.1.1.1.8.512|70|0 +1.3.6.1.2.1.31.1.1.1.8.513|70|0 +1.3.6.1.2.1.31.1.1.1.8.514|70|0 +1.3.6.1.2.1.31.1.1.1.8.515|70|0 +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|0 +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|0 +1.3.6.1.2.1.31.1.1.1.8.536|70|0 +1.3.6.1.2.1.31.1.1.1.8.537|70|0 +1.3.6.1.2.1.31.1.1.1.8.538|70|0 +1.3.6.1.2.1.31.1.1.1.8.539|70|0 +1.3.6.1.2.1.31.1.1.1.8.540|70|0 +1.3.6.1.2.1.31.1.1.1.8.541|70|0 +1.3.6.1.2.1.31.1.1.1.8.542|70|0 +1.3.6.1.2.1.31.1.1.1.8.543|70|0 +1.3.6.1.2.1.31.1.1.1.8.544|70|0 +1.3.6.1.2.1.31.1.1.1.9.1|70|0 +1.3.6.1.2.1.31.1.1.1.9.4|70|0 +1.3.6.1.2.1.31.1.1.1.9.5|70|0 +1.3.6.1.2.1.31.1.1.1.9.6|70|0 +1.3.6.1.2.1.31.1.1.1.9.7|70|0 +1.3.6.1.2.1.31.1.1.1.9.8|70|0 +1.3.6.1.2.1.31.1.1.1.9.9|70|0 +1.3.6.1.2.1.31.1.1.1.9.10|70|0 +1.3.6.1.2.1.31.1.1.1.9.11|70|0 +1.3.6.1.2.1.31.1.1.1.9.12|70|0 +1.3.6.1.2.1.31.1.1.1.9.13|70|0 +1.3.6.1.2.1.31.1.1.1.9.21|70|0 +1.3.6.1.2.1.31.1.1.1.9.22|70|0 +1.3.6.1.2.1.31.1.1.1.9.23|70|0 +1.3.6.1.2.1.31.1.1.1.9.24|70|0 +1.3.6.1.2.1.31.1.1.1.9.501|70|0 +1.3.6.1.2.1.31.1.1.1.9.502|70|0 +1.3.6.1.2.1.31.1.1.1.9.503|70|0 +1.3.6.1.2.1.31.1.1.1.9.504|70|0 +1.3.6.1.2.1.31.1.1.1.9.505|70|0 +1.3.6.1.2.1.31.1.1.1.9.506|70|0 +1.3.6.1.2.1.31.1.1.1.9.507|70|0 +1.3.6.1.2.1.31.1.1.1.9.508|70|0 +1.3.6.1.2.1.31.1.1.1.9.509|70|0 +1.3.6.1.2.1.31.1.1.1.9.510|70|0 +1.3.6.1.2.1.31.1.1.1.9.511|70|0 +1.3.6.1.2.1.31.1.1.1.9.512|70|0 +1.3.6.1.2.1.31.1.1.1.9.513|70|0 +1.3.6.1.2.1.31.1.1.1.9.514|70|0 +1.3.6.1.2.1.31.1.1.1.9.515|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|0 +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|0 +1.3.6.1.2.1.31.1.1.1.9.536|70|0 +1.3.6.1.2.1.31.1.1.1.9.537|70|0 +1.3.6.1.2.1.31.1.1.1.9.538|70|0 +1.3.6.1.2.1.31.1.1.1.9.539|70|0 +1.3.6.1.2.1.31.1.1.1.9.540|70|0 +1.3.6.1.2.1.31.1.1.1.9.541|70|0 +1.3.6.1.2.1.31.1.1.1.9.542|70|0 +1.3.6.1.2.1.31.1.1.1.9.543|70|0 +1.3.6.1.2.1.31.1.1.1.9.544|70|0 +1.3.6.1.2.1.31.1.1.1.10.1|70|5502125 +1.3.6.1.2.1.31.1.1.1.10.4|70|0 +1.3.6.1.2.1.31.1.1.1.10.5|70|0 +1.3.6.1.2.1.31.1.1.1.10.6|70|797484 +1.3.6.1.2.1.31.1.1.1.10.7|70|0 +1.3.6.1.2.1.31.1.1.1.10.8|70|0 +1.3.6.1.2.1.31.1.1.1.10.9|70|0 +1.3.6.1.2.1.31.1.1.1.10.10|70|0 +1.3.6.1.2.1.31.1.1.1.10.11|70|0 +1.3.6.1.2.1.31.1.1.1.10.12|70|0 +1.3.6.1.2.1.31.1.1.1.10.13|70|5502546 +1.3.6.1.2.1.31.1.1.1.10.21|70|0 +1.3.6.1.2.1.31.1.1.1.10.22|70|797484 +1.3.6.1.2.1.31.1.1.1.10.23|70|21991184 +1.3.6.1.2.1.31.1.1.1.10.24|70|21810528 +1.3.6.1.2.1.31.1.1.1.10.501|70|0 +1.3.6.1.2.1.31.1.1.1.10.502|70|0 +1.3.6.1.2.1.31.1.1.1.10.503|70|0 +1.3.6.1.2.1.31.1.1.1.10.504|70|0 +1.3.6.1.2.1.31.1.1.1.10.505|70|0 +1.3.6.1.2.1.31.1.1.1.10.506|70|0 +1.3.6.1.2.1.31.1.1.1.10.507|70|0 +1.3.6.1.2.1.31.1.1.1.10.508|70|0 +1.3.6.1.2.1.31.1.1.1.10.509|70|0 +1.3.6.1.2.1.31.1.1.1.10.510|70|0 +1.3.6.1.2.1.31.1.1.1.10.511|70|0 +1.3.6.1.2.1.31.1.1.1.10.512|70|0 +1.3.6.1.2.1.31.1.1.1.10.513|70|0 +1.3.6.1.2.1.31.1.1.1.10.514|70|0 +1.3.6.1.2.1.31.1.1.1.10.515|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|457718 +1.3.6.1.2.1.31.1.1.1.10.527|70|66711 +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|1167416 +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|0 +1.3.6.1.2.1.31.1.1.1.10.536|70|0 +1.3.6.1.2.1.31.1.1.1.10.537|70|0 +1.3.6.1.2.1.31.1.1.1.10.538|70|843026 +1.3.6.1.2.1.31.1.1.1.10.539|70|60951 +1.3.6.1.2.1.31.1.1.1.10.540|70|0 +1.3.6.1.2.1.31.1.1.1.10.541|70|0 +1.3.6.1.2.1.31.1.1.1.10.542|70|0 +1.3.6.1.2.1.31.1.1.1.10.543|70|0 +1.3.6.1.2.1.31.1.1.1.10.544|70|2171992 +1.3.6.1.2.1.31.1.1.1.11.1|70|16780 +1.3.6.1.2.1.31.1.1.1.11.4|70|0 +1.3.6.1.2.1.31.1.1.1.11.5|70|0 +1.3.6.1.2.1.31.1.1.1.11.6|70|15614 +1.3.6.1.2.1.31.1.1.1.11.7|70|0 +1.3.6.1.2.1.31.1.1.1.11.8|70|0 +1.3.6.1.2.1.31.1.1.1.11.9|70|0 +1.3.6.1.2.1.31.1.1.1.11.10|70|0 +1.3.6.1.2.1.31.1.1.1.11.11|70|0 +1.3.6.1.2.1.31.1.1.1.11.12|70|0 +1.3.6.1.2.1.31.1.1.1.11.13|70|16781 +1.3.6.1.2.1.31.1.1.1.11.21|70|0 +1.3.6.1.2.1.31.1.1.1.11.22|70|15614 +1.3.6.1.2.1.31.1.1.1.11.23|70|322454 +1.3.6.1.2.1.31.1.1.1.11.24|70|322454 +1.3.6.1.2.1.31.1.1.1.11.501|70|0 +1.3.6.1.2.1.31.1.1.1.11.502|70|0 +1.3.6.1.2.1.31.1.1.1.11.503|70|0 +1.3.6.1.2.1.31.1.1.1.11.504|70|0 +1.3.6.1.2.1.31.1.1.1.11.505|70|0 +1.3.6.1.2.1.31.1.1.1.11.506|70|0 +1.3.6.1.2.1.31.1.1.1.11.507|70|0 +1.3.6.1.2.1.31.1.1.1.11.508|70|0 +1.3.6.1.2.1.31.1.1.1.11.509|70|0 +1.3.6.1.2.1.31.1.1.1.11.510|70|0 +1.3.6.1.2.1.31.1.1.1.11.511|70|0 +1.3.6.1.2.1.31.1.1.1.11.512|70|0 +1.3.6.1.2.1.31.1.1.1.11.513|70|0 +1.3.6.1.2.1.31.1.1.1.11.514|70|0 +1.3.6.1.2.1.31.1.1.1.11.515|70|0 +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|6710 +1.3.6.1.2.1.31.1.1.1.11.527|70|960 +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|14217 +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.536|70|0 +1.3.6.1.2.1.31.1.1.1.11.537|70|0 +1.3.6.1.2.1.31.1.1.1.11.538|70|12461 +1.3.6.1.2.1.31.1.1.1.11.539|70|960 +1.3.6.1.2.1.31.1.1.1.11.540|70|0 +1.3.6.1.2.1.31.1.1.1.11.541|70|0 +1.3.6.1.2.1.31.1.1.1.11.542|70|0 +1.3.6.1.2.1.31.1.1.1.11.543|70|0 +1.3.6.1.2.1.31.1.1.1.11.544|70|26890 +1.3.6.1.2.1.31.1.1.1.12.1|70|0 +1.3.6.1.2.1.31.1.1.1.12.4|70|0 +1.3.6.1.2.1.31.1.1.1.12.5|70|0 +1.3.6.1.2.1.31.1.1.1.12.6|70|0 +1.3.6.1.2.1.31.1.1.1.12.7|70|0 +1.3.6.1.2.1.31.1.1.1.12.8|70|0 +1.3.6.1.2.1.31.1.1.1.12.9|70|0 +1.3.6.1.2.1.31.1.1.1.12.10|70|0 +1.3.6.1.2.1.31.1.1.1.12.11|70|0 +1.3.6.1.2.1.31.1.1.1.12.12|70|0 +1.3.6.1.2.1.31.1.1.1.12.13|70|0 +1.3.6.1.2.1.31.1.1.1.12.21|70|0 +1.3.6.1.2.1.31.1.1.1.12.22|70|0 +1.3.6.1.2.1.31.1.1.1.12.23|70|0 +1.3.6.1.2.1.31.1.1.1.12.24|70|0 +1.3.6.1.2.1.31.1.1.1.12.501|70|0 +1.3.6.1.2.1.31.1.1.1.12.502|70|0 +1.3.6.1.2.1.31.1.1.1.12.503|70|0 +1.3.6.1.2.1.31.1.1.1.12.504|70|0 +1.3.6.1.2.1.31.1.1.1.12.505|70|0 +1.3.6.1.2.1.31.1.1.1.12.506|70|0 +1.3.6.1.2.1.31.1.1.1.12.507|70|0 +1.3.6.1.2.1.31.1.1.1.12.508|70|0 +1.3.6.1.2.1.31.1.1.1.12.509|70|0 +1.3.6.1.2.1.31.1.1.1.12.510|70|0 +1.3.6.1.2.1.31.1.1.1.12.511|70|0 +1.3.6.1.2.1.31.1.1.1.12.512|70|0 +1.3.6.1.2.1.31.1.1.1.12.513|70|0 +1.3.6.1.2.1.31.1.1.1.12.514|70|0 +1.3.6.1.2.1.31.1.1.1.12.515|70|0 +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|0 +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|0 +1.3.6.1.2.1.31.1.1.1.12.536|70|0 +1.3.6.1.2.1.31.1.1.1.12.537|70|0 +1.3.6.1.2.1.31.1.1.1.12.538|70|0 +1.3.6.1.2.1.31.1.1.1.12.539|70|0 +1.3.6.1.2.1.31.1.1.1.12.540|70|0 +1.3.6.1.2.1.31.1.1.1.12.541|70|0 +1.3.6.1.2.1.31.1.1.1.12.542|70|0 +1.3.6.1.2.1.31.1.1.1.12.543|70|0 +1.3.6.1.2.1.31.1.1.1.12.544|70|0 +1.3.6.1.2.1.31.1.1.1.13.1|70|0 +1.3.6.1.2.1.31.1.1.1.13.4|70|0 +1.3.6.1.2.1.31.1.1.1.13.5|70|0 +1.3.6.1.2.1.31.1.1.1.13.6|70|0 +1.3.6.1.2.1.31.1.1.1.13.7|70|0 +1.3.6.1.2.1.31.1.1.1.13.8|70|0 +1.3.6.1.2.1.31.1.1.1.13.9|70|0 +1.3.6.1.2.1.31.1.1.1.13.10|70|0 +1.3.6.1.2.1.31.1.1.1.13.11|70|0 +1.3.6.1.2.1.31.1.1.1.13.12|70|0 +1.3.6.1.2.1.31.1.1.1.13.13|70|0 +1.3.6.1.2.1.31.1.1.1.13.21|70|0 +1.3.6.1.2.1.31.1.1.1.13.22|70|0 +1.3.6.1.2.1.31.1.1.1.13.23|70|0 +1.3.6.1.2.1.31.1.1.1.13.24|70|0 +1.3.6.1.2.1.31.1.1.1.13.501|70|0 +1.3.6.1.2.1.31.1.1.1.13.502|70|0 +1.3.6.1.2.1.31.1.1.1.13.503|70|0 +1.3.6.1.2.1.31.1.1.1.13.504|70|0 +1.3.6.1.2.1.31.1.1.1.13.505|70|0 +1.3.6.1.2.1.31.1.1.1.13.506|70|0 +1.3.6.1.2.1.31.1.1.1.13.507|70|0 +1.3.6.1.2.1.31.1.1.1.13.508|70|0 +1.3.6.1.2.1.31.1.1.1.13.509|70|0 +1.3.6.1.2.1.31.1.1.1.13.510|70|0 +1.3.6.1.2.1.31.1.1.1.13.511|70|0 +1.3.6.1.2.1.31.1.1.1.13.512|70|0 +1.3.6.1.2.1.31.1.1.1.13.513|70|0 +1.3.6.1.2.1.31.1.1.1.13.514|70|0 +1.3.6.1.2.1.31.1.1.1.13.515|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.536|70|0 +1.3.6.1.2.1.31.1.1.1.13.537|70|0 +1.3.6.1.2.1.31.1.1.1.13.538|70|0 +1.3.6.1.2.1.31.1.1.1.13.539|70|0 +1.3.6.1.2.1.31.1.1.1.13.540|70|0 +1.3.6.1.2.1.31.1.1.1.13.541|70|0 +1.3.6.1.2.1.31.1.1.1.13.542|70|0 +1.3.6.1.2.1.31.1.1.1.13.543|70|0 +1.3.6.1.2.1.31.1.1.1.13.544|70|0 +1.3.6.1.2.1.31.1.1.1.14.1|2|1 +1.3.6.1.2.1.31.1.1.1.14.4|2|2 +1.3.6.1.2.1.31.1.1.1.14.5|2|1 +1.3.6.1.2.1.31.1.1.1.14.6|2|1 +1.3.6.1.2.1.31.1.1.1.14.7|2|1 +1.3.6.1.2.1.31.1.1.1.14.8|2|1 +1.3.6.1.2.1.31.1.1.1.14.9|2|1 +1.3.6.1.2.1.31.1.1.1.14.10|2|2 +1.3.6.1.2.1.31.1.1.1.14.11|2|2 +1.3.6.1.2.1.31.1.1.1.14.12|2|1 +1.3.6.1.2.1.31.1.1.1.14.13|2|1 +1.3.6.1.2.1.31.1.1.1.14.21|2|1 +1.3.6.1.2.1.31.1.1.1.14.22|2|1 +1.3.6.1.2.1.31.1.1.1.14.23|2|1 +1.3.6.1.2.1.31.1.1.1.14.24|2|1 +1.3.6.1.2.1.31.1.1.1.14.501|2|1 +1.3.6.1.2.1.31.1.1.1.14.502|2|1 +1.3.6.1.2.1.31.1.1.1.14.503|2|1 +1.3.6.1.2.1.31.1.1.1.14.504|2|1 +1.3.6.1.2.1.31.1.1.1.14.505|2|1 +1.3.6.1.2.1.31.1.1.1.14.506|2|1 +1.3.6.1.2.1.31.1.1.1.14.507|2|1 +1.3.6.1.2.1.31.1.1.1.14.508|2|1 +1.3.6.1.2.1.31.1.1.1.14.509|2|1 +1.3.6.1.2.1.31.1.1.1.14.510|2|1 +1.3.6.1.2.1.31.1.1.1.14.511|2|1 +1.3.6.1.2.1.31.1.1.1.14.512|2|1 +1.3.6.1.2.1.31.1.1.1.14.513|2|2 +1.3.6.1.2.1.31.1.1.1.14.514|2|2 +1.3.6.1.2.1.31.1.1.1.14.515|2|1 +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|2 +1.3.6.1.2.1.31.1.1.1.14.518|2|2 +1.3.6.1.2.1.31.1.1.1.14.519|2|2 +1.3.6.1.2.1.31.1.1.1.14.520|2|2 +1.3.6.1.2.1.31.1.1.1.14.521|2|2 +1.3.6.1.2.1.31.1.1.1.14.522|2|2 +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.536|2|1 +1.3.6.1.2.1.31.1.1.1.14.537|2|1 +1.3.6.1.2.1.31.1.1.1.14.538|2|1 +1.3.6.1.2.1.31.1.1.1.14.539|2|1 +1.3.6.1.2.1.31.1.1.1.14.540|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.542|2|1 +1.3.6.1.2.1.31.1.1.1.14.543|2|1 +1.3.6.1.2.1.31.1.1.1.14.544|2|1 +1.3.6.1.2.1.31.1.1.1.15.1|66|1000 +1.3.6.1.2.1.31.1.1.1.15.4|66|0 +1.3.6.1.2.1.31.1.1.1.15.5|66|0 +1.3.6.1.2.1.31.1.1.1.15.6|66|0 +1.3.6.1.2.1.31.1.1.1.15.7|66|0 +1.3.6.1.2.1.31.1.1.1.15.8|66|0 +1.3.6.1.2.1.31.1.1.1.15.9|66|0 +1.3.6.1.2.1.31.1.1.1.15.10|66|0 +1.3.6.1.2.1.31.1.1.1.15.11|66|0 +1.3.6.1.2.1.31.1.1.1.15.12|66|0 +1.3.6.1.2.1.31.1.1.1.15.13|66|1000 +1.3.6.1.2.1.31.1.1.1.15.21|66|0 +1.3.6.1.2.1.31.1.1.1.15.22|66|0 +1.3.6.1.2.1.31.1.1.1.15.23|66|1000 +1.3.6.1.2.1.31.1.1.1.15.24|66|1000 +1.3.6.1.2.1.31.1.1.1.15.501|66|0 +1.3.6.1.2.1.31.1.1.1.15.502|66|0 +1.3.6.1.2.1.31.1.1.1.15.503|66|0 +1.3.6.1.2.1.31.1.1.1.15.504|66|0 +1.3.6.1.2.1.31.1.1.1.15.505|66|0 +1.3.6.1.2.1.31.1.1.1.15.506|66|0 +1.3.6.1.2.1.31.1.1.1.15.507|66|0 +1.3.6.1.2.1.31.1.1.1.15.508|66|0 +1.3.6.1.2.1.31.1.1.1.15.509|66|0 +1.3.6.1.2.1.31.1.1.1.15.510|66|0 +1.3.6.1.2.1.31.1.1.1.15.511|66|0 +1.3.6.1.2.1.31.1.1.1.15.512|66|0 +1.3.6.1.2.1.31.1.1.1.15.513|66|0 +1.3.6.1.2.1.31.1.1.1.15.514|66|1000 +1.3.6.1.2.1.31.1.1.1.15.515|66|0 +1.3.6.1.2.1.31.1.1.1.15.516|66|0 +1.3.6.1.2.1.31.1.1.1.15.517|66|0 +1.3.6.1.2.1.31.1.1.1.15.518|66|0 +1.3.6.1.2.1.31.1.1.1.15.519|66|800 +1.3.6.1.2.1.31.1.1.1.15.520|66|0 +1.3.6.1.2.1.31.1.1.1.15.521|66|800 +1.3.6.1.2.1.31.1.1.1.15.522|66|800 +1.3.6.1.2.1.31.1.1.1.15.523|66|0 +1.3.6.1.2.1.31.1.1.1.15.524|66|0 +1.3.6.1.2.1.31.1.1.1.15.525|66|0 +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.536|66|1000 +1.3.6.1.2.1.31.1.1.1.15.537|66|1000 +1.3.6.1.2.1.31.1.1.1.15.538|66|1000 +1.3.6.1.2.1.31.1.1.1.15.539|66|1000 +1.3.6.1.2.1.31.1.1.1.15.540|66|1000 +1.3.6.1.2.1.31.1.1.1.15.541|66|1000 +1.3.6.1.2.1.31.1.1.1.15.542|66|0 +1.3.6.1.2.1.31.1.1.1.15.543|66|0 +1.3.6.1.2.1.31.1.1.1.15.544|66|1000 +1.3.6.1.2.1.31.1.1.1.16.1|2|2 +1.3.6.1.2.1.31.1.1.1.16.4|2|2 +1.3.6.1.2.1.31.1.1.1.16.5|2|2 +1.3.6.1.2.1.31.1.1.1.16.6|2|2 +1.3.6.1.2.1.31.1.1.1.16.7|2|2 +1.3.6.1.2.1.31.1.1.1.16.8|2|2 +1.3.6.1.2.1.31.1.1.1.16.9|2|2 +1.3.6.1.2.1.31.1.1.1.16.10|2|2 +1.3.6.1.2.1.31.1.1.1.16.11|2|2 +1.3.6.1.2.1.31.1.1.1.16.12|2|2 +1.3.6.1.2.1.31.1.1.1.16.13|2|2 +1.3.6.1.2.1.31.1.1.1.16.21|2|2 +1.3.6.1.2.1.31.1.1.1.16.22|2|2 +1.3.6.1.2.1.31.1.1.1.16.23|2|2 +1.3.6.1.2.1.31.1.1.1.16.24|2|2 +1.3.6.1.2.1.31.1.1.1.16.501|2|2 +1.3.6.1.2.1.31.1.1.1.16.502|2|2 +1.3.6.1.2.1.31.1.1.1.16.503|2|2 +1.3.6.1.2.1.31.1.1.1.16.504|2|2 +1.3.6.1.2.1.31.1.1.1.16.505|2|2 +1.3.6.1.2.1.31.1.1.1.16.506|2|2 +1.3.6.1.2.1.31.1.1.1.16.507|2|2 +1.3.6.1.2.1.31.1.1.1.16.508|2|2 +1.3.6.1.2.1.31.1.1.1.16.509|2|2 +1.3.6.1.2.1.31.1.1.1.16.510|2|2 +1.3.6.1.2.1.31.1.1.1.16.511|2|2 +1.3.6.1.2.1.31.1.1.1.16.512|2|2 +1.3.6.1.2.1.31.1.1.1.16.513|2|2 +1.3.6.1.2.1.31.1.1.1.16.514|2|2 +1.3.6.1.2.1.31.1.1.1.16.515|2|2 +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.536|2|2 +1.3.6.1.2.1.31.1.1.1.16.537|2|2 +1.3.6.1.2.1.31.1.1.1.16.538|2|2 +1.3.6.1.2.1.31.1.1.1.16.539|2|2 +1.3.6.1.2.1.31.1.1.1.16.540|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.542|2|2 +1.3.6.1.2.1.31.1.1.1.16.543|2|2 +1.3.6.1.2.1.31.1.1.1.16.544|2|2 +1.3.6.1.2.1.31.1.1.1.17.1|2|1 +1.3.6.1.2.1.31.1.1.1.17.4|2|2 +1.3.6.1.2.1.31.1.1.1.17.5|2|2 +1.3.6.1.2.1.31.1.1.1.17.6|2|2 +1.3.6.1.2.1.31.1.1.1.17.7|2|2 +1.3.6.1.2.1.31.1.1.1.17.8|2|2 +1.3.6.1.2.1.31.1.1.1.17.9|2|2 +1.3.6.1.2.1.31.1.1.1.17.10|2|2 +1.3.6.1.2.1.31.1.1.1.17.11|2|2 +1.3.6.1.2.1.31.1.1.1.17.12|2|2 +1.3.6.1.2.1.31.1.1.1.17.13|2|2 +1.3.6.1.2.1.31.1.1.1.17.21|2|2 +1.3.6.1.2.1.31.1.1.1.17.22|2|2 +1.3.6.1.2.1.31.1.1.1.17.23|2|2 +1.3.6.1.2.1.31.1.1.1.17.24|2|2 +1.3.6.1.2.1.31.1.1.1.17.501|2|2 +1.3.6.1.2.1.31.1.1.1.17.502|2|2 +1.3.6.1.2.1.31.1.1.1.17.503|2|2 +1.3.6.1.2.1.31.1.1.1.17.504|2|2 +1.3.6.1.2.1.31.1.1.1.17.505|2|2 +1.3.6.1.2.1.31.1.1.1.17.506|2|2 +1.3.6.1.2.1.31.1.1.1.17.507|2|2 +1.3.6.1.2.1.31.1.1.1.17.508|2|2 +1.3.6.1.2.1.31.1.1.1.17.509|2|2 +1.3.6.1.2.1.31.1.1.1.17.510|2|2 +1.3.6.1.2.1.31.1.1.1.17.511|2|2 +1.3.6.1.2.1.31.1.1.1.17.512|2|2 +1.3.6.1.2.1.31.1.1.1.17.513|2|2 +1.3.6.1.2.1.31.1.1.1.17.514|2|2 +1.3.6.1.2.1.31.1.1.1.17.515|2|2 +1.3.6.1.2.1.31.1.1.1.17.516|2|2 +1.3.6.1.2.1.31.1.1.1.17.517|2|2 +1.3.6.1.2.1.31.1.1.1.17.518|2|2 +1.3.6.1.2.1.31.1.1.1.17.519|2|2 +1.3.6.1.2.1.31.1.1.1.17.520|2|2 +1.3.6.1.2.1.31.1.1.1.17.521|2|2 +1.3.6.1.2.1.31.1.1.1.17.522|2|2 +1.3.6.1.2.1.31.1.1.1.17.523|2|2 +1.3.6.1.2.1.31.1.1.1.17.524|2|2 +1.3.6.1.2.1.31.1.1.1.17.525|2|2 +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.536|2|2 +1.3.6.1.2.1.31.1.1.1.17.537|2|2 +1.3.6.1.2.1.31.1.1.1.17.538|2|2 +1.3.6.1.2.1.31.1.1.1.17.539|2|2 +1.3.6.1.2.1.31.1.1.1.17.540|2|2 +1.3.6.1.2.1.31.1.1.1.17.541|2|2 +1.3.6.1.2.1.31.1.1.1.17.542|2|2 +1.3.6.1.2.1.31.1.1.1.17.543|2|2 +1.3.6.1.2.1.31.1.1.1.17.544|2|2 +1.3.6.1.2.1.31.1.1.1.18.1|4| +1.3.6.1.2.1.31.1.1.1.18.4|4| +1.3.6.1.2.1.31.1.1.1.18.5|4| +1.3.6.1.2.1.31.1.1.1.18.6|4| +1.3.6.1.2.1.31.1.1.1.18.7|4| +1.3.6.1.2.1.31.1.1.1.18.8|4| +1.3.6.1.2.1.31.1.1.1.18.9|4| +1.3.6.1.2.1.31.1.1.1.18.10|4| +1.3.6.1.2.1.31.1.1.1.18.11|4| +1.3.6.1.2.1.31.1.1.1.18.12|4| +1.3.6.1.2.1.31.1.1.1.18.13|4| +1.3.6.1.2.1.31.1.1.1.18.21|4| +1.3.6.1.2.1.31.1.1.1.18.22|4| +1.3.6.1.2.1.31.1.1.1.18.23|4| +1.3.6.1.2.1.31.1.1.1.18.24|4| +1.3.6.1.2.1.31.1.1.1.18.501|4| +1.3.6.1.2.1.31.1.1.1.18.502|4| +1.3.6.1.2.1.31.1.1.1.18.503|4| +1.3.6.1.2.1.31.1.1.1.18.504|4| +1.3.6.1.2.1.31.1.1.1.18.505|4| +1.3.6.1.2.1.31.1.1.1.18.506|4| +1.3.6.1.2.1.31.1.1.1.18.507|4| +1.3.6.1.2.1.31.1.1.1.18.508|4| +1.3.6.1.2.1.31.1.1.1.18.509|4| +1.3.6.1.2.1.31.1.1.1.18.510|4| +1.3.6.1.2.1.31.1.1.1.18.511|4| +1.3.6.1.2.1.31.1.1.1.18.512|4| +1.3.6.1.2.1.31.1.1.1.18.513|4| +1.3.6.1.2.1.31.1.1.1.18.514|4| +1.3.6.1.2.1.31.1.1.1.18.515|4| +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|Core: to GVA-ED01 Gi4 +1.3.6.1.2.1.31.1.1.1.18.527|4|Core: to GVA-ED02 Gi4 +1.3.6.1.2.1.31.1.1.1.18.528|4|DC: GVA-Backend +1.3.6.1.2.1.31.1.1.1.18.529|4|DC: GVA-Frontend +1.3.6.1.2.1.31.1.1.1.18.530|4x|4443493A20746F204C41552D444330310a323020363720363520324420333020433220413720324620333020324620333420 +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.536|4|GVA-Backend +1.3.6.1.2.1.31.1.1.1.18.537|4|GVA-Frontend +1.3.6.1.2.1.31.1.1.1.18.538|4| +1.3.6.1.2.1.31.1.1.1.18.539|4| +1.3.6.1.2.1.31.1.1.1.18.540|4| +1.3.6.1.2.1.31.1.1.1.18.541|4| +1.3.6.1.2.1.31.1.1.1.18.542|4| +1.3.6.1.2.1.31.1.1.1.18.543|4| +1.3.6.1.2.1.31.1.1.1.18.544|4| +1.3.6.1.2.1.31.1.1.1.19.1|67|0 +1.3.6.1.2.1.31.1.1.1.19.4|67|0 +1.3.6.1.2.1.31.1.1.1.19.5|67|0 +1.3.6.1.2.1.31.1.1.1.19.6|67|0 +1.3.6.1.2.1.31.1.1.1.19.7|67|0 +1.3.6.1.2.1.31.1.1.1.19.8|67|0 +1.3.6.1.2.1.31.1.1.1.19.9|67|0 +1.3.6.1.2.1.31.1.1.1.19.10|67|0 +1.3.6.1.2.1.31.1.1.1.19.11|67|0 +1.3.6.1.2.1.31.1.1.1.19.12|67|0 +1.3.6.1.2.1.31.1.1.1.19.13|67|0 +1.3.6.1.2.1.31.1.1.1.19.21|67|0 +1.3.6.1.2.1.31.1.1.1.19.22|67|0 +1.3.6.1.2.1.31.1.1.1.19.23|67|0 +1.3.6.1.2.1.31.1.1.1.19.24|67|0 +1.3.6.1.2.1.31.1.1.1.19.501|67|0 +1.3.6.1.2.1.31.1.1.1.19.502|67|0 +1.3.6.1.2.1.31.1.1.1.19.503|67|0 +1.3.6.1.2.1.31.1.1.1.19.504|67|0 +1.3.6.1.2.1.31.1.1.1.19.505|67|0 +1.3.6.1.2.1.31.1.1.1.19.506|67|0 +1.3.6.1.2.1.31.1.1.1.19.507|67|0 +1.3.6.1.2.1.31.1.1.1.19.508|67|0 +1.3.6.1.2.1.31.1.1.1.19.509|67|0 +1.3.6.1.2.1.31.1.1.1.19.510|67|0 +1.3.6.1.2.1.31.1.1.1.19.511|67|0 +1.3.6.1.2.1.31.1.1.1.19.512|67|0 +1.3.6.1.2.1.31.1.1.1.19.513|67|0 +1.3.6.1.2.1.31.1.1.1.19.514|67|0 +1.3.6.1.2.1.31.1.1.1.19.515|67|0 +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.536|67|0 +1.3.6.1.2.1.31.1.1.1.19.537|67|0 +1.3.6.1.2.1.31.1.1.1.19.538|67|0 +1.3.6.1.2.1.31.1.1.1.19.539|67|0 +1.3.6.1.2.1.31.1.1.1.19.540|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.542|67|0 +1.3.6.1.2.1.31.1.1.1.19.543|67|0 +1.3.6.1.2.1.31.1.1.1.19.544|67|0 +1.3.6.1.2.1.31.1.2.1.3.0.4|2|2 +1.3.6.1.2.1.31.1.2.1.3.0.5|2|2 +1.3.6.1.2.1.31.1.2.1.3.0.6|2|2 +1.3.6.1.2.1.31.1.2.1.3.0.7|2|2 +1.3.6.1.2.1.31.1.2.1.3.0.8|2|2 +1.3.6.1.2.1.31.1.2.1.3.0.9|2|2 +1.3.6.1.2.1.31.1.2.1.3.0.10|2|2 +1.3.6.1.2.1.31.1.2.1.3.0.11|2|2 +1.3.6.1.2.1.31.1.2.1.3.0.12|2|2 +1.3.6.1.2.1.31.1.2.1.3.0.13|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.21|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.22|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.24|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.501|2|2 +1.3.6.1.2.1.31.1.2.1.3.0.502|2|2 +1.3.6.1.2.1.31.1.2.1.3.0.503|2|2 +1.3.6.1.2.1.31.1.2.1.3.0.504|2|2 +1.3.6.1.2.1.31.1.2.1.3.0.505|2|2 +1.3.6.1.2.1.31.1.2.1.3.0.506|2|2 +1.3.6.1.2.1.31.1.2.1.3.0.507|2|2 +1.3.6.1.2.1.31.1.2.1.3.0.508|2|2 +1.3.6.1.2.1.31.1.2.1.3.0.509|2|2 +1.3.6.1.2.1.31.1.2.1.3.0.510|2|2 +1.3.6.1.2.1.31.1.2.1.3.0.511|2|2 +1.3.6.1.2.1.31.1.2.1.3.0.514|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.515|2|2 +1.3.6.1.2.1.31.1.2.1.3.0.516|2|2 +1.3.6.1.2.1.31.1.2.1.3.0.517|2|2 +1.3.6.1.2.1.31.1.2.1.3.0.518|2|2 +1.3.6.1.2.1.31.1.2.1.3.0.520|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.523|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.524|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.525|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.531|2|2 +1.3.6.1.2.1.31.1.2.1.3.0.532|2|2 +1.3.6.1.2.1.31.1.2.1.3.0.533|2|2 +1.3.6.1.2.1.31.1.2.1.3.0.534|2|2 +1.3.6.1.2.1.31.1.2.1.3.0.535|2|2 +1.3.6.1.2.1.31.1.2.1.3.0.536|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.537|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.538|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.539|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.540|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.541|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.542|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.543|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.544|2|1 +1.3.6.1.2.1.31.1.2.1.3.1.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.4.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.5.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.6.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.7.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.8.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.9.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.10.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.11.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.12.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.13.1|2|1 +1.3.6.1.2.1.31.1.2.1.3.23.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.24.23|2|1 +1.3.6.1.2.1.31.1.2.1.3.501.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.502.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.503.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.504.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.505.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.506.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.507.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.508.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.509.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.510.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.511.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.512.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.513.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.514.513|2|1 +1.3.6.1.2.1.31.1.2.1.3.515.0|2|1 +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.519|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.522|2|1 +1.3.6.1.2.1.31.1.2.1.3.524.521|2|1 +1.3.6.1.2.1.31.1.2.1.3.525.521|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.536.512|2|1 +1.3.6.1.2.1.31.1.2.1.3.537.512|2|1 +1.3.6.1.2.1.31.1.2.1.3.538.526|2|1 +1.3.6.1.2.1.31.1.2.1.3.539.527|2|1 +1.3.6.1.2.1.31.1.2.1.3.540.528|2|1 +1.3.6.1.2.1.31.1.2.1.3.541.529|2|1 +1.3.6.1.2.1.31.1.2.1.3.544.530|2|1 +1.3.6.1.2.1.55.1.8.1.2.24.254.128.0.0.0.0.0.0.14.32.22.255.254.34.232.1|2|64 +1.3.6.1.2.1.55.1.8.1.2.24.254.192.0.0.0.0.0.0.0.10.0.0.0.0.0.4|2|64 +1.3.6.1.2.1.55.1.8.1.3.24.254.128.0.0.0.0.0.0.14.32.22.255.254.34.232.1|2|1 +1.3.6.1.2.1.55.1.8.1.3.24.254.192.0.0.0.0.0.0.0.10.0.0.0.0.0.4|2|2 +1.3.6.1.2.1.80.1.2.1.3.8.116.101.115.116.45.114.112.109.8.105.110.116.101.114.110.101.116|2|1 +1.3.6.1.2.1.80.1.2.1.3.9.116.101.115.116.45.114.112.109.51.9.116.105.109.101.115.116.97.109.112|2|1 +1.3.6.1.2.1.80.1.2.1.4.8.116.101.115.116.45.114.112.109.8.105.110.116.101.114.110.101.116|4| +1.3.6.1.2.1.80.1.2.1.4.9.116.101.115.116.45.114.112.109.51.9.116.105.109.101.115.116.97.109.112|4x|B9462901 +1.3.6.1.2.1.80.1.2.1.5.8.116.101.115.116.45.114.112.109.8.105.110.116.101.114.110.101.116|66|40 +1.3.6.1.2.1.80.1.2.1.5.9.116.101.115.116.45.114.112.109.51.9.116.105.109.101.115.116.97.109.112|66|40 +1.3.6.1.2.1.80.1.2.1.6.8.116.101.115.116.45.114.112.109.8.105.110.116.101.114.110.101.116|66|2 +1.3.6.1.2.1.80.1.2.1.6.9.116.101.115.116.45.114.112.109.51.9.116.105.109.101.115.116.97.109.112|66|1 +1.3.6.1.2.1.80.1.2.1.7.8.116.101.115.116.45.114.112.109.8.105.110.116.101.114.110.101.116|66|5 +1.3.6.1.2.1.80.1.2.1.7.9.116.101.115.116.45.114.112.109.51.9.116.105.109.101.115.116.97.109.112|66|3 +1.3.6.1.2.1.80.1.2.1.8.8.116.101.115.116.45.114.112.109.8.105.110.116.101.114.110.101.116|2|1 +1.3.6.1.2.1.80.1.2.1.8.9.116.101.115.116.45.114.112.109.51.9.116.105.109.101.115.116.97.109.112|2|1 +1.3.6.1.2.1.80.1.2.1.9.8.116.101.115.116.45.114.112.109.8.105.110.116.101.114.110.101.116|4x|00 +1.3.6.1.2.1.80.1.2.1.9.9.116.101.115.116.45.114.112.109.51.9.116.105.109.101.115.116.97.109.112|4x|00 +1.3.6.1.2.1.80.1.2.1.10.8.116.101.115.116.45.114.112.109.8.105.110.116.101.114.110.101.116|66|3 +1.3.6.1.2.1.80.1.2.1.10.9.116.101.115.116.45.114.112.109.51.9.116.105.109.101.115.116.97.109.112|66|1 +1.3.6.1.2.1.80.1.2.1.11.8.116.101.115.116.45.114.112.109.8.105.110.116.101.114.110.101.116|66|50 +1.3.6.1.2.1.80.1.2.1.11.9.116.101.115.116.45.114.112.109.51.9.116.105.109.101.115.116.97.109.112|66|50 +1.3.6.1.2.1.80.1.2.1.12.8.116.101.115.116.45.114.112.109.8.105.110.116.101.114.110.101.116|2|2 +1.3.6.1.2.1.80.1.2.1.12.9.116.101.115.116.45.114.112.109.51.9.116.105.109.101.115.116.97.109.112|2|2 +1.3.6.1.2.1.80.1.2.1.13.8.116.101.115.116.45.114.112.109.8.105.110.116.101.114.110.101.116|4|00 +1.3.6.1.2.1.80.1.2.1.13.9.116.101.115.116.45.114.112.109.51.9.116.105.109.101.115.116.97.109.112|4|00 +1.3.6.1.2.1.80.1.2.1.14.8.116.101.115.116.45.114.112.109.8.105.110.116.101.114.110.101.116|66|3 +1.3.6.1.2.1.80.1.2.1.14.9.116.101.115.116.45.114.112.109.51.9.116.105.109.101.115.116.97.109.112|66|1 +1.3.6.1.2.1.80.1.2.1.15.8.116.101.115.116.45.114.112.109.8.105.110.116.101.114.110.101.116|66|1 +1.3.6.1.2.1.80.1.2.1.15.9.116.101.115.116.45.114.112.109.51.9.116.105.109.101.115.116.97.109.112|66|2 +1.3.6.1.2.1.80.1.2.1.16.8.116.101.115.116.45.114.112.109.8.105.110.116.101.114.110.101.116|6|1.3.6.1.2.1.80.3.1 +1.3.6.1.2.1.80.1.2.1.16.9.116.101.115.116.45.114.112.109.51.9.116.105.109.101.115.116.97.109.112|6|1.3.6.1.4.1.2636.3.7.2.1 +1.3.6.1.2.1.80.1.2.1.17.8.116.101.115.116.45.114.112.109.8.105.110.116.101.114.110.101.116|4x|00 +1.3.6.1.2.1.80.1.2.1.17.9.116.101.115.116.45.114.112.109.51.9.116.105.109.101.115.116.97.109.112|4x|00 +1.3.6.1.2.1.80.1.2.1.18.8.116.101.115.116.45.114.112.109.8.105.110.116.101.114.110.101.116|2|1 +1.3.6.1.2.1.80.1.2.1.18.9.116.101.115.116.45.114.112.109.51.9.116.105.109.101.115.116.97.109.112|2|1 +1.3.6.1.2.1.80.1.2.1.19.8.116.101.115.116.45.114.112.109.8.105.110.116.101.114.110.101.116|4x|B9462801 +1.3.6.1.2.1.80.1.2.1.19.9.116.101.115.116.45.114.112.109.51.9.116.105.109.101.115.116.97.109.112|4x|B9462801 +1.3.6.1.2.1.80.1.2.1.20.8.116.101.115.116.45.114.112.109.8.105.110.116.101.114.110.101.116|2|0 +1.3.6.1.2.1.80.1.2.1.20.9.116.101.115.116.45.114.112.109.51.9.116.105.109.101.115.116.97.109.112|2|0 +1.3.6.1.2.1.80.1.2.1.21.8.116.101.115.116.45.114.112.109.8.105.110.116.101.114.110.101.116|2|2 +1.3.6.1.2.1.80.1.2.1.21.9.116.101.115.116.45.114.112.109.51.9.116.105.109.101.115.116.97.109.112|2|2 +1.3.6.1.2.1.80.1.2.1.22.8.116.101.115.116.45.114.112.109.8.105.110.116.101.114.110.101.116|66|0 +1.3.6.1.2.1.80.1.2.1.22.9.116.101.115.116.45.114.112.109.51.9.116.105.109.101.115.116.97.109.112|66|0 +1.3.6.1.2.1.80.1.2.1.23.8.116.101.115.116.45.114.112.109.8.105.110.116.101.114.110.101.116|2|1 +1.3.6.1.2.1.80.1.2.1.23.9.116.101.115.116.45.114.112.109.51.9.116.105.109.101.115.116.97.109.112|2|1 +1.3.6.1.2.1.80.1.3.1.1.8.116.101.115.116.45.114.112.109.8.105.110.116.101.114.110.101.116|2|1 +1.3.6.1.2.1.80.1.3.1.1.9.116.101.115.116.45.114.112.109.51.9.116.105.109.101.115.116.97.109.112|2|2 +1.3.6.1.2.1.80.1.3.1.2.8.116.101.115.116.45.114.112.109.8.105.110.116.101.114.110.101.116|2|1 +1.3.6.1.2.1.80.1.3.1.2.9.116.101.115.116.45.114.112.109.51.9.116.105.109.101.115.116.97.109.112|2|1 +1.3.6.1.2.1.80.1.3.1.3.8.116.101.115.116.45.114.112.109.8.105.110.116.101.114.110.101.116|4| +1.3.6.1.2.1.80.1.3.1.3.9.116.101.115.116.45.114.112.109.51.9.116.105.109.101.115.116.97.109.112|4x|B9462901 +1.3.6.1.2.1.80.1.3.1.4.8.116.101.115.116.45.114.112.109.8.105.110.116.101.114.110.101.116|66|23 +1.3.6.1.2.1.80.1.3.1.4.9.116.101.115.116.45.114.112.109.51.9.116.105.109.101.115.116.97.109.112|66|48 +1.3.6.1.2.1.80.1.3.1.5.8.116.101.115.116.45.114.112.109.8.105.110.116.101.114.110.101.116|66|27 +1.3.6.1.2.1.80.1.3.1.5.9.116.101.115.116.45.114.112.109.51.9.116.105.109.101.115.116.97.109.112|66|55 +1.3.6.1.2.1.80.1.3.1.6.8.116.101.115.116.45.114.112.109.8.105.110.116.101.114.110.101.116|66|25 +1.3.6.1.2.1.80.1.3.1.6.9.116.101.115.116.45.114.112.109.51.9.116.105.109.101.115.116.97.109.112|66|52 +1.3.6.1.2.1.80.1.3.1.7.8.116.101.115.116.45.114.112.109.8.105.110.116.101.114.110.101.116|66|4 +1.3.6.1.2.1.80.1.3.1.7.9.116.101.115.116.45.114.112.109.51.9.116.105.109.101.115.116.97.109.112|66|2 +1.3.6.1.2.1.80.1.3.1.8.8.116.101.115.116.45.114.112.109.8.105.110.116.101.114.110.101.116|66|4 +1.3.6.1.2.1.80.1.3.1.8.9.116.101.115.116.45.114.112.109.51.9.116.105.109.101.115.116.97.109.112|66|3 +1.3.6.1.2.1.80.1.3.1.9.8.116.101.115.116.45.114.112.109.8.105.110.116.101.114.110.101.116|66|2420 +1.3.6.1.2.1.80.1.3.1.9.9.116.101.115.116.45.114.112.109.51.9.116.105.109.101.115.116.97.109.112|66|5293 +1.3.6.1.2.1.80.1.3.1.10.8.116.101.115.116.45.114.112.109.8.105.110.116.101.114.110.101.116|4x|07E505060A1F09002B0000 +1.3.6.1.2.1.80.1.3.1.10.9.116.101.115.116.45.114.112.109.51.9.116.105.109.101.115.116.97.109.112|4x|07E505060A1F09002B0000 +1.3.6.1.4.1.2636.3.1.1.0|6|1.3.6.1.4.1.2636.1.1.1.1.108.0 +1.3.6.1.4.1.2636.3.1.2.0|4|Juniper VMX Internet Backbone Router +1.3.6.1.4.1.2636.3.1.3.0|4|VM600B272BD3 +1.3.6.1.4.1.2636.3.1.4.0|4| +1.3.6.1.4.1.2636.3.1.5.0|67|1298200 +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.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.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.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.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.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.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.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.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.108.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.108.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.108.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.108.5.0 +1.3.6.1.4.1.2636.3.1.6.1.5.12|6|1.3.6.1.4.1.2636.1.1.2.2.108.4.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.108.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.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.12|4|CBD 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.7|2|12 +1.3.6.1.4.1.2636.3.1.6.1.7.8|2|4 +1.3.6.1.4.1.2636.3.1.6.1.7.9|2|2 +1.3.6.1.4.1.2636.3.1.6.1.7.12|2|2 +1.3.6.1.4.1.2636.3.1.6.1.7.20|2|2 +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.7.1.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.9.1.0.0|2|9 +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.2.1.1.0.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.8.1.1.0|2|1 +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.20.1.1.0|2|1 +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.7.1.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.9.1.0.0|2|0 +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.4.1.1.0.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.8.1.1.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.20.1.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.108 +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.8.1.1.0|6|1.3.6.1.4.1.2636.1.1.3.3.12.1.452 +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.12.3 +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.452 +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.7.1.0.0|4|FPC: Virtual FPC @ 0/*/* +1.3.6.1.4.1.2636.3.1.8.1.6.8.1.1.0|4|PIC: Virtual @ 0/0/* +1.3.6.1.4.1.2636.3.1.8.1.6.9.1.0.0|4|Routing Engine 0 +1.3.6.1.4.1.2636.3.1.8.1.6.20.1.1.0|4|MIC: Virtual @ 0/0/* +1.3.6.1.4.1.2636.3.1.8.1.7.1.1.0.0|4| +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.8.1.1.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.20.1.1.0|4| +1.3.6.1.4.1.2636.3.1.8.1.8.1.1.0.0|4| +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.8.1.1.0|4| +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.20.1.1.0|4| +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.7.1.0.0|67|2349 +1.3.6.1.4.1.2636.3.1.8.1.9.8.1.1.0|67|3143 +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.20.1.1.0|67|3160 +1.3.6.1.4.1.2636.3.1.8.1.10.1.1.0.0|4| +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.8.1.1.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.20.1.1.0|4| +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.7.1.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.9.1.0.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.12.1.1.0.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.8.1.1.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.20.1.1.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.8.1.13.1.1.0.0|4| +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.8.1.1.0|4| +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.20.1.1.0|4| +1.3.6.1.4.1.2636.3.1.8.1.14.1.1.0.0|4| +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.8.1.1.0|4| +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.20.1.1.0|4| +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.4.0.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.7.3.0.0|2|3 +1.3.6.1.4.1.2636.3.1.10.1.1.3.7.4.0.0|2|3 +1.3.6.1.4.1.2636.3.1.10.1.1.3.7.5.0.0|2|3 +1.3.6.1.4.1.2636.3.1.10.1.1.3.7.6.0.0|2|3 +1.3.6.1.4.1.2636.3.1.10.1.1.3.7.7.0.0|2|3 +1.3.6.1.4.1.2636.3.1.10.1.1.3.7.8.0.0|2|3 +1.3.6.1.4.1.2636.3.1.10.1.1.3.7.9.0.0|2|3 +1.3.6.1.4.1.2636.3.1.10.1.1.3.7.10.0.0|2|3 +1.3.6.1.4.1.2636.3.1.10.1.1.3.7.11.0.0|2|3 +1.3.6.1.4.1.2636.3.1.10.1.1.3.7.12.0.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.9.2.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.4.0.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.7.3.0.0|2|7 +1.3.6.1.4.1.2636.3.1.10.1.2.3.7.4.0.0|2|7 +1.3.6.1.4.1.2636.3.1.10.1.2.3.7.5.0.0|2|7 +1.3.6.1.4.1.2636.3.1.10.1.2.3.7.6.0.0|2|7 +1.3.6.1.4.1.2636.3.1.10.1.2.3.7.7.0.0|2|7 +1.3.6.1.4.1.2636.3.1.10.1.2.3.7.8.0.0|2|7 +1.3.6.1.4.1.2636.3.1.10.1.2.3.7.9.0.0|2|7 +1.3.6.1.4.1.2636.3.1.10.1.2.3.7.10.0.0|2|7 +1.3.6.1.4.1.2636.3.1.10.1.2.3.7.11.0.0|2|7 +1.3.6.1.4.1.2636.3.1.10.1.2.3.7.12.0.0|2|7 +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.9.2.0.0|2|9 +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.4.0.0.0|2|0 +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.7.3.0.0|2|3 +1.3.6.1.4.1.2636.3.1.10.1.3.3.7.4.0.0|2|4 +1.3.6.1.4.1.2636.3.1.10.1.3.3.7.5.0.0|2|5 +1.3.6.1.4.1.2636.3.1.10.1.3.3.7.6.0.0|2|6 +1.3.6.1.4.1.2636.3.1.10.1.3.3.7.7.0.0|2|7 +1.3.6.1.4.1.2636.3.1.10.1.3.3.7.8.0.0|2|8 +1.3.6.1.4.1.2636.3.1.10.1.3.3.7.9.0.0|2|9 +1.3.6.1.4.1.2636.3.1.10.1.3.3.7.10.0.0|2|10 +1.3.6.1.4.1.2636.3.1.10.1.3.3.7.11.0.0|2|11 +1.3.6.1.4.1.2636.3.1.10.1.3.3.7.12.0.0|2|12 +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.9.2.0.0|2|2 +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.4.0.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.7.3.0.0|2|0 +1.3.6.1.4.1.2636.3.1.10.1.4.3.7.4.0.0|2|0 +1.3.6.1.4.1.2636.3.1.10.1.4.3.7.5.0.0|2|0 +1.3.6.1.4.1.2636.3.1.10.1.4.3.7.6.0.0|2|0 +1.3.6.1.4.1.2636.3.1.10.1.4.3.7.7.0.0|2|0 +1.3.6.1.4.1.2636.3.1.10.1.4.3.7.8.0.0|2|0 +1.3.6.1.4.1.2636.3.1.10.1.4.3.7.9.0.0|2|0 +1.3.6.1.4.1.2636.3.1.10.1.4.3.7.10.0.0|2|0 +1.3.6.1.4.1.2636.3.1.10.1.4.3.7.11.0.0|2|0 +1.3.6.1.4.1.2636.3.1.10.1.4.3.7.12.0.0|2|0 +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.9.2.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.4.0.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.7.3.0.0|2|0 +1.3.6.1.4.1.2636.3.1.10.1.5.3.7.4.0.0|2|0 +1.3.6.1.4.1.2636.3.1.10.1.5.3.7.5.0.0|2|0 +1.3.6.1.4.1.2636.3.1.10.1.5.3.7.6.0.0|2|0 +1.3.6.1.4.1.2636.3.1.10.1.5.3.7.7.0.0|2|0 +1.3.6.1.4.1.2636.3.1.10.1.5.3.7.8.0.0|2|0 +1.3.6.1.4.1.2636.3.1.10.1.5.3.7.9.0.0|2|0 +1.3.6.1.4.1.2636.3.1.10.1.5.3.7.10.0.0|2|0 +1.3.6.1.4.1.2636.3.1.10.1.5.3.7.11.0.0|2|0 +1.3.6.1.4.1.2636.3.1.10.1.5.3.7.12.0.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.9.2.0.0|2|0 +1.3.6.1.4.1.2636.3.1.10.1.6.3.1.1.0.0|6|1.3.6.1.4.1.2636.1.1.3.1.108 +1.3.6.1.4.1.2636.3.1.10.1.6.3.4.0.0.0|6|0.0 +1.3.6.1.4.1.2636.3.1.10.1.6.3.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.10.1.6.3.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.10.1.6.3.7.3.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.10.1.6.3.7.4.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.10.1.6.3.7.5.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.10.1.6.3.7.6.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.10.1.6.3.7.7.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.10.1.6.3.7.8.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.10.1.6.3.7.9.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.10.1.6.3.7.10.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.10.1.6.3.7.11.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.10.1.6.3.7.12.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.10.1.6.3.9.1.0.0|6|1.3.6.1.4.1.2636.1.1.3.2.12.3 +1.3.6.1.4.1.2636.3.1.10.1.6.3.9.2.0.0|6|1.3.6.1.4.1.2636.1.1.3.2.12.3 +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.4.0.0.0|4|FAN -1 LED +1.3.6.1.4.1.2636.3.1.10.1.7.3.7.1.0.0|4|FPC slot 0 OK/Fail LED +1.3.6.1.4.1.2636.3.1.10.1.7.3.7.2.0.0|4|FPC slot 1 OK/Fail LED +1.3.6.1.4.1.2636.3.1.10.1.7.3.7.3.0.0|4|FPC slot 2 OK/Fail LED +1.3.6.1.4.1.2636.3.1.10.1.7.3.7.4.0.0|4|FPC slot 3 OK/Fail LED +1.3.6.1.4.1.2636.3.1.10.1.7.3.7.5.0.0|4|FPC slot 4 OK/Fail LED +1.3.6.1.4.1.2636.3.1.10.1.7.3.7.6.0.0|4|FPC slot 5 OK/Fail LED +1.3.6.1.4.1.2636.3.1.10.1.7.3.7.7.0.0|4|FPC slot 6 OK/Fail LED +1.3.6.1.4.1.2636.3.1.10.1.7.3.7.8.0.0|4|FPC slot 7 OK/Fail LED +1.3.6.1.4.1.2636.3.1.10.1.7.3.7.9.0.0|4|FPC slot 8 OK/Fail LED +1.3.6.1.4.1.2636.3.1.10.1.7.3.7.10.0.0|4|FPC slot 9 OK/Fail LED +1.3.6.1.4.1.2636.3.1.10.1.7.3.7.11.0.0|4|FPC slot 10 OK/Fail LED +1.3.6.1.4.1.2636.3.1.10.1.7.3.7.12.0.0|4|FPC slot 11 OK/Fail LED +1.3.6.1.4.1.2636.3.1.10.1.7.3.9.1.0.0|4|Routing Engine 0 LED +1.3.6.1.4.1.2636.3.1.10.1.7.3.9.2.0.0|4|Routing Engine 1 LED +1.3.6.1.4.1.2636.3.1.10.1.8.3.1.1.0.0|2|1 +1.3.6.1.4.1.2636.3.1.10.1.8.3.4.0.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|1 +1.3.6.1.4.1.2636.3.1.10.1.8.3.7.3.0.0|2|1 +1.3.6.1.4.1.2636.3.1.10.1.8.3.7.4.0.0|2|1 +1.3.6.1.4.1.2636.3.1.10.1.8.3.7.5.0.0|2|1 +1.3.6.1.4.1.2636.3.1.10.1.8.3.7.6.0.0|2|1 +1.3.6.1.4.1.2636.3.1.10.1.8.3.7.7.0.0|2|1 +1.3.6.1.4.1.2636.3.1.10.1.8.3.7.8.0.0|2|1 +1.3.6.1.4.1.2636.3.1.10.1.8.3.7.9.0.0|2|1 +1.3.6.1.4.1.2636.3.1.10.1.8.3.7.10.0.0|2|1 +1.3.6.1.4.1.2636.3.1.10.1.8.3.7.11.0.0|2|1 +1.3.6.1.4.1.2636.3.1.10.1.8.3.7.12.0.0|2|1 +1.3.6.1.4.1.2636.3.1.10.1.8.3.9.1.0.0|2|2 +1.3.6.1.4.1.2636.3.1.10.1.8.3.9.2.0.0|2|1 +1.3.6.1.4.1.2636.3.1.10.1.9.3.1.1.0.0|2|6 +1.3.6.1.4.1.2636.3.1.10.1.9.3.4.0.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|6 +1.3.6.1.4.1.2636.3.1.10.1.9.3.7.3.0.0|2|6 +1.3.6.1.4.1.2636.3.1.10.1.9.3.7.4.0.0|2|6 +1.3.6.1.4.1.2636.3.1.10.1.9.3.7.5.0.0|2|6 +1.3.6.1.4.1.2636.3.1.10.1.9.3.7.6.0.0|2|6 +1.3.6.1.4.1.2636.3.1.10.1.9.3.7.7.0.0|2|6 +1.3.6.1.4.1.2636.3.1.10.1.9.3.7.8.0.0|2|6 +1.3.6.1.4.1.2636.3.1.10.1.9.3.7.9.0.0|2|6 +1.3.6.1.4.1.2636.3.1.10.1.9.3.7.10.0.0|2|6 +1.3.6.1.4.1.2636.3.1.10.1.9.3.7.11.0.0|2|6 +1.3.6.1.4.1.2636.3.1.10.1.9.3.7.12.0.0|2|6 +1.3.6.1.4.1.2636.3.1.10.1.9.3.9.1.0.0|2|2 +1.3.6.1.4.1.2636.3.1.10.1.9.3.9.2.0.0|2|6 +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.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.7.3.0.0|2|7 +1.3.6.1.4.1.2636.3.1.12.1.1.7.4.0.0|2|7 +1.3.6.1.4.1.2636.3.1.12.1.1.7.5.0.0|2|7 +1.3.6.1.4.1.2636.3.1.12.1.1.7.6.0.0|2|7 +1.3.6.1.4.1.2636.3.1.12.1.1.7.7.0.0|2|7 +1.3.6.1.4.1.2636.3.1.12.1.1.7.8.0.0|2|7 +1.3.6.1.4.1.2636.3.1.12.1.1.7.9.0.0|2|7 +1.3.6.1.4.1.2636.3.1.12.1.1.7.10.0.0|2|7 +1.3.6.1.4.1.2636.3.1.12.1.1.7.11.0.0|2|7 +1.3.6.1.4.1.2636.3.1.12.1.1.7.12.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.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.3.1.0|2|8 +1.3.6.1.4.1.2636.3.1.12.1.1.8.3.2.0|2|8 +1.3.6.1.4.1.2636.3.1.12.1.1.8.3.3.0|2|8 +1.3.6.1.4.1.2636.3.1.12.1.1.8.3.4.0|2|8 +1.3.6.1.4.1.2636.3.1.12.1.1.8.4.1.0|2|8 +1.3.6.1.4.1.2636.3.1.12.1.1.8.4.2.0|2|8 +1.3.6.1.4.1.2636.3.1.12.1.1.8.4.3.0|2|8 +1.3.6.1.4.1.2636.3.1.12.1.1.8.4.4.0|2|8 +1.3.6.1.4.1.2636.3.1.12.1.1.8.5.1.0|2|8 +1.3.6.1.4.1.2636.3.1.12.1.1.8.5.2.0|2|8 +1.3.6.1.4.1.2636.3.1.12.1.1.8.5.3.0|2|8 +1.3.6.1.4.1.2636.3.1.12.1.1.8.5.4.0|2|8 +1.3.6.1.4.1.2636.3.1.12.1.1.8.6.1.0|2|8 +1.3.6.1.4.1.2636.3.1.12.1.1.8.6.2.0|2|8 +1.3.6.1.4.1.2636.3.1.12.1.1.8.6.3.0|2|8 +1.3.6.1.4.1.2636.3.1.12.1.1.8.6.4.0|2|8 +1.3.6.1.4.1.2636.3.1.12.1.1.8.7.1.0|2|8 +1.3.6.1.4.1.2636.3.1.12.1.1.8.7.2.0|2|8 +1.3.6.1.4.1.2636.3.1.12.1.1.8.7.3.0|2|8 +1.3.6.1.4.1.2636.3.1.12.1.1.8.7.4.0|2|8 +1.3.6.1.4.1.2636.3.1.12.1.1.8.8.1.0|2|8 +1.3.6.1.4.1.2636.3.1.12.1.1.8.8.2.0|2|8 +1.3.6.1.4.1.2636.3.1.12.1.1.8.8.3.0|2|8 +1.3.6.1.4.1.2636.3.1.12.1.1.8.8.4.0|2|8 +1.3.6.1.4.1.2636.3.1.12.1.1.8.9.1.0|2|8 +1.3.6.1.4.1.2636.3.1.12.1.1.8.9.2.0|2|8 +1.3.6.1.4.1.2636.3.1.12.1.1.8.9.3.0|2|8 +1.3.6.1.4.1.2636.3.1.12.1.1.8.9.4.0|2|8 +1.3.6.1.4.1.2636.3.1.12.1.1.8.10.1.0|2|8 +1.3.6.1.4.1.2636.3.1.12.1.1.8.10.2.0|2|8 +1.3.6.1.4.1.2636.3.1.12.1.1.8.10.3.0|2|8 +1.3.6.1.4.1.2636.3.1.12.1.1.8.10.4.0|2|8 +1.3.6.1.4.1.2636.3.1.12.1.1.8.11.1.0|2|8 +1.3.6.1.4.1.2636.3.1.12.1.1.8.11.2.0|2|8 +1.3.6.1.4.1.2636.3.1.12.1.1.8.11.3.0|2|8 +1.3.6.1.4.1.2636.3.1.12.1.1.8.11.4.0|2|8 +1.3.6.1.4.1.2636.3.1.12.1.1.8.12.1.0|2|8 +1.3.6.1.4.1.2636.3.1.12.1.1.8.12.2.0|2|8 +1.3.6.1.4.1.2636.3.1.12.1.1.8.12.3.0|2|8 +1.3.6.1.4.1.2636.3.1.12.1.1.8.12.4.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.9.2.0.0|2|9 +1.3.6.1.4.1.2636.3.1.12.1.1.10.0.0.0|2|10 +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.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.3.1.0|2|20 +1.3.6.1.4.1.2636.3.1.12.1.1.20.3.2.0|2|20 +1.3.6.1.4.1.2636.3.1.12.1.1.20.4.1.0|2|20 +1.3.6.1.4.1.2636.3.1.12.1.1.20.4.2.0|2|20 +1.3.6.1.4.1.2636.3.1.12.1.1.20.5.1.0|2|20 +1.3.6.1.4.1.2636.3.1.12.1.1.20.5.2.0|2|20 +1.3.6.1.4.1.2636.3.1.12.1.1.20.6.1.0|2|20 +1.3.6.1.4.1.2636.3.1.12.1.1.20.6.2.0|2|20 +1.3.6.1.4.1.2636.3.1.12.1.1.20.7.1.0|2|20 +1.3.6.1.4.1.2636.3.1.12.1.1.20.7.2.0|2|20 +1.3.6.1.4.1.2636.3.1.12.1.1.20.8.1.0|2|20 +1.3.6.1.4.1.2636.3.1.12.1.1.20.8.2.0|2|20 +1.3.6.1.4.1.2636.3.1.12.1.1.20.9.1.0|2|20 +1.3.6.1.4.1.2636.3.1.12.1.1.20.9.2.0|2|20 +1.3.6.1.4.1.2636.3.1.12.1.1.20.10.1.0|2|20 +1.3.6.1.4.1.2636.3.1.12.1.1.20.10.2.0|2|20 +1.3.6.1.4.1.2636.3.1.12.1.1.20.11.1.0|2|20 +1.3.6.1.4.1.2636.3.1.12.1.1.20.11.2.0|2|20 +1.3.6.1.4.1.2636.3.1.12.1.1.20.12.1.0|2|20 +1.3.6.1.4.1.2636.3.1.12.1.1.20.12.2.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.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.7.3.0.0|2|3 +1.3.6.1.4.1.2636.3.1.12.1.2.7.4.0.0|2|4 +1.3.6.1.4.1.2636.3.1.12.1.2.7.5.0.0|2|5 +1.3.6.1.4.1.2636.3.1.12.1.2.7.6.0.0|2|6 +1.3.6.1.4.1.2636.3.1.12.1.2.7.7.0.0|2|7 +1.3.6.1.4.1.2636.3.1.12.1.2.7.8.0.0|2|8 +1.3.6.1.4.1.2636.3.1.12.1.2.7.9.0.0|2|9 +1.3.6.1.4.1.2636.3.1.12.1.2.7.10.0.0|2|10 +1.3.6.1.4.1.2636.3.1.12.1.2.7.11.0.0|2|11 +1.3.6.1.4.1.2636.3.1.12.1.2.7.12.0.0|2|12 +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.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.3.1.0|2|3 +1.3.6.1.4.1.2636.3.1.12.1.2.8.3.2.0|2|3 +1.3.6.1.4.1.2636.3.1.12.1.2.8.3.3.0|2|3 +1.3.6.1.4.1.2636.3.1.12.1.2.8.3.4.0|2|3 +1.3.6.1.4.1.2636.3.1.12.1.2.8.4.1.0|2|4 +1.3.6.1.4.1.2636.3.1.12.1.2.8.4.2.0|2|4 +1.3.6.1.4.1.2636.3.1.12.1.2.8.4.3.0|2|4 +1.3.6.1.4.1.2636.3.1.12.1.2.8.4.4.0|2|4 +1.3.6.1.4.1.2636.3.1.12.1.2.8.5.1.0|2|5 +1.3.6.1.4.1.2636.3.1.12.1.2.8.5.2.0|2|5 +1.3.6.1.4.1.2636.3.1.12.1.2.8.5.3.0|2|5 +1.3.6.1.4.1.2636.3.1.12.1.2.8.5.4.0|2|5 +1.3.6.1.4.1.2636.3.1.12.1.2.8.6.1.0|2|6 +1.3.6.1.4.1.2636.3.1.12.1.2.8.6.2.0|2|6 +1.3.6.1.4.1.2636.3.1.12.1.2.8.6.3.0|2|6 +1.3.6.1.4.1.2636.3.1.12.1.2.8.6.4.0|2|6 +1.3.6.1.4.1.2636.3.1.12.1.2.8.7.1.0|2|7 +1.3.6.1.4.1.2636.3.1.12.1.2.8.7.2.0|2|7 +1.3.6.1.4.1.2636.3.1.12.1.2.8.7.3.0|2|7 +1.3.6.1.4.1.2636.3.1.12.1.2.8.7.4.0|2|7 +1.3.6.1.4.1.2636.3.1.12.1.2.8.8.1.0|2|8 +1.3.6.1.4.1.2636.3.1.12.1.2.8.8.2.0|2|8 +1.3.6.1.4.1.2636.3.1.12.1.2.8.8.3.0|2|8 +1.3.6.1.4.1.2636.3.1.12.1.2.8.8.4.0|2|8 +1.3.6.1.4.1.2636.3.1.12.1.2.8.9.1.0|2|9 +1.3.6.1.4.1.2636.3.1.12.1.2.8.9.2.0|2|9 +1.3.6.1.4.1.2636.3.1.12.1.2.8.9.3.0|2|9 +1.3.6.1.4.1.2636.3.1.12.1.2.8.9.4.0|2|9 +1.3.6.1.4.1.2636.3.1.12.1.2.8.10.1.0|2|10 +1.3.6.1.4.1.2636.3.1.12.1.2.8.10.2.0|2|10 +1.3.6.1.4.1.2636.3.1.12.1.2.8.10.3.0|2|10 +1.3.6.1.4.1.2636.3.1.12.1.2.8.10.4.0|2|10 +1.3.6.1.4.1.2636.3.1.12.1.2.8.11.1.0|2|11 +1.3.6.1.4.1.2636.3.1.12.1.2.8.11.2.0|2|11 +1.3.6.1.4.1.2636.3.1.12.1.2.8.11.3.0|2|11 +1.3.6.1.4.1.2636.3.1.12.1.2.8.11.4.0|2|11 +1.3.6.1.4.1.2636.3.1.12.1.2.8.12.1.0|2|12 +1.3.6.1.4.1.2636.3.1.12.1.2.8.12.2.0|2|12 +1.3.6.1.4.1.2636.3.1.12.1.2.8.12.3.0|2|12 +1.3.6.1.4.1.2636.3.1.12.1.2.8.12.4.0|2|12 +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.9.2.0.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.2.10.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.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.3.1.0|2|3 +1.3.6.1.4.1.2636.3.1.12.1.2.20.3.2.0|2|3 +1.3.6.1.4.1.2636.3.1.12.1.2.20.4.1.0|2|4 +1.3.6.1.4.1.2636.3.1.12.1.2.20.4.2.0|2|4 +1.3.6.1.4.1.2636.3.1.12.1.2.20.5.1.0|2|5 +1.3.6.1.4.1.2636.3.1.12.1.2.20.5.2.0|2|5 +1.3.6.1.4.1.2636.3.1.12.1.2.20.6.1.0|2|6 +1.3.6.1.4.1.2636.3.1.12.1.2.20.6.2.0|2|6 +1.3.6.1.4.1.2636.3.1.12.1.2.20.7.1.0|2|7 +1.3.6.1.4.1.2636.3.1.12.1.2.20.7.2.0|2|7 +1.3.6.1.4.1.2636.3.1.12.1.2.20.8.1.0|2|8 +1.3.6.1.4.1.2636.3.1.12.1.2.20.8.2.0|2|8 +1.3.6.1.4.1.2636.3.1.12.1.2.20.9.1.0|2|9 +1.3.6.1.4.1.2636.3.1.12.1.2.20.9.2.0|2|9 +1.3.6.1.4.1.2636.3.1.12.1.2.20.10.1.0|2|10 +1.3.6.1.4.1.2636.3.1.12.1.2.20.10.2.0|2|10 +1.3.6.1.4.1.2636.3.1.12.1.2.20.11.1.0|2|11 +1.3.6.1.4.1.2636.3.1.12.1.2.20.11.2.0|2|11 +1.3.6.1.4.1.2636.3.1.12.1.2.20.12.1.0|2|12 +1.3.6.1.4.1.2636.3.1.12.1.2.20.12.2.0|2|12 +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.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.7.3.0.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.3.7.4.0.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.3.7.5.0.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.3.7.6.0.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.3.7.7.0.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.3.7.8.0.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.3.7.9.0.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.3.7.10.0.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.3.7.11.0.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.3.7.12.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.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.3.1.0|2|1 +1.3.6.1.4.1.2636.3.1.12.1.3.8.3.2.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.3.8.3.3.0|2|3 +1.3.6.1.4.1.2636.3.1.12.1.3.8.3.4.0|2|4 +1.3.6.1.4.1.2636.3.1.12.1.3.8.4.1.0|2|1 +1.3.6.1.4.1.2636.3.1.12.1.3.8.4.2.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.3.8.4.3.0|2|3 +1.3.6.1.4.1.2636.3.1.12.1.3.8.4.4.0|2|4 +1.3.6.1.4.1.2636.3.1.12.1.3.8.5.1.0|2|1 +1.3.6.1.4.1.2636.3.1.12.1.3.8.5.2.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.3.8.5.3.0|2|3 +1.3.6.1.4.1.2636.3.1.12.1.3.8.5.4.0|2|4 +1.3.6.1.4.1.2636.3.1.12.1.3.8.6.1.0|2|1 +1.3.6.1.4.1.2636.3.1.12.1.3.8.6.2.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.3.8.6.3.0|2|3 +1.3.6.1.4.1.2636.3.1.12.1.3.8.6.4.0|2|4 +1.3.6.1.4.1.2636.3.1.12.1.3.8.7.1.0|2|1 +1.3.6.1.4.1.2636.3.1.12.1.3.8.7.2.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.3.8.7.3.0|2|3 +1.3.6.1.4.1.2636.3.1.12.1.3.8.7.4.0|2|4 +1.3.6.1.4.1.2636.3.1.12.1.3.8.8.1.0|2|1 +1.3.6.1.4.1.2636.3.1.12.1.3.8.8.2.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.3.8.8.3.0|2|3 +1.3.6.1.4.1.2636.3.1.12.1.3.8.8.4.0|2|4 +1.3.6.1.4.1.2636.3.1.12.1.3.8.9.1.0|2|1 +1.3.6.1.4.1.2636.3.1.12.1.3.8.9.2.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.3.8.9.3.0|2|3 +1.3.6.1.4.1.2636.3.1.12.1.3.8.9.4.0|2|4 +1.3.6.1.4.1.2636.3.1.12.1.3.8.10.1.0|2|1 +1.3.6.1.4.1.2636.3.1.12.1.3.8.10.2.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.3.8.10.3.0|2|3 +1.3.6.1.4.1.2636.3.1.12.1.3.8.10.4.0|2|4 +1.3.6.1.4.1.2636.3.1.12.1.3.8.11.1.0|2|1 +1.3.6.1.4.1.2636.3.1.12.1.3.8.11.2.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.3.8.11.3.0|2|3 +1.3.6.1.4.1.2636.3.1.12.1.3.8.11.4.0|2|4 +1.3.6.1.4.1.2636.3.1.12.1.3.8.12.1.0|2|1 +1.3.6.1.4.1.2636.3.1.12.1.3.8.12.2.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.3.8.12.3.0|2|3 +1.3.6.1.4.1.2636.3.1.12.1.3.8.12.4.0|2|4 +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.9.2.0.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.3.10.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.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.3.1.0|2|1 +1.3.6.1.4.1.2636.3.1.12.1.3.20.3.2.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.3.20.4.1.0|2|1 +1.3.6.1.4.1.2636.3.1.12.1.3.20.4.2.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.3.20.5.1.0|2|1 +1.3.6.1.4.1.2636.3.1.12.1.3.20.5.2.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.3.20.6.1.0|2|1 +1.3.6.1.4.1.2636.3.1.12.1.3.20.6.2.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.3.20.7.1.0|2|1 +1.3.6.1.4.1.2636.3.1.12.1.3.20.7.2.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.3.20.8.1.0|2|1 +1.3.6.1.4.1.2636.3.1.12.1.3.20.8.2.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.3.20.9.1.0|2|1 +1.3.6.1.4.1.2636.3.1.12.1.3.20.9.2.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.3.20.10.1.0|2|1 +1.3.6.1.4.1.2636.3.1.12.1.3.20.10.2.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.3.20.11.1.0|2|1 +1.3.6.1.4.1.2636.3.1.12.1.3.20.11.2.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.3.20.12.1.0|2|1 +1.3.6.1.4.1.2636.3.1.12.1.3.20.12.2.0|2|2 +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.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.7.3.0.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.7.4.0.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.7.5.0.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.7.6.0.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.7.7.0.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.7.8.0.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.7.9.0.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.7.10.0.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.7.11.0.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.7.12.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.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.3.1.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.8.3.2.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.8.3.3.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.8.3.4.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.8.4.1.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.8.4.2.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.8.4.3.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.8.4.4.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.8.5.1.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.8.5.2.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.8.5.3.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.8.5.4.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.8.6.1.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.8.6.2.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.8.6.3.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.8.6.4.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.8.7.1.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.8.7.2.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.8.7.3.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.8.7.4.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.8.8.1.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.8.8.2.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.8.8.3.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.8.8.4.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.8.9.1.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.8.9.2.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.8.9.3.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.8.9.4.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.8.10.1.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.8.10.2.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.8.10.3.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.8.10.4.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.8.11.1.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.8.11.2.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.8.11.3.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.8.11.4.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.8.12.1.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.8.12.2.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.8.12.3.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.8.12.4.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.9.2.0.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.10.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.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.3.1.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.20.3.2.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.20.4.1.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.20.4.2.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.20.5.1.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.20.5.2.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.20.6.1.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.20.6.2.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.20.7.1.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.20.7.2.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.20.8.1.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.20.8.2.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.20.9.1.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.20.9.2.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.20.10.1.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.20.10.2.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.20.11.1.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.20.11.2.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.20.12.1.0|2|0 +1.3.6.1.4.1.2636.3.1.12.1.4.20.12.2.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.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.7.3.0.0|4|FPC slot 2 +1.3.6.1.4.1.2636.3.1.12.1.5.7.4.0.0|4|FPC slot 3 +1.3.6.1.4.1.2636.3.1.12.1.5.7.5.0.0|4|FPC slot 4 +1.3.6.1.4.1.2636.3.1.12.1.5.7.6.0.0|4|FPC slot 5 +1.3.6.1.4.1.2636.3.1.12.1.5.7.7.0.0|4|FPC slot 6 +1.3.6.1.4.1.2636.3.1.12.1.5.7.8.0.0|4|FPC slot 7 +1.3.6.1.4.1.2636.3.1.12.1.5.7.9.0.0|4|FPC slot 8 +1.3.6.1.4.1.2636.3.1.12.1.5.7.10.0.0|4|FPC slot 9 +1.3.6.1.4.1.2636.3.1.12.1.5.7.11.0.0|4|FPC slot 10 +1.3.6.1.4.1.2636.3.1.12.1.5.7.12.0.0|4|FPC slot 11 +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.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.3.1.0|4|PIC slot @ 2/0/* +1.3.6.1.4.1.2636.3.1.12.1.5.8.3.2.0|4|PIC slot @ 2/1/* +1.3.6.1.4.1.2636.3.1.12.1.5.8.3.3.0|4|PIC slot @ 2/2/* +1.3.6.1.4.1.2636.3.1.12.1.5.8.3.4.0|4|PIC slot @ 2/3/* +1.3.6.1.4.1.2636.3.1.12.1.5.8.4.1.0|4|PIC slot @ 3/0/* +1.3.6.1.4.1.2636.3.1.12.1.5.8.4.2.0|4|PIC slot @ 3/1/* +1.3.6.1.4.1.2636.3.1.12.1.5.8.4.3.0|4|PIC slot @ 3/2/* +1.3.6.1.4.1.2636.3.1.12.1.5.8.4.4.0|4|PIC slot @ 3/3/* +1.3.6.1.4.1.2636.3.1.12.1.5.8.5.1.0|4|PIC slot @ 4/0/* +1.3.6.1.4.1.2636.3.1.12.1.5.8.5.2.0|4|PIC slot @ 4/1/* +1.3.6.1.4.1.2636.3.1.12.1.5.8.5.3.0|4|PIC slot @ 4/2/* +1.3.6.1.4.1.2636.3.1.12.1.5.8.5.4.0|4|PIC slot @ 4/3/* +1.3.6.1.4.1.2636.3.1.12.1.5.8.6.1.0|4|PIC slot @ 5/0/* +1.3.6.1.4.1.2636.3.1.12.1.5.8.6.2.0|4|PIC slot @ 5/1/* +1.3.6.1.4.1.2636.3.1.12.1.5.8.6.3.0|4|PIC slot @ 5/2/* +1.3.6.1.4.1.2636.3.1.12.1.5.8.6.4.0|4|PIC slot @ 5/3/* +1.3.6.1.4.1.2636.3.1.12.1.5.8.7.1.0|4|PIC slot @ 6/0/* +1.3.6.1.4.1.2636.3.1.12.1.5.8.7.2.0|4|PIC slot @ 6/1/* +1.3.6.1.4.1.2636.3.1.12.1.5.8.7.3.0|4|PIC slot @ 6/2/* +1.3.6.1.4.1.2636.3.1.12.1.5.8.7.4.0|4|PIC slot @ 6/3/* +1.3.6.1.4.1.2636.3.1.12.1.5.8.8.1.0|4|PIC slot @ 7/0/* +1.3.6.1.4.1.2636.3.1.12.1.5.8.8.2.0|4|PIC slot @ 7/1/* +1.3.6.1.4.1.2636.3.1.12.1.5.8.8.3.0|4|PIC slot @ 7/2/* +1.3.6.1.4.1.2636.3.1.12.1.5.8.8.4.0|4|PIC slot @ 7/3/* +1.3.6.1.4.1.2636.3.1.12.1.5.8.9.1.0|4|PIC slot @ 8/0/* +1.3.6.1.4.1.2636.3.1.12.1.5.8.9.2.0|4|PIC slot @ 8/1/* +1.3.6.1.4.1.2636.3.1.12.1.5.8.9.3.0|4|PIC slot @ 8/2/* +1.3.6.1.4.1.2636.3.1.12.1.5.8.9.4.0|4|PIC slot @ 8/3/* +1.3.6.1.4.1.2636.3.1.12.1.5.8.10.1.0|4|PIC slot @ 9/0/* +1.3.6.1.4.1.2636.3.1.12.1.5.8.10.2.0|4|PIC slot @ 9/1/* +1.3.6.1.4.1.2636.3.1.12.1.5.8.10.3.0|4|PIC slot @ 9/2/* +1.3.6.1.4.1.2636.3.1.12.1.5.8.10.4.0|4|PIC slot @ 9/3/* +1.3.6.1.4.1.2636.3.1.12.1.5.8.11.1.0|4|PIC slot @ 10/0/* +1.3.6.1.4.1.2636.3.1.12.1.5.8.11.2.0|4|PIC slot @ 10/1/* +1.3.6.1.4.1.2636.3.1.12.1.5.8.11.3.0|4|PIC slot @ 10/2/* +1.3.6.1.4.1.2636.3.1.12.1.5.8.11.4.0|4|PIC slot @ 10/3/* +1.3.6.1.4.1.2636.3.1.12.1.5.8.12.1.0|4|PIC slot @ 11/0/* +1.3.6.1.4.1.2636.3.1.12.1.5.8.12.2.0|4|PIC slot @ 11/1/* +1.3.6.1.4.1.2636.3.1.12.1.5.8.12.3.0|4|PIC slot @ 11/2/* +1.3.6.1.4.1.2636.3.1.12.1.5.8.12.4.0|4|PIC slot @ 11/3/* +1.3.6.1.4.1.2636.3.1.12.1.5.9.1.0.0|4|Routing Engine 0 slot +1.3.6.1.4.1.2636.3.1.12.1.5.9.2.0.0|4|Routing Engine 1 slot +1.3.6.1.4.1.2636.3.1.12.1.5.10.0.0.0|4| +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.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.3.1.0|4|MIC slot @ 2/0/* +1.3.6.1.4.1.2636.3.1.12.1.5.20.3.2.0|4|MIC slot @ 2/1/* +1.3.6.1.4.1.2636.3.1.12.1.5.20.4.1.0|4|MIC slot @ 3/0/* +1.3.6.1.4.1.2636.3.1.12.1.5.20.4.2.0|4|MIC slot @ 3/1/* +1.3.6.1.4.1.2636.3.1.12.1.5.20.5.1.0|4|MIC slot @ 4/0/* +1.3.6.1.4.1.2636.3.1.12.1.5.20.5.2.0|4|MIC slot @ 4/1/* +1.3.6.1.4.1.2636.3.1.12.1.5.20.6.1.0|4|MIC slot @ 5/0/* +1.3.6.1.4.1.2636.3.1.12.1.5.20.6.2.0|4|MIC slot @ 5/1/* +1.3.6.1.4.1.2636.3.1.12.1.5.20.7.1.0|4|MIC slot @ 6/0/* +1.3.6.1.4.1.2636.3.1.12.1.5.20.7.2.0|4|MIC slot @ 6/1/* +1.3.6.1.4.1.2636.3.1.12.1.5.20.8.1.0|4|MIC slot @ 7/0/* +1.3.6.1.4.1.2636.3.1.12.1.5.20.8.2.0|4|MIC slot @ 7/1/* +1.3.6.1.4.1.2636.3.1.12.1.5.20.9.1.0|4|MIC slot @ 8/0/* +1.3.6.1.4.1.2636.3.1.12.1.5.20.9.2.0|4|MIC slot @ 8/1/* +1.3.6.1.4.1.2636.3.1.12.1.5.20.10.1.0|4|MIC slot @ 9/0/* +1.3.6.1.4.1.2636.3.1.12.1.5.20.10.2.0|4|MIC slot @ 9/1/* +1.3.6.1.4.1.2636.3.1.12.1.5.20.11.1.0|4|MIC slot @ 10/0/* +1.3.6.1.4.1.2636.3.1.12.1.5.20.11.2.0|4|MIC slot @ 10/1/* +1.3.6.1.4.1.2636.3.1.12.1.5.20.12.1.0|4|MIC slot @ 11/0/* +1.3.6.1.4.1.2636.3.1.12.1.5.20.12.2.0|4|MIC slot @ 11/1/* +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.7.1.0.0|2|3 +1.3.6.1.4.1.2636.3.1.12.1.6.7.2.0.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.6.7.3.0.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.6.7.4.0.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.6.7.5.0.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.6.7.6.0.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.6.7.7.0.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.6.7.8.0.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.6.7.9.0.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.6.7.10.0.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.6.7.11.0.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.6.7.12.0.0|2|2 +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.2.1.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.6.8.2.2.0|2|2 +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.3.1.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.6.8.3.2.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.6.8.3.3.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.6.8.3.4.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.6.8.4.1.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.6.8.4.2.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.6.8.4.3.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.6.8.4.4.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.6.8.5.1.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.6.8.5.2.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.6.8.5.3.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.6.8.5.4.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.6.8.6.1.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.6.8.6.2.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.6.8.6.3.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.6.8.6.4.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.6.8.7.1.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.6.8.7.2.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.6.8.7.3.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.6.8.7.4.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.6.8.8.1.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.6.8.8.2.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.6.8.8.3.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.6.8.8.4.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.6.8.9.1.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.6.8.9.2.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.6.8.9.3.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.6.8.9.4.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.6.8.10.1.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.6.8.10.2.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.6.8.10.3.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.6.8.10.4.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.6.8.11.1.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.6.8.11.2.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.6.8.11.3.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.6.8.11.4.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.6.8.12.1.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.6.8.12.2.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.6.8.12.3.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.6.8.12.4.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.9.2.0.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.6.10.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.2.1.0|2|2 +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.3.1.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.6.20.3.2.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.6.20.4.1.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.6.20.4.2.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.6.20.5.1.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.6.20.5.2.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.6.20.6.1.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.6.20.6.2.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.6.20.7.1.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.6.20.7.2.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.6.20.8.1.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.6.20.8.2.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.6.20.9.1.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.6.20.9.2.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.6.20.10.1.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.6.20.10.2.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.6.20.11.1.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.6.20.11.2.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.6.20.12.1.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.6.20.12.2.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.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.7.3.0.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.7.4.0.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.7.5.0.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.7.6.0.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.7.7.0.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.7.8.0.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.7.9.0.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.7.10.0.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.7.11.0.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.7.12.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.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.3.1.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.8.3.2.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.8.3.3.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.8.3.4.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.8.4.1.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.8.4.2.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.8.4.3.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.8.4.4.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.8.5.1.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.8.5.2.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.8.5.3.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.8.5.4.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.8.6.1.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.8.6.2.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.8.6.3.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.8.6.4.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.8.7.1.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.8.7.2.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.8.7.3.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.8.7.4.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.8.8.1.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.8.8.2.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.8.8.3.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.8.8.4.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.8.9.1.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.8.9.2.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.8.9.3.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.8.9.4.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.8.10.1.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.8.10.2.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.8.10.3.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.8.10.4.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.8.11.1.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.8.11.2.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.8.11.3.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.8.11.4.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.8.12.1.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.8.12.2.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.8.12.3.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.8.12.4.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.9.2.0.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.10.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.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.3.1.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.20.3.2.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.20.4.1.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.20.4.2.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.20.5.1.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.20.5.2.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.20.6.1.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.20.6.2.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.20.7.1.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.20.7.2.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.20.8.1.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.20.8.2.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.20.9.1.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.20.9.2.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.20.10.1.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.20.10.2.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.20.11.1.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.20.11.2.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.20.12.1.0|2|2 +1.3.6.1.4.1.2636.3.1.12.1.7.20.12.2.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.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.7.3.0.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.7.4.0.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.7.5.0.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.7.6.0.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.7.7.0.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.7.8.0.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.7.9.0.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.7.10.0.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.7.11.0.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.7.12.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.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.3.1.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.8.3.2.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.8.3.3.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.8.3.4.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.8.4.1.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.8.4.2.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.8.4.3.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.8.4.4.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.8.5.1.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.8.5.2.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.8.5.3.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.8.5.4.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.8.6.1.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.8.6.2.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.8.6.3.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.8.6.4.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.8.7.1.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.8.7.2.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.8.7.3.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.8.7.4.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.8.8.1.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.8.8.2.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.8.8.3.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.8.8.4.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.8.9.1.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.8.9.2.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.8.9.3.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.8.9.4.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.8.10.1.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.8.10.2.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.8.10.3.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.8.10.4.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.8.11.1.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.8.11.2.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.8.11.3.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.8.11.4.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.8.12.1.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.8.12.2.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.8.12.3.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.8.12.4.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.9.2.0.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.10.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.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.3.1.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.20.3.2.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.20.4.1.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.20.4.2.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.20.5.1.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.20.5.2.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.20.6.1.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.20.6.2.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.20.7.1.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.20.7.2.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.20.8.1.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.20.8.2.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.20.9.1.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.20.9.2.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.20.10.1.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.20.10.2.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.20.11.1.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.20.11.2.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.20.12.1.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.12.1.8.20.12.2.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.7.1.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.9.1.0.0|2|9 +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.2.1.1.0.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.8.1.1.0|2|1 +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.20.1.1.0|2|1 +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.7.1.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.9.1.0.0|2|0 +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.4.1.1.0.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.8.1.1.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.20.1.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.7.1.0.0|4|FPC: Virtual FPC @ 0/*/* +1.3.6.1.4.1.2636.3.1.13.1.5.8.1.1.0|4|PIC: Virtual @ 0/0/* +1.3.6.1.4.1.2636.3.1.13.1.5.9.1.0.0|4|Routing Engine 0 +1.3.6.1.4.1.2636.3.1.13.1.5.20.1.1.0|4|MIC: Virtual @ 0/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.7.1.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.9.1.0.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.7.1.1.0.0|66|0 +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.8.1.1.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.7.9.1.0.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.8.1.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.8.7.1.0.0|66|7 +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.9.1.0.0|66|26 +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.9.1.1.0.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.8.1.1.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.9.9.1.0.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.10.1.1.0.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.10.7.1.0.0|2|535822336 +1.3.6.1.4.1.2636.3.1.13.1.10.8.1.1.0|2|0 +1.3.6.1.4.1.2636.3.1.13.1.10.9.1.0.0|2|1027604480 +1.3.6.1.4.1.2636.3.1.13.1.10.20.1.1.0|2|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.7.1.0.0|66|0 +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.9.1.0.0|66|25 +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.12.1.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.12.7.1.0.0|66|32 +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.9.1.0.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.13.1.1.0.0|2|1298700 +1.3.6.1.4.1.2636.3.1.13.1.13.7.1.0.0|2|1286372 +1.3.6.1.4.1.2636.3.1.13.1.13.8.1.1.0|2|1285578 +1.3.6.1.4.1.2636.3.1.13.1.13.9.1.0.0|2|1298700 +1.3.6.1.4.1.2636.3.1.13.1.13.20.1.1.0|2|1285562 +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.7.1.0.0|67|2349 +1.3.6.1.4.1.2636.3.1.13.1.14.8.1.1.0|67|3143 +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.20.1.1.0|67|3160 +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.7.1.0.0|2|511 +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.9.1.0.0|2|980 +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.16.1.1.0.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.8.1.1.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.20.1.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.7.1.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.9.1.0.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.18.1.1.0.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.8.1.1.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.20.1.1.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.13.1.19.1.1.0.0|4x|07E50506063621002B0000 +1.3.6.1.4.1.2636.3.1.13.1.19.7.1.0.0|4x|07E50506063825002B0000 +1.3.6.1.4.1.2636.3.1.13.1.19.8.1.1.0|4x|07E5050606382D002B0000 +1.3.6.1.4.1.2636.3.1.13.1.19.9.1.0.0|4x|07E50506063621002B0000 +1.3.6.1.4.1.2636.3.1.13.1.19.20.1.1.0|4x|07E5050606382D002B0000 +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.7.1.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.9.1.0.0|66|54 +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.21.1.1.0.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.8.1.1.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.21.9.1.0.0|66|38 +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.22.1.1.0.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.8.1.1.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.22.9.1.0.0|66|36 +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.23.1.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.23.7.1.0.0|66|6 +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.9.1.0.0|66|8 +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.24.1.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.24.7.1.0.0|66|6 +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.9.1.0.0|66|4 +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.25.1.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.13.1.25.7.1.0.0|66|6 +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.9.1.0.0|66|3 +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.26.1.1.0.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.8.1.1.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.20.1.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.7.1.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.9.1.0.0|66|25 +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.28.1.1.0.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.8.1.1.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.20.1.1.0|2|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 0 +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|2 +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.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.7.3.0.0|2|7 +1.3.6.1.4.1.2636.3.1.15.1.1.7.4.0.0|2|7 +1.3.6.1.4.1.2636.3.1.15.1.1.7.5.0.0|2|7 +1.3.6.1.4.1.2636.3.1.15.1.1.7.6.0.0|2|7 +1.3.6.1.4.1.2636.3.1.15.1.1.7.7.0.0|2|7 +1.3.6.1.4.1.2636.3.1.15.1.1.7.8.0.0|2|7 +1.3.6.1.4.1.2636.3.1.15.1.1.7.9.0.0|2|7 +1.3.6.1.4.1.2636.3.1.15.1.1.7.10.0.0|2|7 +1.3.6.1.4.1.2636.3.1.15.1.1.7.11.0.0|2|7 +1.3.6.1.4.1.2636.3.1.15.1.1.7.12.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.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.3.1.0|2|8 +1.3.6.1.4.1.2636.3.1.15.1.1.8.3.2.0|2|8 +1.3.6.1.4.1.2636.3.1.15.1.1.8.3.3.0|2|8 +1.3.6.1.4.1.2636.3.1.15.1.1.8.3.4.0|2|8 +1.3.6.1.4.1.2636.3.1.15.1.1.8.4.1.0|2|8 +1.3.6.1.4.1.2636.3.1.15.1.1.8.4.2.0|2|8 +1.3.6.1.4.1.2636.3.1.15.1.1.8.4.3.0|2|8 +1.3.6.1.4.1.2636.3.1.15.1.1.8.4.4.0|2|8 +1.3.6.1.4.1.2636.3.1.15.1.1.8.5.1.0|2|8 +1.3.6.1.4.1.2636.3.1.15.1.1.8.5.2.0|2|8 +1.3.6.1.4.1.2636.3.1.15.1.1.8.5.3.0|2|8 +1.3.6.1.4.1.2636.3.1.15.1.1.8.5.4.0|2|8 +1.3.6.1.4.1.2636.3.1.15.1.1.8.6.1.0|2|8 +1.3.6.1.4.1.2636.3.1.15.1.1.8.6.2.0|2|8 +1.3.6.1.4.1.2636.3.1.15.1.1.8.6.3.0|2|8 +1.3.6.1.4.1.2636.3.1.15.1.1.8.6.4.0|2|8 +1.3.6.1.4.1.2636.3.1.15.1.1.8.7.1.0|2|8 +1.3.6.1.4.1.2636.3.1.15.1.1.8.7.2.0|2|8 +1.3.6.1.4.1.2636.3.1.15.1.1.8.7.3.0|2|8 +1.3.6.1.4.1.2636.3.1.15.1.1.8.7.4.0|2|8 +1.3.6.1.4.1.2636.3.1.15.1.1.8.8.1.0|2|8 +1.3.6.1.4.1.2636.3.1.15.1.1.8.8.2.0|2|8 +1.3.6.1.4.1.2636.3.1.15.1.1.8.8.3.0|2|8 +1.3.6.1.4.1.2636.3.1.15.1.1.8.8.4.0|2|8 +1.3.6.1.4.1.2636.3.1.15.1.1.8.9.1.0|2|8 +1.3.6.1.4.1.2636.3.1.15.1.1.8.9.2.0|2|8 +1.3.6.1.4.1.2636.3.1.15.1.1.8.9.3.0|2|8 +1.3.6.1.4.1.2636.3.1.15.1.1.8.9.4.0|2|8 +1.3.6.1.4.1.2636.3.1.15.1.1.8.10.1.0|2|8 +1.3.6.1.4.1.2636.3.1.15.1.1.8.10.2.0|2|8 +1.3.6.1.4.1.2636.3.1.15.1.1.8.10.3.0|2|8 +1.3.6.1.4.1.2636.3.1.15.1.1.8.10.4.0|2|8 +1.3.6.1.4.1.2636.3.1.15.1.1.8.11.1.0|2|8 +1.3.6.1.4.1.2636.3.1.15.1.1.8.11.2.0|2|8 +1.3.6.1.4.1.2636.3.1.15.1.1.8.11.3.0|2|8 +1.3.6.1.4.1.2636.3.1.15.1.1.8.11.4.0|2|8 +1.3.6.1.4.1.2636.3.1.15.1.1.8.12.1.0|2|8 +1.3.6.1.4.1.2636.3.1.15.1.1.8.12.2.0|2|8 +1.3.6.1.4.1.2636.3.1.15.1.1.8.12.3.0|2|8 +1.3.6.1.4.1.2636.3.1.15.1.1.8.12.4.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.9.2.0.0|2|9 +1.3.6.1.4.1.2636.3.1.15.1.1.10.0.0.0|2|10 +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.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.3.1.0|2|20 +1.3.6.1.4.1.2636.3.1.15.1.1.20.3.2.0|2|20 +1.3.6.1.4.1.2636.3.1.15.1.1.20.4.1.0|2|20 +1.3.6.1.4.1.2636.3.1.15.1.1.20.4.2.0|2|20 +1.3.6.1.4.1.2636.3.1.15.1.1.20.5.1.0|2|20 +1.3.6.1.4.1.2636.3.1.15.1.1.20.5.2.0|2|20 +1.3.6.1.4.1.2636.3.1.15.1.1.20.6.1.0|2|20 +1.3.6.1.4.1.2636.3.1.15.1.1.20.6.2.0|2|20 +1.3.6.1.4.1.2636.3.1.15.1.1.20.7.1.0|2|20 +1.3.6.1.4.1.2636.3.1.15.1.1.20.7.2.0|2|20 +1.3.6.1.4.1.2636.3.1.15.1.1.20.8.1.0|2|20 +1.3.6.1.4.1.2636.3.1.15.1.1.20.8.2.0|2|20 +1.3.6.1.4.1.2636.3.1.15.1.1.20.9.1.0|2|20 +1.3.6.1.4.1.2636.3.1.15.1.1.20.9.2.0|2|20 +1.3.6.1.4.1.2636.3.1.15.1.1.20.10.1.0|2|20 +1.3.6.1.4.1.2636.3.1.15.1.1.20.10.2.0|2|20 +1.3.6.1.4.1.2636.3.1.15.1.1.20.11.1.0|2|20 +1.3.6.1.4.1.2636.3.1.15.1.1.20.11.2.0|2|20 +1.3.6.1.4.1.2636.3.1.15.1.1.20.12.1.0|2|20 +1.3.6.1.4.1.2636.3.1.15.1.1.20.12.2.0|2|20 +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.7.3.0.0|2|3 +1.3.6.1.4.1.2636.3.1.15.1.2.7.4.0.0|2|4 +1.3.6.1.4.1.2636.3.1.15.1.2.7.5.0.0|2|5 +1.3.6.1.4.1.2636.3.1.15.1.2.7.6.0.0|2|6 +1.3.6.1.4.1.2636.3.1.15.1.2.7.7.0.0|2|7 +1.3.6.1.4.1.2636.3.1.15.1.2.7.8.0.0|2|8 +1.3.6.1.4.1.2636.3.1.15.1.2.7.9.0.0|2|9 +1.3.6.1.4.1.2636.3.1.15.1.2.7.10.0.0|2|10 +1.3.6.1.4.1.2636.3.1.15.1.2.7.11.0.0|2|11 +1.3.6.1.4.1.2636.3.1.15.1.2.7.12.0.0|2|12 +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.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.3.1.0|2|3 +1.3.6.1.4.1.2636.3.1.15.1.2.8.3.2.0|2|3 +1.3.6.1.4.1.2636.3.1.15.1.2.8.3.3.0|2|3 +1.3.6.1.4.1.2636.3.1.15.1.2.8.3.4.0|2|3 +1.3.6.1.4.1.2636.3.1.15.1.2.8.4.1.0|2|4 +1.3.6.1.4.1.2636.3.1.15.1.2.8.4.2.0|2|4 +1.3.6.1.4.1.2636.3.1.15.1.2.8.4.3.0|2|4 +1.3.6.1.4.1.2636.3.1.15.1.2.8.4.4.0|2|4 +1.3.6.1.4.1.2636.3.1.15.1.2.8.5.1.0|2|5 +1.3.6.1.4.1.2636.3.1.15.1.2.8.5.2.0|2|5 +1.3.6.1.4.1.2636.3.1.15.1.2.8.5.3.0|2|5 +1.3.6.1.4.1.2636.3.1.15.1.2.8.5.4.0|2|5 +1.3.6.1.4.1.2636.3.1.15.1.2.8.6.1.0|2|6 +1.3.6.1.4.1.2636.3.1.15.1.2.8.6.2.0|2|6 +1.3.6.1.4.1.2636.3.1.15.1.2.8.6.3.0|2|6 +1.3.6.1.4.1.2636.3.1.15.1.2.8.6.4.0|2|6 +1.3.6.1.4.1.2636.3.1.15.1.2.8.7.1.0|2|7 +1.3.6.1.4.1.2636.3.1.15.1.2.8.7.2.0|2|7 +1.3.6.1.4.1.2636.3.1.15.1.2.8.7.3.0|2|7 +1.3.6.1.4.1.2636.3.1.15.1.2.8.7.4.0|2|7 +1.3.6.1.4.1.2636.3.1.15.1.2.8.8.1.0|2|8 +1.3.6.1.4.1.2636.3.1.15.1.2.8.8.2.0|2|8 +1.3.6.1.4.1.2636.3.1.15.1.2.8.8.3.0|2|8 +1.3.6.1.4.1.2636.3.1.15.1.2.8.8.4.0|2|8 +1.3.6.1.4.1.2636.3.1.15.1.2.8.9.1.0|2|9 +1.3.6.1.4.1.2636.3.1.15.1.2.8.9.2.0|2|9 +1.3.6.1.4.1.2636.3.1.15.1.2.8.9.3.0|2|9 +1.3.6.1.4.1.2636.3.1.15.1.2.8.9.4.0|2|9 +1.3.6.1.4.1.2636.3.1.15.1.2.8.10.1.0|2|10 +1.3.6.1.4.1.2636.3.1.15.1.2.8.10.2.0|2|10 +1.3.6.1.4.1.2636.3.1.15.1.2.8.10.3.0|2|10 +1.3.6.1.4.1.2636.3.1.15.1.2.8.10.4.0|2|10 +1.3.6.1.4.1.2636.3.1.15.1.2.8.11.1.0|2|11 +1.3.6.1.4.1.2636.3.1.15.1.2.8.11.2.0|2|11 +1.3.6.1.4.1.2636.3.1.15.1.2.8.11.3.0|2|11 +1.3.6.1.4.1.2636.3.1.15.1.2.8.11.4.0|2|11 +1.3.6.1.4.1.2636.3.1.15.1.2.8.12.1.0|2|12 +1.3.6.1.4.1.2636.3.1.15.1.2.8.12.2.0|2|12 +1.3.6.1.4.1.2636.3.1.15.1.2.8.12.3.0|2|12 +1.3.6.1.4.1.2636.3.1.15.1.2.8.12.4.0|2|12 +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.9.2.0.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.2.10.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.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.3.1.0|2|3 +1.3.6.1.4.1.2636.3.1.15.1.2.20.3.2.0|2|3 +1.3.6.1.4.1.2636.3.1.15.1.2.20.4.1.0|2|4 +1.3.6.1.4.1.2636.3.1.15.1.2.20.4.2.0|2|4 +1.3.6.1.4.1.2636.3.1.15.1.2.20.5.1.0|2|5 +1.3.6.1.4.1.2636.3.1.15.1.2.20.5.2.0|2|5 +1.3.6.1.4.1.2636.3.1.15.1.2.20.6.1.0|2|6 +1.3.6.1.4.1.2636.3.1.15.1.2.20.6.2.0|2|6 +1.3.6.1.4.1.2636.3.1.15.1.2.20.7.1.0|2|7 +1.3.6.1.4.1.2636.3.1.15.1.2.20.7.2.0|2|7 +1.3.6.1.4.1.2636.3.1.15.1.2.20.8.1.0|2|8 +1.3.6.1.4.1.2636.3.1.15.1.2.20.8.2.0|2|8 +1.3.6.1.4.1.2636.3.1.15.1.2.20.9.1.0|2|9 +1.3.6.1.4.1.2636.3.1.15.1.2.20.9.2.0|2|9 +1.3.6.1.4.1.2636.3.1.15.1.2.20.10.1.0|2|10 +1.3.6.1.4.1.2636.3.1.15.1.2.20.10.2.0|2|10 +1.3.6.1.4.1.2636.3.1.15.1.2.20.11.1.0|2|11 +1.3.6.1.4.1.2636.3.1.15.1.2.20.11.2.0|2|11 +1.3.6.1.4.1.2636.3.1.15.1.2.20.12.1.0|2|12 +1.3.6.1.4.1.2636.3.1.15.1.2.20.12.2.0|2|12 +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.7.3.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.3.7.4.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.3.7.5.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.3.7.6.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.3.7.7.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.3.7.8.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.3.7.9.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.3.7.10.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.3.7.11.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.3.7.12.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.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.3.1.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.3.8.3.2.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.3.8.3.3.0|2|3 +1.3.6.1.4.1.2636.3.1.15.1.3.8.3.4.0|2|4 +1.3.6.1.4.1.2636.3.1.15.1.3.8.4.1.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.3.8.4.2.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.3.8.4.3.0|2|3 +1.3.6.1.4.1.2636.3.1.15.1.3.8.4.4.0|2|4 +1.3.6.1.4.1.2636.3.1.15.1.3.8.5.1.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.3.8.5.2.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.3.8.5.3.0|2|3 +1.3.6.1.4.1.2636.3.1.15.1.3.8.5.4.0|2|4 +1.3.6.1.4.1.2636.3.1.15.1.3.8.6.1.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.3.8.6.2.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.3.8.6.3.0|2|3 +1.3.6.1.4.1.2636.3.1.15.1.3.8.6.4.0|2|4 +1.3.6.1.4.1.2636.3.1.15.1.3.8.7.1.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.3.8.7.2.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.3.8.7.3.0|2|3 +1.3.6.1.4.1.2636.3.1.15.1.3.8.7.4.0|2|4 +1.3.6.1.4.1.2636.3.1.15.1.3.8.8.1.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.3.8.8.2.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.3.8.8.3.0|2|3 +1.3.6.1.4.1.2636.3.1.15.1.3.8.8.4.0|2|4 +1.3.6.1.4.1.2636.3.1.15.1.3.8.9.1.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.3.8.9.2.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.3.8.9.3.0|2|3 +1.3.6.1.4.1.2636.3.1.15.1.3.8.9.4.0|2|4 +1.3.6.1.4.1.2636.3.1.15.1.3.8.10.1.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.3.8.10.2.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.3.8.10.3.0|2|3 +1.3.6.1.4.1.2636.3.1.15.1.3.8.10.4.0|2|4 +1.3.6.1.4.1.2636.3.1.15.1.3.8.11.1.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.3.8.11.2.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.3.8.11.3.0|2|3 +1.3.6.1.4.1.2636.3.1.15.1.3.8.11.4.0|2|4 +1.3.6.1.4.1.2636.3.1.15.1.3.8.12.1.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.3.8.12.2.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.3.8.12.3.0|2|3 +1.3.6.1.4.1.2636.3.1.15.1.3.8.12.4.0|2|4 +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.9.2.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.3.10.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.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.3.1.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.3.20.3.2.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.3.20.4.1.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.3.20.4.2.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.3.20.5.1.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.3.20.5.2.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.3.20.6.1.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.3.20.6.2.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.3.20.7.1.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.3.20.7.2.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.3.20.8.1.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.3.20.8.2.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.3.20.9.1.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.3.20.9.2.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.3.20.10.1.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.3.20.10.2.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.3.20.11.1.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.3.20.11.2.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.3.20.12.1.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.3.20.12.2.0|2|2 +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.7.3.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.7.4.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.7.5.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.7.6.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.7.7.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.7.8.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.7.9.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.7.10.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.7.11.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.7.12.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.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.3.1.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.8.3.2.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.8.3.3.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.8.3.4.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.8.4.1.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.8.4.2.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.8.4.3.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.8.4.4.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.8.5.1.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.8.5.2.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.8.5.3.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.8.5.4.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.8.6.1.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.8.6.2.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.8.6.3.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.8.6.4.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.8.7.1.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.8.7.2.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.8.7.3.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.8.7.4.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.8.8.1.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.8.8.2.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.8.8.3.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.8.8.4.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.8.9.1.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.8.9.2.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.8.9.3.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.8.9.4.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.8.10.1.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.8.10.2.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.8.10.3.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.8.10.4.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.8.11.1.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.8.11.2.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.8.11.3.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.8.11.4.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.8.12.1.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.8.12.2.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.8.12.3.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.8.12.4.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.9.2.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.10.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.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.3.1.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.20.3.2.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.20.4.1.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.20.4.2.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.20.5.1.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.20.5.2.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.20.6.1.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.20.6.2.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.20.7.1.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.20.7.2.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.20.8.1.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.20.8.2.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.20.9.1.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.20.9.2.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.20.10.1.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.20.10.2.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.20.11.1.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.20.11.2.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.20.12.1.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.4.20.12.2.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.5.7.1.0.0|4|FPC: Virtual FPC @ 0/*/* +1.3.6.1.4.1.2636.3.1.15.1.5.7.2.0.0|4|FPC @ 1/*/* +1.3.6.1.4.1.2636.3.1.15.1.5.7.3.0.0|4|FPC @ 2/*/* +1.3.6.1.4.1.2636.3.1.15.1.5.7.4.0.0|4|FPC @ 3/*/* +1.3.6.1.4.1.2636.3.1.15.1.5.7.5.0.0|4|FPC @ 4/*/* +1.3.6.1.4.1.2636.3.1.15.1.5.7.6.0.0|4|FPC @ 5/*/* +1.3.6.1.4.1.2636.3.1.15.1.5.7.7.0.0|4|FPC @ 6/*/* +1.3.6.1.4.1.2636.3.1.15.1.5.7.8.0.0|4|FPC @ 7/*/* +1.3.6.1.4.1.2636.3.1.15.1.5.7.9.0.0|4|FPC @ 8/*/* +1.3.6.1.4.1.2636.3.1.15.1.5.7.10.0.0|4|FPC @ 9/*/* +1.3.6.1.4.1.2636.3.1.15.1.5.7.11.0.0|4|FPC @ 10/*/* +1.3.6.1.4.1.2636.3.1.15.1.5.7.12.0.0|4|FPC @ 11/*/* +1.3.6.1.4.1.2636.3.1.15.1.5.8.1.1.0|4|PIC: Virtual @ 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.2.1.0|4|PIC: @ 1/0/* +1.3.6.1.4.1.2636.3.1.15.1.5.8.2.2.0|4|PIC: @ 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.3.1.0|4|PIC: @ 2/0/* +1.3.6.1.4.1.2636.3.1.15.1.5.8.3.2.0|4|PIC: @ 2/1/* +1.3.6.1.4.1.2636.3.1.15.1.5.8.3.3.0|4|PIC: @ 2/2/* +1.3.6.1.4.1.2636.3.1.15.1.5.8.3.4.0|4|PIC: @ 2/3/* +1.3.6.1.4.1.2636.3.1.15.1.5.8.4.1.0|4|PIC: @ 3/0/* +1.3.6.1.4.1.2636.3.1.15.1.5.8.4.2.0|4|PIC: @ 3/1/* +1.3.6.1.4.1.2636.3.1.15.1.5.8.4.3.0|4|PIC: @ 3/2/* +1.3.6.1.4.1.2636.3.1.15.1.5.8.4.4.0|4|PIC: @ 3/3/* +1.3.6.1.4.1.2636.3.1.15.1.5.8.5.1.0|4|PIC: @ 4/0/* +1.3.6.1.4.1.2636.3.1.15.1.5.8.5.2.0|4|PIC: @ 4/1/* +1.3.6.1.4.1.2636.3.1.15.1.5.8.5.3.0|4|PIC: @ 4/2/* +1.3.6.1.4.1.2636.3.1.15.1.5.8.5.4.0|4|PIC: @ 4/3/* +1.3.6.1.4.1.2636.3.1.15.1.5.8.6.1.0|4|PIC: @ 5/0/* +1.3.6.1.4.1.2636.3.1.15.1.5.8.6.2.0|4|PIC: @ 5/1/* +1.3.6.1.4.1.2636.3.1.15.1.5.8.6.3.0|4|PIC: @ 5/2/* +1.3.6.1.4.1.2636.3.1.15.1.5.8.6.4.0|4|PIC: @ 5/3/* +1.3.6.1.4.1.2636.3.1.15.1.5.8.7.1.0|4|PIC: @ 6/0/* +1.3.6.1.4.1.2636.3.1.15.1.5.8.7.2.0|4|PIC: @ 6/1/* +1.3.6.1.4.1.2636.3.1.15.1.5.8.7.3.0|4|PIC: @ 6/2/* +1.3.6.1.4.1.2636.3.1.15.1.5.8.7.4.0|4|PIC: @ 6/3/* +1.3.6.1.4.1.2636.3.1.15.1.5.8.8.1.0|4|PIC: @ 7/0/* +1.3.6.1.4.1.2636.3.1.15.1.5.8.8.2.0|4|PIC: @ 7/1/* +1.3.6.1.4.1.2636.3.1.15.1.5.8.8.3.0|4|PIC: @ 7/2/* +1.3.6.1.4.1.2636.3.1.15.1.5.8.8.4.0|4|PIC: @ 7/3/* +1.3.6.1.4.1.2636.3.1.15.1.5.8.9.1.0|4|PIC: @ 8/0/* +1.3.6.1.4.1.2636.3.1.15.1.5.8.9.2.0|4|PIC: @ 8/1/* +1.3.6.1.4.1.2636.3.1.15.1.5.8.9.3.0|4|PIC: @ 8/2/* +1.3.6.1.4.1.2636.3.1.15.1.5.8.9.4.0|4|PIC: @ 8/3/* +1.3.6.1.4.1.2636.3.1.15.1.5.8.10.1.0|4|PIC: @ 9/0/* +1.3.6.1.4.1.2636.3.1.15.1.5.8.10.2.0|4|PIC: @ 9/1/* +1.3.6.1.4.1.2636.3.1.15.1.5.8.10.3.0|4|PIC: @ 9/2/* +1.3.6.1.4.1.2636.3.1.15.1.5.8.10.4.0|4|PIC: @ 9/3/* +1.3.6.1.4.1.2636.3.1.15.1.5.8.11.1.0|4|PIC: @ 10/0/* +1.3.6.1.4.1.2636.3.1.15.1.5.8.11.2.0|4|PIC: @ 10/1/* +1.3.6.1.4.1.2636.3.1.15.1.5.8.11.3.0|4|PIC: @ 10/2/* +1.3.6.1.4.1.2636.3.1.15.1.5.8.11.4.0|4|PIC: @ 10/3/* +1.3.6.1.4.1.2636.3.1.15.1.5.8.12.1.0|4|PIC: @ 11/0/* +1.3.6.1.4.1.2636.3.1.15.1.5.8.12.2.0|4|PIC: @ 11/1/* +1.3.6.1.4.1.2636.3.1.15.1.5.8.12.3.0|4|PIC: @ 11/2/* +1.3.6.1.4.1.2636.3.1.15.1.5.8.12.4.0|4|PIC: @ 11/3/* +1.3.6.1.4.1.2636.3.1.15.1.5.9.1.0.0|4|Routing Engine 0 +1.3.6.1.4.1.2636.3.1.15.1.5.9.2.0.0|4|Routing Engine 1 +1.3.6.1.4.1.2636.3.1.15.1.5.10.0.0.0|4| +1.3.6.1.4.1.2636.3.1.15.1.5.20.1.1.0|4|MIC: Virtual @ 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.2.1.0|4| +1.3.6.1.4.1.2636.3.1.15.1.5.20.2.2.0|4| +1.3.6.1.4.1.2636.3.1.15.1.5.20.3.1.0|4| +1.3.6.1.4.1.2636.3.1.15.1.5.20.3.2.0|4| +1.3.6.1.4.1.2636.3.1.15.1.5.20.4.1.0|4| +1.3.6.1.4.1.2636.3.1.15.1.5.20.4.2.0|4| +1.3.6.1.4.1.2636.3.1.15.1.5.20.5.1.0|4| +1.3.6.1.4.1.2636.3.1.15.1.5.20.5.2.0|4| +1.3.6.1.4.1.2636.3.1.15.1.5.20.6.1.0|4| +1.3.6.1.4.1.2636.3.1.15.1.5.20.6.2.0|4| +1.3.6.1.4.1.2636.3.1.15.1.5.20.7.1.0|4| +1.3.6.1.4.1.2636.3.1.15.1.5.20.7.2.0|4| +1.3.6.1.4.1.2636.3.1.15.1.5.20.8.1.0|4| +1.3.6.1.4.1.2636.3.1.15.1.5.20.8.2.0|4| +1.3.6.1.4.1.2636.3.1.15.1.5.20.9.1.0|4| +1.3.6.1.4.1.2636.3.1.15.1.5.20.9.2.0|4| +1.3.6.1.4.1.2636.3.1.15.1.5.20.10.1.0|4| +1.3.6.1.4.1.2636.3.1.15.1.5.20.10.2.0|4| +1.3.6.1.4.1.2636.3.1.15.1.5.20.11.1.0|4| +1.3.6.1.4.1.2636.3.1.15.1.5.20.11.2.0|4| +1.3.6.1.4.1.2636.3.1.15.1.5.20.12.1.0|4| +1.3.6.1.4.1.2636.3.1.15.1.5.20.12.2.0|4| +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.7.3.0.0|2|3 +1.3.6.1.4.1.2636.3.1.15.1.6.7.4.0.0|2|3 +1.3.6.1.4.1.2636.3.1.15.1.6.7.5.0.0|2|3 +1.3.6.1.4.1.2636.3.1.15.1.6.7.6.0.0|2|3 +1.3.6.1.4.1.2636.3.1.15.1.6.7.7.0.0|2|3 +1.3.6.1.4.1.2636.3.1.15.1.6.7.8.0.0|2|3 +1.3.6.1.4.1.2636.3.1.15.1.6.7.9.0.0|2|3 +1.3.6.1.4.1.2636.3.1.15.1.6.7.10.0.0|2|3 +1.3.6.1.4.1.2636.3.1.15.1.6.7.11.0.0|2|3 +1.3.6.1.4.1.2636.3.1.15.1.6.7.12.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.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.3.1.0|2|11 +1.3.6.1.4.1.2636.3.1.15.1.6.8.3.2.0|2|11 +1.3.6.1.4.1.2636.3.1.15.1.6.8.3.3.0|2|11 +1.3.6.1.4.1.2636.3.1.15.1.6.8.3.4.0|2|11 +1.3.6.1.4.1.2636.3.1.15.1.6.8.4.1.0|2|11 +1.3.6.1.4.1.2636.3.1.15.1.6.8.4.2.0|2|11 +1.3.6.1.4.1.2636.3.1.15.1.6.8.4.3.0|2|11 +1.3.6.1.4.1.2636.3.1.15.1.6.8.4.4.0|2|11 +1.3.6.1.4.1.2636.3.1.15.1.6.8.5.1.0|2|11 +1.3.6.1.4.1.2636.3.1.15.1.6.8.5.2.0|2|11 +1.3.6.1.4.1.2636.3.1.15.1.6.8.5.3.0|2|11 +1.3.6.1.4.1.2636.3.1.15.1.6.8.5.4.0|2|11 +1.3.6.1.4.1.2636.3.1.15.1.6.8.6.1.0|2|11 +1.3.6.1.4.1.2636.3.1.15.1.6.8.6.2.0|2|11 +1.3.6.1.4.1.2636.3.1.15.1.6.8.6.3.0|2|11 +1.3.6.1.4.1.2636.3.1.15.1.6.8.6.4.0|2|11 +1.3.6.1.4.1.2636.3.1.15.1.6.8.7.1.0|2|11 +1.3.6.1.4.1.2636.3.1.15.1.6.8.7.2.0|2|11 +1.3.6.1.4.1.2636.3.1.15.1.6.8.7.3.0|2|11 +1.3.6.1.4.1.2636.3.1.15.1.6.8.7.4.0|2|11 +1.3.6.1.4.1.2636.3.1.15.1.6.8.8.1.0|2|11 +1.3.6.1.4.1.2636.3.1.15.1.6.8.8.2.0|2|11 +1.3.6.1.4.1.2636.3.1.15.1.6.8.8.3.0|2|11 +1.3.6.1.4.1.2636.3.1.15.1.6.8.8.4.0|2|11 +1.3.6.1.4.1.2636.3.1.15.1.6.8.9.1.0|2|11 +1.3.6.1.4.1.2636.3.1.15.1.6.8.9.2.0|2|11 +1.3.6.1.4.1.2636.3.1.15.1.6.8.9.3.0|2|11 +1.3.6.1.4.1.2636.3.1.15.1.6.8.9.4.0|2|11 +1.3.6.1.4.1.2636.3.1.15.1.6.8.10.1.0|2|11 +1.3.6.1.4.1.2636.3.1.15.1.6.8.10.2.0|2|11 +1.3.6.1.4.1.2636.3.1.15.1.6.8.10.3.0|2|11 +1.3.6.1.4.1.2636.3.1.15.1.6.8.10.4.0|2|11 +1.3.6.1.4.1.2636.3.1.15.1.6.8.11.1.0|2|11 +1.3.6.1.4.1.2636.3.1.15.1.6.8.11.2.0|2|11 +1.3.6.1.4.1.2636.3.1.15.1.6.8.11.3.0|2|11 +1.3.6.1.4.1.2636.3.1.15.1.6.8.11.4.0|2|11 +1.3.6.1.4.1.2636.3.1.15.1.6.8.12.1.0|2|11 +1.3.6.1.4.1.2636.3.1.15.1.6.8.12.2.0|2|11 +1.3.6.1.4.1.2636.3.1.15.1.6.8.12.3.0|2|11 +1.3.6.1.4.1.2636.3.1.15.1.6.8.12.4.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.9.2.0.0|2|6 +1.3.6.1.4.1.2636.3.1.15.1.6.10.0.0.0|2|8 +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.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.3.1.0|2|11 +1.3.6.1.4.1.2636.3.1.15.1.6.20.3.2.0|2|11 +1.3.6.1.4.1.2636.3.1.15.1.6.20.4.1.0|2|11 +1.3.6.1.4.1.2636.3.1.15.1.6.20.4.2.0|2|11 +1.3.6.1.4.1.2636.3.1.15.1.6.20.5.1.0|2|11 +1.3.6.1.4.1.2636.3.1.15.1.6.20.5.2.0|2|11 +1.3.6.1.4.1.2636.3.1.15.1.6.20.6.1.0|2|11 +1.3.6.1.4.1.2636.3.1.15.1.6.20.6.2.0|2|11 +1.3.6.1.4.1.2636.3.1.15.1.6.20.7.1.0|2|11 +1.3.6.1.4.1.2636.3.1.15.1.6.20.7.2.0|2|11 +1.3.6.1.4.1.2636.3.1.15.1.6.20.8.1.0|2|11 +1.3.6.1.4.1.2636.3.1.15.1.6.20.8.2.0|2|11 +1.3.6.1.4.1.2636.3.1.15.1.6.20.9.1.0|2|11 +1.3.6.1.4.1.2636.3.1.15.1.6.20.9.2.0|2|11 +1.3.6.1.4.1.2636.3.1.15.1.6.20.10.1.0|2|11 +1.3.6.1.4.1.2636.3.1.15.1.6.20.10.2.0|2|11 +1.3.6.1.4.1.2636.3.1.15.1.6.20.11.1.0|2|11 +1.3.6.1.4.1.2636.3.1.15.1.6.20.11.2.0|2|11 +1.3.6.1.4.1.2636.3.1.15.1.6.20.12.1.0|2|11 +1.3.6.1.4.1.2636.3.1.15.1.6.20.12.2.0|2|11 +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.7.3.0.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.7.7.4.0.0|2|3 +1.3.6.1.4.1.2636.3.1.15.1.7.7.5.0.0|2|4 +1.3.6.1.4.1.2636.3.1.15.1.7.7.6.0.0|2|5 +1.3.6.1.4.1.2636.3.1.15.1.7.7.7.0.0|2|6 +1.3.6.1.4.1.2636.3.1.15.1.7.7.8.0.0|2|7 +1.3.6.1.4.1.2636.3.1.15.1.7.7.9.0.0|2|8 +1.3.6.1.4.1.2636.3.1.15.1.7.7.10.0.0|2|9 +1.3.6.1.4.1.2636.3.1.15.1.7.7.11.0.0|2|10 +1.3.6.1.4.1.2636.3.1.15.1.7.7.12.0.0|2|11 +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.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.3.1.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.7.8.3.2.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.7.8.3.3.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.7.8.3.4.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.7.8.4.1.0|2|3 +1.3.6.1.4.1.2636.3.1.15.1.7.8.4.2.0|2|3 +1.3.6.1.4.1.2636.3.1.15.1.7.8.4.3.0|2|3 +1.3.6.1.4.1.2636.3.1.15.1.7.8.4.4.0|2|3 +1.3.6.1.4.1.2636.3.1.15.1.7.8.5.1.0|2|4 +1.3.6.1.4.1.2636.3.1.15.1.7.8.5.2.0|2|4 +1.3.6.1.4.1.2636.3.1.15.1.7.8.5.3.0|2|4 +1.3.6.1.4.1.2636.3.1.15.1.7.8.5.4.0|2|4 +1.3.6.1.4.1.2636.3.1.15.1.7.8.6.1.0|2|5 +1.3.6.1.4.1.2636.3.1.15.1.7.8.6.2.0|2|5 +1.3.6.1.4.1.2636.3.1.15.1.7.8.6.3.0|2|5 +1.3.6.1.4.1.2636.3.1.15.1.7.8.6.4.0|2|5 +1.3.6.1.4.1.2636.3.1.15.1.7.8.7.1.0|2|6 +1.3.6.1.4.1.2636.3.1.15.1.7.8.7.2.0|2|6 +1.3.6.1.4.1.2636.3.1.15.1.7.8.7.3.0|2|6 +1.3.6.1.4.1.2636.3.1.15.1.7.8.7.4.0|2|6 +1.3.6.1.4.1.2636.3.1.15.1.7.8.8.1.0|2|7 +1.3.6.1.4.1.2636.3.1.15.1.7.8.8.2.0|2|7 +1.3.6.1.4.1.2636.3.1.15.1.7.8.8.3.0|2|7 +1.3.6.1.4.1.2636.3.1.15.1.7.8.8.4.0|2|7 +1.3.6.1.4.1.2636.3.1.15.1.7.8.9.1.0|2|8 +1.3.6.1.4.1.2636.3.1.15.1.7.8.9.2.0|2|8 +1.3.6.1.4.1.2636.3.1.15.1.7.8.9.3.0|2|8 +1.3.6.1.4.1.2636.3.1.15.1.7.8.9.4.0|2|8 +1.3.6.1.4.1.2636.3.1.15.1.7.8.10.1.0|2|9 +1.3.6.1.4.1.2636.3.1.15.1.7.8.10.2.0|2|9 +1.3.6.1.4.1.2636.3.1.15.1.7.8.10.3.0|2|9 +1.3.6.1.4.1.2636.3.1.15.1.7.8.10.4.0|2|9 +1.3.6.1.4.1.2636.3.1.15.1.7.8.11.1.0|2|10 +1.3.6.1.4.1.2636.3.1.15.1.7.8.11.2.0|2|10 +1.3.6.1.4.1.2636.3.1.15.1.7.8.11.3.0|2|10 +1.3.6.1.4.1.2636.3.1.15.1.7.8.11.4.0|2|10 +1.3.6.1.4.1.2636.3.1.15.1.7.8.12.1.0|2|11 +1.3.6.1.4.1.2636.3.1.15.1.7.8.12.2.0|2|11 +1.3.6.1.4.1.2636.3.1.15.1.7.8.12.3.0|2|11 +1.3.6.1.4.1.2636.3.1.15.1.7.8.12.4.0|2|11 +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.9.2.0.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.7.10.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.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.3.1.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.7.20.3.2.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.7.20.4.1.0|2|3 +1.3.6.1.4.1.2636.3.1.15.1.7.20.4.2.0|2|3 +1.3.6.1.4.1.2636.3.1.15.1.7.20.5.1.0|2|4 +1.3.6.1.4.1.2636.3.1.15.1.7.20.5.2.0|2|4 +1.3.6.1.4.1.2636.3.1.15.1.7.20.6.1.0|2|5 +1.3.6.1.4.1.2636.3.1.15.1.7.20.6.2.0|2|5 +1.3.6.1.4.1.2636.3.1.15.1.7.20.7.1.0|2|6 +1.3.6.1.4.1.2636.3.1.15.1.7.20.7.2.0|2|6 +1.3.6.1.4.1.2636.3.1.15.1.7.20.8.1.0|2|7 +1.3.6.1.4.1.2636.3.1.15.1.7.20.8.2.0|2|7 +1.3.6.1.4.1.2636.3.1.15.1.7.20.9.1.0|2|8 +1.3.6.1.4.1.2636.3.1.15.1.7.20.9.2.0|2|8 +1.3.6.1.4.1.2636.3.1.15.1.7.20.10.1.0|2|9 +1.3.6.1.4.1.2636.3.1.15.1.7.20.10.2.0|2|9 +1.3.6.1.4.1.2636.3.1.15.1.7.20.11.1.0|2|10 +1.3.6.1.4.1.2636.3.1.15.1.7.20.11.2.0|2|10 +1.3.6.1.4.1.2636.3.1.15.1.7.20.12.1.0|2|11 +1.3.6.1.4.1.2636.3.1.15.1.7.20.12.2.0|2|11 +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|2 +1.3.6.1.4.1.2636.3.1.15.1.8.7.3.0.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.8.7.4.0.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.8.7.5.0.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.8.7.6.0.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.8.7.7.0.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.8.7.8.0.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.8.7.9.0.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.8.7.10.0.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.8.7.11.0.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.8.7.12.0.0|2|2 +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.2.1.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.8.8.2.2.0|2|2 +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.3.1.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.8.8.3.2.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.8.8.3.3.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.8.8.3.4.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.8.8.4.1.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.8.8.4.2.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.8.8.4.3.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.8.8.4.4.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.8.8.5.1.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.8.8.5.2.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.8.8.5.3.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.8.8.5.4.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.8.8.6.1.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.8.8.6.2.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.8.8.6.3.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.8.8.6.4.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.8.8.7.1.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.8.8.7.2.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.8.8.7.3.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.8.8.7.4.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.8.8.8.1.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.8.8.8.2.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.8.8.8.3.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.8.8.8.4.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.8.8.9.1.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.8.8.9.2.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.8.8.9.3.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.8.8.9.4.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.8.8.10.1.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.8.8.10.2.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.8.8.10.3.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.8.8.10.4.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.8.8.11.1.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.8.8.11.2.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.8.8.11.3.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.8.8.11.4.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.8.8.12.1.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.8.8.12.2.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.8.8.12.3.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.8.8.12.4.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.9.2.0.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.8.10.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.2.1.0|2|2 +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.3.1.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.8.20.3.2.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.8.20.4.1.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.8.20.4.2.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.8.20.5.1.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.8.20.5.2.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.8.20.6.1.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.8.20.6.2.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.8.20.7.1.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.8.20.7.2.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.8.20.8.1.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.8.20.8.2.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.8.20.9.1.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.8.20.9.2.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.8.20.10.1.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.8.20.10.2.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.8.20.11.1.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.8.20.11.2.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.8.20.12.1.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.8.20.12.2.0|2|2 +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.7.3.0.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.7.4.0.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.7.5.0.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.7.6.0.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.7.7.0.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.7.8.0.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.7.9.0.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.7.10.0.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.7.11.0.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.7.12.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.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.3.1.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.8.3.2.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.8.3.3.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.8.3.4.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.8.4.1.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.8.4.2.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.8.4.3.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.8.4.4.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.8.5.1.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.8.5.2.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.8.5.3.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.8.5.4.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.8.6.1.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.8.6.2.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.8.6.3.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.8.6.4.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.8.7.1.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.8.7.2.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.8.7.3.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.8.7.4.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.8.8.1.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.8.8.2.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.8.8.3.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.8.8.4.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.8.9.1.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.8.9.2.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.8.9.3.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.8.9.4.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.8.10.1.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.8.10.2.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.8.10.3.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.8.10.4.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.8.11.1.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.8.11.2.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.8.11.3.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.8.11.4.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.8.12.1.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.8.12.2.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.8.12.3.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.8.12.4.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.9.1.0.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.9.2.0.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.10.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.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.3.1.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.20.3.2.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.20.4.1.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.20.4.2.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.20.5.1.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.20.5.2.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.20.6.1.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.20.6.2.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.20.7.1.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.20.7.2.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.20.8.1.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.20.8.2.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.20.9.1.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.20.9.2.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.20.10.1.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.20.10.2.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.20.11.1.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.20.11.2.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.20.12.1.0|66|0 +1.3.6.1.4.1.2636.3.1.15.1.9.20.12.2.0|66|0 +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.7.3.0.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.10.7.4.0.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.10.7.5.0.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.10.7.6.0.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.10.7.7.0.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.10.7.8.0.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.10.7.9.0.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.10.7.10.0.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.10.7.11.0.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.10.7.12.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.2.1.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.10.8.2.2.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.10.8.2.3.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.10.8.2.4.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.10.8.3.1.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.10.8.3.2.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.10.8.3.3.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.10.8.3.4.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.10.8.4.1.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.10.8.4.2.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.10.8.4.3.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.10.8.4.4.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.10.8.5.1.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.10.8.5.2.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.10.8.5.3.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.10.8.5.4.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.10.8.6.1.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.10.8.6.2.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.10.8.6.3.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.10.8.6.4.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.10.8.7.1.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.10.8.7.2.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.10.8.7.3.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.10.8.7.4.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.10.8.8.1.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.10.8.8.2.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.10.8.8.3.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.10.8.8.4.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.10.8.9.1.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.10.8.9.2.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.10.8.9.3.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.10.8.9.4.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.10.8.10.1.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.10.8.10.2.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.10.8.10.3.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.10.8.10.4.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.10.8.11.1.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.10.8.11.2.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.10.8.11.3.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.10.8.11.4.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.10.8.12.1.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.10.8.12.2.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.10.8.12.3.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.10.8.12.4.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.9.2.0.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.10.10.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.2.1.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.10.20.2.2.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.10.20.3.1.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.10.20.3.2.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.10.20.4.1.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.10.20.4.2.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.10.20.5.1.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.10.20.5.2.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.10.20.6.1.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.10.20.6.2.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.10.20.7.1.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.10.20.7.2.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.10.20.8.1.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.10.20.8.2.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.10.20.9.1.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.10.20.9.2.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.10.20.10.1.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.10.20.10.2.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.10.20.11.1.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.10.20.11.2.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.10.20.12.1.0|2|1 +1.3.6.1.4.1.2636.3.1.15.1.10.20.12.2.0|2|1 +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.7.3.0.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.7.4.0.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.7.5.0.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.7.6.0.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.7.7.0.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.7.8.0.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.7.9.0.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.7.10.0.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.7.11.0.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.7.12.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.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.3.1.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.8.3.2.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.8.3.3.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.8.3.4.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.8.4.1.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.8.4.2.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.8.4.3.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.8.4.4.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.8.5.1.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.8.5.2.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.8.5.3.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.8.5.4.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.8.6.1.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.8.6.2.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.8.6.3.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.8.6.4.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.8.7.1.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.8.7.2.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.8.7.3.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.8.7.4.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.8.8.1.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.8.8.2.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.8.8.3.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.8.8.4.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.8.9.1.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.8.9.2.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.8.9.3.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.8.9.4.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.8.10.1.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.8.10.2.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.8.10.3.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.8.10.4.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.8.11.1.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.8.11.2.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.8.11.3.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.8.11.4.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.8.12.1.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.8.12.2.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.8.12.3.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.8.12.4.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.9.2.0.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.10.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.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.3.1.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.20.3.2.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.20.4.1.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.20.4.2.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.20.5.1.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.20.5.2.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.20.6.1.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.20.6.2.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.20.7.1.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.20.7.2.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.20.8.1.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.20.8.2.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.20.9.1.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.20.9.2.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.20.10.1.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.20.10.2.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.20.11.1.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.20.11.2.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.20.12.1.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.11.20.12.2.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.12.7.1.0.0|67|1391 +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.7.3.0.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.12.7.4.0.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.12.7.5.0.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.12.7.6.0.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.12.7.7.0.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.12.7.8.0.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.12.7.9.0.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.12.7.10.0.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.12.7.11.0.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.12.7.12.0.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.12.8.1.1.0|67|3141 +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.2.1.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.12.8.2.2.0|67|0 +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.3.1.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.12.8.3.2.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.12.8.3.3.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.12.8.3.4.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.12.8.4.1.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.12.8.4.2.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.12.8.4.3.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.12.8.4.4.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.12.8.5.1.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.12.8.5.2.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.12.8.5.3.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.12.8.5.4.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.12.8.6.1.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.12.8.6.2.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.12.8.6.3.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.12.8.6.4.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.12.8.7.1.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.12.8.7.2.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.12.8.7.3.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.12.8.7.4.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.12.8.8.1.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.12.8.8.2.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.12.8.8.3.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.12.8.8.4.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.12.8.9.1.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.12.8.9.2.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.12.8.9.3.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.12.8.9.4.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.12.8.10.1.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.12.8.10.2.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.12.8.10.3.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.12.8.10.4.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.12.8.11.1.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.12.8.11.2.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.12.8.11.3.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.12.8.11.4.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.12.8.12.1.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.12.8.12.2.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.12.8.12.3.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.12.8.12.4.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.9.2.0.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.12.10.0.0.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.12.20.1.1.0|67|3161 +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.2.1.0|67|0 +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.3.1.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.12.20.3.2.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.12.20.4.1.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.12.20.4.2.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.12.20.5.1.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.12.20.5.2.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.12.20.6.1.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.12.20.6.2.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.12.20.7.1.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.12.20.7.2.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.12.20.8.1.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.12.20.8.2.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.12.20.9.1.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.12.20.9.2.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.12.20.10.1.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.12.20.10.2.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.12.20.11.1.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.12.20.11.2.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.12.20.12.1.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.12.20.12.2.0|67|0 +1.3.6.1.4.1.2636.3.1.15.1.13.7.1.0.0|2|1287435 +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.7.3.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.13.7.4.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.13.7.5.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.13.7.6.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.13.7.7.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.13.7.8.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.13.7.9.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.13.7.10.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.13.7.11.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.13.7.12.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.13.8.1.1.0|2|1285686 +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.2.1.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.13.8.2.2.0|2|0 +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.3.1.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.13.8.3.2.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.13.8.3.3.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.13.8.3.4.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.13.8.4.1.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.13.8.4.2.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.13.8.4.3.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.13.8.4.4.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.13.8.5.1.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.13.8.5.2.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.13.8.5.3.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.13.8.5.4.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.13.8.6.1.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.13.8.6.2.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.13.8.6.3.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.13.8.6.4.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.13.8.7.1.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.13.8.7.2.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.13.8.7.3.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.13.8.7.4.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.13.8.8.1.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.13.8.8.2.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.13.8.8.3.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.13.8.8.4.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.13.8.9.1.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.13.8.9.2.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.13.8.9.3.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.13.8.9.4.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.13.8.10.1.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.13.8.10.2.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.13.8.10.3.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.13.8.10.4.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.13.8.11.1.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.13.8.11.2.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.13.8.11.3.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.13.8.11.4.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.13.8.12.1.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.13.8.12.2.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.13.8.12.3.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.13.8.12.4.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.13.9.1.0.0|2|1289207 +1.3.6.1.4.1.2636.3.1.15.1.13.9.2.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.13.10.0.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.13.20.1.1.0|2|1285669 +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.2.1.0|2|0 +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.3.1.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.13.20.3.2.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.13.20.4.1.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.13.20.4.2.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.13.20.5.1.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.13.20.5.2.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.13.20.6.1.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.13.20.6.2.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.13.20.7.1.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.13.20.7.2.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.13.20.8.1.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.13.20.8.2.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.13.20.9.1.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.13.20.9.2.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.13.20.10.1.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.13.20.10.2.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.13.20.11.1.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.13.20.11.2.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.13.20.12.1.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.13.20.12.2.0|2|0 +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.7.3.0.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.7.4.0.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.7.5.0.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.7.6.0.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.7.7.0.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.7.8.0.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.7.9.0.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.7.10.0.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.7.11.0.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.7.12.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.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.3.1.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.8.3.2.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.8.3.3.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.8.3.4.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.8.4.1.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.8.4.2.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.8.4.3.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.8.4.4.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.8.5.1.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.8.5.2.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.8.5.3.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.8.5.4.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.8.6.1.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.8.6.2.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.8.6.3.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.8.6.4.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.8.7.1.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.8.7.2.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.8.7.3.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.8.7.4.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.8.8.1.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.8.8.2.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.8.8.3.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.8.8.4.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.8.9.1.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.8.9.2.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.8.9.3.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.8.9.4.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.8.10.1.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.8.10.2.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.8.10.3.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.8.10.4.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.8.11.1.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.8.11.2.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.8.11.3.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.8.11.4.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.8.12.1.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.8.12.2.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.8.12.3.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.8.12.4.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.9.2.0.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.10.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.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.3.1.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.20.3.2.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.20.4.1.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.20.4.2.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.20.5.1.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.20.5.2.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.20.6.1.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.20.6.2.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.20.7.1.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.20.7.2.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.20.8.1.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.20.8.2.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.20.9.1.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.20.9.2.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.20.10.1.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.20.10.2.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.20.11.1.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.20.11.2.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.20.12.1.0|2|2 +1.3.6.1.4.1.2636.3.1.15.1.14.20.12.2.0|2|2 +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.7.3.0.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.7.4.0.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.7.5.0.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.7.6.0.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.7.7.0.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.7.8.0.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.7.9.0.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.7.10.0.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.7.11.0.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.7.12.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.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.3.1.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.8.3.2.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.8.3.3.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.8.3.4.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.8.4.1.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.8.4.2.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.8.4.3.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.8.4.4.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.8.5.1.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.8.5.2.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.8.5.3.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.8.5.4.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.8.6.1.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.8.6.2.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.8.6.3.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.8.6.4.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.8.7.1.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.8.7.2.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.8.7.3.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.8.7.4.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.8.8.1.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.8.8.2.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.8.8.3.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.8.8.4.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.8.9.1.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.8.9.2.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.8.9.3.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.8.9.4.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.8.10.1.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.8.10.2.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.8.10.3.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.8.10.4.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.8.11.1.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.8.11.2.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.8.11.3.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.8.11.4.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.8.12.1.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.8.12.2.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.8.12.3.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.8.12.4.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.9.2.0.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.10.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.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.3.1.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.20.3.2.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.20.4.1.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.20.4.2.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.20.5.1.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.20.5.2.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.20.6.1.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.20.6.2.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.20.7.1.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.20.7.2.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.20.8.1.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.20.8.2.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.20.9.1.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.20.9.2.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.20.10.1.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.20.10.2.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.20.11.1.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.20.11.2.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.20.12.1.0|4|Single Chassis +1.3.6.1.4.1.2636.3.1.15.1.15.20.12.2.0|4|Single Chassis +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.7.3.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.7.4.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.7.5.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.7.6.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.7.7.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.7.8.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.7.9.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.7.10.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.7.11.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.7.12.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.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.3.1.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.8.3.2.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.8.3.3.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.8.3.4.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.8.4.1.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.8.4.2.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.8.4.3.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.8.4.4.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.8.5.1.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.8.5.2.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.8.5.3.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.8.5.4.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.8.6.1.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.8.6.2.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.8.6.3.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.8.6.4.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.8.7.1.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.8.7.2.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.8.7.3.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.8.7.4.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.8.8.1.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.8.8.2.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.8.8.3.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.8.8.4.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.8.9.1.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.8.9.2.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.8.9.3.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.8.9.4.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.8.10.1.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.8.10.2.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.8.10.3.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.8.10.4.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.8.11.1.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.8.11.2.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.8.11.3.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.8.11.4.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.8.12.1.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.8.12.2.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.8.12.3.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.8.12.4.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.9.2.0.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.10.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.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.3.1.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.20.3.2.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.20.4.1.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.20.4.2.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.20.5.1.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.20.5.2.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.20.6.1.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.20.6.2.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.20.7.1.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.20.7.2.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.20.8.1.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.20.8.2.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.20.9.1.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.20.9.2.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.20.10.1.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.20.10.2.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.20.11.1.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.20.11.2.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.20.12.1.0|2|0 +1.3.6.1.4.1.2636.3.1.15.1.16.20.12.2.0|2|0 +1.3.6.1.4.1.2636.3.1.16.0|2|0 +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|0.0 +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|2 +1.3.6.1.4.1.2636.3.7.1.3.1.1.8.116.101.115.116.45.114.112.109.8.105.110.116.101.114.110.101.116|66|22843 +1.3.6.1.4.1.2636.3.7.1.3.1.1.9.116.101.115.116.45.114.112.109.51.9.116.105.109.101.115.116.97.109.112|66|47841 +1.3.6.1.4.1.2636.3.7.1.3.1.2.8.116.101.115.116.45.114.112.109.8.105.110.116.101.114.110.101.116|66|98248 +1.3.6.1.4.1.2636.3.7.1.3.1.2.9.116.101.115.116.45.114.112.109.51.9.116.105.109.101.115.116.97.109.112|66|102647 +1.3.6.1.4.1.2636.3.7.1.3.1.3.8.116.101.115.116.45.114.112.109.8.105.110.116.101.114.110.101.116|66|22843 +1.3.6.1.4.1.2636.3.7.1.3.1.3.9.116.101.115.116.45.114.112.109.51.9.116.105.109.101.115.116.97.109.112|66|47841 +1.3.6.1.4.1.2636.3.7.1.3.1.4.8.116.101.115.116.45.114.112.109.8.105.110.116.101.114.110.101.116|66|26333 +1.3.6.1.4.1.2636.3.7.1.3.1.4.9.116.101.115.116.45.114.112.109.51.9.116.105.109.101.115.116.97.109.112|66|54806 +1.3.6.1.4.1.2636.3.7.1.3.1.5.8.116.101.115.116.45.114.112.109.8.105.110.116.101.114.110.101.116|66|24562 +1.3.6.1.4.1.2636.3.7.1.3.1.5.9.116.101.115.116.45.114.112.109.51.9.116.105.109.101.115.116.97.109.112|66|51324 +1.3.6.1.4.1.2636.3.7.1.3.1.6.8.116.101.115.116.45.114.112.109.8.105.110.116.101.114.110.101.116|66|1278 +1.3.6.1.4.1.2636.3.7.1.3.1.6.9.116.101.115.116.45.114.112.109.51.9.116.105.109.101.115.116.97.109.112|66|3482 +1.3.6.1.4.1.2636.3.7.1.3.1.7.8.116.101.115.116.45.114.112.109.8.105.110.116.101.114.110.101.116|66|0 +1.3.6.1.4.1.2636.3.7.1.3.1.7.9.116.101.115.116.45.114.112.109.51.9.116.105.109.101.115.116.97.109.112|66|0 +1.3.6.1.4.1.2636.3.7.1.3.1.8.8.116.101.115.116.45.114.112.109.8.105.110.116.101.114.110.101.116|66|0 +1.3.6.1.4.1.2636.3.7.1.3.1.8.9.116.101.115.116.45.114.112.109.51.9.116.105.109.101.115.116.97.109.112|66|0 +1.3.6.1.4.1.2636.3.7.1.3.1.9.8.116.101.115.116.45.114.112.109.8.105.110.116.101.114.110.101.116|66|0 +1.3.6.1.4.1.2636.3.7.1.3.1.9.9.116.101.115.116.45.114.112.109.51.9.116.105.109.101.115.116.97.109.112|66|0 +1.3.6.1.4.1.2636.3.7.1.3.1.10.8.116.101.115.116.45.114.112.109.8.105.110.116.101.114.110.101.116|66|0 +1.3.6.1.4.1.2636.3.7.1.3.1.10.9.116.101.115.116.45.114.112.109.51.9.116.105.109.101.115.116.97.109.112|66|0 +1.3.6.1.4.1.2636.3.7.1.3.1.11.8.116.101.115.116.45.114.112.109.8.105.110.116.101.114.110.101.116|66|0 +1.3.6.1.4.1.2636.3.7.1.3.1.11.9.116.101.115.116.45.114.112.109.51.9.116.105.109.101.115.116.97.109.112|66|0 +1.3.6.1.4.1.2636.3.7.1.3.1.12.8.116.101.115.116.45.114.112.109.8.105.110.116.101.114.110.101.116|66|0 +1.3.6.1.4.1.2636.3.7.1.3.1.12.9.116.101.115.116.45.114.112.109.51.9.116.105.109.101.115.116.97.109.112|66|0 +1.3.6.1.4.1.2636.3.7.1.3.1.13.8.116.101.115.116.45.114.112.109.8.105.110.116.101.114.110.101.116|66|0 +1.3.6.1.4.1.2636.3.7.1.3.1.13.9.116.101.115.116.45.114.112.109.51.9.116.105.109.101.115.116.97.109.112|66|0 +1.3.6.1.4.1.2636.3.7.1.3.1.14.8.116.101.115.116.45.114.112.109.8.105.110.116.101.114.110.101.116|66|0 +1.3.6.1.4.1.2636.3.7.1.3.1.14.9.116.101.115.116.45.114.112.109.51.9.116.105.109.101.115.116.97.109.112|66|0 +1.3.6.1.4.1.2636.3.7.1.3.1.15.8.116.101.115.116.45.114.112.109.8.105.110.116.101.114.110.101.116|66|0 +1.3.6.1.4.1.2636.3.7.1.3.1.15.9.116.101.115.116.45.114.112.109.51.9.116.105.109.101.115.116.97.109.112|66|0 +1.3.6.1.4.1.2636.3.7.1.3.1.16.8.116.101.115.116.45.114.112.109.8.105.110.116.101.114.110.101.116|66|0 +1.3.6.1.4.1.2636.3.7.1.3.1.16.9.116.101.115.116.45.114.112.109.51.9.116.105.109.101.115.116.97.109.112|66|0 +1.3.6.1.4.1.2636.3.7.1.3.1.17.8.116.101.115.116.45.114.112.109.8.105.110.116.101.114.110.101.116|66|3490 +1.3.6.1.4.1.2636.3.7.1.3.1.17.9.116.101.115.116.45.114.112.109.51.9.116.105.109.101.115.116.97.109.112|66|6965 +1.3.6.1.4.1.2636.3.7.1.3.1.18.8.116.101.115.116.45.114.112.109.8.105.110.116.101.114.110.101.116|66|0 +1.3.6.1.4.1.2636.3.7.1.3.1.18.9.116.101.115.116.45.114.112.109.51.9.116.105.109.101.115.116.97.109.112|66|0 +1.3.6.1.4.1.2636.3.7.1.3.1.19.8.116.101.115.116.45.114.112.109.8.105.110.116.101.114.110.101.116|66|0 +1.3.6.1.4.1.2636.3.7.1.3.1.19.9.116.101.115.116.45.114.112.109.51.9.116.105.109.101.115.116.97.109.112|66|0 +1.3.6.1.4.1.2636.3.7.1.3.1.20.8.116.101.115.116.45.114.112.109.8.105.110.116.101.114.110.101.116|2|1 +1.3.6.1.4.1.2636.3.7.1.3.1.20.9.116.101.115.116.45.114.112.109.51.9.116.105.109.101.115.116.97.109.112|2|1 +1.3.6.1.4.1.2636.3.7.1.3.1.21.8.116.101.115.116.45.114.112.109.8.105.110.116.101.114.110.101.116|4x|07E505060A1F09002B0000 +1.3.6.1.4.1.2636.3.7.1.3.1.21.9.116.101.115.116.45.114.112.109.51.9.116.105.109.101.115.116.97.109.112|4x|07E505060A1F09002B0000 +1.3.6.1.4.1.2636.3.7.1.3.1.22.8.116.101.115.116.45.114.112.109.8.105.110.116.101.114.110.101.116|4|test-rpm +1.3.6.1.4.1.2636.3.7.1.3.1.22.9.116.101.115.116.45.114.112.109.51.9.116.105.109.101.115.116.97.109.112|4|test-rpm3 +1.3.6.1.4.1.2636.3.7.1.3.1.23.8.116.101.115.116.45.114.112.109.8.105.110.116.101.114.110.101.116|4|internet +1.3.6.1.4.1.2636.3.7.1.3.1.23.9.116.101.115.116.45.114.112.109.51.9.116.105.109.101.115.116.97.109.112|4|timestamp +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.2.2|4|GVA-Backend +1.3.6.1.4.1.2636.3.48.1.3.1.1.2.3|4|GVA-Frontend +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.48.1.3.1.1.3.2|2|10 +1.3.6.1.4.1.2636.3.48.1.3.1.1.3.3|2|11 +1.3.6.1.4.1.2636.3.50.1.2.1.2.8.116.101.115.116.45.114.112.109.8.105.110.116.101.114.110.101.116.1|66|5 +1.3.6.1.4.1.2636.3.50.1.2.1.2.8.116.101.115.116.45.114.112.109.8.105.110.116.101.114.110.101.116.2|66|5 +1.3.6.1.4.1.2636.3.50.1.2.1.2.8.116.101.115.116.45.114.112.109.8.105.110.116.101.114.110.101.116.4|66|5790 +1.3.6.1.4.1.2636.3.50.1.2.1.2.9.116.101.115.116.45.114.112.109.51.9.116.105.109.101.115.116.97.109.112.1|66|1 +1.3.6.1.4.1.2636.3.50.1.2.1.2.9.116.101.115.116.45.114.112.109.51.9.116.105.109.101.115.116.97.109.112.2|66|3 +1.3.6.1.4.1.2636.3.50.1.2.1.2.9.116.101.115.116.45.114.112.109.51.9.116.105.109.101.115.116.97.109.112.4|66|12772 +1.3.6.1.4.1.2636.3.50.1.2.1.3.8.116.101.115.116.45.114.112.109.8.105.110.116.101.114.110.101.116.1|66|5 +1.3.6.1.4.1.2636.3.50.1.2.1.3.8.116.101.115.116.45.114.112.109.8.105.110.116.101.114.110.101.116.2|66|5 +1.3.6.1.4.1.2636.3.50.1.2.1.3.8.116.101.115.116.45.114.112.109.8.105.110.116.101.114.110.101.116.4|66|5643 +1.3.6.1.4.1.2636.3.50.1.2.1.3.9.116.101.115.116.45.114.112.109.51.9.116.105.109.101.115.116.97.109.112.1|66|0 +1.3.6.1.4.1.2636.3.50.1.2.1.3.9.116.101.115.116.45.114.112.109.51.9.116.105.109.101.115.116.97.109.112.2|66|3 +1.3.6.1.4.1.2636.3.50.1.2.1.3.9.116.101.115.116.45.114.112.109.51.9.116.105.109.101.115.116.97.109.112.4|66|11930 +1.3.6.1.4.1.2636.3.50.1.2.1.4.8.116.101.115.116.45.114.112.109.8.105.110.116.101.114.110.101.116.1|66|0 +1.3.6.1.4.1.2636.3.50.1.2.1.4.8.116.101.115.116.45.114.112.109.8.105.110.116.101.114.110.101.116.2|66|0 +1.3.6.1.4.1.2636.3.50.1.2.1.4.8.116.101.115.116.45.114.112.109.8.105.110.116.101.114.110.101.116.4|66|2538860 +1.3.6.1.4.1.2636.3.50.1.2.1.4.9.116.101.115.116.45.114.112.109.51.9.116.105.109.101.115.116.97.109.112.1|66|100000000 +1.3.6.1.4.1.2636.3.50.1.2.1.4.9.116.101.115.116.45.114.112.109.51.9.116.105.109.101.115.116.97.109.112.2|66|0 +1.3.6.1.4.1.2636.3.50.1.2.1.4.9.116.101.115.116.45.114.112.109.51.9.116.105.109.101.115.116.97.109.112.4|66|6592546 +1.3.6.1.4.1.2636.3.50.1.2.1.5.8.116.101.115.116.45.114.112.109.8.105.110.116.101.114.110.101.116.1|4x|07E505060A1F00002B0000 +1.3.6.1.4.1.2636.3.50.1.2.1.5.8.116.101.115.116.45.114.112.109.8.105.110.116.101.114.110.101.116.2|4x|07E505060A1F00002B0000 +1.3.6.1.4.1.2636.3.50.1.2.1.5.8.116.101.115.116.45.114.112.109.8.105.110.116.101.114.110.101.116.4|4x|07E505060A1F00002B0000 +1.3.6.1.4.1.2636.3.50.1.2.1.5.9.116.101.115.116.45.114.112.109.51.9.116.105.109.101.115.116.97.109.112.1|4x|07E505060A1F00002B0000 +1.3.6.1.4.1.2636.3.50.1.2.1.5.9.116.101.115.116.45.114.112.109.51.9.116.105.109.101.115.116.97.109.112.2|4x|07E505060A1F00002B0000 +1.3.6.1.4.1.2636.3.50.1.2.1.5.9.116.101.115.116.45.114.112.109.51.9.116.105.109.101.115.116.97.109.112.4|4x|07E505060A1F00002B0000 +1.3.6.1.4.1.2636.5.1.1.2.1.1.1.1.9.1.10.1.1.2.1.10.1.1.1|4x|AC10000A +1.3.6.1.4.1.2636.5.1.1.2.1.1.1.1.9.1.10.1.1.6.1.10.1.1.5|4x|AC10000B +1.3.6.1.4.1.2636.5.1.1.2.1.1.1.2.9.1.10.1.1.2.1.10.1.1.1|2|6 +1.3.6.1.4.1.2636.5.1.1.2.1.1.1.2.9.1.10.1.1.6.1.10.1.1.5|2|6 +1.3.6.1.4.1.2636.5.1.1.2.1.1.1.3.9.1.10.1.1.2.1.10.1.1.1|2|2 +1.3.6.1.4.1.2636.5.1.1.2.1.1.1.3.9.1.10.1.1.6.1.10.1.1.5|2|2 +1.3.6.1.4.1.2636.5.1.1.2.1.1.1.4.9.1.10.1.1.2.1.10.1.1.1|66|4 +1.3.6.1.4.1.2636.5.1.1.2.1.1.1.4.9.1.10.1.1.6.1.10.1.1.5|66|4 +1.3.6.1.4.1.2636.5.1.1.2.1.1.1.5.9.1.10.1.1.2.1.10.1.1.1|66|0 +1.3.6.1.4.1.2636.5.1.1.2.1.1.1.5.9.1.10.1.1.6.1.10.1.1.5|66|0 +1.3.6.1.4.1.2636.5.1.1.2.1.1.1.6.9.1.10.1.1.2.1.10.1.1.1|2|1 +1.3.6.1.4.1.2636.5.1.1.2.1.1.1.6.9.1.10.1.1.6.1.10.1.1.5|2|1 +1.3.6.1.4.1.2636.5.1.1.2.1.1.1.7.9.1.10.1.1.2.1.10.1.1.1|4x|0A010102 +1.3.6.1.4.1.2636.5.1.1.2.1.1.1.7.9.1.10.1.1.6.1.10.1.1.5|4x|0A010106 +1.3.6.1.4.1.2636.5.1.1.2.1.1.1.8.9.1.10.1.1.2.1.10.1.1.1|66|59391 +1.3.6.1.4.1.2636.5.1.1.2.1.1.1.8.9.1.10.1.1.6.1.10.1.1.5|66|58608 +1.3.6.1.4.1.2636.5.1.1.2.1.1.1.9.9.1.10.1.1.2.1.10.1.1.1|66|64999 +1.3.6.1.4.1.2636.5.1.1.2.1.1.1.9.9.1.10.1.1.6.1.10.1.1.5|66|64999 +1.3.6.1.4.1.2636.5.1.1.2.1.1.1.10.9.1.10.1.1.2.1.10.1.1.1|2|1 +1.3.6.1.4.1.2636.5.1.1.2.1.1.1.10.9.1.10.1.1.6.1.10.1.1.5|2|1 +1.3.6.1.4.1.2636.5.1.1.2.1.1.1.11.9.1.10.1.1.2.1.10.1.1.1|4x|0A010101 +1.3.6.1.4.1.2636.5.1.1.2.1.1.1.11.9.1.10.1.1.6.1.10.1.1.5|4x|0A010105 +1.3.6.1.4.1.2636.5.1.1.2.1.1.1.12.9.1.10.1.1.2.1.10.1.1.1|66|179 +1.3.6.1.4.1.2636.5.1.1.2.1.1.1.12.9.1.10.1.1.6.1.10.1.1.5|66|179 +1.3.6.1.4.1.2636.5.1.1.2.1.1.1.13.9.1.10.1.1.2.1.10.1.1.1|66|62371 +1.3.6.1.4.1.2636.5.1.1.2.1.1.1.13.9.1.10.1.1.6.1.10.1.1.5|66|62371 +1.3.6.1.4.1.2636.5.1.1.2.1.1.1.14.9.1.10.1.1.2.1.10.1.1.1|66|0 +1.3.6.1.4.1.2636.5.1.1.2.1.1.1.14.9.1.10.1.1.6.1.10.1.1.5|66|1 +1.3.6.1.4.1.2636.5.1.1.2.1.1.1.15.9.1.10.1.1.2.1.10.1.1.1|66|9 +1.3.6.1.4.1.2636.5.1.1.2.1.1.1.15.9.1.10.1.1.6.1.10.1.1.5|66|9 +1.3.6.1.4.1.2636.5.1.1.2.2.1.1.1.9.1.10.1.1.2.1.10.1.1.1|4x|0000 +1.3.6.1.4.1.2636.5.1.1.2.2.1.1.1.9.1.10.1.1.6.1.10.1.1.5|4x|0000 +1.3.6.1.4.1.2636.5.1.1.2.2.1.1.5.9.1.10.1.1.2.1.10.1.1.1|4| +1.3.6.1.4.1.2636.5.1.1.2.2.1.1.5.9.1.10.1.1.6.1.10.1.1.5|4| +1.3.6.1.4.1.2636.5.1.1.2.4.1.1.1.9.1.10.1.1.2.1.10.1.1.1|66|12859 +1.3.6.1.4.1.2636.5.1.1.2.4.1.1.1.9.1.10.1.1.6.1.10.1.1.5|66|12855 +1.3.6.1.4.1.2636.5.1.1.2.4.1.1.2.9.1.10.1.1.2.1.10.1.1.1|66|12759 +1.3.6.1.4.1.2636.5.1.1.2.4.1.1.2.9.1.10.1.1.6.1.10.1.1.5|66|12757 +1.3.6.1.4.1.2636.5.1.1.2.6.1.1.1.9.1.10.1.1.2.1.10.1.1.1|65|2 +1.3.6.1.4.1.2636.5.1.1.2.6.1.1.1.9.1.10.1.1.6.1.10.1.1.5|65|2 +1.3.6.1.4.1.2636.5.1.1.2.6.1.1.2.9.1.10.1.1.2.1.10.1.1.1|65|2 +1.3.6.1.4.1.2636.5.1.1.2.6.1.1.2.9.1.10.1.1.6.1.10.1.1.5|65|2 +1.3.6.1.4.1.2636.5.1.1.2.6.1.1.3.9.1.10.1.1.2.1.10.1.1.1|65|468 +1.3.6.1.4.1.2636.5.1.1.2.6.1.1.3.9.1.10.1.1.6.1.10.1.1.5|65|470 +1.3.6.1.4.1.2636.5.1.1.2.6.1.1.4.9.1.10.1.1.2.1.10.1.1.1|65|478 +1.3.6.1.4.1.2636.5.1.1.2.6.1.1.4.9.1.10.1.1.6.1.10.1.1.5|65|477 +1.3.6.1.4.1.2636.5.1.1.2.6.2.1.1.0.1.1|2|1 +1.3.6.1.4.1.2636.5.1.1.2.6.2.1.1.1.1.1|2|1 +1.3.6.1.4.1.2636.5.1.1.2.6.2.1.2.0.1.1|66|1 +1.3.6.1.4.1.2636.5.1.1.2.6.2.1.2.1.1.1|66|1 +1.3.6.1.4.1.2636.5.1.1.2.6.2.1.7.0.1.1|66|1 +1.3.6.1.4.1.2636.5.1.1.2.6.2.1.7.1.1.1|66|1 +1.3.6.1.4.1.2636.5.1.1.2.6.2.1.8.0.1.1|66|1 +1.3.6.1.4.1.2636.5.1.1.2.6.2.1.8.1.1.1|66|1 +1.3.6.1.4.1.2636.5.1.1.2.6.2.1.9.0.1.1|66|0 +1.3.6.1.4.1.2636.5.1.1.2.6.2.1.9.1.1.1|66|0 +1.3.6.1.4.1.2636.5.1.1.2.6.2.1.10.0.1.1|66|2 +1.3.6.1.4.1.2636.5.1.1.2.6.2.1.10.1.1.1|66|2 +1.3.6.1.4.1.2636.5.1.1.2.6.2.1.11.0.1.1|66|1 +1.3.6.1.4.1.2636.5.1.1.2.6.2.1.11.1.1.1|66|1 +1.3.6.1.6.3.10.2.1.3.0|2|12891