mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
Add Junos VirtuallChassis ports polling (#9879)
* Update ports.inc.php * Create junos-vcp.inc.php * Fix some formatting errors in junos-vcp.inc.php * Update junos_ex.snmprec * Update junos_ex.json * Update tests/data/junos_ex.jso * Rollback junos_ex data set * Update ports.inc.php * Update junos-vcp.inc.php~ * Update tests/snmpsim/junos.snmprec * Generate new .json files * Update includes/polling/ports.inc.php * Rollback tests/data/junos_ex.json * Update junos.snmprec * Update junos.snmprec * Use str_pad in junos-vcp.inc.php
This commit is contained in:
@@ -316,6 +316,10 @@ if ($device['os'] == 'infinera-groove') {
|
||||
require_once 'ports/infinera-groove.inc.php';
|
||||
}
|
||||
|
||||
if ($device['os'] == 'junos') {
|
||||
require_once 'ports/junos-vcp.inc.php';
|
||||
}
|
||||
|
||||
if ($config['enable_ports_adsl']) {
|
||||
$device['xdsl_count'] = dbFetchCell("SELECT COUNT(*) FROM `ports` WHERE `device_id` = ? AND `ifType` in ('adsl','vdsl')", [$device['device_id']]);
|
||||
}
|
||||
|
60
includes/polling/ports/junos-vcp.inc.php
Normal file
60
includes/polling/ports/junos-vcp.inc.php
Normal file
@@ -0,0 +1,60 @@
|
||||
<?php
|
||||
/**
|
||||
* junos-vcp.inc.php
|
||||
*
|
||||
* LibreNMS Junos VirtualChassis Ports include
|
||||
*
|
||||
* 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.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
* @package LibreNMS
|
||||
* @link http://librenms.org
|
||||
* @copyright 2019 Ruslan Magomedov
|
||||
* @author Ruslan Magomedov <rmagomedov.iam@yahoo.com>
|
||||
*/
|
||||
|
||||
$junos_vcp_stats = snmpwalk_cache_oid($device, 'jnxVirtualChassisPortTable', array(), 'JUNIPER-VIRTUALCHASSIS-MIB');
|
||||
|
||||
d_echo($junos_vcp_stats);
|
||||
|
||||
foreach ($junos_vcp_stats as $index => $vcp_stats) {
|
||||
// VirtuallChassis MIB uses string indexes so dummy integer indexes for
|
||||
// VC ports need to be created.
|
||||
|
||||
// Check if index string has expected format and decompose it to form
|
||||
// dummy integer index of it.
|
||||
|
||||
if (preg_match('#^(\d{1,2})\.vcp-255/(\d)/(\d{1,2})$#', $index, $matches)) {
|
||||
$fpc = str_pad($matches[1], 2, '0', STR_PAD_LEFT);
|
||||
$pic = $matches[2];
|
||||
$port = str_pad($matches[3], 2, '0', STR_PAD_LEFT);
|
||||
|
||||
// The concatenation below starts VC port dummy indexes from 1000000
|
||||
// to protect against overlapping with IF-MIB.
|
||||
|
||||
$nms_index = '100' . $fpc . $pic . $port;
|
||||
|
||||
$port_stats[$nms_index]['ifDescr'] = "fpc$index";
|
||||
$port_stats[$nms_index]['ifType'] = "vcp";
|
||||
$port_stats[$nms_index]['ifName'] = "fpc$index";
|
||||
$port_stats[$nms_index]['ifHCInOctets'] = $vcp_stats['jnxVirtualChassisPortInOctets'];
|
||||
$port_stats[$nms_index]['ifHCOutOctets'] = $vcp_stats['jnxVirtualChassisPortOutOctets'];
|
||||
$port_stats[$nms_index]['ifHCInUcastPkts'] = $vcp_stats['jnxVirtualChassisPortInPkts'];
|
||||
$port_stats[$nms_index]['ifHCOutUcastPkts'] = $vcp_stats['jnxVirtualChassisPortOutPkts'];
|
||||
$port_stats[$nms_index]['ifInMulticastPkts'] = $vcp_stats['jnxVirtualChassisPortInMcasts'];
|
||||
$port_stats[$nms_index]['ifOutMulticastPkts'] = $vcp_stats['jnxVirtualChassisPortOutMcasts'];
|
||||
$port_stats[$nms_index]['ifInErrors'] = $vcp_stats['jnxVirtualChassisPortInCRCAlignErrors'];
|
||||
$port_stats[$nms_index]['ifAdminStatus'] = $vcp_stats['jnxVirtualChassisPortAdminStatus'];
|
||||
$port_stats[$nms_index]['ifOperStatus'] = $vcp_stats['jnxVirtualChassisPortOperStatus'];
|
||||
}
|
||||
}
|
16990
tests/data/junos.json
16990
tests/data/junos.json
File diff suppressed because it is too large
Load Diff
@@ -538,4 +538,132 @@
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.1.1.8.1|4|ex4200-24t
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.1.1.9.0|4|
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.1.1.9.1|4|
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.3.0.12.118.99.112.45.50.53.53.47.48.47.53.48|2|1
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.3.0.12.118.99.112.45.50.53.53.47.48.47.53.51|2|1
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.3.1.12.118.99.112.45.50.53.53.47.48.47.53.48|2|1
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.3.1.12.118.99.112.45.50.53.53.47.48.47.53.51|2|1
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.3.2.12.118.99.112.45.50.53.53.47.48.47.52.56|2|1
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.3.2.12.118.99.112.45.50.53.53.47.48.47.53.51|2|1
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.3.3.12.118.99.112.45.50.53.53.47.48.47.52.56|2|1
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.3.3.12.118.99.112.45.50.53.53.47.48.47.53.51|2|1
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.4.0.12.118.99.112.45.50.53.53.47.48.47.53.48|2|1
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.4.0.12.118.99.112.45.50.53.53.47.48.47.53.51|2|1
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.4.1.12.118.99.112.45.50.53.53.47.48.47.53.48|2|1
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.4.1.12.118.99.112.45.50.53.53.47.48.47.53.51|2|1
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.4.2.12.118.99.112.45.50.53.53.47.48.47.52.56|2|1
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.4.2.12.118.99.112.45.50.53.53.47.48.47.53.51|2|1
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.4.3.12.118.99.112.45.50.53.53.47.48.47.52.56|2|1
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.4.3.12.118.99.112.45.50.53.53.47.48.47.53.51|2|1
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.5.0.12.118.99.112.45.50.53.53.47.48.47.53.48|70|11250918369843
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.5.0.12.118.99.112.45.50.53.53.47.48.47.53.51|70|15368677457558
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.5.1.12.118.99.112.45.50.53.53.47.48.47.53.48|70|10643043232564
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.5.1.12.118.99.112.45.50.53.53.47.48.47.53.51|70|22140880290624
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.5.2.12.118.99.112.45.50.53.53.47.48.47.52.56|70|12619387315461
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.5.2.12.118.99.112.45.50.53.53.47.48.47.53.51|70|10759240395932
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.5.3.12.118.99.112.45.50.53.53.47.48.47.52.56|70|8495324073542
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.5.3.12.118.99.112.45.50.53.53.47.48.47.53.51|70|13990391873082
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.6.0.12.118.99.112.45.50.53.53.47.48.47.53.48|70|12619387548934
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.6.0.12.118.99.112.45.50.53.53.47.48.47.53.51|70|22140880940631
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.6.1.12.118.99.112.45.50.53.53.47.48.47.53.48|70|8495324169545
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.6.1.12.118.99.112.45.50.53.53.47.48.47.53.51|70|15368676765499
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.6.2.12.118.99.112.45.50.53.53.47.48.47.52.56|70|11250917702596
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.6.2.12.118.99.112.45.50.53.53.47.48.47.53.51|70|13990391191882
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.6.3.12.118.99.112.45.50.53.53.47.48.47.52.56|70|10643043162106
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.6.3.12.118.99.112.45.50.53.53.47.48.47.53.51|70|10759241768947
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.7.0.12.118.99.112.45.50.53.53.47.48.47.53.48|70|11185496873686234
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.7.0.12.118.99.112.45.50.53.53.47.48.47.53.51|70|17256075942584119
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.7.1.12.118.99.112.45.50.53.53.47.48.47.53.48|70|10388524787612353
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.7.1.12.118.99.112.45.50.53.53.47.48.47.53.51|70|25940633263254597
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.7.2.12.118.99.112.45.50.53.53.47.48.47.52.56|70|16252803781238831
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.7.2.12.118.99.112.45.50.53.53.47.48.47.53.51|70|12062566539340741
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.7.3.12.118.99.112.45.50.53.53.47.48.47.52.56|70|10621080788048970
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.7.3.12.118.99.112.45.50.53.53.47.48.47.53.51|70|16104336181666093
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.8.0.12.118.99.112.45.50.53.53.47.48.47.53.48|70|16252804117381889
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.8.0.12.118.99.112.45.50.53.53.47.48.47.53.51|70|25940633949187166
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.8.1.12.118.99.112.45.50.53.53.47.48.47.53.48|70|10621080914545614
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.8.1.12.118.99.112.45.50.53.53.47.48.47.53.51|70|17256075013237372
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.8.2.12.118.99.112.45.50.53.53.47.48.47.52.56|70|11185496570320552
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.8.2.12.118.99.112.45.50.53.53.47.48.47.53.51|70|16104335526644375
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.8.3.12.118.99.112.45.50.53.53.47.48.47.52.56|70|10388524723431530
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.8.3.12.118.99.112.45.50.53.53.47.48.47.53.51|70|12062568315902614
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.9.0.12.118.99.112.45.50.53.53.47.48.47.53.48|70|0
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.9.0.12.118.99.112.45.50.53.53.47.48.47.53.51|70|0
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.9.1.12.118.99.112.45.50.53.53.47.48.47.53.48|70|0
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.9.1.12.118.99.112.45.50.53.53.47.48.47.53.51|70|0
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.9.2.12.118.99.112.45.50.53.53.47.48.47.52.56|70|0
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.9.2.12.118.99.112.45.50.53.53.47.48.47.53.51|70|0
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.9.3.12.118.99.112.45.50.53.53.47.48.47.52.56|70|0
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.9.3.12.118.99.112.45.50.53.53.47.48.47.53.51|70|0
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.10.0.12.118.99.112.45.50.53.53.47.48.47.53.48|70|0
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.10.0.12.118.99.112.45.50.53.53.47.48.47.53.51|70|0
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.10.1.12.118.99.112.45.50.53.53.47.48.47.53.48|70|0
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.10.1.12.118.99.112.45.50.53.53.47.48.47.53.51|70|0
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.10.2.12.118.99.112.45.50.53.53.47.48.47.52.56|70|0
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.10.2.12.118.99.112.45.50.53.53.47.48.47.53.51|70|0
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.10.3.12.118.99.112.45.50.53.53.47.48.47.52.56|70|0
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.10.3.12.118.99.112.45.50.53.53.47.48.47.53.51|70|0
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.11.0.12.118.99.112.45.50.53.53.47.48.47.53.48|70|106563
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.11.0.12.118.99.112.45.50.53.53.47.48.47.53.51|70|420704
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.11.1.12.118.99.112.45.50.53.53.47.48.47.53.48|70|198175
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.11.1.12.118.99.112.45.50.53.53.47.48.47.53.51|70|442507
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.11.2.12.118.99.112.45.50.53.53.47.48.47.52.56|70|30392
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.11.2.12.118.99.112.45.50.53.53.47.48.47.53.51|70|281426
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.11.3.12.118.99.112.45.50.53.53.47.48.47.52.56|70|258788
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.11.3.12.118.99.112.45.50.53.53.47.48.47.53.51|70|158881
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.12.0.12.118.99.112.45.50.53.53.47.48.47.53.48|70|34895
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.12.0.12.118.99.112.45.50.53.53.47.48.47.53.51|70|451640
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.12.1.12.118.99.112.45.50.53.53.47.48.47.53.48|70|294767
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.12.1.12.118.99.112.45.50.53.53.47.48.47.53.51|70|469415
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.12.2.12.118.99.112.45.50.53.53.47.48.47.52.56|70|93894
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.12.2.12.118.99.112.45.50.53.53.47.48.47.53.51|70|150739
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.12.3.12.118.99.112.45.50.53.53.47.48.47.52.56|70|176292
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.12.3.12.118.99.112.45.50.53.53.47.48.47.53.51|70|296692
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.13.0.12.118.99.112.45.50.53.53.47.48.47.53.48|70|59345439
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.13.0.12.118.99.112.45.50.53.53.47.48.47.53.51|70|549705157
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.13.1.12.118.99.112.45.50.53.53.47.48.47.53.48|70|177459859
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.13.1.12.118.99.112.45.50.53.53.47.48.47.53.51|70|469459237
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.13.2.12.118.99.112.45.50.53.53.47.48.47.52.56|70|43192642
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.13.2.12.118.99.112.45.50.53.53.47.48.47.53.51|70|371865118
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.13.3.12.118.99.112.45.50.53.53.47.48.47.52.56|70|374819831
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.13.3.12.118.99.112.45.50.53.53.47.48.47.53.51|70|151058999
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.14.0.12.118.99.112.45.50.53.53.47.48.47.53.48|70|49560236
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.14.0.12.118.99.112.45.50.53.53.47.48.47.53.51|70|490411966
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.14.1.12.118.99.112.45.50.53.53.47.48.47.53.48|70|423173476
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.14.1.12.118.99.112.45.50.53.53.47.48.47.53.51|70|609030995
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.14.2.12.118.99.112.45.50.53.53.47.48.47.52.56|70|44703868
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.14.2.12.118.99.112.45.50.53.53.47.48.47.53.51|70|142084842
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.14.3.12.118.99.112.45.50.53.53.47.48.47.52.56|70|151844601
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.14.3.12.118.99.112.45.50.53.53.47.48.47.53.51|70|389880422
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.15.0.12.118.99.112.45.50.53.53.47.48.47.53.48|70|1
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.15.0.12.118.99.112.45.50.53.53.47.48.47.53.51|70|1
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.15.1.12.118.99.112.45.50.53.53.47.48.47.53.48|70|1
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.15.1.12.118.99.112.45.50.53.53.47.48.47.53.51|70|1
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.15.2.12.118.99.112.45.50.53.53.47.48.47.52.56|70|1
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.15.2.12.118.99.112.45.50.53.53.47.48.47.53.51|70|1
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.15.3.12.118.99.112.45.50.53.53.47.48.47.52.56|70|5
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.15.3.12.118.99.112.45.50.53.53.47.48.47.53.51|70|1
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.16.0.12.118.99.112.45.50.53.53.47.48.47.53.48|70|0
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.16.0.12.118.99.112.45.50.53.53.47.48.47.53.51|70|0
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.16.1.12.118.99.112.45.50.53.53.47.48.47.53.48|70|0
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.16.1.12.118.99.112.45.50.53.53.47.48.47.53.51|70|0
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.16.2.12.118.99.112.45.50.53.53.47.48.47.52.56|70|0
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.16.2.12.118.99.112.45.50.53.53.47.48.47.53.51|70|0
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.16.3.12.118.99.112.45.50.53.53.47.48.47.52.56|70|0
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.16.3.12.118.99.112.45.50.53.53.47.48.47.53.51|70|0
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.17.0.12.118.99.112.45.50.53.53.47.48.47.53.48|70|0
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.17.0.12.118.99.112.45.50.53.53.47.48.47.53.51|70|0
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.17.1.12.118.99.112.45.50.53.53.47.48.47.53.48|70|0
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.17.1.12.118.99.112.45.50.53.53.47.48.47.53.51|70|0
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.17.2.12.118.99.112.45.50.53.53.47.48.47.52.56|70|0
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.17.2.12.118.99.112.45.50.53.53.47.48.47.53.51|70|0
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.17.3.12.118.99.112.45.50.53.53.47.48.47.52.56|70|0
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.17.3.12.118.99.112.45.50.53.53.47.48.47.53.51|70|0
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.18.0.12.118.99.112.45.50.53.53.47.48.47.53.48|70|0
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.18.0.12.118.99.112.45.50.53.53.47.48.47.53.51|70|0
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.18.1.12.118.99.112.45.50.53.53.47.48.47.53.48|70|0
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.18.1.12.118.99.112.45.50.53.53.47.48.47.53.51|70|0
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.18.2.12.118.99.112.45.50.53.53.47.48.47.52.56|70|0
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.18.2.12.118.99.112.45.50.53.53.47.48.47.53.51|70|0
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.18.3.12.118.99.112.45.50.53.53.47.48.47.52.56|70|0
|
||||
1.3.6.1.4.1.2636.3.40.1.4.1.2.1.18.3.12.118.99.112.45.50.53.53.47.48.47.53.51|70|0
|
||||
1.3.6.1.6.3.10.2.1.3.0|2|3979915
|
||||
|
Reference in New Issue
Block a user