mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
Improve legacy Allied Telesis hardware support (#8071)
* devices: Improved Legacy Allied Telesis hardware support #8071 This patch covers: Improved SNMPrec test coverage for Allied telesis devices allied.yaml - Increased device exception OID list. - This list of devices are running RADLAN OS, and should not be triggered by allied.yaml - Minor bug fixes allied.inc.php - Added updated support for Alliedware devices - Version - Features - Hardware - Serial - Added support for Allied Telesis Websmart switches - Version - Hardware - Added support for Alliedware Plus version 2 OS devices - Hardware - Version - Serial - Simplified polling to use snmp_get_multi_oid - Minor bug fixes radlan.yaml - Updated device support for 8000S and 8000GS. - Specified device object IDs - Added an exclusion also for OIDs in allied.yaml - Changed icon and group to alliedtelesis radlan.inc.php - Updated support for devices identifying as radlan OS. awplus.yaml - Added comment to remove the sysObjectID_except list. - Minor bug fixes * added json test data to be used for unit test * re-saved allied websmart test data
This commit is contained in:
@@ -9,7 +9,11 @@ over:
|
||||
discovery:
|
||||
-
|
||||
sysObjectID: .1.3.6.1.4.1.207.
|
||||
sysObjectID_except: .1.3.6.1.4.1.207.1.4.126 #exclude ...207.1.4.126 for ATI 8000S/8000GS which identify as "radlan" OS.
|
||||
sysObjectID_except:
|
||||
- .1.3.6.1.4.1.207.1.4.126 #exclude the following ATI 8000S/8000GS which identify as "radlan" OS.
|
||||
- .1.3.6.1.4.1.207.1.4.127
|
||||
- .1.3.6.1.4.1.207.1.4.144
|
||||
- .1.3.6.1.4.1.207.1.4.145
|
||||
sysDescr_except: 'AW+'
|
||||
mib_dir:
|
||||
- allied
|
||||
- allied
|
||||
@@ -12,7 +12,6 @@ over:
|
||||
discovery:
|
||||
-
|
||||
sysObjectID: .1.3.6.1.4.1.207.
|
||||
sysObjectID_except: .1.3.6.1.4.1.207.1.4.126 #exclude ...207.1.4.126 for ATI 8000S/8000GS which identify as "radlan" OS.
|
||||
sysDescr: 'AW+'
|
||||
mib_dir:
|
||||
- awplus
|
||||
|
||||
@@ -2,10 +2,19 @@ os: radlan
|
||||
text: Radlan
|
||||
ifname: 1
|
||||
type: network
|
||||
icon: alliedtelesis
|
||||
group: alliedtelesis
|
||||
over:
|
||||
- { graph: device_bits, text: 'Device Traffic' }
|
||||
- { graph: device_processor, text: 'CPU Usage' }
|
||||
discovery:
|
||||
- sysDescr:
|
||||
- AT-8000
|
||||
- sysObjectID:
|
||||
- .1.3.6.1.4.1.207.1.4.127
|
||||
- .1.3.6.1.4.1.207.1.4.128
|
||||
- .1.3.6.1.4.1.207.1.4.145
|
||||
- .1.3.6.1.4.1.207.1.4.144
|
||||
|
||||
mib_dir:
|
||||
- radlan
|
||||
@@ -1,44 +1,74 @@
|
||||
<?php
|
||||
|
||||
//Configuration file for Allied Telesis/Telesyn products NOT running Alliedware Plus 5.x.x.
|
||||
//See awplus.inc.php for Alliedware Plus 5.x.x OS configuration.
|
||||
//OS: AT-S39
|
||||
//Legacy products: at8024, at8024GB, at8024M, at8016F, at8026FC
|
||||
$data = snmp_get_multi_oid($device, 'atiswitchProductType.0 atiswitchSwVersion.0 atiswitchSw.0', '-OsvQU', 'AtiSwitch-MIB');
|
||||
|
||||
|
||||
$hardware = snmp_get($device, 'atiswitchProductType.0', '-OsvQU', '+AtiSwitch-MIB');
|
||||
$version = snmp_get($device, 'atiswitchSwVersion.0', '-OsvQU', '+AtiSwitch-MIB');
|
||||
$software = snmp_get($device, 'atiswitchSw.0', '-OsvQU', '+AtiSwitch-MIB');
|
||||
$hardware = $data['atiswitchProductType.0'];
|
||||
$version = $data['atiswitchSwVersion.0'];
|
||||
$software = $data['atiswitchSw.0'];
|
||||
|
||||
if ($software && $version) {
|
||||
$version = $software.' '.$version;
|
||||
}
|
||||
|
||||
// sysDescr.0 = STRING: "Allied Telesis AT-8624T/2M version 2.9.1-13 11-Dec-2007"
|
||||
// sysDescr.0 = STRING: "Allied Telesyn Ethernet Switch AT-8012M"
|
||||
// sysDescr.0 = STRING: "ATI AT-8000S" <------------------------------------- RADLAN ********
|
||||
// sysDescr.0 = STRING: "Allied Telesyn AT-8624T/2M version 2.8.1-02 05-Sep-2006"
|
||||
//OS: AT-S41
|
||||
// sysDescr.0 = STRING: "AT-8126XL, AT-S21 version 1.4.2"
|
||||
// AtiL2-MIB::atiL2SwProduct.0 = STRING: "AT-8326GB"
|
||||
// AtiL2-MIB::atiL2SwVersion.0 = STRING: "AT-S41 v1.1.6 "
|
||||
if (!$hardware && !$version && !$features) {
|
||||
$hardware = snmp_get($device, 'atiL2SwProduct.0', '-OsvQU', '+AtiL2-MIB');
|
||||
$version = snmp_get($device, 'atiL2SwVersion.0', '-OsvQU', '+AtiL2-MIB');
|
||||
if (!$hardware && !$version && !$software) {
|
||||
$hardware = snmp_get($device, 'atiL2SwProduct.0', '-OsvQU', 'AtiL2-MIB');
|
||||
$version = snmp_get($device, 'atiL2SwVersion.0', '-OsvQU', 'AtiL2-MIB');
|
||||
}
|
||||
|
||||
// Allied Telesyn AT-8948 version 2.7.4-02 22-Aug-2005
|
||||
list($a,$b,$c,$d,$e,$f) = explode(' ', $device['sysDescr']);
|
||||
//Alliedware Plus 2.x.x.x | Legacy products: 8100S
|
||||
//SNMPv2-MIB::sysDescr.0 = STRING: AlliedWare Plus (TM) 2.2.3.0
|
||||
|
||||
if (!$hardware && !$version && !$features) {
|
||||
if (!$hardware && !$version) {
|
||||
$data = snmp_get_multi_oid($device, '.1.3.6.1.4.1.207.8.17.1.3.1.6.1 .1.3.6.1.4.1.207.8.17.1.3.1.5.1 .1.3.6.1.4.1.207.8.17.1.3.1.8.1');
|
||||
|
||||
$hardware = $data['.1.3.6.1.4.1.207.8.17.1.3.1.6.1'];
|
||||
$version = $data['.1.3.6.1.4.1.207.8.17.1.3.1.5.1'];
|
||||
$serial = $data['.1.3.6.1.4.1.207.8.17.1.3.1.8.1'];
|
||||
}
|
||||
|
||||
//Gets OS outputting "Alliedware Plus" instead of just Alliedware.
|
||||
if ($hardware && $version) {
|
||||
$version = 'Plus ' .$version;
|
||||
}
|
||||
|
||||
/*Products running Alliedware OS
|
||||
sysDescr.0 = STRING: "Allied Telesyn AT-8948 version 2.7.4-02 22-Aug-2005"
|
||||
sysDescr.0 = STRING: "Allied Telesis AT-8624T/2M version 2.9.1-13 11-Dec-2007"
|
||||
Use sysDescr to get Hardware, SW version, and Serial*/
|
||||
list($a,$b,$c,$d,$e,$f) = explode(' ', $device['sysDescr']);
|
||||
if (!$hardware && !$version) {
|
||||
if ($a == 'Allied' && $d == 'version') {
|
||||
$version = $e;
|
||||
$features = $f;
|
||||
$hardware = $c;
|
||||
$serial = snmp_get($device, 'arBoardSerialNumber.1', '-OsvQU', 'AT-INTERFACES-MIB');
|
||||
|
||||
// sysDescr.0 = STRING: "CentreCOM 9924Ts, version 3.2.1-04, built 08-Sep-2009"
|
||||
} elseif ($a == 'CentreCOM' && $c == 'version') {
|
||||
$version = $d;
|
||||
$features = $f;
|
||||
$hardware = snmp_get($device, 'arBoardName.1', '-OsvQU', 'AT-INTERFACES-MIB');
|
||||
$serial = snmp_get($device, 'arBoardSerialNumber.1', '-OsvQU', 'AT-INTERFACES-MIB');
|
||||
|
||||
//AT-GS950/24 Gigabit Ethernet WebSmart Switch
|
||||
//Also requires system description as no OIDs provide $hardware
|
||||
} elseif ($d == 'WebSmart' && $e == 'Switch') {
|
||||
$version = snmp_get($device, 'swhub.167.81.1.3.0', '-OsvQU', 'AtiL2-MIB');
|
||||
$version = $d.' '.$version;
|
||||
$hardware = $a;
|
||||
}
|
||||
}
|
||||
|
||||
// sysDescr.0 = STRING: "Allied Telesyn Ethernet Switch AT-8012M"
|
||||
if ($a == 'Allied' && $d == 'Switch') {
|
||||
$hardware = $e;
|
||||
}
|
||||
|
||||
$version = str_replace('"', '', $version);
|
||||
$version = str_replace(['"', ','], '', $version);
|
||||
$features = str_replace('"', '', $features);
|
||||
$hardware = str_replace('"', '', $hardware);
|
||||
|
||||
@@ -1,9 +1,12 @@
|
||||
<?php
|
||||
|
||||
$version = snmp_get($device, 'rndBrgVersion.0', '-Ovq', 'RADLAN-MIB');
|
||||
$hardware = str_replace('ATI', 'Allied Telesis', $device['sysDescr']);
|
||||
// sysDescr.0 = STRING: "ATI AT-8000S"
|
||||
// sysDescr.0 = STRING: 48-port 10/100/1000 Ethernet Switch
|
||||
// sysDescr.0 = STRING: 24-port 10/100/1000 Ethernet Switch with PoE
|
||||
|
||||
$features = snmp_get($device, 'rndBaseBootVersion.00', '-Ovq', 'RADLAN-MIB');
|
||||
$hardware = snmp_getnext($device, 'entPhysicalDescr.64', '-OsvQU', 'ENTITY-MIB');
|
||||
$version = snmp_get($device, 'rndBrgVersion.0', '-OsvQU', 'RADLAN-MIB');
|
||||
$serial = snmp_getnext($device, 'entPhysicalSerialNum.64', '-OsvQU', 'ENTITY-MIB');
|
||||
|
||||
$version = str_replace('"', '', $version);
|
||||
$features = str_replace('"', '', $features);
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
+14752
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,775 @@
|
||||
1.3.6.1.2.1.1.1.0|4|AlliedWare Plus (TM) 2.2.3.0
|
||||
1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.207.1.4.173
|
||||
1.3.6.1.2.1.2.2.1.2.1|4|port3.0.1
|
||||
1.3.6.1.2.1.2.2.1.2.2|4|port3.0.2
|
||||
1.3.6.1.2.1.2.2.1.2.3|4|port3.0.3
|
||||
1.3.6.1.2.1.2.2.1.2.4|4|port3.0.4
|
||||
1.3.6.1.2.1.2.2.1.2.5|4|port3.0.5
|
||||
1.3.6.1.2.1.2.2.1.2.6|4|port3.0.6
|
||||
1.3.6.1.2.1.2.2.1.2.7|4|port3.0.7
|
||||
1.3.6.1.2.1.2.2.1.2.8|4|port3.0.8
|
||||
1.3.6.1.2.1.2.2.1.2.9|4|port3.0.9
|
||||
1.3.6.1.2.1.2.2.1.2.10|4|port3.0.10
|
||||
1.3.6.1.2.1.2.2.1.2.11|4|port3.0.11
|
||||
1.3.6.1.2.1.2.2.1.2.12|4|port3.0.12
|
||||
1.3.6.1.2.1.2.2.1.2.13|4|port3.0.13
|
||||
1.3.6.1.2.1.2.2.1.2.14|4|port3.0.14
|
||||
1.3.6.1.2.1.2.2.1.2.15|4|port3.0.15
|
||||
1.3.6.1.2.1.2.2.1.2.16|4|port3.0.16
|
||||
1.3.6.1.2.1.2.2.1.2.17|4|port3.0.17
|
||||
1.3.6.1.2.1.2.2.1.2.18|4|port3.0.18
|
||||
1.3.6.1.2.1.2.2.1.2.19|4|port3.0.19
|
||||
1.3.6.1.2.1.2.2.1.2.20|4|port3.0.20
|
||||
1.3.6.1.2.1.2.2.1.2.21|4|port3.0.21
|
||||
1.3.6.1.2.1.2.2.1.2.22|4|port3.0.22
|
||||
1.3.6.1.2.1.2.2.1.2.23|4|port3.0.23
|
||||
1.3.6.1.2.1.2.2.1.2.24|4|port3.0.24
|
||||
1.3.6.1.2.1.2.2.1.2.25|4|port3.0.25
|
||||
1.3.6.1.2.1.2.2.1.2.26|4|port3.0.26
|
||||
1.3.6.1.2.1.2.2.1.2.27|4|port3.0.27
|
||||
1.3.6.1.2.1.2.2.1.2.28|4|port3.0.28
|
||||
1.3.6.1.2.1.2.2.1.2.29|4|port3.0.29
|
||||
1.3.6.1.2.1.2.2.1.2.30|4|port3.0.30
|
||||
1.3.6.1.2.1.2.2.1.2.31|4|port3.0.31
|
||||
1.3.6.1.2.1.2.2.1.2.32|4|port3.0.32
|
||||
1.3.6.1.2.1.2.2.1.2.33|4|port3.0.33
|
||||
1.3.6.1.2.1.2.2.1.2.34|4|port3.0.34
|
||||
1.3.6.1.2.1.2.2.1.2.35|4|port3.0.35
|
||||
1.3.6.1.2.1.2.2.1.2.36|4|port3.0.36
|
||||
1.3.6.1.2.1.2.2.1.2.37|4|port3.0.37
|
||||
1.3.6.1.2.1.2.2.1.2.38|4|port3.0.38
|
||||
1.3.6.1.2.1.2.2.1.2.39|4|port3.0.39
|
||||
1.3.6.1.2.1.2.2.1.2.40|4|port3.0.40
|
||||
1.3.6.1.2.1.2.2.1.2.41|4|port3.0.41
|
||||
1.3.6.1.2.1.2.2.1.2.42|4|port3.0.42
|
||||
1.3.6.1.2.1.2.2.1.2.43|4|port3.0.43
|
||||
1.3.6.1.2.1.2.2.1.2.44|4|port3.0.44
|
||||
1.3.6.1.2.1.2.2.1.2.45|4|port3.0.45
|
||||
1.3.6.1.2.1.2.2.1.2.46|4|port3.0.46
|
||||
1.3.6.1.2.1.2.2.1.2.47|4|port3.0.47
|
||||
1.3.6.1.2.1.2.2.1.2.48|4|port3.0.48
|
||||
1.3.6.1.2.1.2.2.1.2.49|4|port3.0.49
|
||||
1.3.6.1.2.1.2.2.1.2.50|4|port3.0.50
|
||||
1.3.6.1.2.1.2.2.1.3.1|2|1767992425
|
||||
1.3.6.1.2.1.2.2.1.3.2|2|0
|
||||
1.3.6.1.2.1.2.2.1.3.3|2|0
|
||||
1.3.6.1.2.1.2.2.1.3.4|2|0
|
||||
1.3.6.1.2.1.2.2.1.3.5|2|0
|
||||
1.3.6.1.2.1.2.2.1.3.6|2|0
|
||||
1.3.6.1.2.1.2.2.1.3.7|2|0
|
||||
1.3.6.1.2.1.2.2.1.3.8|2|0
|
||||
1.3.6.1.2.1.2.2.1.3.9|2|0
|
||||
1.3.6.1.2.1.2.2.1.3.10|2|0
|
||||
1.3.6.1.2.1.2.2.1.3.11|2|0
|
||||
1.3.6.1.2.1.2.2.1.3.12|2|0
|
||||
1.3.6.1.2.1.2.2.1.3.13|2|0
|
||||
1.3.6.1.2.1.2.2.1.3.14|2|0
|
||||
1.3.6.1.2.1.2.2.1.3.15|2|0
|
||||
1.3.6.1.2.1.2.2.1.3.16|2|0
|
||||
1.3.6.1.2.1.2.2.1.3.17|2|0
|
||||
1.3.6.1.2.1.2.2.1.3.18|2|0
|
||||
1.3.6.1.2.1.2.2.1.3.19|2|0
|
||||
1.3.6.1.2.1.2.2.1.3.20|2|0
|
||||
1.3.6.1.2.1.2.2.1.3.21|2|0
|
||||
1.3.6.1.2.1.2.2.1.3.22|2|0
|
||||
1.3.6.1.2.1.2.2.1.3.23|2|0
|
||||
1.3.6.1.2.1.2.2.1.3.24|2|0
|
||||
1.3.6.1.2.1.2.2.1.3.25|2|0
|
||||
1.3.6.1.2.1.2.2.1.3.26|2|0
|
||||
1.3.6.1.2.1.2.2.1.3.27|2|0
|
||||
1.3.6.1.2.1.2.2.1.3.28|2|0
|
||||
1.3.6.1.2.1.2.2.1.3.29|2|0
|
||||
1.3.6.1.2.1.2.2.1.3.30|2|0
|
||||
1.3.6.1.2.1.2.2.1.3.31|2|0
|
||||
1.3.6.1.2.1.2.2.1.3.32|2|0
|
||||
1.3.6.1.2.1.2.2.1.3.33|2|0
|
||||
1.3.6.1.2.1.2.2.1.3.34|2|0
|
||||
1.3.6.1.2.1.2.2.1.3.35|2|0
|
||||
1.3.6.1.2.1.2.2.1.3.36|2|0
|
||||
1.3.6.1.2.1.2.2.1.3.37|2|0
|
||||
1.3.6.1.2.1.2.2.1.3.38|2|0
|
||||
1.3.6.1.2.1.2.2.1.3.39|2|0
|
||||
1.3.6.1.2.1.2.2.1.3.40|2|0
|
||||
1.3.6.1.2.1.2.2.1.3.41|2|0
|
||||
1.3.6.1.2.1.2.2.1.3.42|2|0
|
||||
1.3.6.1.2.1.2.2.1.3.43|2|0
|
||||
1.3.6.1.2.1.2.2.1.3.44|2|0
|
||||
1.3.6.1.2.1.2.2.1.3.45|2|0
|
||||
1.3.6.1.2.1.2.2.1.3.46|2|0
|
||||
1.3.6.1.2.1.2.2.1.3.47|2|0
|
||||
1.3.6.1.2.1.2.2.1.3.48|2|0
|
||||
1.3.6.1.2.1.2.2.1.3.49|2|0
|
||||
1.3.6.1.2.1.2.2.1.3.50|2|0
|
||||
1.3.6.1.2.1.4.20.1.2.10.37.105.93|2|5
|
||||
1.3.6.1.2.1.4.20.1.2.127.0.0.1|2|1
|
||||
1.3.6.1.2.1.4.20.1.2.192.168.1.2|2|6
|
||||
1.3.6.1.2.1.4.20.1.3.10.37.105.93|64|255.255.255.0
|
||||
1.3.6.1.2.1.4.20.1.3.127.0.0.1|64|255.0.0.0
|
||||
1.3.6.1.2.1.4.20.1.3.192.168.1.2|64|255.255.255.0
|
||||
1.3.6.1.2.1.4.22.1.2.5.10.37.105.100|4x|00900B2A11AD
|
||||
1.3.6.1.2.1.4.35.1.4.5.1.4.10.37.105.100|4x|00900B2A11AD
|
||||
1.3.6.1.2.1.17.1.1.0|4x|100A3380CD45
|
||||
1.3.6.1.2.1.17.1.4.1.2.1|2|1
|
||||
1.3.6.1.2.1.17.1.4.1.2.2|2|2
|
||||
1.3.6.1.2.1.17.1.4.1.2.3|2|3
|
||||
1.3.6.1.2.1.17.1.4.1.2.4|2|4
|
||||
1.3.6.1.2.1.17.1.4.1.2.5|2|5
|
||||
1.3.6.1.2.1.17.1.4.1.2.6|2|6
|
||||
1.3.6.1.2.1.17.1.4.1.2.7|2|7
|
||||
1.3.6.1.2.1.17.1.4.1.2.8|2|8
|
||||
1.3.6.1.2.1.17.1.4.1.2.9|2|9
|
||||
1.3.6.1.2.1.17.1.4.1.2.10|2|10
|
||||
1.3.6.1.2.1.17.1.4.1.2.11|2|11
|
||||
1.3.6.1.2.1.17.1.4.1.2.12|2|12
|
||||
1.3.6.1.2.1.17.1.4.1.2.13|2|13
|
||||
1.3.6.1.2.1.17.1.4.1.2.14|2|14
|
||||
1.3.6.1.2.1.17.1.4.1.2.15|2|15
|
||||
1.3.6.1.2.1.17.1.4.1.2.16|2|16
|
||||
1.3.6.1.2.1.17.1.4.1.2.17|2|17
|
||||
1.3.6.1.2.1.17.1.4.1.2.18|2|18
|
||||
1.3.6.1.2.1.17.1.4.1.2.19|2|19
|
||||
1.3.6.1.2.1.17.1.4.1.2.20|2|20
|
||||
1.3.6.1.2.1.17.1.4.1.2.21|2|21
|
||||
1.3.6.1.2.1.17.1.4.1.2.22|2|22
|
||||
1.3.6.1.2.1.17.1.4.1.2.23|2|23
|
||||
1.3.6.1.2.1.17.1.4.1.2.24|2|24
|
||||
1.3.6.1.2.1.17.1.4.1.2.25|2|25
|
||||
1.3.6.1.2.1.17.1.4.1.2.26|2|26
|
||||
1.3.6.1.2.1.17.1.4.1.2.27|2|27
|
||||
1.3.6.1.2.1.17.1.4.1.2.28|2|28
|
||||
1.3.6.1.2.1.17.1.4.1.2.29|2|29
|
||||
1.3.6.1.2.1.17.1.4.1.2.30|2|30
|
||||
1.3.6.1.2.1.17.1.4.1.2.31|2|31
|
||||
1.3.6.1.2.1.17.1.4.1.2.32|2|32
|
||||
1.3.6.1.2.1.17.1.4.1.2.33|2|33
|
||||
1.3.6.1.2.1.17.1.4.1.2.34|2|34
|
||||
1.3.6.1.2.1.17.1.4.1.2.35|2|35
|
||||
1.3.6.1.2.1.17.1.4.1.2.36|2|36
|
||||
1.3.6.1.2.1.17.1.4.1.2.37|2|37
|
||||
1.3.6.1.2.1.17.1.4.1.2.38|2|38
|
||||
1.3.6.1.2.1.17.1.4.1.2.39|2|39
|
||||
1.3.6.1.2.1.17.1.4.1.2.40|2|40
|
||||
1.3.6.1.2.1.17.1.4.1.2.41|2|41
|
||||
1.3.6.1.2.1.17.1.4.1.2.42|2|42
|
||||
1.3.6.1.2.1.17.1.4.1.2.43|2|43
|
||||
1.3.6.1.2.1.17.1.4.1.2.44|2|44
|
||||
1.3.6.1.2.1.17.1.4.1.2.45|2|45
|
||||
1.3.6.1.2.1.17.1.4.1.2.46|2|46
|
||||
1.3.6.1.2.1.17.1.4.1.2.47|2|47
|
||||
1.3.6.1.2.1.17.1.4.1.2.48|2|48
|
||||
1.3.6.1.2.1.17.1.4.1.2.49|2|49
|
||||
1.3.6.1.2.1.17.1.4.1.2.50|2|50
|
||||
1.3.6.1.2.1.17.2.1.0|2|1
|
||||
1.3.6.1.2.1.17.2.2.0|2|4102
|
||||
1.3.6.1.2.1.17.2.3.0|67|513093600
|
||||
1.3.6.1.2.1.17.2.4.0|65|5706140
|
||||
1.3.6.1.2.1.17.2.5.0|4x|100A33800000000F
|
||||
1.3.6.1.2.1.17.2.6.0|2|268869520
|
||||
1.3.6.1.2.1.17.2.7.0|2|1
|
||||
1.3.6.1.2.1.17.2.8.0|2|0
|
||||
1.3.6.1.2.1.17.2.9.0|2|0
|
||||
1.3.6.1.2.1.17.2.10.0|2|300
|
||||
1.3.6.1.2.1.17.2.11.0|2|0
|
||||
1.3.6.1.2.1.17.2.12.0|2|1553172480
|
||||
1.3.6.1.2.1.17.2.13.0|65|0
|
||||
1.3.6.1.2.1.17.2.14.0|6|0.0
|
||||
1.3.6.1.2.1.17.2.15.1.1.1|2|1
|
||||
1.3.6.1.2.1.17.2.15.1.1.2|2|2
|
||||
1.3.6.1.2.1.17.2.15.1.1.3|2|3
|
||||
1.3.6.1.2.1.17.2.15.1.1.4|2|4
|
||||
1.3.6.1.2.1.17.2.15.1.1.5|2|5
|
||||
1.3.6.1.2.1.17.2.15.1.1.6|2|6
|
||||
1.3.6.1.2.1.17.2.15.1.1.7|2|7
|
||||
1.3.6.1.2.1.17.2.15.1.1.8|2|8
|
||||
1.3.6.1.2.1.17.2.15.1.1.9|2|9
|
||||
1.3.6.1.2.1.17.2.15.1.1.10|2|10
|
||||
1.3.6.1.2.1.17.2.15.1.1.11|2|11
|
||||
1.3.6.1.2.1.17.2.15.1.1.12|2|12
|
||||
1.3.6.1.2.1.17.2.15.1.1.13|2|13
|
||||
1.3.6.1.2.1.17.2.15.1.1.14|2|14
|
||||
1.3.6.1.2.1.17.2.15.1.1.15|2|15
|
||||
1.3.6.1.2.1.17.2.15.1.1.16|2|16
|
||||
1.3.6.1.2.1.17.2.15.1.1.17|2|17
|
||||
1.3.6.1.2.1.17.2.15.1.1.18|2|18
|
||||
1.3.6.1.2.1.17.2.15.1.1.19|2|19
|
||||
1.3.6.1.2.1.17.2.15.1.1.20|2|20
|
||||
1.3.6.1.2.1.17.2.15.1.1.21|2|21
|
||||
1.3.6.1.2.1.17.2.15.1.1.22|2|22
|
||||
1.3.6.1.2.1.17.2.15.1.1.23|2|23
|
||||
1.3.6.1.2.1.17.2.15.1.1.24|2|24
|
||||
1.3.6.1.2.1.17.2.15.1.1.25|2|25
|
||||
1.3.6.1.2.1.17.2.15.1.1.26|2|26
|
||||
1.3.6.1.2.1.17.2.15.1.1.27|2|27
|
||||
1.3.6.1.2.1.17.2.15.1.1.28|2|28
|
||||
1.3.6.1.2.1.17.2.15.1.1.29|2|29
|
||||
1.3.6.1.2.1.17.2.15.1.1.30|2|30
|
||||
1.3.6.1.2.1.17.2.15.1.1.31|2|31
|
||||
1.3.6.1.2.1.17.2.15.1.1.32|2|32
|
||||
1.3.6.1.2.1.17.2.15.1.1.33|2|33
|
||||
1.3.6.1.2.1.17.2.15.1.1.34|2|34
|
||||
1.3.6.1.2.1.17.2.15.1.1.35|2|35
|
||||
1.3.6.1.2.1.17.2.15.1.1.36|2|36
|
||||
1.3.6.1.2.1.17.2.15.1.1.37|2|37
|
||||
1.3.6.1.2.1.17.2.15.1.1.38|2|38
|
||||
1.3.6.1.2.1.17.2.15.1.1.39|2|39
|
||||
1.3.6.1.2.1.17.2.15.1.1.40|2|40
|
||||
1.3.6.1.2.1.17.2.15.1.1.41|2|41
|
||||
1.3.6.1.2.1.17.2.15.1.1.42|2|42
|
||||
1.3.6.1.2.1.17.2.15.1.1.43|2|43
|
||||
1.3.6.1.2.1.17.2.15.1.1.44|2|44
|
||||
1.3.6.1.2.1.17.2.15.1.1.45|2|45
|
||||
1.3.6.1.2.1.17.2.15.1.1.46|2|46
|
||||
1.3.6.1.2.1.17.2.15.1.1.47|2|47
|
||||
1.3.6.1.2.1.17.2.15.1.1.48|2|48
|
||||
1.3.6.1.2.1.17.2.15.1.1.49|2|49
|
||||
1.3.6.1.2.1.17.2.15.1.1.50|2|50
|
||||
1.3.6.1.2.1.17.2.15.1.2.1|2|128
|
||||
1.3.6.1.2.1.17.2.15.1.2.2|2|128
|
||||
1.3.6.1.2.1.17.2.15.1.2.3|2|128
|
||||
1.3.6.1.2.1.17.2.15.1.2.4|2|128
|
||||
1.3.6.1.2.1.17.2.15.1.2.5|2|128
|
||||
1.3.6.1.2.1.17.2.15.1.2.6|2|128
|
||||
1.3.6.1.2.1.17.2.15.1.2.7|2|128
|
||||
1.3.6.1.2.1.17.2.15.1.2.8|2|128
|
||||
1.3.6.1.2.1.17.2.15.1.2.9|2|128
|
||||
1.3.6.1.2.1.17.2.15.1.2.10|2|128
|
||||
1.3.6.1.2.1.17.2.15.1.2.11|2|128
|
||||
1.3.6.1.2.1.17.2.15.1.2.12|2|128
|
||||
1.3.6.1.2.1.17.2.15.1.2.13|2|128
|
||||
1.3.6.1.2.1.17.2.15.1.2.14|2|128
|
||||
1.3.6.1.2.1.17.2.15.1.2.15|2|128
|
||||
1.3.6.1.2.1.17.2.15.1.2.16|2|128
|
||||
1.3.6.1.2.1.17.2.15.1.2.17|2|128
|
||||
1.3.6.1.2.1.17.2.15.1.2.18|2|128
|
||||
1.3.6.1.2.1.17.2.15.1.2.19|2|128
|
||||
1.3.6.1.2.1.17.2.15.1.2.20|2|128
|
||||
1.3.6.1.2.1.17.2.15.1.2.21|2|128
|
||||
1.3.6.1.2.1.17.2.15.1.2.22|2|128
|
||||
1.3.6.1.2.1.17.2.15.1.2.23|2|128
|
||||
1.3.6.1.2.1.17.2.15.1.2.24|2|128
|
||||
1.3.6.1.2.1.17.2.15.1.2.25|2|128
|
||||
1.3.6.1.2.1.17.2.15.1.2.26|2|128
|
||||
1.3.6.1.2.1.17.2.15.1.2.27|2|128
|
||||
1.3.6.1.2.1.17.2.15.1.2.28|2|128
|
||||
1.3.6.1.2.1.17.2.15.1.2.29|2|128
|
||||
1.3.6.1.2.1.17.2.15.1.2.30|2|128
|
||||
1.3.6.1.2.1.17.2.15.1.2.31|2|128
|
||||
1.3.6.1.2.1.17.2.15.1.2.32|2|128
|
||||
1.3.6.1.2.1.17.2.15.1.2.33|2|128
|
||||
1.3.6.1.2.1.17.2.15.1.2.34|2|128
|
||||
1.3.6.1.2.1.17.2.15.1.2.35|2|128
|
||||
1.3.6.1.2.1.17.2.15.1.2.36|2|128
|
||||
1.3.6.1.2.1.17.2.15.1.2.37|2|128
|
||||
1.3.6.1.2.1.17.2.15.1.2.38|2|128
|
||||
1.3.6.1.2.1.17.2.15.1.2.39|2|128
|
||||
1.3.6.1.2.1.17.2.15.1.2.40|2|128
|
||||
1.3.6.1.2.1.17.2.15.1.2.41|2|128
|
||||
1.3.6.1.2.1.17.2.15.1.2.42|2|128
|
||||
1.3.6.1.2.1.17.2.15.1.2.43|2|128
|
||||
1.3.6.1.2.1.17.2.15.1.2.44|2|128
|
||||
1.3.6.1.2.1.17.2.15.1.2.45|2|128
|
||||
1.3.6.1.2.1.17.2.15.1.2.46|2|128
|
||||
1.3.6.1.2.1.17.2.15.1.2.47|2|128
|
||||
1.3.6.1.2.1.17.2.15.1.2.48|2|128
|
||||
1.3.6.1.2.1.17.2.15.1.2.49|2|128
|
||||
1.3.6.1.2.1.17.2.15.1.2.50|2|128
|
||||
1.3.6.1.2.1.17.2.15.1.3.1|2|1
|
||||
1.3.6.1.2.1.17.2.15.1.3.2|2|1
|
||||
1.3.6.1.2.1.17.2.15.1.3.3|2|1
|
||||
1.3.6.1.2.1.17.2.15.1.3.4|2|1
|
||||
1.3.6.1.2.1.17.2.15.1.3.5|2|1
|
||||
1.3.6.1.2.1.17.2.15.1.3.6|2|1
|
||||
1.3.6.1.2.1.17.2.15.1.3.7|2|1
|
||||
1.3.6.1.2.1.17.2.15.1.3.8|2|1
|
||||
1.3.6.1.2.1.17.2.15.1.3.9|2|1
|
||||
1.3.6.1.2.1.17.2.15.1.3.10|2|1
|
||||
1.3.6.1.2.1.17.2.15.1.3.11|2|1
|
||||
1.3.6.1.2.1.17.2.15.1.3.12|2|1
|
||||
1.3.6.1.2.1.17.2.15.1.3.13|2|1
|
||||
1.3.6.1.2.1.17.2.15.1.3.14|2|1
|
||||
1.3.6.1.2.1.17.2.15.1.3.15|2|1
|
||||
1.3.6.1.2.1.17.2.15.1.3.16|2|1
|
||||
1.3.6.1.2.1.17.2.15.1.3.17|2|1
|
||||
1.3.6.1.2.1.17.2.15.1.3.18|2|1
|
||||
1.3.6.1.2.1.17.2.15.1.3.19|2|1
|
||||
1.3.6.1.2.1.17.2.15.1.3.20|2|1
|
||||
1.3.6.1.2.1.17.2.15.1.3.21|2|1
|
||||
1.3.6.1.2.1.17.2.15.1.3.22|2|1
|
||||
1.3.6.1.2.1.17.2.15.1.3.23|2|1
|
||||
1.3.6.1.2.1.17.2.15.1.3.24|2|1
|
||||
1.3.6.1.2.1.17.2.15.1.3.25|2|1
|
||||
1.3.6.1.2.1.17.2.15.1.3.26|2|1
|
||||
1.3.6.1.2.1.17.2.15.1.3.27|2|1
|
||||
1.3.6.1.2.1.17.2.15.1.3.28|2|1
|
||||
1.3.6.1.2.1.17.2.15.1.3.29|2|1
|
||||
1.3.6.1.2.1.17.2.15.1.3.30|2|1
|
||||
1.3.6.1.2.1.17.2.15.1.3.31|2|1
|
||||
1.3.6.1.2.1.17.2.15.1.3.32|2|1
|
||||
1.3.6.1.2.1.17.2.15.1.3.33|2|1
|
||||
1.3.6.1.2.1.17.2.15.1.3.34|2|1
|
||||
1.3.6.1.2.1.17.2.15.1.3.35|2|1
|
||||
1.3.6.1.2.1.17.2.15.1.3.36|2|1
|
||||
1.3.6.1.2.1.17.2.15.1.3.37|2|1
|
||||
1.3.6.1.2.1.17.2.15.1.3.38|2|1
|
||||
1.3.6.1.2.1.17.2.15.1.3.39|2|1
|
||||
1.3.6.1.2.1.17.2.15.1.3.40|2|1
|
||||
1.3.6.1.2.1.17.2.15.1.3.41|2|1
|
||||
1.3.6.1.2.1.17.2.15.1.3.42|2|1
|
||||
1.3.6.1.2.1.17.2.15.1.3.43|2|1
|
||||
1.3.6.1.2.1.17.2.15.1.3.44|2|1
|
||||
1.3.6.1.2.1.17.2.15.1.3.45|2|1
|
||||
1.3.6.1.2.1.17.2.15.1.3.46|2|1
|
||||
1.3.6.1.2.1.17.2.15.1.3.47|2|1
|
||||
1.3.6.1.2.1.17.2.15.1.3.48|2|1
|
||||
1.3.6.1.2.1.17.2.15.1.3.49|2|1
|
||||
1.3.6.1.2.1.17.2.15.1.3.50|2|1
|
||||
1.3.6.1.2.1.17.2.15.1.4.1|2|1
|
||||
1.3.6.1.2.1.17.2.15.1.4.2|2|1
|
||||
1.3.6.1.2.1.17.2.15.1.4.3|2|1
|
||||
1.3.6.1.2.1.17.2.15.1.4.4|2|1
|
||||
1.3.6.1.2.1.17.2.15.1.4.5|2|1
|
||||
1.3.6.1.2.1.17.2.15.1.4.6|2|1
|
||||
1.3.6.1.2.1.17.2.15.1.4.7|2|1
|
||||
1.3.6.1.2.1.17.2.15.1.4.8|2|1
|
||||
1.3.6.1.2.1.17.2.15.1.4.9|2|1
|
||||
1.3.6.1.2.1.17.2.15.1.4.10|2|1
|
||||
1.3.6.1.2.1.17.2.15.1.4.11|2|1
|
||||
1.3.6.1.2.1.17.2.15.1.4.12|2|1
|
||||
1.3.6.1.2.1.17.2.15.1.4.13|2|1
|
||||
1.3.6.1.2.1.17.2.15.1.4.14|2|1
|
||||
1.3.6.1.2.1.17.2.15.1.4.15|2|1
|
||||
1.3.6.1.2.1.17.2.15.1.4.16|2|1
|
||||
1.3.6.1.2.1.17.2.15.1.4.17|2|1
|
||||
1.3.6.1.2.1.17.2.15.1.4.18|2|1
|
||||
1.3.6.1.2.1.17.2.15.1.4.19|2|1
|
||||
1.3.6.1.2.1.17.2.15.1.4.20|2|1
|
||||
1.3.6.1.2.1.17.2.15.1.4.21|2|1
|
||||
1.3.6.1.2.1.17.2.15.1.4.22|2|1
|
||||
1.3.6.1.2.1.17.2.15.1.4.23|2|1
|
||||
1.3.6.1.2.1.17.2.15.1.4.24|2|1
|
||||
1.3.6.1.2.1.17.2.15.1.4.25|2|1
|
||||
1.3.6.1.2.1.17.2.15.1.4.26|2|1
|
||||
1.3.6.1.2.1.17.2.15.1.4.27|2|1
|
||||
1.3.6.1.2.1.17.2.15.1.4.28|2|1
|
||||
1.3.6.1.2.1.17.2.15.1.4.29|2|1
|
||||
1.3.6.1.2.1.17.2.15.1.4.30|2|1
|
||||
1.3.6.1.2.1.17.2.15.1.4.31|2|1
|
||||
1.3.6.1.2.1.17.2.15.1.4.32|2|1
|
||||
1.3.6.1.2.1.17.2.15.1.4.33|2|1
|
||||
1.3.6.1.2.1.17.2.15.1.4.34|2|1
|
||||
1.3.6.1.2.1.17.2.15.1.4.35|2|1
|
||||
1.3.6.1.2.1.17.2.15.1.4.36|2|1
|
||||
1.3.6.1.2.1.17.2.15.1.4.37|2|1
|
||||
1.3.6.1.2.1.17.2.15.1.4.38|2|1
|
||||
1.3.6.1.2.1.17.2.15.1.4.39|2|1
|
||||
1.3.6.1.2.1.17.2.15.1.4.40|2|1
|
||||
1.3.6.1.2.1.17.2.15.1.4.41|2|1
|
||||
1.3.6.1.2.1.17.2.15.1.4.42|2|1
|
||||
1.3.6.1.2.1.17.2.15.1.4.43|2|1
|
||||
1.3.6.1.2.1.17.2.15.1.4.44|2|1
|
||||
1.3.6.1.2.1.17.2.15.1.4.45|2|1
|
||||
1.3.6.1.2.1.17.2.15.1.4.46|2|1
|
||||
1.3.6.1.2.1.17.2.15.1.4.47|2|1
|
||||
1.3.6.1.2.1.17.2.15.1.4.48|2|1
|
||||
1.3.6.1.2.1.17.2.15.1.4.49|2|1
|
||||
1.3.6.1.2.1.17.2.15.1.4.50|2|1
|
||||
1.3.6.1.2.1.17.2.15.1.5.1|2|0
|
||||
1.3.6.1.2.1.17.2.15.1.5.2|2|0
|
||||
1.3.6.1.2.1.17.2.15.1.5.3|2|0
|
||||
1.3.6.1.2.1.17.2.15.1.5.4|2|0
|
||||
1.3.6.1.2.1.17.2.15.1.5.5|2|0
|
||||
1.3.6.1.2.1.17.2.15.1.5.6|2|0
|
||||
1.3.6.1.2.1.17.2.15.1.5.7|2|0
|
||||
1.3.6.1.2.1.17.2.15.1.5.8|2|0
|
||||
1.3.6.1.2.1.17.2.15.1.5.9|2|0
|
||||
1.3.6.1.2.1.17.2.15.1.5.10|2|0
|
||||
1.3.6.1.2.1.17.2.15.1.5.11|2|0
|
||||
1.3.6.1.2.1.17.2.15.1.5.12|2|0
|
||||
1.3.6.1.2.1.17.2.15.1.5.13|2|0
|
||||
1.3.6.1.2.1.17.2.15.1.5.14|2|0
|
||||
1.3.6.1.2.1.17.2.15.1.5.15|2|0
|
||||
1.3.6.1.2.1.17.2.15.1.5.16|2|0
|
||||
1.3.6.1.2.1.17.2.15.1.5.17|2|0
|
||||
1.3.6.1.2.1.17.2.15.1.5.18|2|0
|
||||
1.3.6.1.2.1.17.2.15.1.5.19|2|0
|
||||
1.3.6.1.2.1.17.2.15.1.5.20|2|0
|
||||
1.3.6.1.2.1.17.2.15.1.5.21|2|0
|
||||
1.3.6.1.2.1.17.2.15.1.5.22|2|0
|
||||
1.3.6.1.2.1.17.2.15.1.5.23|2|0
|
||||
1.3.6.1.2.1.17.2.15.1.5.24|2|0
|
||||
1.3.6.1.2.1.17.2.15.1.5.25|2|0
|
||||
1.3.6.1.2.1.17.2.15.1.5.26|2|0
|
||||
1.3.6.1.2.1.17.2.15.1.5.27|2|0
|
||||
1.3.6.1.2.1.17.2.15.1.5.28|2|0
|
||||
1.3.6.1.2.1.17.2.15.1.5.29|2|0
|
||||
1.3.6.1.2.1.17.2.15.1.5.30|2|0
|
||||
1.3.6.1.2.1.17.2.15.1.5.31|2|0
|
||||
1.3.6.1.2.1.17.2.15.1.5.32|2|0
|
||||
1.3.6.1.2.1.17.2.15.1.5.33|2|0
|
||||
1.3.6.1.2.1.17.2.15.1.5.34|2|0
|
||||
1.3.6.1.2.1.17.2.15.1.5.35|2|0
|
||||
1.3.6.1.2.1.17.2.15.1.5.36|2|0
|
||||
1.3.6.1.2.1.17.2.15.1.5.37|2|0
|
||||
1.3.6.1.2.1.17.2.15.1.5.38|2|0
|
||||
1.3.6.1.2.1.17.2.15.1.5.39|2|0
|
||||
1.3.6.1.2.1.17.2.15.1.5.40|2|0
|
||||
1.3.6.1.2.1.17.2.15.1.5.41|2|0
|
||||
1.3.6.1.2.1.17.2.15.1.5.42|2|0
|
||||
1.3.6.1.2.1.17.2.15.1.5.43|2|0
|
||||
1.3.6.1.2.1.17.2.15.1.5.44|2|0
|
||||
1.3.6.1.2.1.17.2.15.1.5.45|2|0
|
||||
1.3.6.1.2.1.17.2.15.1.5.46|2|0
|
||||
1.3.6.1.2.1.17.2.15.1.5.47|2|0
|
||||
1.3.6.1.2.1.17.2.15.1.5.48|2|0
|
||||
1.3.6.1.2.1.17.2.15.1.5.49|2|0
|
||||
1.3.6.1.2.1.17.2.15.1.5.50|2|0
|
||||
1.3.6.1.2.1.17.2.15.1.6.1|4x|0000000000000000
|
||||
1.3.6.1.2.1.17.2.15.1.6.2|4x|0000000000000000
|
||||
1.3.6.1.2.1.17.2.15.1.6.3|4x|0000000000000000
|
||||
1.3.6.1.2.1.17.2.15.1.6.4|4x|0000000000000000
|
||||
1.3.6.1.2.1.17.2.15.1.6.5|4x|0000000000000000
|
||||
1.3.6.1.2.1.17.2.15.1.6.6|4x|0000000000000000
|
||||
1.3.6.1.2.1.17.2.15.1.6.7|4x|0000000000000000
|
||||
1.3.6.1.2.1.17.2.15.1.6.8|4x|0000000000000000
|
||||
1.3.6.1.2.1.17.2.15.1.6.9|4x|0000000000000000
|
||||
1.3.6.1.2.1.17.2.15.1.6.10|4x|0000000000000000
|
||||
1.3.6.1.2.1.17.2.15.1.6.11|4x|0000000000000000
|
||||
1.3.6.1.2.1.17.2.15.1.6.12|4x|0000000000000000
|
||||
1.3.6.1.2.1.17.2.15.1.6.13|4x|0000000000000000
|
||||
1.3.6.1.2.1.17.2.15.1.6.14|4x|0000000000000000
|
||||
1.3.6.1.2.1.17.2.15.1.6.15|4x|0000000000000000
|
||||
1.3.6.1.2.1.17.2.15.1.6.16|4x|0000000000000000
|
||||
1.3.6.1.2.1.17.2.15.1.6.17|4x|0000000000000000
|
||||
1.3.6.1.2.1.17.2.15.1.6.18|4x|0000000000000000
|
||||
1.3.6.1.2.1.17.2.15.1.6.19|4x|0000000000000000
|
||||
1.3.6.1.2.1.17.2.15.1.6.20|4x|0000000000000000
|
||||
1.3.6.1.2.1.17.2.15.1.6.21|4x|0000000000000000
|
||||
1.3.6.1.2.1.17.2.15.1.6.22|4x|0000000000000000
|
||||
1.3.6.1.2.1.17.2.15.1.6.23|4x|0000000000000000
|
||||
1.3.6.1.2.1.17.2.15.1.6.24|4x|0000000000000000
|
||||
1.3.6.1.2.1.17.2.15.1.6.25|4x|0000000000000000
|
||||
1.3.6.1.2.1.17.2.15.1.6.26|4x|0000000000000000
|
||||
1.3.6.1.2.1.17.2.15.1.6.27|4x|0000000000000000
|
||||
1.3.6.1.2.1.17.2.15.1.6.28|4x|0000000000000000
|
||||
1.3.6.1.2.1.17.2.15.1.6.29|4x|0000000000000000
|
||||
1.3.6.1.2.1.17.2.15.1.6.30|4x|0000000000000000
|
||||
1.3.6.1.2.1.17.2.15.1.6.31|4x|0000000000000000
|
||||
1.3.6.1.2.1.17.2.15.1.6.32|4x|0000000000000000
|
||||
1.3.6.1.2.1.17.2.15.1.6.33|4x|0000000000000000
|
||||
1.3.6.1.2.1.17.2.15.1.6.34|4x|0000000000000000
|
||||
1.3.6.1.2.1.17.2.15.1.6.35|4x|0000000000000000
|
||||
1.3.6.1.2.1.17.2.15.1.6.36|4x|0000000000000000
|
||||
1.3.6.1.2.1.17.2.15.1.6.37|4x|0000000000000000
|
||||
1.3.6.1.2.1.17.2.15.1.6.38|4x|0000000000000000
|
||||
1.3.6.1.2.1.17.2.15.1.6.39|4x|0000000000000000
|
||||
1.3.6.1.2.1.17.2.15.1.6.40|4x|0000000000000000
|
||||
1.3.6.1.2.1.17.2.15.1.6.41|4x|0000000000000000
|
||||
1.3.6.1.2.1.17.2.15.1.6.42|4x|0000000000000000
|
||||
1.3.6.1.2.1.17.2.15.1.6.43|4x|0000000000000000
|
||||
1.3.6.1.2.1.17.2.15.1.6.44|4x|0000000000000000
|
||||
1.3.6.1.2.1.17.2.15.1.6.45|4x|0000000000000000
|
||||
1.3.6.1.2.1.17.2.15.1.6.46|4x|0000000000000000
|
||||
1.3.6.1.2.1.17.2.15.1.6.47|4x|0000000000000000
|
||||
1.3.6.1.2.1.17.2.15.1.6.48|4x|0000000000000000
|
||||
1.3.6.1.2.1.17.2.15.1.6.49|4x|0000000000000000
|
||||
1.3.6.1.2.1.17.2.15.1.6.50|4x|0000000000000000
|
||||
1.3.6.1.2.1.17.2.15.1.7.1|2|2000000
|
||||
1.3.6.1.2.1.17.2.15.1.7.2|2|2000000
|
||||
1.3.6.1.2.1.17.2.15.1.7.3|2|2000000
|
||||
1.3.6.1.2.1.17.2.15.1.7.4|2|2000000
|
||||
1.3.6.1.2.1.17.2.15.1.7.5|2|2000000
|
||||
1.3.6.1.2.1.17.2.15.1.7.6|2|2000000
|
||||
1.3.6.1.2.1.17.2.15.1.7.7|2|2000000
|
||||
1.3.6.1.2.1.17.2.15.1.7.8|2|2000000
|
||||
1.3.6.1.2.1.17.2.15.1.7.9|2|2000000
|
||||
1.3.6.1.2.1.17.2.15.1.7.10|2|2000000
|
||||
1.3.6.1.2.1.17.2.15.1.7.11|2|2000000
|
||||
1.3.6.1.2.1.17.2.15.1.7.12|2|2000000
|
||||
1.3.6.1.2.1.17.2.15.1.7.13|2|2000000
|
||||
1.3.6.1.2.1.17.2.15.1.7.14|2|2000000
|
||||
1.3.6.1.2.1.17.2.15.1.7.15|2|2000000
|
||||
1.3.6.1.2.1.17.2.15.1.7.16|2|2000000
|
||||
1.3.6.1.2.1.17.2.15.1.7.17|2|2000000
|
||||
1.3.6.1.2.1.17.2.15.1.7.18|2|2000000
|
||||
1.3.6.1.2.1.17.2.15.1.7.19|2|2000000
|
||||
1.3.6.1.2.1.17.2.15.1.7.20|2|2000000
|
||||
1.3.6.1.2.1.17.2.15.1.7.21|2|2000000
|
||||
1.3.6.1.2.1.17.2.15.1.7.22|2|2000000
|
||||
1.3.6.1.2.1.17.2.15.1.7.23|2|2000000
|
||||
1.3.6.1.2.1.17.2.15.1.7.24|2|2000000
|
||||
1.3.6.1.2.1.17.2.15.1.7.25|2|2000000
|
||||
1.3.6.1.2.1.17.2.15.1.7.26|2|2000000
|
||||
1.3.6.1.2.1.17.2.15.1.7.27|2|2000000
|
||||
1.3.6.1.2.1.17.2.15.1.7.28|2|2000000
|
||||
1.3.6.1.2.1.17.2.15.1.7.29|2|2000000
|
||||
1.3.6.1.2.1.17.2.15.1.7.30|2|2000000
|
||||
1.3.6.1.2.1.17.2.15.1.7.31|2|2000000
|
||||
1.3.6.1.2.1.17.2.15.1.7.32|2|2000000
|
||||
1.3.6.1.2.1.17.2.15.1.7.33|2|2000000
|
||||
1.3.6.1.2.1.17.2.15.1.7.34|2|2000000
|
||||
1.3.6.1.2.1.17.2.15.1.7.35|2|2000000
|
||||
1.3.6.1.2.1.17.2.15.1.7.36|2|2000000
|
||||
1.3.6.1.2.1.17.2.15.1.7.37|2|2000000
|
||||
1.3.6.1.2.1.17.2.15.1.7.38|2|2000000
|
||||
1.3.6.1.2.1.17.2.15.1.7.39|2|2000000
|
||||
1.3.6.1.2.1.17.2.15.1.7.40|2|2000000
|
||||
1.3.6.1.2.1.17.2.15.1.7.41|2|2000000
|
||||
1.3.6.1.2.1.17.2.15.1.7.42|2|2000000
|
||||
1.3.6.1.2.1.17.2.15.1.7.43|2|2000000
|
||||
1.3.6.1.2.1.17.2.15.1.7.44|2|2000000
|
||||
1.3.6.1.2.1.17.2.15.1.7.45|2|2000000
|
||||
1.3.6.1.2.1.17.2.15.1.7.46|2|2000000
|
||||
1.3.6.1.2.1.17.2.15.1.7.47|2|2000000
|
||||
1.3.6.1.2.1.17.2.15.1.7.48|2|2000000
|
||||
1.3.6.1.2.1.17.2.15.1.7.49|2|2000000
|
||||
1.3.6.1.2.1.17.2.15.1.7.50|2|2000000
|
||||
1.3.6.1.2.1.17.2.15.1.8.1|4x|0000000000000000
|
||||
1.3.6.1.2.1.17.2.15.1.8.2|4x|0000000000000000
|
||||
1.3.6.1.2.1.17.2.15.1.8.3|4x|0000000000000000
|
||||
1.3.6.1.2.1.17.2.15.1.8.4|4x|0000000000000000
|
||||
1.3.6.1.2.1.17.2.15.1.8.5|4x|0000000000000000
|
||||
1.3.6.1.2.1.17.2.15.1.8.6|4x|0000000000000000
|
||||
1.3.6.1.2.1.17.2.15.1.8.7|4x|0000000000000000
|
||||
1.3.6.1.2.1.17.2.15.1.8.8|4x|0000000000000000
|
||||
1.3.6.1.2.1.17.2.15.1.8.9|4x|0000000000000000
|
||||
1.3.6.1.2.1.17.2.15.1.8.10|4x|0000000000000000
|
||||
1.3.6.1.2.1.17.2.15.1.8.11|4x|0000000000000000
|
||||
1.3.6.1.2.1.17.2.15.1.8.12|4x|0000000000000000
|
||||
1.3.6.1.2.1.17.2.15.1.8.13|4x|0000000000000000
|
||||
1.3.6.1.2.1.17.2.15.1.8.14|4x|0000000000000000
|
||||
1.3.6.1.2.1.17.2.15.1.8.15|4x|0000000000000000
|
||||
1.3.6.1.2.1.17.2.15.1.8.16|4x|0000000000000000
|
||||
1.3.6.1.2.1.17.2.15.1.8.17|4x|0000000000000000
|
||||
1.3.6.1.2.1.17.2.15.1.8.18|4x|0000000000000000
|
||||
1.3.6.1.2.1.17.2.15.1.8.19|4x|0000000000000000
|
||||
1.3.6.1.2.1.17.2.15.1.8.20|4x|0000000000000000
|
||||
1.3.6.1.2.1.17.2.15.1.8.21|4x|0000000000000000
|
||||
1.3.6.1.2.1.17.2.15.1.8.22|4x|0000000000000000
|
||||
1.3.6.1.2.1.17.2.15.1.8.23|4x|0000000000000000
|
||||
1.3.6.1.2.1.17.2.15.1.8.24|4x|0000000000000000
|
||||
1.3.6.1.2.1.17.2.15.1.8.25|4x|0000000000000000
|
||||
1.3.6.1.2.1.17.2.15.1.8.26|4x|0000000000000000
|
||||
1.3.6.1.2.1.17.2.15.1.8.27|4x|0000000000000000
|
||||
1.3.6.1.2.1.17.2.15.1.8.28|4x|0000000000000000
|
||||
1.3.6.1.2.1.17.2.15.1.8.29|4x|0000000000000000
|
||||
1.3.6.1.2.1.17.2.15.1.8.30|4x|0000000000000000
|
||||
1.3.6.1.2.1.17.2.15.1.8.31|4x|0000000000000000
|
||||
1.3.6.1.2.1.17.2.15.1.8.32|4x|0000000000000000
|
||||
1.3.6.1.2.1.17.2.15.1.8.33|4x|0000000000000000
|
||||
1.3.6.1.2.1.17.2.15.1.8.34|4x|0000000000000000
|
||||
1.3.6.1.2.1.17.2.15.1.8.35|4x|0000000000000000
|
||||
1.3.6.1.2.1.17.2.15.1.8.36|4x|0000000000000000
|
||||
1.3.6.1.2.1.17.2.15.1.8.37|4x|0000000000000000
|
||||
1.3.6.1.2.1.17.2.15.1.8.38|4x|0000000000000000
|
||||
1.3.6.1.2.1.17.2.15.1.8.39|4x|0000000000000000
|
||||
1.3.6.1.2.1.17.2.15.1.8.40|4x|0000000000000000
|
||||
1.3.6.1.2.1.17.2.15.1.8.41|4x|0000000000000000
|
||||
1.3.6.1.2.1.17.2.15.1.8.42|4x|0000000000000000
|
||||
1.3.6.1.2.1.17.2.15.1.8.43|4x|0000000000000000
|
||||
1.3.6.1.2.1.17.2.15.1.8.44|4x|0000000000000000
|
||||
1.3.6.1.2.1.17.2.15.1.8.45|4x|0000000000000000
|
||||
1.3.6.1.2.1.17.2.15.1.8.46|4x|0000000000000000
|
||||
1.3.6.1.2.1.17.2.15.1.8.47|4x|0000000000000000
|
||||
1.3.6.1.2.1.17.2.15.1.8.48|4x|0000000000000000
|
||||
1.3.6.1.2.1.17.2.15.1.8.49|4x|0000000000000000
|
||||
1.3.6.1.2.1.17.2.15.1.8.50|4x|0000000000000000
|
||||
1.3.6.1.2.1.17.2.15.1.9.1|4x|8301
|
||||
1.3.6.1.2.1.17.2.15.1.9.2|4x|8302
|
||||
1.3.6.1.2.1.17.2.15.1.9.3|4x|8303
|
||||
1.3.6.1.2.1.17.2.15.1.9.4|4x|8304
|
||||
1.3.6.1.2.1.17.2.15.1.9.5|4x|8305
|
||||
1.3.6.1.2.1.17.2.15.1.9.6|4x|8306
|
||||
1.3.6.1.2.1.17.2.15.1.9.7|4x|8307
|
||||
1.3.6.1.2.1.17.2.15.1.9.8|4x|8308
|
||||
1.3.6.1.2.1.17.2.15.1.9.9|4x|8309
|
||||
1.3.6.1.2.1.17.2.15.1.9.10|4x|830A
|
||||
1.3.6.1.2.1.17.2.15.1.9.11|4x|830B
|
||||
1.3.6.1.2.1.17.2.15.1.9.12|4x|830C
|
||||
1.3.6.1.2.1.17.2.15.1.9.13|4x|830D
|
||||
1.3.6.1.2.1.17.2.15.1.9.14|4x|830E
|
||||
1.3.6.1.2.1.17.2.15.1.9.15|4x|830F
|
||||
1.3.6.1.2.1.17.2.15.1.9.16|4x|8310
|
||||
1.3.6.1.2.1.17.2.15.1.9.17|4x|8311
|
||||
1.3.6.1.2.1.17.2.15.1.9.18|4x|8312
|
||||
1.3.6.1.2.1.17.2.15.1.9.19|4x|8313
|
||||
1.3.6.1.2.1.17.2.15.1.9.20|4x|8314
|
||||
1.3.6.1.2.1.17.2.15.1.9.21|4x|8315
|
||||
1.3.6.1.2.1.17.2.15.1.9.22|4x|8316
|
||||
1.3.6.1.2.1.17.2.15.1.9.23|4x|8317
|
||||
1.3.6.1.2.1.17.2.15.1.9.24|4x|8318
|
||||
1.3.6.1.2.1.17.2.15.1.9.25|4x|8319
|
||||
1.3.6.1.2.1.17.2.15.1.9.26|4x|831A
|
||||
1.3.6.1.2.1.17.2.15.1.9.27|4x|831B
|
||||
1.3.6.1.2.1.17.2.15.1.9.28|4x|831C
|
||||
1.3.6.1.2.1.17.2.15.1.9.29|4x|831D
|
||||
1.3.6.1.2.1.17.2.15.1.9.30|4x|831E
|
||||
1.3.6.1.2.1.17.2.15.1.9.31|4x|831F
|
||||
1.3.6.1.2.1.17.2.15.1.9.32|4x|8320
|
||||
1.3.6.1.2.1.17.2.15.1.9.33|4x|8321
|
||||
1.3.6.1.2.1.17.2.15.1.9.34|4x|8322
|
||||
1.3.6.1.2.1.17.2.15.1.9.35|4x|8323
|
||||
1.3.6.1.2.1.17.2.15.1.9.36|4x|8324
|
||||
1.3.6.1.2.1.17.2.15.1.9.37|4x|8325
|
||||
1.3.6.1.2.1.17.2.15.1.9.38|4x|8326
|
||||
1.3.6.1.2.1.17.2.15.1.9.39|4x|8327
|
||||
1.3.6.1.2.1.17.2.15.1.9.40|4x|8328
|
||||
1.3.6.1.2.1.17.2.15.1.9.41|4x|8329
|
||||
1.3.6.1.2.1.17.2.15.1.9.42|4x|832A
|
||||
1.3.6.1.2.1.17.2.15.1.9.43|4x|832B
|
||||
1.3.6.1.2.1.17.2.15.1.9.44|4x|832C
|
||||
1.3.6.1.2.1.17.2.15.1.9.45|4x|832D
|
||||
1.3.6.1.2.1.17.2.15.1.9.46|4x|832E
|
||||
1.3.6.1.2.1.17.2.15.1.9.47|4x|832F
|
||||
1.3.6.1.2.1.17.2.15.1.9.48|4x|8330
|
||||
1.3.6.1.2.1.17.2.15.1.9.49|4x|8331
|
||||
1.3.6.1.2.1.17.2.15.1.9.50|4x|8332
|
||||
1.3.6.1.2.1.17.2.15.1.10.1|65|0
|
||||
1.3.6.1.2.1.17.2.15.1.10.2|65|0
|
||||
1.3.6.1.2.1.17.2.15.1.10.3|65|0
|
||||
1.3.6.1.2.1.17.2.15.1.10.4|65|0
|
||||
1.3.6.1.2.1.17.2.15.1.10.5|65|0
|
||||
1.3.6.1.2.1.17.2.15.1.10.6|65|0
|
||||
1.3.6.1.2.1.17.2.15.1.10.7|65|0
|
||||
1.3.6.1.2.1.17.2.15.1.10.8|65|0
|
||||
1.3.6.1.2.1.17.2.15.1.10.9|65|0
|
||||
1.3.6.1.2.1.17.2.15.1.10.10|65|0
|
||||
1.3.6.1.2.1.17.2.15.1.10.11|65|0
|
||||
1.3.6.1.2.1.17.2.15.1.10.12|65|0
|
||||
1.3.6.1.2.1.17.2.15.1.10.13|65|0
|
||||
1.3.6.1.2.1.17.2.15.1.10.14|65|0
|
||||
1.3.6.1.2.1.17.2.15.1.10.15|65|0
|
||||
1.3.6.1.2.1.17.2.15.1.10.16|65|0
|
||||
1.3.6.1.2.1.17.2.15.1.10.17|65|0
|
||||
1.3.6.1.2.1.17.2.15.1.10.18|65|0
|
||||
1.3.6.1.2.1.17.2.15.1.10.19|65|0
|
||||
1.3.6.1.2.1.17.2.15.1.10.20|65|0
|
||||
1.3.6.1.2.1.17.2.15.1.10.21|65|0
|
||||
1.3.6.1.2.1.17.2.15.1.10.22|65|0
|
||||
1.3.6.1.2.1.17.2.15.1.10.23|65|0
|
||||
1.3.6.1.2.1.17.2.15.1.10.24|65|0
|
||||
1.3.6.1.2.1.17.2.15.1.10.25|65|0
|
||||
1.3.6.1.2.1.17.2.15.1.10.26|65|0
|
||||
1.3.6.1.2.1.17.2.15.1.10.27|65|0
|
||||
1.3.6.1.2.1.17.2.15.1.10.28|65|0
|
||||
1.3.6.1.2.1.17.2.15.1.10.29|65|0
|
||||
1.3.6.1.2.1.17.2.15.1.10.30|65|0
|
||||
1.3.6.1.2.1.17.2.15.1.10.31|65|0
|
||||
1.3.6.1.2.1.17.2.15.1.10.32|65|0
|
||||
1.3.6.1.2.1.17.2.15.1.10.33|65|0
|
||||
1.3.6.1.2.1.17.2.15.1.10.34|65|0
|
||||
1.3.6.1.2.1.17.2.15.1.10.35|65|0
|
||||
1.3.6.1.2.1.17.2.15.1.10.36|65|0
|
||||
1.3.6.1.2.1.17.2.15.1.10.37|65|0
|
||||
1.3.6.1.2.1.17.2.15.1.10.38|65|0
|
||||
1.3.6.1.2.1.17.2.15.1.10.39|65|0
|
||||
1.3.6.1.2.1.17.2.15.1.10.40|65|0
|
||||
1.3.6.1.2.1.17.2.15.1.10.41|65|0
|
||||
1.3.6.1.2.1.17.2.15.1.10.42|65|0
|
||||
1.3.6.1.2.1.17.2.15.1.10.43|65|0
|
||||
1.3.6.1.2.1.17.2.15.1.10.44|65|0
|
||||
1.3.6.1.2.1.17.2.15.1.10.45|65|0
|
||||
1.3.6.1.2.1.17.2.15.1.10.46|65|0
|
||||
1.3.6.1.2.1.17.2.15.1.10.47|65|0
|
||||
1.3.6.1.2.1.17.2.15.1.10.48|65|0
|
||||
1.3.6.1.2.1.17.2.15.1.10.49|65|0
|
||||
1.3.6.1.2.1.17.2.15.1.10.50|65|0
|
||||
1.3.6.1.2.1.31.1.1.1.1.1|4|port1.0.1
|
||||
1.3.6.1.2.1.31.1.1.1.1.2|4|port1.0.2
|
||||
1.3.6.1.2.1.31.1.1.1.1.3|4|port1.0.3
|
||||
1.3.6.1.2.1.31.1.1.1.1.4|4|port1.0.4
|
||||
1.3.6.1.2.1.31.1.1.1.1.5|4|port1.0.5
|
||||
1.3.6.1.2.1.31.1.1.1.1.6|4|port1.0.6
|
||||
1.3.6.1.2.1.31.1.1.1.1.7|4|port1.0.7
|
||||
1.3.6.1.2.1.31.1.1.1.1.8|4|port1.0.8
|
||||
1.3.6.1.2.1.31.1.1.1.1.9|4|port1.0.9
|
||||
1.3.6.1.2.1.31.1.1.1.1.10|4|port1.0.10
|
||||
1.3.6.1.2.1.31.1.1.1.1.11|4|port1.0.11
|
||||
1.3.6.1.2.1.31.1.1.1.1.12|4|port1.0.12
|
||||
1.3.6.1.2.1.31.1.1.1.1.13|4|port1.0.13
|
||||
1.3.6.1.2.1.31.1.1.1.1.14|4|port1.0.14
|
||||
1.3.6.1.2.1.31.1.1.1.1.15|4|port1.0.15
|
||||
1.3.6.1.2.1.31.1.1.1.1.16|4|port1.0.16
|
||||
1.3.6.1.2.1.31.1.1.1.1.17|4|port1.0.17
|
||||
1.3.6.1.2.1.31.1.1.1.1.18|4|port1.0.18
|
||||
1.3.6.1.2.1.31.1.1.1.1.19|4|port1.0.19
|
||||
1.3.6.1.2.1.31.1.1.1.1.20|4|port1.0.20
|
||||
1.3.6.1.2.1.31.1.1.1.1.21|4|port1.0.21
|
||||
1.3.6.1.2.1.31.1.1.1.1.22|4|port1.0.22
|
||||
1.3.6.1.2.1.31.1.1.1.1.23|4|port1.0.23
|
||||
1.3.6.1.2.1.31.1.1.1.1.24|4|port1.0.24
|
||||
1.3.6.1.2.1.31.1.1.1.1.25|4|port1.0.25
|
||||
1.3.6.1.2.1.31.1.1.1.1.26|4|port1.0.26
|
||||
1.3.6.1.2.1.31.1.1.1.1.27|4|port1.0.27
|
||||
1.3.6.1.2.1.31.1.1.1.1.28|4|port1.0.28
|
||||
1.3.6.1.2.1.31.1.1.1.1.29|4|port1.0.29
|
||||
1.3.6.1.2.1.31.1.1.1.1.30|4|port1.0.30
|
||||
1.3.6.1.2.1.31.1.1.1.1.31|4|port1.0.31
|
||||
1.3.6.1.2.1.31.1.1.1.1.32|4|port1.0.32
|
||||
1.3.6.1.2.1.31.1.1.1.1.33|4|port1.0.33
|
||||
1.3.6.1.2.1.31.1.1.1.1.34|4|port1.0.34
|
||||
1.3.6.1.2.1.31.1.1.1.1.35|4|port1.0.35
|
||||
1.3.6.1.2.1.31.1.1.1.1.36|4|port1.0.36
|
||||
1.3.6.1.2.1.31.1.1.1.1.37|4|port1.0.37
|
||||
1.3.6.1.2.1.31.1.1.1.1.38|4|port1.0.38
|
||||
1.3.6.1.2.1.31.1.1.1.1.39|4|port1.0.39
|
||||
1.3.6.1.2.1.31.1.1.1.1.40|4|port1.0.40
|
||||
1.3.6.1.2.1.31.1.1.1.1.41|4|port1.0.41
|
||||
1.3.6.1.2.1.31.1.1.1.1.42|4|port1.0.42
|
||||
1.3.6.1.2.1.31.1.1.1.1.43|4|port1.0.43
|
||||
1.3.6.1.2.1.31.1.1.1.1.44|4|port1.0.44
|
||||
1.3.6.1.2.1.31.1.1.1.1.45|4|port1.0.45
|
||||
1.3.6.1.2.1.31.1.1.1.1.46|4|port1.0.46
|
||||
1.3.6.1.2.1.31.1.1.1.1.47|4|port1.0.47
|
||||
1.3.6.1.2.1.31.1.1.1.1.48|4|port1.0.48
|
||||
1.3.6.1.2.1.31.1.1.1.1.49|4|port1.0.49
|
||||
1.3.6.1.2.1.31.1.1.1.1.50|4|port1.0.50
|
||||
1.3.6.1.2.1.31.1.1.1.18.1|4|Module 1 Port 1
|
||||
1.3.6.1.2.1.31.1.1.1.18.2|4|Module 1 Port 2
|
||||
1.3.6.1.2.1.31.1.1.1.18.3|4|Module 1 Port 3
|
||||
1.3.6.1.2.1.31.1.1.1.18.4|4|Module 1 Port 4
|
||||
1.3.6.1.2.1.31.1.1.1.18.5|4|Module 1 Port 5
|
||||
1.3.6.1.2.1.31.1.1.1.18.6|4|Module 1 Port 6
|
||||
1.3.6.1.2.1.31.1.1.1.18.7|4|Module 1 Port 7
|
||||
1.3.6.1.2.1.31.1.1.1.18.8|4|Module 1 Port 8
|
||||
1.3.6.1.2.1.31.1.1.1.18.9|4|Module 1 Port 9
|
||||
1.3.6.1.2.1.31.1.1.1.18.10|4|Module 1 Port 10
|
||||
1.3.6.1.2.1.31.1.1.1.18.11|4|Module 1 Port 11
|
||||
1.3.6.1.2.1.31.1.1.1.18.12|4|Module 1 Port 12
|
||||
1.3.6.1.2.1.31.1.1.1.18.13|4|Module 1 Port 13
|
||||
1.3.6.1.2.1.31.1.1.1.18.14|4|Module 1 Port 14
|
||||
1.3.6.1.2.1.31.1.1.1.18.15|4|Module 1 Port 15
|
||||
1.3.6.1.2.1.31.1.1.1.18.16|4|Module 1 Port 16
|
||||
1.3.6.1.2.1.31.1.1.1.18.17|4|Module 1 Port 17
|
||||
1.3.6.1.2.1.31.1.1.1.18.18|4|Module 1 Port 18
|
||||
1.3.6.1.2.1.31.1.1.1.18.19|4|Module 1 Port 19
|
||||
1.3.6.1.2.1.31.1.1.1.18.20|4|Module 1 Port 20
|
||||
1.3.6.1.2.1.31.1.1.1.18.21|4|Module 1 Port 21
|
||||
1.3.6.1.2.1.31.1.1.1.18.22|4|Module 1 Port 22
|
||||
1.3.6.1.2.1.31.1.1.1.18.23|4|Module 1 Port 23
|
||||
1.3.6.1.2.1.31.1.1.1.18.24|4|Module 1 Port 24
|
||||
1.3.6.1.2.1.31.1.1.1.18.25|4|Module 1 Port 25
|
||||
1.3.6.1.2.1.31.1.1.1.18.26|4|Module 1 Port 26
|
||||
1.3.6.1.2.1.31.1.1.1.18.27|4|Module 1 Port 27
|
||||
1.3.6.1.2.1.31.1.1.1.18.28|4|Module 1 Port 28
|
||||
1.3.6.1.2.1.31.1.1.1.18.29|4|Module 1 Port 29
|
||||
1.3.6.1.2.1.31.1.1.1.18.30|4|Module 1 Port 30
|
||||
1.3.6.1.2.1.31.1.1.1.18.31|4|Module 1 Port 31
|
||||
1.3.6.1.2.1.31.1.1.1.18.32|4|Module 1 Port 32
|
||||
1.3.6.1.2.1.31.1.1.1.18.33|4|Module 1 Port 33
|
||||
1.3.6.1.2.1.31.1.1.1.18.34|4|Module 1 Port 34
|
||||
1.3.6.1.2.1.31.1.1.1.18.35|4|Module 1 Port 35
|
||||
1.3.6.1.2.1.31.1.1.1.18.36|4|Module 1 Port 36
|
||||
1.3.6.1.2.1.31.1.1.1.18.37|4|Module 1 Port 37
|
||||
1.3.6.1.2.1.31.1.1.1.18.38|4|Module 1 Port 38
|
||||
1.3.6.1.2.1.31.1.1.1.18.39|4|Module 1 Port 39
|
||||
1.3.6.1.2.1.31.1.1.1.18.40|4|Module 1 Port 40
|
||||
1.3.6.1.2.1.31.1.1.1.18.41|4|Module 1 Port 41
|
||||
1.3.6.1.2.1.31.1.1.1.18.42|4|Module 1 Port 42
|
||||
1.3.6.1.2.1.31.1.1.1.18.43|4|Module 1 Port 43
|
||||
1.3.6.1.2.1.31.1.1.1.18.44|4|Module 1 Port 44
|
||||
1.3.6.1.2.1.31.1.1.1.18.45|4|Module 1 Port 45
|
||||
1.3.6.1.2.1.31.1.1.1.18.46|4|Module 1 Port 46
|
||||
1.3.6.1.2.1.31.1.1.1.18.47|4|Module 1 Port 47
|
||||
1.3.6.1.2.1.31.1.1.1.18.48|4|Module 1 Port 48
|
||||
1.3.6.1.2.1.31.1.1.1.18.49|4|Module 1 Port 49
|
||||
1.3.6.1.2.1.31.1.1.1.18.50|4|Module 1 Port 50
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user