Fortinet FortiADC detection and basic statistics (#14434)

* FortiADC detection and basic statistics

* Style fix

* Fixed test data

* Fix test data

* Recollected all test data

* Add num_oid
This commit is contained in:
Mark Westerterp 2022-10-24 18:28:47 +02:00 committed by GitHub
parent 62aa77c0a0
commit db4dce298a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 6203 additions and 0 deletions

22
LibreNMS/OS/Fortiadc.php Normal file
View File

@ -0,0 +1,22 @@
<?php
namespace LibreNMS\OS;
use App\Models\Device;
use LibreNMS\Interfaces\Polling\OSPolling;
use LibreNMS\OS\Shared\Fortinet;
class Fortiadc extends Fortinet implements OSPolling
{
public function discoverOS(Device $device): void
{
parent::discoverOS($device); // yaml
$device->hardware = $device->hardware ?: $this->getHardwareName();
}
public function pollOS(): void
{
//
}
}

View File

@ -30,6 +30,32 @@ class Fortinet extends \LibreNMS\OS
protected function getHardwareName()
{
$rewrite_fortinet_hardware = [
'.1.3.6.1.4.1.12356.112.100.1' => 'FortiADC Unknown',
'.1.3.6.1.4.1.12356.112.100.10' => 'FortiADC DEV',
'.1.3.6.1.4.1.12356.112.100.20' => 'FortiADC KVM',
'.1.3.6.1.4.1.12356.112.100.30' => 'FortiADC VM',
'.1.3.6.1.4.1.12356.112.100.63' => 'FortiADC 60F',
'.1.3.6.1.4.1.12356.112.100.101' => 'FortiADC 100D',
'.1.3.6.1.4.1.12356.112.100.103' => 'FortiADC 100F',
'.1.3.6.1.4.1.12356.112.100.201' => 'FortiADC 200D',
'.1.3.6.1.4.1.12356.112.100.203' => 'FortiADC 200F',
'.1.3.6.1.4.1.12356.112.100.301' => 'FortiADC 300D',
'.1.3.6.1.4.1.12356.112.100.302' => 'FortiADC 300E',
'.1.3.6.1.4.1.12356.112.100.303' => 'FortiADC 300F',
'.1.3.6.1.4.1.12356.112.100.401' => 'FortiADC 400D',
'.1.3.6.1.4.1.12356.112.100.403' => 'FortiADC 400F',
'.1.3.6.1.4.1.12356.112.100.701' => 'FortiADC 700D',
'.1.3.6.1.4.1.12356.112.100.1001' => 'FortiADC 1000D',
'.1.3.6.1.4.1.12356.112.100.1003' => 'FortiADC 1000F',
'.1.3.6.1.4.1.12356.112.100.1203' => 'FortiADC 1200F',
'.1.3.6.1.4.1.12356.112.100.1501' => 'FortiADC 1500D',
'.1.3.6.1.4.1.12356.112.100.2001' => 'FortiADC 2000D',
'.1.3.6.1.4.1.12356.112.100.2003' => 'FortiADC 2000F',
'.1.3.6.1.4.1.12356.112.100.2203' => 'FortiADC 2200F',
'.1.3.6.1.4.1.12356.112.100.4001' => 'FortiADC 4000D',
'.1.3.6.1.4.1.12356.112.100.4003' => 'FortiADC 4000F',
'.1.3.6.1.4.1.12356.112.100.4203' => 'FortiADC 4200F',
'.1.3.6.1.4.1.12356.112.100.5003' => 'FortiADC 5000F',
'.1.3.6.1.4.1.12356.102.1.1000' => 'FortiAnalyzer 100',
'.1.3.6.1.4.1.12356.102.1.10002' => 'FortiAnalyzer 1000B',
'.1.3.6.1.4.1.12356.102.1.1001' => 'FortiAnalyzer 100A',

View File

@ -0,0 +1,45 @@
mib: FORTINET-FORTIADC-MIB
modules:
os:
version: FORTINET-FORTIADC-MIB::fadcSysVersion.0
serial: FORTINET-FORTIADC-MIB::fadcSysSerial.0
processors:
data:
-
oid: fadcSysCpuUsage
num_oid: '.1.3.6.1.4.1.12356.112.1.4.{{ $index }}'
descr: System CPU Usage
type: fortigate-fixed
mempools:
data:
-
percent_used: FORTINET-FORTIADC-MIB::fadcSysMemUsage
descr: System Memory Usage
sensors:
count:
data:
-
oid: fadcConcurrentClientConnections
index: 'fadcConcurrentClientConnections.{{ $index }}'
descr: Client Connections
group: Server Load Balance
-
oid: fadcConcurrentClientSSLSessions
index: 'fadcConcurrentClientSSLSessions.{{ $index }}'
descr: Client SSL Sessions
group: Server Load Balance
-
oid: fadcVirturalServerNumber
index: 'fadcVirturalServerNumber.{{ $index }}'
descr: Virtual Servers
group: Server Load Balance
-
oid: fadcRSNumber
index: 'fadcRSNumber.{{ $index }}'
descr: Real Server Pools
group: Server Load Balance
-
oid: fadcVdNumber
index: 'fadcVdNumber.{{ $index }}'
high_limit: '{{ $fadcVdMaxVdoms }}'
descr: VDOMs

View File

@ -0,0 +1,13 @@
os: fortiadc
text: 'Fortinet Application Deliver Controller'
type: appliance
icon: fortinet
mib_dir: fortinet
empty_ifdescr: true
ifname: true
over:
- { graph: device_processor, text: 'CPU Usage' }
- { graph: device_bits, text: 'Device Traffic' }
discovery:
- sysObjectID:
- .1.3.6.1.4.1.12356.112.100 #FortiADC

File diff suppressed because it is too large Load Diff

2305
tests/data/fortiadc_vm.json Normal file

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,319 @@
1.3.6.1.2.1.1.1.0|4|
1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.12356.112.100.30
1.3.6.1.2.1.1.3.0|67|1337302390
1.3.6.1.2.1.1.4.0|4|<private>
1.3.6.1.2.1.1.5.0|4|<private>
1.3.6.1.2.1.1.6.0|4|<private>
1.3.6.1.2.1.2.2.1.1.1|2|1
1.3.6.1.2.1.2.2.1.1.2|2|2
1.3.6.1.2.1.2.2.1.1.3|2|3
1.3.6.1.2.1.2.2.1.1.4|2|4
1.3.6.1.2.1.2.2.1.1.5|2|5
1.3.6.1.2.1.2.2.1.1.6|2|6
1.3.6.1.2.1.2.2.1.1.7|2|7
1.3.6.1.2.1.2.2.1.1.8|2|8
1.3.6.1.2.1.2.2.1.1.9|2|9
1.3.6.1.2.1.2.2.1.1.10|2|10
1.3.6.1.2.1.2.2.1.2.1|4|port1
1.3.6.1.2.1.2.2.1.2.2|4|port2
1.3.6.1.2.1.2.2.1.2.3|4|port3
1.3.6.1.2.1.2.2.1.2.4|4|port4
1.3.6.1.2.1.2.2.1.2.5|4|port5
1.3.6.1.2.1.2.2.1.2.6|4|port6
1.3.6.1.2.1.2.2.1.2.7|4|port7
1.3.6.1.2.1.2.2.1.2.8|4|port8
1.3.6.1.2.1.2.2.1.2.9|4|port9
1.3.6.1.2.1.2.2.1.2.10|4|port10
1.3.6.1.2.1.2.2.1.3.1|2|6
1.3.6.1.2.1.2.2.1.3.2|2|6
1.3.6.1.2.1.2.2.1.3.3|2|6
1.3.6.1.2.1.2.2.1.3.4|2|6
1.3.6.1.2.1.2.2.1.3.5|2|6
1.3.6.1.2.1.2.2.1.3.6|2|6
1.3.6.1.2.1.2.2.1.3.7|2|6
1.3.6.1.2.1.2.2.1.3.8|2|6
1.3.6.1.2.1.2.2.1.3.9|2|6
1.3.6.1.2.1.2.2.1.3.10|2|6
1.3.6.1.2.1.2.2.1.4.1|2|1500
1.3.6.1.2.1.2.2.1.4.2|2|1500
1.3.6.1.2.1.2.2.1.4.3|2|1500
1.3.6.1.2.1.2.2.1.4.4|2|1500
1.3.6.1.2.1.2.2.1.4.5|2|1500
1.3.6.1.2.1.2.2.1.4.6|2|1500
1.3.6.1.2.1.2.2.1.4.7|2|1500
1.3.6.1.2.1.2.2.1.4.8|2|1500
1.3.6.1.2.1.2.2.1.4.9|2|1500
1.3.6.1.2.1.2.2.1.4.10|2|1500
1.3.6.1.2.1.2.2.1.5.1|66|0
1.3.6.1.2.1.2.2.1.5.2|66|1895825408
1.3.6.1.2.1.2.2.1.5.3|66|1895825408
1.3.6.1.2.1.2.2.1.5.4|66|0
1.3.6.1.2.1.2.2.1.5.5|66|0
1.3.6.1.2.1.2.2.1.5.6|66|0
1.3.6.1.2.1.2.2.1.5.7|66|0
1.3.6.1.2.1.2.2.1.5.8|66|0
1.3.6.1.2.1.2.2.1.5.9|66|0
1.3.6.1.2.1.2.2.1.5.10|66|0
1.3.6.1.2.1.2.2.1.6.1|4x|005056014F1A
1.3.6.1.2.1.2.2.1.6.2|4x|005056014F1B
1.3.6.1.2.1.2.2.1.6.3|4x|005056014F1C
1.3.6.1.2.1.2.2.1.6.4|4x|005056014F1D
1.3.6.1.2.1.2.2.1.6.5|4x|005056014F1E
1.3.6.1.2.1.2.2.1.6.6|4x|005056014F1F
1.3.6.1.2.1.2.2.1.6.7|4x|005056014F21
1.3.6.1.2.1.2.2.1.6.8|4x|005056014F22
1.3.6.1.2.1.2.2.1.6.9|4x|005056014F23
1.3.6.1.2.1.2.2.1.6.10|4x|005056014F24
1.3.6.1.2.1.2.2.1.7.1|2|2
1.3.6.1.2.1.2.2.1.7.2|2|1
1.3.6.1.2.1.2.2.1.7.3|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.8.1|2|2
1.3.6.1.2.1.2.2.1.8.2|2|1
1.3.6.1.2.1.2.2.1.8.3|2|1
1.3.6.1.2.1.2.2.1.8.4|2|2
1.3.6.1.2.1.2.2.1.8.5|2|2
1.3.6.1.2.1.2.2.1.8.6|2|2
1.3.6.1.2.1.2.2.1.8.7|2|2
1.3.6.1.2.1.2.2.1.8.8|2|2
1.3.6.1.2.1.2.2.1.8.9|2|2
1.3.6.1.2.1.2.2.1.8.10|2|2
1.3.6.1.2.1.2.2.1.9.1|67|0
1.3.6.1.2.1.2.2.1.9.2|67|0
1.3.6.1.2.1.2.2.1.9.3|67|0
1.3.6.1.2.1.2.2.1.9.4|67|0
1.3.6.1.2.1.2.2.1.9.5|67|0
1.3.6.1.2.1.2.2.1.9.6|67|0
1.3.6.1.2.1.2.2.1.9.7|67|0
1.3.6.1.2.1.2.2.1.9.8|67|0
1.3.6.1.2.1.2.2.1.9.9|67|0
1.3.6.1.2.1.2.2.1.9.10|67|0
1.3.6.1.2.1.2.2.1.10.1|65|0
1.3.6.1.2.1.2.2.1.10.2|65|628955224
1.3.6.1.2.1.2.2.1.10.3|65|336984520
1.3.6.1.2.1.2.2.1.10.4|65|0
1.3.6.1.2.1.2.2.1.10.5|65|0
1.3.6.1.2.1.2.2.1.10.6|65|0
1.3.6.1.2.1.2.2.1.10.7|65|0
1.3.6.1.2.1.2.2.1.10.8|65|0
1.3.6.1.2.1.2.2.1.10.9|65|0
1.3.6.1.2.1.2.2.1.10.10|65|0
1.3.6.1.2.1.2.2.1.11.1|65|0
1.3.6.1.2.1.2.2.1.11.2|65|998078
1.3.6.1.2.1.2.2.1.11.3|65|767002
1.3.6.1.2.1.2.2.1.11.4|65|0
1.3.6.1.2.1.2.2.1.11.5|65|0
1.3.6.1.2.1.2.2.1.11.6|65|0
1.3.6.1.2.1.2.2.1.11.7|65|0
1.3.6.1.2.1.2.2.1.11.8|65|0
1.3.6.1.2.1.2.2.1.11.9|65|0
1.3.6.1.2.1.2.2.1.11.10|65|0
1.3.6.1.2.1.2.2.1.12.1|65|0
1.3.6.1.2.1.2.2.1.12.2|65|0
1.3.6.1.2.1.2.2.1.12.3|65|0
1.3.6.1.2.1.2.2.1.12.4|65|0
1.3.6.1.2.1.2.2.1.12.5|65|0
1.3.6.1.2.1.2.2.1.12.6|65|0
1.3.6.1.2.1.2.2.1.12.7|65|0
1.3.6.1.2.1.2.2.1.12.8|65|0
1.3.6.1.2.1.2.2.1.12.9|65|0
1.3.6.1.2.1.2.2.1.12.10|65|0
1.3.6.1.2.1.2.2.1.13.1|65|251
1.3.6.1.2.1.2.2.1.13.2|65|0
1.3.6.1.2.1.2.2.1.13.3|65|0
1.3.6.1.2.1.2.2.1.13.4|65|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.14.1|65|0
1.3.6.1.2.1.2.2.1.14.2|65|0
1.3.6.1.2.1.2.2.1.14.3|65|0
1.3.6.1.2.1.2.2.1.14.4|65|0
1.3.6.1.2.1.2.2.1.14.5|65|0
1.3.6.1.2.1.2.2.1.14.6|65|0
1.3.6.1.2.1.2.2.1.14.7|65|0
1.3.6.1.2.1.2.2.1.14.8|65|0
1.3.6.1.2.1.2.2.1.14.9|65|0
1.3.6.1.2.1.2.2.1.14.10|65|0
1.3.6.1.2.1.2.2.1.15.1|65|0
1.3.6.1.2.1.2.2.1.15.2|65|0
1.3.6.1.2.1.2.2.1.15.3|65|0
1.3.6.1.2.1.2.2.1.15.4|65|0
1.3.6.1.2.1.2.2.1.15.5|65|0
1.3.6.1.2.1.2.2.1.15.6|65|0
1.3.6.1.2.1.2.2.1.15.7|65|0
1.3.6.1.2.1.2.2.1.15.8|65|0
1.3.6.1.2.1.2.2.1.15.9|65|0
1.3.6.1.2.1.2.2.1.15.10|65|0
1.3.6.1.2.1.2.2.1.16.1|65|0
1.3.6.1.2.1.2.2.1.16.2|65|68452074
1.3.6.1.2.1.2.2.1.16.3|65|196504495
1.3.6.1.2.1.2.2.1.16.4|65|0
1.3.6.1.2.1.2.2.1.16.5|65|0
1.3.6.1.2.1.2.2.1.16.6|65|0
1.3.6.1.2.1.2.2.1.16.7|65|0
1.3.6.1.2.1.2.2.1.16.8|65|0
1.3.6.1.2.1.2.2.1.16.9|65|0
1.3.6.1.2.1.2.2.1.16.10|65|0
1.3.6.1.2.1.2.2.1.17.1|65|0
1.3.6.1.2.1.2.2.1.17.2|65|742687
1.3.6.1.2.1.2.2.1.17.3|65|875189
1.3.6.1.2.1.2.2.1.17.4|65|0
1.3.6.1.2.1.2.2.1.17.5|65|0
1.3.6.1.2.1.2.2.1.17.6|65|0
1.3.6.1.2.1.2.2.1.17.7|65|0
1.3.6.1.2.1.2.2.1.17.8|65|0
1.3.6.1.2.1.2.2.1.17.9|65|0
1.3.6.1.2.1.2.2.1.17.10|65|0
1.3.6.1.2.1.2.2.1.18.1|65|0
1.3.6.1.2.1.2.2.1.18.2|65|0
1.3.6.1.2.1.2.2.1.18.3|65|0
1.3.6.1.2.1.2.2.1.18.4|65|0
1.3.6.1.2.1.2.2.1.18.5|65|0
1.3.6.1.2.1.2.2.1.18.6|65|0
1.3.6.1.2.1.2.2.1.18.7|65|0
1.3.6.1.2.1.2.2.1.18.8|65|0
1.3.6.1.2.1.2.2.1.18.9|65|0
1.3.6.1.2.1.2.2.1.18.10|65|0
1.3.6.1.2.1.2.2.1.19.1|65|0
1.3.6.1.2.1.2.2.1.19.2|65|0
1.3.6.1.2.1.2.2.1.19.3|65|0
1.3.6.1.2.1.2.2.1.19.4|65|0
1.3.6.1.2.1.2.2.1.19.5|65|0
1.3.6.1.2.1.2.2.1.19.6|65|0
1.3.6.1.2.1.2.2.1.19.7|65|0
1.3.6.1.2.1.2.2.1.19.8|65|0
1.3.6.1.2.1.2.2.1.19.9|65|0
1.3.6.1.2.1.2.2.1.19.10|65|0
1.3.6.1.2.1.2.2.1.20.1|65|0
1.3.6.1.2.1.2.2.1.20.2|65|0
1.3.6.1.2.1.2.2.1.20.3|65|0
1.3.6.1.2.1.2.2.1.20.4|65|0
1.3.6.1.2.1.2.2.1.20.5|65|0
1.3.6.1.2.1.2.2.1.20.6|65|0
1.3.6.1.2.1.2.2.1.20.7|65|0
1.3.6.1.2.1.2.2.1.20.8|65|0
1.3.6.1.2.1.2.2.1.20.9|65|0
1.3.6.1.2.1.2.2.1.20.10|65|0
1.3.6.1.2.1.2.2.1.21.1|66|0
1.3.6.1.2.1.2.2.1.21.2|66|0
1.3.6.1.2.1.2.2.1.21.3|66|0
1.3.6.1.2.1.2.2.1.21.4|66|0
1.3.6.1.2.1.2.2.1.21.5|66|0
1.3.6.1.2.1.2.2.1.21.6|66|0
1.3.6.1.2.1.2.2.1.21.7|66|0
1.3.6.1.2.1.2.2.1.21.8|66|0
1.3.6.1.2.1.2.2.1.21.9|66|0
1.3.6.1.2.1.2.2.1.21.10|66|0
1.3.6.1.2.1.2.2.1.22.1|6|0.0.0
1.3.6.1.2.1.2.2.1.22.2|6|0.0.0
1.3.6.1.2.1.2.2.1.22.3|6|0.0.0
1.3.6.1.2.1.2.2.1.22.4|6|0.0.0
1.3.6.1.2.1.2.2.1.22.5|6|0.0.0
1.3.6.1.2.1.2.2.1.22.6|6|0.0.0
1.3.6.1.2.1.2.2.1.22.7|6|0.0.0
1.3.6.1.2.1.2.2.1.22.8|6|0.0.0
1.3.6.1.2.1.2.2.1.22.9|6|0.0.0
1.3.6.1.2.1.2.2.1.22.10|6|0.0.0
1.3.6.1.2.1.2.2.1.23.1|2|0
1.3.6.1.2.1.2.2.1.23.2|2|0
1.3.6.1.2.1.2.2.1.23.3|2|0
1.3.6.1.2.1.2.2.1.23.4|2|0
1.3.6.1.2.1.2.2.1.23.5|2|0
1.3.6.1.2.1.2.2.1.23.6|2|0
1.3.6.1.2.1.2.2.1.23.7|2|0
1.3.6.1.2.1.2.2.1.23.8|2|0
1.3.6.1.2.1.2.2.1.23.9|2|0
1.3.6.1.2.1.2.2.1.23.10|2|0
1.3.6.1.2.1.4.3.0|65|15002271
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|3
1.3.6.1.2.1.4.7.0|65|0
1.3.6.1.2.1.4.8.0|65|0
1.3.6.1.2.1.4.9.0|65|15002184
1.3.6.1.2.1.4.10.0|65|15587164
1.3.6.1.2.1.4.11.0|65|0
1.3.6.1.2.1.4.12.0|65|297
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.46.254.1|2|3
1.3.6.1.2.1.4.20.1.2.10.46.254.10|2|3
1.3.6.1.2.1.4.20.1.2.10.10.10.242|2|2
1.3.6.1.2.1.4.20.1.2.10.10.10.243|2|2
1.3.6.1.2.1.4.20.1.3.10.46.254.1|64|255.255.255.0
1.3.6.1.2.1.4.20.1.3.10.46.254.10|64|255.255.255.255
1.3.6.1.2.1.4.20.1.3.10.10.10.242|64|255.255.255.240
1.3.6.1.2.1.4.20.1.3.10.10.10.243|64|255.255.255.255
1.3.6.1.2.1.5.1.0|65|1359738
1.3.6.1.2.1.5.2.0|65|13
1.3.6.1.2.1.5.3.0|65|0
1.3.6.1.2.1.5.4.0|65|63666
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|0
1.3.6.1.2.1.5.9.0|65|1298647
1.3.6.1.2.1.5.10.0|65|3
1.3.6.1.2.1.5.11.0|65|0
1.3.6.1.2.1.5.12.0|65|0
1.3.6.1.2.1.5.13.0|65|0
1.3.6.1.2.1.5.14.0|65|0
1.3.6.1.2.1.5.15.0|65|1362223
1.3.6.1.2.1.5.16.0|65|0
1.3.6.1.2.1.5.17.0|65|63564
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|0
1.3.6.1.2.1.5.22.0|65|12
1.3.6.1.2.1.5.23.0|65|1298647
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.6.5.0|65|238273
1.3.6.1.2.1.6.6.0|65|10107
1.3.6.1.2.1.6.7.0|65|3231
1.3.6.1.2.1.6.8.0|65|1049
1.3.6.1.2.1.6.9.0|66|2
1.3.6.1.2.1.6.10.0|65|12859445
1.3.6.1.2.1.6.11.0|65|13143546
1.3.6.1.2.1.6.12.0|65|475864
1.3.6.1.2.1.6.14.0|65|26
1.3.6.1.2.1.6.15.0|65|224646
1.3.6.1.2.1.7.1.0|65|705218
1.3.6.1.2.1.7.2.0|65|63522
1.3.6.1.2.1.7.3.0|65|0
1.3.6.1.2.1.7.4.0|65|868274
1.3.6.1.2.1.10.7.2.1.19.1|2|0
1.3.6.1.2.1.10.7.2.1.19.2|2|0
1.3.6.1.2.1.10.7.2.1.19.3|2|0
1.3.6.1.2.1.10.7.2.1.19.4|2|0
1.3.6.1.2.1.10.7.2.1.19.5|2|0
1.3.6.1.2.1.10.7.2.1.19.6|2|0
1.3.6.1.2.1.10.7.2.1.19.7|2|0
1.3.6.1.2.1.10.7.2.1.19.8|2|0
1.3.6.1.2.1.10.7.2.1.19.9|2|0
1.3.6.1.2.1.10.7.2.1.19.10|2|0
1.3.6.1.4.1.12356.112.1.2.0|4|FADV040000000000
1.3.6.1.4.1.12356.112.1.3.0|4|v7.0.1,build0022,220323 (Interim)
1.3.6.1.4.1.12356.112.1.4.0|66|8
1.3.6.1.4.1.12356.112.1.5.0|66|16
1.3.6.1.4.1.12356.112.2.1.1.0|2|1
1.3.6.1.4.1.12356.112.8.1.2.0|2|3
1.3.6.1.4.1.12356.112.8.2.1.0|2|2
1.3.6.1.4.1.12356.112.8.5.7.0|2|0
1.3.6.1.4.1.12356.112.8.5.8.0|2|0