mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
Add FortiGate license status sensors (#15722)
* FortiGate 40F JSON Test data * FortiGate 40F SNMPrec Test Data * Add license expiration days state sensor * Add FortiGate license expiration count sensors * Update FORTINET-FORTIGATE-MIB Update to version 2023-07-21
This commit is contained in:
@@ -15,6 +15,41 @@
|
||||
* @author LibreNMS Contributors
|
||||
*/
|
||||
|
||||
// Sensors for license status
|
||||
$licenseOids = snmpwalk_cache_multi_oid($device, 'fgSystemInfoAdvanced', [], 'FORTINET-FORTIGATE-MIB');
|
||||
|
||||
if (! empty($licenseOids)) {
|
||||
foreach ($licenseOids as $index => $entry) {
|
||||
if (isset($entry['fgLicContractExpiry'])) {
|
||||
$descr = $entry['fgLicContractDesc'];
|
||||
$expirationRaw = $entry['fgLicContractExpiry'];
|
||||
|
||||
discover_sensor(
|
||||
$valid['sensor'],
|
||||
'count',
|
||||
$device,
|
||||
'.1.3.6.1.4.1.12356.101.4.6.3.1.2.1.2.' . $index,
|
||||
'fgLicContractExpiry.' . $index,
|
||||
'fortigate',
|
||||
'Days left for ' . $descr,
|
||||
1,
|
||||
1,
|
||||
7,
|
||||
14,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
'snmp',
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
'License expiration',
|
||||
'gauge'
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
$session_rate = [
|
||||
'Sessions/sec 1m avg' => ['.1.3.6.1.4.1.12356.101.4.1.11', 'fgSysSesRate1'], //FORTINET-FORTIGATE-MIB::fgSysSesRate1.0
|
||||
'Sessions/sec 10m avg' => ['.1.3.6.1.4.1.12356.101.4.1.12', 'fgSysSesRate10'], //FORTINET-FORTIGATE-MIB::fgSysSesRate10.0
|
||||
|
@@ -1,5 +1,12 @@
|
||||
<?php
|
||||
|
||||
// Convert string with textual date to remaining days for license expiration
|
||||
if (preg_match("/fgLicContractExpiry\.\d+/", $sensor['sensor_index'])) {
|
||||
$expirationRaw = snmp_get($device, $sensor['sensor_oid'], '-OUqnv');
|
||||
$expirationDate = strtotime($expirationRaw);
|
||||
$sensor_value = round((strtotime($expirationRaw) - strtotime('now')) / 86400, 0);
|
||||
}
|
||||
|
||||
if ($sensor['sensor_type'] === 'clusterState') {
|
||||
// Contains the indexes of all the cluster members
|
||||
$fgHaStatsIndex_num = '.1.3.6.1.4.1.12356.101.13.2.1.1.1';
|
||||
|
@@ -32,7 +32,7 @@ IMPORTS
|
||||
FROM SNMPv2-TC;
|
||||
|
||||
fnFortiGateMib MODULE-IDENTITY
|
||||
LAST-UPDATED "202303160000Z"
|
||||
LAST-UPDATED "202307210000Z"
|
||||
ORGANIZATION
|
||||
"Fortinet Technologies, Inc."
|
||||
CONTACT-INFO
|
||||
@@ -42,6 +42,9 @@ fnFortiGateMib MODULE-IDENTITY
|
||||
http://www.fortinet.com"
|
||||
DESCRIPTION
|
||||
"MIB module for Fortinet FortiGate devices."
|
||||
REVISION "202307210000Z"
|
||||
DESCRIPTION
|
||||
"Add fgTrapFaz for FortiAnalyzer event."
|
||||
REVISION "202303160000Z"
|
||||
DESCRIPTION
|
||||
"Added OID fgServiceGroupWorkerBlades for 6K7K slbc platform."
|
||||
@@ -581,7 +584,6 @@ fg900D OBJECT IDENTIFIER ::= { fgModel 900 }
|
||||
fgr60F OBJECT IDENTIFIER ::= { fgModel 643 }
|
||||
fgr60FI OBJECT IDENTIFIER ::= { fgModel 648 }
|
||||
fgt1000D OBJECT IDENTIFIER ::= { fgModel 10005 }
|
||||
fgt100D OBJECT IDENTIFIER ::= { fgModel 1004 }
|
||||
fgt100E OBJECT IDENTIFIER ::= { fgModel 1041 }
|
||||
fgt100EF OBJECT IDENTIFIER ::= { fgModel 1042 }
|
||||
fgt100F OBJECT IDENTIFIER ::= { fgModel 1000 }
|
||||
@@ -4429,6 +4431,19 @@ fgManIfIp6 OBJECT-TYPE
|
||||
"IPv6 address of the interface listed in the trap"
|
||||
::= { fgMgmtTrapObjects 3 }
|
||||
|
||||
fgFazTrapType OBJECT-TYPE
|
||||
SYNTAX INTEGER {
|
||||
mainFailover(1),
|
||||
altFailover(2)
|
||||
}
|
||||
MAX-ACCESS accessible-for-notify
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Fortianalyzer trap type, there are 2 different values as below:
|
||||
mainFailover(1) - Fortianalyzer main server failover and alternate server take over.
|
||||
altFailover(2) - Fortianalyzer alternate server failover and main server take over."
|
||||
::= { fgMgmtTrapObjects 4 }
|
||||
|
||||
--
|
||||
-- fortinet.fnFortiGateMib.fgIntf
|
||||
--
|
||||
@@ -12992,6 +13007,13 @@ fgTrapFazDisconnect NOTIFICATION-TYPE
|
||||
"The device has been disconnected from the FortiAnalyzer."
|
||||
::= { fgTrapPrefix 701 }
|
||||
|
||||
fgTrapFaz NOTIFICATION-TYPE
|
||||
OBJECTS { fnSysSerial, sysName, fgFazTrapType }
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"A trap for Fortianalyzer event."
|
||||
::= { fgTrapPrefix 702}
|
||||
|
||||
fgTrapWcApUp NOTIFICATION-TYPE
|
||||
OBJECTS { fnSysSerial, sysName, fgWcApVdom, fgWcApSerial, fgWcApName }
|
||||
STATUS current
|
||||
@@ -13103,7 +13125,7 @@ fgFmTrapGroup NOTIFICATION-GROUP
|
||||
::= { fgMibConformance 1 }
|
||||
|
||||
fgFmTrapObjectGroup OBJECT-GROUP
|
||||
OBJECTS { fgManIfIp, fgManIfMask,fgManIfIp6 }
|
||||
OBJECTS { fgManIfIp, fgManIfMask,fgManIfIp6, fgFazTrapType }
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"These objects support the traps in the fgFmTrapGroup."
|
||||
@@ -13411,7 +13433,7 @@ fgNotificationGroup NOTIFICATION-GROUP
|
||||
fgTrapAvPattern, fgTrapAvFragmented,
|
||||
fgTrapAvEnterConserve, fgTrapAvBypass,
|
||||
fgTrapAvOversizePass, fgTrapAvOversizeBlock,
|
||||
fgTrapFazDisconnect, fgTrapWcApUp, fgTrapWcApDown, fgTrapDeviceNew,
|
||||
fgTrapFazDisconnect, fgTrapFaz, fgTrapWcApUp, fgTrapWcApDown, fgTrapDeviceNew,
|
||||
fgTrapPerCpuHigh, fgTrapDhcp, fgTrapPoolUsage,
|
||||
fgTrapFcSwUp, fgTrapFcSwDown, fgTrapServerLoadBalanceRealServerDown,
|
||||
fgTrapSlbc }
|
||||
|
4993
tests/data/fortigate_40f.json
Normal file
4993
tests/data/fortigate_40f.json
Normal file
File diff suppressed because it is too large
Load Diff
237
tests/snmpsim/fortigate_40f.snmprec
Normal file
237
tests/snmpsim/fortigate_40f.snmprec
Normal file
@@ -0,0 +1,237 @@
|
||||
1.3.6.1.2.1.1.1.0|4|Lab FortiGate A
|
||||
1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.12356.101.1.441
|
||||
1.3.6.1.2.1.1.4.0|4|<private>
|
||||
1.3.6.1.2.1.1.6.0|4|<private>
|
||||
1.3.6.1.2.1.2.2.1.2.1|4|
|
||||
1.3.6.1.2.1.2.2.1.2.2|4|
|
||||
1.3.6.1.2.1.2.2.1.2.3|4|
|
||||
1.3.6.1.2.1.2.2.1.2.4|4|
|
||||
1.3.6.1.2.1.2.2.1.2.5|4|
|
||||
1.3.6.1.2.1.2.2.1.2.6|4|
|
||||
1.3.6.1.2.1.2.2.1.2.7|4|
|
||||
1.3.6.1.2.1.2.2.1.2.8|4|
|
||||
1.3.6.1.2.1.2.2.1.2.9|4|
|
||||
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|131
|
||||
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.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|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|2
|
||||
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.4.20.1.2.192.168.178.115|2|5
|
||||
1.3.6.1.2.1.4.20.1.3.192.168.178.115|64|255.255.255.0
|
||||
1.3.6.1.2.1.4.31.1.1.3.1|65|116012
|
||||
1.3.6.1.2.1.4.31.1.1.3.2|65|39197
|
||||
1.3.6.1.2.1.4.31.1.1.4.1|70|116012
|
||||
1.3.6.1.2.1.4.31.1.1.4.2|70|39197
|
||||
1.3.6.1.2.1.4.31.1.1.5.1|65|55629719
|
||||
1.3.6.1.2.1.4.31.1.1.5.2|65|5773274
|
||||
1.3.6.1.2.1.4.31.1.1.6.1|70|55629719
|
||||
1.3.6.1.2.1.4.31.1.1.6.2|70|5773274
|
||||
1.3.6.1.2.1.4.31.1.1.7.1|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.7.2|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.8.1|65|383
|
||||
1.3.6.1.2.1.4.31.1.1.8.2|65|2188
|
||||
1.3.6.1.2.1.4.31.1.1.9.1|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.9.2|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.10.1|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.10.2|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.11.1|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.11.2|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.12.1|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.12.2|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.13.1|70|0
|
||||
1.3.6.1.2.1.4.31.1.1.13.2|70|0
|
||||
1.3.6.1.2.1.4.31.1.1.14.1|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.14.2|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.15.1|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.15.2|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.16.1|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.16.2|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.17.1|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.17.2|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.18.1|65|62653
|
||||
1.3.6.1.2.1.4.31.1.1.18.2|65|6450
|
||||
1.3.6.1.2.1.4.31.1.1.19.1|70|62653
|
||||
1.3.6.1.2.1.4.31.1.1.19.2|70|6450
|
||||
1.3.6.1.2.1.4.31.1.1.20.1|65|55159
|
||||
1.3.6.1.2.1.4.31.1.1.20.2|65|38
|
||||
1.3.6.1.2.1.4.31.1.1.21.1|70|55159
|
||||
1.3.6.1.2.1.4.31.1.1.21.2|70|38
|
||||
1.3.6.1.2.1.4.31.1.1.22.1|65|59365
|
||||
1.3.6.1.2.1.4.31.1.1.22.2|65|1
|
||||
1.3.6.1.2.1.4.31.1.1.23.1|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.23.2|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.24.1|70|0
|
||||
1.3.6.1.2.1.4.31.1.1.24.2|70|0
|
||||
1.3.6.1.2.1.4.31.1.1.25.1|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.25.2|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.26.1|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.26.2|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.27.1|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.27.2|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.28.1|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.28.2|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.29.1|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.29.2|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.30.1|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.30.2|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.31.1|70|0
|
||||
1.3.6.1.2.1.4.31.1.1.31.2|70|0
|
||||
1.3.6.1.2.1.4.31.1.1.32.1|65|13625975
|
||||
1.3.6.1.2.1.4.31.1.1.32.2|65|2888
|
||||
1.3.6.1.2.1.4.31.1.1.33.1|70|13625975
|
||||
1.3.6.1.2.1.4.31.1.1.33.2|70|2888
|
||||
1.3.6.1.2.1.4.31.1.1.34.1|65|370
|
||||
1.3.6.1.2.1.4.31.1.1.34.2|65|37007
|
||||
1.3.6.1.2.1.4.31.1.1.35.1|70|370
|
||||
1.3.6.1.2.1.4.31.1.1.35.2|70|37007
|
||||
1.3.6.1.2.1.4.31.1.1.36.1|65|13320
|
||||
1.3.6.1.2.1.4.31.1.1.36.2|65|5548681
|
||||
1.3.6.1.2.1.4.31.1.1.37.1|70|13320
|
||||
1.3.6.1.2.1.4.31.1.1.37.2|70|5548681
|
||||
1.3.6.1.2.1.4.31.1.1.38.1|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.38.2|65|76
|
||||
1.3.6.1.2.1.4.31.1.1.39.1|70|0
|
||||
1.3.6.1.2.1.4.31.1.1.39.2|70|76
|
||||
1.3.6.1.2.1.4.31.1.1.40.1|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.40.2|65|5776
|
||||
1.3.6.1.2.1.4.31.1.1.41.1|70|0
|
||||
1.3.6.1.2.1.4.31.1.1.41.2|70|5776
|
||||
1.3.6.1.2.1.4.31.1.1.42.1|65|14611
|
||||
1.3.6.1.2.1.4.31.1.1.42.2|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.43.1|70|14611
|
||||
1.3.6.1.2.1.4.31.1.1.43.2|70|0
|
||||
1.3.6.1.2.1.4.31.1.1.44.1|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.44.2|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.45.1|70|0
|
||||
1.3.6.1.2.1.4.31.1.1.45.2|70|0
|
||||
1.3.6.1.2.1.4.31.1.1.46.1|67|0
|
||||
1.3.6.1.2.1.4.31.1.1.46.2|67|0
|
||||
1.3.6.1.2.1.4.31.1.1.47.1|66|0
|
||||
1.3.6.1.2.1.4.31.1.1.47.2|66|0
|
||||
1.3.6.1.2.1.31.1.1.1.1.1|4|wan
|
||||
1.3.6.1.2.1.31.1.1.1.1.2|4|lan1
|
||||
1.3.6.1.2.1.31.1.1.1.1.3|4|lan2
|
||||
1.3.6.1.2.1.31.1.1.1.1.4|4|lan3
|
||||
1.3.6.1.2.1.31.1.1.1.1.5|4|a
|
||||
1.3.6.1.2.1.31.1.1.1.1.6|4|modem
|
||||
1.3.6.1.2.1.31.1.1.1.1.7|4|naf.root
|
||||
1.3.6.1.2.1.31.1.1.1.1.8|4|l2t.root
|
||||
1.3.6.1.2.1.31.1.1.1.1.9|4|ssl.root
|
||||
1.3.6.1.2.1.31.1.1.1.18.1|4|
|
||||
1.3.6.1.2.1.31.1.1.1.18.2|4|
|
||||
1.3.6.1.2.1.31.1.1.1.18.3|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|SSL VPN interface
|
||||
1.3.6.1.2.1.31.1.2.1.3.0.1|2|1
|
||||
1.3.6.1.2.1.31.1.2.1.3.0.2|2|1
|
||||
1.3.6.1.2.1.31.1.2.1.3.0.3|2|1
|
||||
1.3.6.1.2.1.31.1.2.1.3.0.4|2|1
|
||||
1.3.6.1.2.1.31.1.2.1.3.0.5|2|1
|
||||
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|1
|
||||
1.3.6.1.2.1.31.1.2.1.3.0.8|2|1
|
||||
1.3.6.1.2.1.31.1.2.1.3.0.9|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.2.0|2|1
|
||||
1.3.6.1.2.1.31.1.2.1.3.3.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|2
|
||||
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.47.1.1.1.1.11.1|4|FGT40FTK23055511
|
||||
1.3.6.1.2.1.47.1.1.1.1.13.1|4|FGT_40F
|
||||
1.3.6.1.4.1.12356.101.4.1.1.0|4|v7.0.12,build0523,230606 (GA.M)
|
||||
1.3.6.1.4.1.12356.101.4.1.3.0|66|0
|
||||
1.3.6.1.4.1.12356.101.4.1.4.0|66|41
|
||||
1.3.6.1.4.1.12356.101.4.1.5.0|66|1964276
|
||||
1.3.6.1.4.1.12356.101.4.1.8.0|66|265
|
||||
1.3.6.1.4.1.12356.101.4.1.11.0|66|3
|
||||
1.3.6.1.4.1.12356.101.4.1.12.0|66|1
|
||||
1.3.6.1.4.1.12356.101.4.1.13.0|66|0
|
||||
1.3.6.1.4.1.12356.101.4.1.14.0|66|0
|
||||
1.3.6.1.4.1.12356.101.4.3.1.0|2|3
|
||||
1.3.6.1.4.1.12356.101.4.3.2.1.1.1|2|1
|
||||
1.3.6.1.4.1.12356.101.4.3.2.1.1.2|2|2
|
||||
1.3.6.1.4.1.12356.101.4.3.2.1.1.3|2|3
|
||||
1.3.6.1.4.1.12356.101.4.3.2.1.2.1|4|CPU ON-DIE Temperature
|
||||
1.3.6.1.4.1.12356.101.4.3.2.1.2.2|4|MV1514 Temperature
|
||||
1.3.6.1.4.1.12356.101.4.3.2.1.2.3|4|MV1515 Temperature
|
||||
1.3.6.1.4.1.12356.101.4.3.2.1.3.1|4|52.235001
|
||||
1.3.6.1.4.1.12356.101.4.3.2.1.3.2|4|39
|
||||
1.3.6.1.4.1.12356.101.4.3.2.1.3.3|4|51
|
||||
1.3.6.1.4.1.12356.101.4.3.2.1.4.1|2|0
|
||||
1.3.6.1.4.1.12356.101.4.3.2.1.4.2|2|0
|
||||
1.3.6.1.4.1.12356.101.4.3.2.1.4.3|2|0
|
||||
1.3.6.1.4.1.12356.101.4.4.2.1.2.1|66|0
|
||||
1.3.6.1.4.1.12356.101.4.4.2.1.2.2|66|3
|
||||
1.3.6.1.4.1.12356.101.4.4.2.1.2.3|66|5
|
||||
1.3.6.1.4.1.12356.101.4.4.2.1.2.4|66|5
|
||||
1.3.6.1.4.1.12356.101.4.6.3.1.2.1.2.1|4|Wed Sep 16 01:00:00 2026
|
||||
1.3.6.1.4.1.12356.101.4.6.3.1.2.1.2.2|4|Wed Sep 16 01:00:00 2026
|
||||
1.3.6.1.4.1.12356.101.4.6.3.1.2.1.2.3|4|Wed Sep 16 01:00:00 2026
|
||||
1.3.6.1.4.1.12356.101.4.6.3.1.2.1.2.4|4|Wed Sep 16 01:00:00 2026
|
||||
1.3.6.1.4.1.12356.101.4.6.3.1.2.1.2.5|4|Wed Sep 16 01:00:00 2026
|
||||
1.3.6.1.4.1.12356.101.4.6.3.1.2.1.2.6|4|Wed Sep 16 01:00:00 2026
|
||||
1.3.6.1.4.1.12356.101.4.6.3.1.2.1.2.7|4|Wed Sep 16 01:00:00 2026
|
||||
1.3.6.1.4.1.12356.101.4.6.3.1.2.1.2.8|4|Wed Sep 16 01:00:00 2026
|
||||
1.3.6.1.4.1.12356.101.4.6.3.1.2.1.2.9|4|Wed Sep 16 01:00:00 2026
|
||||
1.3.6.1.4.1.12356.101.4.6.3.1.2.1.2.10|4|Wed Sep 16 01:00:00 2026
|
||||
1.3.6.1.4.1.12356.101.4.6.3.1.2.1.2.11|4|Wed Sep 16 01:00:00 2026
|
||||
1.3.6.1.4.1.12356.101.4.6.3.1.2.1.2.12|4|Wed Sep 16 01:00:00 2026
|
||||
1.3.6.1.4.1.12356.101.4.6.3.1.2.1.2.13|4|Wed Sep 16 01:00:00 2026
|
||||
1.3.6.1.4.1.12356.101.4.6.3.1.2.1.2.14|4|Wed Sep 16 01:00:00 2026
|
||||
1.3.6.1.4.1.12356.101.4.6.3.1.2.1.2.15|4|Wed Sep 16 01:00:00 2026
|
||||
1.3.6.1.4.1.12356.101.4.6.3.1.2.1.2.16|4|Wed Sep 16 01:00:00 2026
|
||||
1.3.6.1.4.1.12356.101.4.6.3.1.2.1.2.17|4|Wed Sep 16 01:00:00 2026
|
||||
1.3.6.1.4.1.12356.101.4.6.3.1.2.1.2.18|4|Wed Sep 16 01:00:00 2026
|
||||
1.3.6.1.4.1.12356.101.4.6.3.1.2.1.2.19|4|Wed Sep 16 01:00:00 2026
|
||||
1.3.6.1.4.1.12356.101.4.6.3.1.2.1.2.20|4|Wed Sep 16 01:00:00 2026
|
||||
1.3.6.1.4.1.12356.101.4.6.3.1.2.1.2.21|4|Wed Sep 16 01:00:00 2026
|
||||
1.3.6.1.4.1.12356.101.4.6.3.1.2.1.2.22|4|Wed Sep 16 01:00:00 2026
|
||||
1.3.6.1.4.1.12356.101.4.6.3.1.2.1.2.23|4|Wed Sep 16 01:00:00 2026
|
||||
1.3.6.1.4.1.12356.101.4.6.3.1.2.1.2.24|4|Wed Sep 16 01:00:00 2026
|
||||
1.3.6.1.4.1.12356.101.4.6.3.1.2.1.2.25|4|Wed Sep 16 01:00:00 2026
|
||||
1.3.6.1.4.1.12356.101.4.6.3.1.2.1.2.26|4|Wed Sep 16 01:00:00 2026
|
||||
1.3.6.1.4.1.12356.101.4.6.3.1.2.1.2.27|4|Wed Sep 16 01:00:00 2026
|
||||
1.3.6.1.4.1.12356.101.4.6.3.1.2.1.2.28|4|Wed Sep 16 01:00:00 2026
|
||||
1.3.6.1.4.1.12356.101.9.2.1.1.1.1|65|0
|
||||
1.3.6.1.4.1.12356.101.9.2.1.1.2.1|65|0
|
||||
1.3.6.1.4.1.12356.101.9.2.1.1.3.1|65|0
|
||||
1.3.6.1.4.1.12356.101.9.2.1.1.4.1|65|0
|
||||
1.3.6.1.4.1.12356.101.9.2.1.1.5.1|65|0
|
||||
1.3.6.1.4.1.12356.101.9.2.1.1.6.1|65|0
|
||||
1.3.6.1.4.1.12356.101.9.2.1.1.7.1|65|0
|
||||
1.3.6.1.4.1.12356.101.9.2.1.1.8.1|65|0
|
||||
1.3.6.1.4.1.12356.101.9.2.1.1.9.1|65|0
|
||||
1.3.6.1.4.1.12356.101.10.1.2.1.1.1.1|65|0
|
||||
1.3.6.1.4.1.12356.101.10.1.2.1.1.2.1|65|0
|
||||
1.3.6.1.4.1.12356.101.10.1.2.1.1.3.1|65|0
|
||||
1.3.6.1.4.1.12356.101.10.1.2.1.1.4.1|65|0
|
||||
1.3.6.1.4.1.12356.101.10.1.2.1.1.5.1|65|0
|
||||
1.3.6.1.4.1.12356.101.10.1.2.1.1.6.1|65|0
|
||||
1.3.6.1.4.1.12356.101.10.1.2.1.1.7.1|65|0
|
||||
1.3.6.1.4.1.12356.101.12.1.1.0|2|0
|
||||
1.3.6.1.4.1.12356.101.12.2.3.1.1.1|2|1
|
||||
1.3.6.1.4.1.12356.101.12.2.3.1.2.1|66|0
|
||||
1.3.6.1.4.1.12356.101.12.2.3.1.6.1|66|0
|
||||
1.3.6.1.4.1.12356.101.14.2.5.0|66|0
|
||||
1.3.6.1.4.1.12356.101.14.2.7.0|66|0
|
Reference in New Issue
Block a user