mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
Fortigate ipv6 ipsec (#15150)
* Squash Commit Fortigate Mib updates and ipsc ipv6 tunnels stat test data to go allong with it * add optional -Ih flag * lint fix * revert changeed on test data 500d * fix test data on 60f3g4g
This commit is contained in:
@@ -32,6 +32,7 @@ use LibreNMS\Config;
|
||||
use LibreNMS\Interfaces\Discovery\DiscoveryItem;
|
||||
use LibreNMS\OS;
|
||||
use LibreNMS\Util\Compare;
|
||||
use LibreNMS\Util\IP;
|
||||
use LibreNMS\Util\Oid;
|
||||
|
||||
class YamlDiscovery
|
||||
@@ -198,6 +199,17 @@ class YamlDiscovery
|
||||
$template->replaceWith(function ($matches) use ($index, $def, $pre_cache) {
|
||||
$replace = static::getValueFromData($matches[1], $index, $def, $pre_cache);
|
||||
if (is_null($replace)) {
|
||||
// allow parsing of InetAddress hex data representing ipv4 or ipv6
|
||||
// using {{ $InetAddress_varNameContainingHexIpAddrOfTypeInetAddress }}
|
||||
// -Ih flag screew up HEX string that contain only printable chars, use at minimum -Ox, and remove -Ih use for exemple:
|
||||
// snmp_flags: '-OteQUsax'
|
||||
// snmp_no_Ih_flag: ''
|
||||
if (str_starts_with($matches[1], 'InetAddress_')) {
|
||||
$inetaddr = explode('_', $matches[1]);
|
||||
if (count($inetaddr) == 2) {
|
||||
return IP::fromHexString(static::getValueFromData($inetaddr[1], $index, $def, $pre_cache), true);
|
||||
}
|
||||
}
|
||||
\Log::warning('YamlDiscovery: No variable available to replace ' . $matches[1] . ' index: ' . $index);
|
||||
|
||||
return ''; // remove the unavailable variable
|
||||
@@ -319,7 +331,10 @@ class YamlDiscovery
|
||||
} else {
|
||||
$snmp_flag = ['-OteQUsa'];
|
||||
}
|
||||
$snmp_flag[] = '-Ih';
|
||||
|
||||
if (! isset($data['snmp_no_Ih_flag'])) {
|
||||
$snmp_flag[] = '-Ih';
|
||||
}
|
||||
|
||||
// disable bulk request for specific data
|
||||
if (isset($data['snmp_bulk'])) {
|
||||
|
||||
@@ -28,9 +28,6 @@ modules:
|
||||
data:
|
||||
-
|
||||
oid:
|
||||
- fgVpnTunEntPhase1Name
|
||||
- fgVpnTunEntPhase2Name
|
||||
- fgVpnTunEntRemGwyIp
|
||||
- fgVdEntName
|
||||
state:
|
||||
data:
|
||||
@@ -44,12 +41,14 @@ modules:
|
||||
- { value: 0, descr: OK, graph: 1, generic: 0 }
|
||||
- { value: 1, descr: ERROR, graph: 1, generic: 2 }
|
||||
-
|
||||
oid: fgVpnTunEntStatus
|
||||
num_oid: '.1.3.6.1.4.1.12356.101.12.2.2.1.20.{{ $index }}'
|
||||
index: 'fgVpnTunEntIndex.{{ $index }}'
|
||||
descr: "{{ $fgVpnTunEntPhase1Name }}\\{{ $fgVpnTunEntPhase2Name }} ({{ $fgVpnTunEntRemGwyIp }})"
|
||||
oid: fgVpn2TunTable
|
||||
num_oid: '.1.3.6.1.4.1.12356.101.12.4.2.1.26.{{ $index }}'
|
||||
index: 'Vdom_{{ $fgVpn2TunVdom }}.Ph1_{{ $fgVpn2TunPhase1Name }}.Ph2_{{ $fgVpn2TunPhase2Name }}'
|
||||
snmp_flags: '-OteQUsax'
|
||||
snmp_no_Ih_flag: ''
|
||||
descr: "{{ $fgVpn2TunPhase1Name }}\\{{ $fgVpn2TunPhase2Name }} ({{ $InetAddress_fgVpn2TunRemGwyIp }})"
|
||||
group: IPSEC VPN
|
||||
value: fgVpnTunEntStatus
|
||||
value: fgVpn2TunStatus
|
||||
states:
|
||||
- { value: 1, descr: Down, graph: 1, generic: 2 }
|
||||
- { value: 2, descr: Up, graph: 1, generic: 0 }
|
||||
|
||||
@@ -29,7 +29,7 @@ IMPORTS
|
||||
FROM SNMPv2-TC;
|
||||
|
||||
fortinet MODULE-IDENTITY
|
||||
LAST-UPDATED "202001300000Z"
|
||||
LAST-UPDATED "202111150000Z"
|
||||
ORGANIZATION
|
||||
"Fortinet Technologies, Inc."
|
||||
CONTACT-INFO
|
||||
@@ -39,6 +39,9 @@ fortinet MODULE-IDENTITY
|
||||
"
|
||||
DESCRIPTION
|
||||
"MIB module for Fortinet network devices."
|
||||
REVISION "202111150000Z"
|
||||
DESCRIPTION
|
||||
"Registered FortiNACMib OIDs"
|
||||
REVISION "202001300000Z"
|
||||
DESCRIPTION
|
||||
"Registered FortiExtenderMib OIDs"
|
||||
@@ -193,6 +196,7 @@ fnCoreMib OBJECT IDENTIFIER ::= { fortinet 100 }
|
||||
-- fnFortiDDoSCMMib OBJECT IDENTIFIER ::= { fortinet 119 }
|
||||
-- fnFortiAPMib OBJECT IDENTIFIER ::= { fortinet 120 }
|
||||
-- fnFortiExtenderMib OBJECT IDENTIFIER ::= { fortinet 121 }
|
||||
-- fnFortiNACMib OBJECT IDENTIFIER ::= { fortinet 122 }
|
||||
--
|
||||
|
||||
--
|
||||
|
||||
+1657
-107
File diff suppressed because it is too large
Load Diff
@@ -64,6 +64,9 @@
|
||||
"integer",
|
||||
"string"
|
||||
]
|
||||
},
|
||||
"snmp_no_Ih_flag": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"additionalProperties": false
|
||||
@@ -170,6 +173,9 @@
|
||||
"string",
|
||||
"array"
|
||||
]
|
||||
},
|
||||
"snmp_no_Ih_flag": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"additionalProperties": false,
|
||||
@@ -284,6 +290,9 @@
|
||||
},
|
||||
"entPhysicalIndex_measured": {
|
||||
"type": "string"
|
||||
},
|
||||
"snmp_no_Ih_flag": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"additionalProperties": false,
|
||||
@@ -318,6 +327,9 @@
|
||||
"string",
|
||||
"array"
|
||||
]
|
||||
},
|
||||
"snmp_no_Ih_flag": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"additionalProperties": false,
|
||||
@@ -378,6 +390,9 @@
|
||||
"string",
|
||||
"array"
|
||||
]
|
||||
},
|
||||
"snmp_no_Ih_flag": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"additionalProperties": false,
|
||||
@@ -458,6 +473,9 @@
|
||||
},
|
||||
"user_func": {
|
||||
"type": "string"
|
||||
},
|
||||
"snmp_no_Ih_flag": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"additionalProperties": false,
|
||||
|
||||
@@ -3502,56 +3502,6 @@
|
||||
"user_func": null,
|
||||
"rrd_type": "GAUGE",
|
||||
"state_name": "fgVpnSslState"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": 0,
|
||||
"sensor_class": "state",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.1",
|
||||
"sensor_index": "fgVpnTunEntIndex.1",
|
||||
"sensor_type": "fgVpnTunEntStatus",
|
||||
"sensor_descr": "ESMAO-Lomtec\\ (109.71.67.231)",
|
||||
"group": "IPSEC VPN",
|
||||
"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,
|
||||
"rrd_type": "GAUGE",
|
||||
"state_name": "fgVpnTunEntStatus"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": 0,
|
||||
"sensor_class": "state",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.2",
|
||||
"sensor_index": "fgVpnTunEntIndex.2",
|
||||
"sensor_type": "fgVpnTunEntStatus",
|
||||
"sensor_descr": "ESMAO\\ (109.71.67.37)",
|
||||
"group": "IPSEC VPN",
|
||||
"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,
|
||||
"rrd_type": "GAUGE",
|
||||
"state_name": "fgVpnTunEntStatus"
|
||||
}
|
||||
],
|
||||
"state_indexes": [
|
||||
@@ -3568,20 +3518,6 @@
|
||||
"state_draw_graph": 1,
|
||||
"state_value": 2,
|
||||
"state_generic_value": 0
|
||||
},
|
||||
{
|
||||
"state_name": "fgVpnTunEntStatus",
|
||||
"state_descr": "Down",
|
||||
"state_draw_graph": 1,
|
||||
"state_value": 1,
|
||||
"state_generic_value": 2
|
||||
},
|
||||
{
|
||||
"state_name": "fgVpnTunEntStatus",
|
||||
"state_descr": "Up",
|
||||
"state_draw_graph": 1,
|
||||
"state_value": 2,
|
||||
"state_generic_value": 0
|
||||
}
|
||||
]
|
||||
},
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -4522,81 +4522,6 @@
|
||||
"rrd_type": "GAUGE",
|
||||
"state_name": null
|
||||
},
|
||||
{
|
||||
"sensor_deleted": 0,
|
||||
"sensor_class": "signal",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.12356.101.19.3.1.1.11.1",
|
||||
"sensor_index": "fgLteRssi.1",
|
||||
"sensor_type": "fortigate",
|
||||
"sensor_descr": "LTE Modem LTE RSSI",
|
||||
"group": null,
|
||||
"sensor_divisor": 1,
|
||||
"sensor_multiplier": 1,
|
||||
"sensor_current": -62,
|
||||
"sensor_limit": -20,
|
||||
"sensor_limit_warn": -30,
|
||||
"sensor_limit_low": -95,
|
||||
"sensor_limit_low_warn": -85,
|
||||
"sensor_alert": 1,
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": null,
|
||||
"entPhysicalIndex_measured": null,
|
||||
"sensor_prev": null,
|
||||
"user_func": null,
|
||||
"rrd_type": "GAUGE",
|
||||
"state_name": null
|
||||
},
|
||||
{
|
||||
"sensor_deleted": 0,
|
||||
"sensor_class": "signal",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.12356.101.19.3.1.1.9.1",
|
||||
"sensor_index": "fgWcdmaRssi.1",
|
||||
"sensor_type": "fortigate",
|
||||
"sensor_descr": "LTE Modem WCDMA RSSI",
|
||||
"group": null,
|
||||
"sensor_divisor": 1,
|
||||
"sensor_multiplier": 1,
|
||||
"sensor_current": -67,
|
||||
"sensor_limit": -30,
|
||||
"sensor_limit_warn": -40,
|
||||
"sensor_limit_low": -100,
|
||||
"sensor_limit_low_warn": -86,
|
||||
"sensor_alert": 1,
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": null,
|
||||
"entPhysicalIndex_measured": null,
|
||||
"sensor_prev": null,
|
||||
"user_func": null,
|
||||
"rrd_type": "GAUGE",
|
||||
"state_name": null
|
||||
},
|
||||
{
|
||||
"sensor_deleted": 0,
|
||||
"sensor_class": "state",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.12356.101.19.5.1.1.4.1",
|
||||
"sensor_index": "fdLteSessConnStat.1",
|
||||
"sensor_type": "fdLteSessConnStat",
|
||||
"sensor_descr": "LTE Session Status",
|
||||
"group": "LTE Modem",
|
||||
"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,
|
||||
"rrd_type": "GAUGE",
|
||||
"state_name": "fdLteSessConnStat"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": 0,
|
||||
"sensor_class": "state",
|
||||
@@ -4746,69 +4671,9 @@
|
||||
"user_func": null,
|
||||
"rrd_type": "GAUGE",
|
||||
"state_name": "fgVpnSslState"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": 0,
|
||||
"sensor_class": "state",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.1.1",
|
||||
"sensor_index": "fgVpnTunEntIndex.1.1",
|
||||
"sensor_type": "fgVpnTunEntStatus",
|
||||
"sensor_descr": "ipsec_vpn_a\\ipsec_vpn_a (99.123.234.4)",
|
||||
"group": "IPSEC VPN",
|
||||
"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,
|
||||
"rrd_type": "GAUGE",
|
||||
"state_name": "fgVpnTunEntStatus"
|
||||
}
|
||||
],
|
||||
"state_indexes": [
|
||||
{
|
||||
"state_name": "fdLteSessConnStat",
|
||||
"state_descr": "Unknown",
|
||||
"state_draw_graph": 1,
|
||||
"state_value": 0,
|
||||
"state_generic_value": 3
|
||||
},
|
||||
{
|
||||
"state_name": "fdLteSessConnStat",
|
||||
"state_descr": "Disconnected",
|
||||
"state_draw_graph": 1,
|
||||
"state_value": 1,
|
||||
"state_generic_value": 2
|
||||
},
|
||||
{
|
||||
"state_name": "fdLteSessConnStat",
|
||||
"state_descr": "Connected",
|
||||
"state_draw_graph": 1,
|
||||
"state_value": 2,
|
||||
"state_generic_value": 0
|
||||
},
|
||||
{
|
||||
"state_name": "fdLteSessConnStat",
|
||||
"state_descr": "Suspended",
|
||||
"state_draw_graph": 1,
|
||||
"state_value": 3,
|
||||
"state_generic_value": 2
|
||||
},
|
||||
{
|
||||
"state_name": "fdLteSessConnStat",
|
||||
"state_descr": "Authenticating",
|
||||
"state_draw_graph": 1,
|
||||
"state_value": 4,
|
||||
"state_generic_value": 1
|
||||
},
|
||||
{
|
||||
"state_name": "fgHwSensors",
|
||||
"state_descr": "OK",
|
||||
@@ -4836,20 +4701,6 @@
|
||||
"state_draw_graph": 1,
|
||||
"state_value": 2,
|
||||
"state_generic_value": 0
|
||||
},
|
||||
{
|
||||
"state_name": "fgVpnTunEntStatus",
|
||||
"state_descr": "Down",
|
||||
"state_draw_graph": 1,
|
||||
"state_value": 1,
|
||||
"state_generic_value": 2
|
||||
},
|
||||
{
|
||||
"state_name": "fgVpnTunEntStatus",
|
||||
"state_descr": "Up",
|
||||
"state_draw_graph": 1,
|
||||
"state_value": 2,
|
||||
"state_generic_value": 0
|
||||
}
|
||||
]
|
||||
},
|
||||
|
||||
@@ -5716,56 +5716,6 @@
|
||||
"rrd_type": "GAUGE",
|
||||
"state_name": "fgVpnSslState"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": 0,
|
||||
"sensor_class": "state",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.1.2",
|
||||
"sensor_index": "fgVpnTunEntIndex.1.2",
|
||||
"sensor_type": "fgVpnTunEntStatus",
|
||||
"sensor_descr": "redacted\\redacted (20.73.106.4)",
|
||||
"group": "IPSEC VPN",
|
||||
"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,
|
||||
"rrd_type": "GAUGE",
|
||||
"state_name": "fgVpnTunEntStatus"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": 0,
|
||||
"sensor_class": "state",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.2.2",
|
||||
"sensor_index": "fgVpnTunEntIndex.2.2",
|
||||
"sensor_type": "fgVpnTunEntStatus",
|
||||
"sensor_descr": "redacted\\redacted (20.73.106.61)",
|
||||
"group": "IPSEC VPN",
|
||||
"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,
|
||||
"rrd_type": "GAUGE",
|
||||
"state_name": "fgVpnTunEntStatus"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": 0,
|
||||
"sensor_class": "state",
|
||||
@@ -5845,20 +5795,6 @@
|
||||
"state_draw_graph": 1,
|
||||
"state_value": 2,
|
||||
"state_generic_value": 0
|
||||
},
|
||||
{
|
||||
"state_name": "fgVpnTunEntStatus",
|
||||
"state_descr": "Down",
|
||||
"state_draw_graph": 1,
|
||||
"state_value": 1,
|
||||
"state_generic_value": 2
|
||||
},
|
||||
{
|
||||
"state_name": "fgVpnTunEntStatus",
|
||||
"state_descr": "Up",
|
||||
"state_draw_graph": 1,
|
||||
"state_value": 2,
|
||||
"state_generic_value": 0
|
||||
}
|
||||
]
|
||||
},
|
||||
@@ -6214,56 +6150,6 @@
|
||||
"rrd_type": "GAUGE",
|
||||
"state_name": "fgVpnSslState"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": 0,
|
||||
"sensor_class": "state",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.1.2",
|
||||
"sensor_index": "fgVpnTunEntIndex.1.2",
|
||||
"sensor_type": "fgVpnTunEntStatus",
|
||||
"sensor_descr": "redacted\\redacted (20.73.106.4)",
|
||||
"group": "IPSEC VPN",
|
||||
"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,
|
||||
"rrd_type": "GAUGE",
|
||||
"state_name": "fgVpnTunEntStatus"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": 0,
|
||||
"sensor_class": "state",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.2.2",
|
||||
"sensor_index": "fgVpnTunEntIndex.2.2",
|
||||
"sensor_type": "fgVpnTunEntStatus",
|
||||
"sensor_descr": "redacted\\redacted (20.73.106.61)",
|
||||
"group": "IPSEC VPN",
|
||||
"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,
|
||||
"rrd_type": "GAUGE",
|
||||
"state_name": "fgVpnTunEntStatus"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": 0,
|
||||
"sensor_class": "state",
|
||||
@@ -6343,20 +6229,6 @@
|
||||
"state_draw_graph": 1,
|
||||
"state_value": 2,
|
||||
"state_generic_value": 0
|
||||
},
|
||||
{
|
||||
"state_name": "fgVpnTunEntStatus",
|
||||
"state_descr": "Down",
|
||||
"state_draw_graph": 1,
|
||||
"state_value": 1,
|
||||
"state_generic_value": 2
|
||||
},
|
||||
{
|
||||
"state_name": "fgVpnTunEntStatus",
|
||||
"state_descr": "Up",
|
||||
"state_draw_graph": 1,
|
||||
"state_value": 2,
|
||||
"state_generic_value": 0
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
@@ -2102,31 +2102,6 @@
|
||||
"user_func": null,
|
||||
"rrd_type": "GAUGE",
|
||||
"state_name": "fgVpnSslState"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": 0,
|
||||
"sensor_class": "state",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.1",
|
||||
"sensor_index": "fgVpnTunEntIndex.1",
|
||||
"sensor_type": "fgVpnTunEntStatus",
|
||||
"sensor_descr": "datacenter\\network (192.168.1.1)",
|
||||
"group": "IPSEC VPN",
|
||||
"sensor_divisor": 1,
|
||||
"sensor_multiplier": 1,
|
||||
"sensor_current": 1,
|
||||
"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,
|
||||
"rrd_type": "GAUGE",
|
||||
"state_name": "fgVpnTunEntStatus"
|
||||
}
|
||||
],
|
||||
"state_indexes": [
|
||||
@@ -2143,20 +2118,6 @@
|
||||
"state_draw_graph": 1,
|
||||
"state_value": 2,
|
||||
"state_generic_value": 0
|
||||
},
|
||||
{
|
||||
"state_name": "fgVpnTunEntStatus",
|
||||
"state_descr": "Down",
|
||||
"state_draw_graph": 1,
|
||||
"state_value": 1,
|
||||
"state_generic_value": 2
|
||||
},
|
||||
{
|
||||
"state_name": "fgVpnTunEntStatus",
|
||||
"state_descr": "Up",
|
||||
"state_draw_graph": 1,
|
||||
"state_value": 2,
|
||||
"state_generic_value": 0
|
||||
}
|
||||
]
|
||||
},
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,377 @@
|
||||
1.3.6.1.2.1.1.1.0|4|Zurich LNMS dev FW
|
||||
1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.12356.101.1.80001
|
||||
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.2.10|4|
|
||||
1.3.6.1.2.1.2.2.1.2.11|4|
|
||||
1.3.6.1.2.1.2.2.1.2.12|4|
|
||||
1.3.6.1.2.1.2.2.1.2.13|4|
|
||||
1.3.6.1.2.1.2.2.1.2.14|4|
|
||||
1.3.6.1.2.1.2.2.1.2.15|4|
|
||||
1.3.6.1.2.1.2.2.1.2.16|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|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.3.11|2|131
|
||||
1.3.6.1.2.1.2.2.1.3.12|2|161
|
||||
1.3.6.1.2.1.2.2.1.3.13|2|131
|
||||
1.3.6.1.2.1.2.2.1.3.14|2|131
|
||||
1.3.6.1.2.1.2.2.1.3.15|2|131
|
||||
1.3.6.1.2.1.2.2.1.3.16|2|131
|
||||
1.3.6.1.2.1.2.2.1.8.1|2|1
|
||||
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|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.8.11|2|1
|
||||
1.3.6.1.2.1.2.2.1.8.12|2|2
|
||||
1.3.6.1.2.1.2.2.1.8.13|2|1
|
||||
1.3.6.1.2.1.2.2.1.8.14|2|1
|
||||
1.3.6.1.2.1.2.2.1.8.15|2|2
|
||||
1.3.6.1.2.1.2.2.1.8.16|2|2
|
||||
1.3.6.1.2.1.4.20.1.2.10.10.1.1|2|3
|
||||
1.3.6.1.2.1.4.20.1.2.10.10.2.1|2|4
|
||||
1.3.6.1.2.1.4.20.1.2.10.217.0.161|2|1
|
||||
1.3.6.1.2.1.4.20.1.2.169.254.1.1|2|12
|
||||
1.3.6.1.2.1.4.20.1.2.192.168.199.1|2|2
|
||||
1.3.6.1.2.1.4.20.1.3.10.10.1.1|64|255.255.255.0
|
||||
1.3.6.1.2.1.4.31.1.1.3.1|65|66617
|
||||
1.3.6.1.2.1.4.31.1.1.3.2|65|38977
|
||||
1.3.6.1.2.1.4.31.1.1.4.1|70|66617
|
||||
1.3.6.1.2.1.4.31.1.1.4.2|70|38977
|
||||
1.3.6.1.2.1.4.31.1.1.5.1|65|13237994
|
||||
1.3.6.1.2.1.4.31.1.1.5.2|65|9719816
|
||||
1.3.6.1.2.1.4.31.1.1.6.1|70|13237994
|
||||
1.3.6.1.2.1.4.31.1.1.6.2|70|9719816
|
||||
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|41
|
||||
1.3.6.1.2.1.4.31.1.1.8.2|65|0
|
||||
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|55909
|
||||
1.3.6.1.2.1.4.31.1.1.18.2|65|38975
|
||||
1.3.6.1.2.1.4.31.1.1.19.1|70|55909
|
||||
1.3.6.1.2.1.4.31.1.1.19.2|70|38975
|
||||
1.3.6.1.2.1.4.31.1.1.20.1|65|56589
|
||||
1.3.6.1.2.1.4.31.1.1.20.2|65|39356
|
||||
1.3.6.1.2.1.4.31.1.1.21.1|70|56589
|
||||
1.3.6.1.2.1.4.31.1.1.21.2|70|39356
|
||||
1.3.6.1.2.1.4.31.1.1.22.1|65|39352
|
||||
1.3.6.1.2.1.4.31.1.1.22.2|65|616
|
||||
1.3.6.1.2.1.4.31.1.1.23.1|65|7
|
||||
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|7
|
||||
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|21840239
|
||||
1.3.6.1.2.1.4.31.1.1.32.2|65|9799296
|
||||
1.3.6.1.2.1.4.31.1.1.33.1|70|21840239
|
||||
1.3.6.1.2.1.4.31.1.1.33.2|70|9799296
|
||||
1.3.6.1.2.1.4.31.1.1.34.1|65|8
|
||||
1.3.6.1.2.1.4.31.1.1.34.2|65|282
|
||||
1.3.6.1.2.1.4.31.1.1.35.1|70|8
|
||||
1.3.6.1.2.1.4.31.1.1.35.2|70|282
|
||||
1.3.6.1.2.1.4.31.1.1.36.1|65|288
|
||||
1.3.6.1.2.1.4.31.1.1.36.2|65|17048
|
||||
1.3.6.1.2.1.4.31.1.1.37.1|70|288
|
||||
1.3.6.1.2.1.4.31.1.1.37.2|70|17048
|
||||
1.3.6.1.2.1.4.31.1.1.38.1|65|2
|
||||
1.3.6.1.2.1.4.31.1.1.38.2|65|484
|
||||
1.3.6.1.2.1.4.31.1.1.39.1|70|2
|
||||
1.3.6.1.2.1.4.31.1.1.39.2|70|484
|
||||
1.3.6.1.2.1.4.31.1.1.40.1|65|80
|
||||
1.3.6.1.2.1.4.31.1.1.40.2|65|35312
|
||||
1.3.6.1.2.1.4.31.1.1.41.1|70|80
|
||||
1.3.6.1.2.1.4.31.1.1.41.2|70|35312
|
||||
1.3.6.1.2.1.4.31.1.1.42.1|65|10549
|
||||
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|10549
|
||||
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.15.2.0|2|0
|
||||
1.3.6.1.2.1.31.1.1.1.1.1|4|port1
|
||||
1.3.6.1.2.1.31.1.1.1.1.2|4|port2
|
||||
1.3.6.1.2.1.31.1.1.1.1.3|4|port3
|
||||
1.3.6.1.2.1.31.1.1.1.1.4|4|port4
|
||||
1.3.6.1.2.1.31.1.1.1.1.5|4|port5
|
||||
1.3.6.1.2.1.31.1.1.1.1.6|4|port6
|
||||
1.3.6.1.2.1.31.1.1.1.1.7|4|port7
|
||||
1.3.6.1.2.1.31.1.1.1.1.8|4|port8
|
||||
1.3.6.1.2.1.31.1.1.1.1.9|4|port9
|
||||
1.3.6.1.2.1.31.1.1.1.1.10|4|port10
|
||||
1.3.6.1.2.1.31.1.1.1.1.11|4|ssl.root
|
||||
1.3.6.1.2.1.31.1.1.1.1.12|4|fortilink
|
||||
1.3.6.1.2.1.31.1.1.1.1.13|4|ipv4tunnel
|
||||
1.3.6.1.2.1.31.1.1.1.1.14|4|ipv6tunnel
|
||||
1.3.6.1.2.1.31.1.1.1.1.15|4|v4_printable
|
||||
1.3.6.1.2.1.31.1.1.1.1.16|4|v6_printable
|
||||
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|
|
||||
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|SSL VPN interface
|
||||
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.14|4|
|
||||
1.3.6.1.2.1.31.1.1.1.18.15|4|
|
||||
1.3.6.1.2.1.31.1.1.1.18.16|4|
|
||||
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.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|1
|
||||
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.0.10|2|1
|
||||
1.3.6.1.2.1.31.1.2.1.3.0.11|2|1
|
||||
1.3.6.1.2.1.31.1.2.1.3.0.12|2|1
|
||||
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.14|2|1
|
||||
1.3.6.1.2.1.31.1.2.1.3.0.15|2|1
|
||||
1.3.6.1.2.1.31.1.2.1.3.0.16|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|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.2|2|1
|
||||
1.3.6.1.2.1.31.1.2.1.3.14.2|2|1
|
||||
1.3.6.1.2.1.31.1.2.1.3.15.2|2|1
|
||||
1.3.6.1.2.1.31.1.2.1.3.16.2|2|1
|
||||
1.3.6.1.2.1.47.1.1.1.1.11.1|4|FGVMEVSPIYELLJA8
|
||||
1.3.6.1.2.1.47.1.1.1.1.13.1|4|FGT_VM64
|
||||
1.3.6.1.4.1.12356.101.4.1.1.0|4|v6.4.12,build2060,230221 (GA.M)
|
||||
1.3.6.1.4.1.12356.101.4.1.3.0|66|4
|
||||
1.3.6.1.4.1.12356.101.4.1.4.0|66|34
|
||||
1.3.6.1.4.1.12356.101.4.1.5.0|66|2056200
|
||||
1.3.6.1.4.1.12356.101.4.1.8.0|66|128
|
||||
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|0
|
||||
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|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.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|2
|
||||
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.12.4.2.1.2.1.2|4|ipv4tunnel
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.2.2.3|4|ipv6tunnel
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.2.2.5|4|ipv6tunnel
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.2.4.1|4|v4_printable
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.2.5.1|4|v6_printable
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.3.1.2|4|ipv4tunnel
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.3.2.3|4|extraph2
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.3.2.5|4|ipv6tunnel
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.3.4.1|4|v4_printable
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.3.5.1|4|v6_printable
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.4.1.2|2|1
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.4.2.3|2|2
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.4.2.5|2|2
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.4.4.1|2|1
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.4.5.1|2|2
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.5.1.2|4x|C0A8C702
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.5.2.3|4x|FDA8CAFE32EE00000000000000000002
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.5.2.5|4x|FDA8CAFE32EE00000000000000000002
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.5.4.1|4| Aa~
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.5.5.1|4|!"0123456789ABCD
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.6.1.2|66|0
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.6.2.3|66|0
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.6.2.5|66|0
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.6.4.1|66|0
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.6.5.1|66|0
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.7.1.2|2|1
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.7.2.3|2|2
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.7.2.5|2|2
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.7.4.1|2|1
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.7.5.1|2|2
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.8.1.2|4x|C0A8C701
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.8.2.3|4x|FDA8CAFE32EE00000000000000000001
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.8.2.5|4x|FDA8CAFE32EE00000000000000000001
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.8.4.1|4x|C0A8C701
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.8.5.1|4x|FDA8CAFE32EE00000000000000000001
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.9.1.2|66|0
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.9.2.3|66|0
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.9.2.5|66|0
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.9.4.1|66|0
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.9.5.1|66|0
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.10.1.2|2|1
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.10.2.3|2|1
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.10.2.5|2|1
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.10.4.1|2|1
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.10.5.1|2|1
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.11.1.2|4x|0A0A0100
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.11.2.3|4x|0A0A0300
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.11.2.5|4x|0A0A0200
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.11.4.1|4x|00000000
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.11.5.1|4x|00000000
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.12.1.2|2|1
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.12.2.3|2|1
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.12.2.5|2|1
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.12.4.1|2|1
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.12.5.1|2|1
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.13.1.2|4x|0A0A01FF
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.13.2.3|4x|0A0A03FF
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.13.2.5|4x|0A0A02FF
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.13.4.1|4x|FFFFFFFF
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.13.5.1|4x|FFFFFFFF
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.14.1.2|66|0
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.14.2.3|66|0
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.14.2.5|66|0
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.14.4.1|66|0
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.14.5.1|66|0
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.15.1.2|2|1
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.15.2.3|2|1
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.15.2.5|2|1
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.15.4.1|2|1
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.15.5.1|2|1
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.16.1.2|4x|0A140100
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.16.2.3|4x|0A140300
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.16.2.5|4x|0A140200
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.16.4.1|4x|00000000
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.16.5.1|4x|00000000
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.17.1.2|2|1
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.17.2.3|2|1
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.17.2.5|2|1
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.17.4.1|2|1
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.17.5.1|2|1
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.18.1.2|4x|0A1401FF
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.18.2.3|4x|0A1403FF
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.18.2.5|4x|0A1402FF
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.18.4.1|4x|FFFFFFFF
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.18.5.1|4x|FFFFFFFF
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.19.1.2|66|0
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.19.2.3|66|0
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.19.2.5|66|0
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.19.4.1|66|0
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.19.5.1|66|0
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.20.1.2|2|0
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.20.2.3|2|0
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.20.2.5|2|0
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.20.4.1|2|0
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.20.5.1|2|0
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.21.1.2|66|42901
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.21.2.3|66|0
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.21.2.5|66|42897
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.21.4.1|66|0
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.21.5.1|66|0
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.22.1.2|66|0
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.22.2.3|66|0
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.22.2.5|66|0
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.22.4.1|66|0
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.22.5.1|66|0
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.23.1.2|66|9968
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.23.2.3|66|0
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.23.2.5|66|10078
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.23.4.1|66|0
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.23.5.1|66|0
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.24.1.2|70|0
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.24.2.3|70|0
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.24.2.5|70|0
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.24.4.1|70|0
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.24.5.1|70|0
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.25.1.2|70|0
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.25.2.3|70|0
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.25.2.5|70|0
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.25.4.1|70|0
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.25.5.1|70|0
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.26.1.2|2|2
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.26.2.3|2|1
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.26.2.5|2|2
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.26.4.1|2|1
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.26.5.1|2|1
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.27.1.2|2|1
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.27.2.3|2|1
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.27.2.5|2|1
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.27.4.1|2|1
|
||||
1.3.6.1.4.1.12356.101.12.4.2.1.27.5.1|2|1
|
||||
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