From a978476cdae648c8ed97d3fc984f04b95f08ce8d Mon Sep 17 00:00:00 2001 From: fbourqui Date: Thu, 20 Jul 2023 14:50:49 +0200 Subject: [PATCH] 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 --- LibreNMS/Device/YamlDiscovery.php | 17 +- includes/definitions/discovery/fortigate.yaml | 15 +- mibs/fortinet/FORTINET-CORE-MIB | 6 +- mibs/fortinet/FORTINET-FORTIGATE-MIB | 1764 ++++++- misc/discovery_schema.json | 18 + tests/data/fortigate_100e.json | 64 - tests/data/fortigate_1500d-sensors.json | 3628 --------------- tests/data/fortigate_1500d.json | 3878 ---------------- tests/data/fortigate_60f3g4g.json | 149 - tests/data/fortigate_cluster-60f.json | 128 - tests/data/fortigate_fwf60d.json | 39 - tests/data/fortigate_vm01.json | 4127 +++++++++++++++++ tests/snmpsim/fortigate_vm01.snmprec | 377 ++ 13 files changed, 6207 insertions(+), 8003 deletions(-) create mode 100644 tests/data/fortigate_vm01.json create mode 100644 tests/snmpsim/fortigate_vm01.snmprec diff --git a/LibreNMS/Device/YamlDiscovery.php b/LibreNMS/Device/YamlDiscovery.php index a102b0b4a5..c19c38fba4 100644 --- a/LibreNMS/Device/YamlDiscovery.php +++ b/LibreNMS/Device/YamlDiscovery.php @@ -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'])) { diff --git a/includes/definitions/discovery/fortigate.yaml b/includes/definitions/discovery/fortigate.yaml index 9a294f561e..8f14633ce4 100644 --- a/includes/definitions/discovery/fortigate.yaml +++ b/includes/definitions/discovery/fortigate.yaml @@ -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 } diff --git a/mibs/fortinet/FORTINET-CORE-MIB b/mibs/fortinet/FORTINET-CORE-MIB index 7fade36357..9e9924991d 100644 --- a/mibs/fortinet/FORTINET-CORE-MIB +++ b/mibs/fortinet/FORTINET-CORE-MIB @@ -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 } -- -- diff --git a/mibs/fortinet/FORTINET-FORTIGATE-MIB b/mibs/fortinet/FORTINET-FORTIGATE-MIB index 3f51db9f48..7365f0f82b 100644 --- a/mibs/fortinet/FORTINET-FORTIGATE-MIB +++ b/mibs/fortinet/FORTINET-FORTIGATE-MIB @@ -32,25 +32,88 @@ IMPORTS FROM SNMPv2-TC; fnFortiGateMib MODULE-IDENTITY - LAST-UPDATED "202010020000Z" - ORGANIZATION + LAST-UPDATED "202303160000Z" + ORGANIZATION "Fortinet Technologies, Inc." - CONTACT-INFO + CONTACT-INFO " Technical Support email: support@fortinet.com http://www.fortinet.com" - DESCRIPTION + DESCRIPTION "MIB module for Fortinet FortiGate devices." + REVISION "202303160000Z" + DESCRIPTION + "Added OID fgServiceGroupWorkerBlades for 6K7K slbc platform." + REVISION "202303140000Z" + DESCRIPTION + "Added OID for fgChassisInfo and changed the OID of fgChassis from 98 to 25 for 6K7K slbc platform in (ECO-246262)." + REVISION "202212190000Z" + DESCRIPTION + "Add fgIntfVlanID, fgIntfVlanName, fgIntfVlanPhyName in fgIntfVlanEntry." + REVISION "202210220000Z" + DESCRIPTION + "Added OIDs for fgTrapSlbc, fgDataCpuUsage and fgDataMemUsage in fgSystemInfo while merging 6K7K." + REVISION "202210070000Z" + DESCRIPTION + "Added fgVdEntChecksum in fgVdTable, fgHaStatsAllChecksum in fgHaStatsTable and fgProcessorPktTxDroppedCount in fgProcessorTable." + REVISION "202209230000Z" + DESCRIPTION + "Added fgIntfEntMeaUpBandwidth and fgIntfEntMeaDownBandwidth in fgIntfTable." + REVISION "202206300000Z" + DESCRIPTION + "Added fgProcessorFnNP6XLITE in fgProcessorTypes." + REVISION "202206010000Z" + DESCRIPTION + "Added fgFwAddresses in fgFirewall and fgFwAddrDynEmsTable in fgFwAddresses." + REVISION "202203110000Z" + DESCRIPTION + "Added fgFwAuthUserTables in fgFwUsers." + REVISION "202202160000Z" + DESCRIPTION + "Added fgVWLHealthCheckLinkUsedBandwidthIn, fgVWLHealthCheckLinkUsedBandwidthOut, fgVWLHealthCheckLinkUsedBandwidthBi, fgVWLHealthCheckLinkMOSCodec, fgVWLHealthCheckLinkMOS in fgVWLHealthCheckLinkEntry." + REVISION "202201260000Z" + DESCRIPTION + "Added fgFwIppStatsTotalPBAs, fgFwIppStatsInusePBAs, fgFwIppStatsExpiringPBAs, fgFwIppStatsFreePBAs in fgFwIppStatsEntry" + REVISION "202104280000Z" + DESCRIPTION + "Added fgSwCpu and fgSwMemory to the fgSwDevice table" + REVISION "202103090001Z" + DESCRIPTION + "Added NPU session related OIDs in fgSystemInfo." + REVISION "202103090000Z" + DESCRIPTION + "Added fgVpn2TunPhase2Index as the second index in fgVpn2TunTable" + REVISION "202103050000Z" + DESCRIPTION + "Added fgProcessorFnNP7 in fgProcessorTypes, cleaned up some obsolete ProcessorModuleTypes which should have been deleted by ECO-19013." + REVISION "202102250000Z" + DESCRIPTION + "Added fgVpnTunEntPhase2Index as the second index in fgVpnTunTable" + REVISION "202101260000Z" + DESCRIPTION + "Removed fgFwPol6StatsTable from fgFwPolTables" + REVISION "202101060000Z" + DESCRIPTION + "Added hyperscale-policy OIDs in fgFwPolTables." + REVISION "202012070000Z" + DESCRIPTION + "Added fgSysRebootReason in fgSystemInfo, fgIntfBcCfgTables in fgIntfBcs, fgLinkMonitorServer/fgLinkMonitorProtocol in fgLinkMonitorTable" + REVISION "202010080000Z" + DESCRIPTION + "Added fgSysUpTimeDetail in fgSystemInfo, fgMdmLacTac, fgMdmActBand, fgMdmCellId, fgMdmRssi OID in fgMdmInfoTable" REVISION "202010020000Z" DESCRIPTION - "Added fgSysUpTimeDetail in fgSystemInfo, fgMdmLacTac, fgMdmActBand, fgMdmCellId, fgMdmRssi OID in fgMdmInfoTable" + "Added fgDpdkEngToCpu in fnFortiGateMib.fgSystem.FgDpdkEngEntry" REVISION "202009300000Z" DESCRIPTION "Added state standby in fgWcWtpSessionConnectionState." REVISION "202009210000Z" - DESCRIPTION + DESCRIPTION "Changed the HA related wording to primary/secondary." + REVISION "202008140000Z" + DESCRIPTION + "Added fgIntfBcQTable in fgIntfBcs." REVISION "202006250000Z" DESCRIPTION "Added fgVWLHealthCheckLinkIfName OID in fgVWLHealthCheckLinkTable." @@ -236,10 +299,23 @@ FgHaMode ::= TEXTUAL-CONVENTION FgHaState ::= TEXTUAL-CONVENTION STATUS current - DESCRIPTION + DESCRIPTION "enumerated type for HA cluster member state" SYNTAX INTEGER { primary(1), secondary(2), standalone(3) } +FgSgWorkerBladeIndex ::= TEXTUAL-CONVENTION + DISPLAY-HINT "d" + STATUS current + DESCRIPTION + "data type for Fortigate worker blade indexes" + SYNTAX Integer32 (1..2147483647) + +FgSgWorkerBladeState ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "enumerated type for worker blade state" + SYNTAX INTEGER { unknown(1), dead(2), standby(3), active(4) } + FgHaLBSchedule ::= TEXTUAL-CONVENTION STATUS current DESCRIPTION @@ -262,6 +338,14 @@ FgFwUserAuthType ::= TEXTUAL-CONVENTION SYNTAX INTEGER { local(1), radiusSingle(2), radiusMultiple(3), ldap(4) } +FgFwAuthUserType ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "enumerated type for authenticated user types" + SYNTAX INTEGER { fsso(0), rsso(1), ntlm(2), fw(3), + wsso(4), fsspCitrix(5), ssoGuest(6), + disclaimer(7), other(8), unauth(9), email(10) } + FgSessProto ::= TEXTUAL-CONVENTION STATUS current DESCRIPTION @@ -374,7 +458,16 @@ FgWcWtpRadioType ::= TEXTUAL-CONVENTION dot11n2GHzOnly(9) - 802.11n radio at 2.4GHz band dot11n5GHzOnly(10) - 802.11n radio at 5GHz band dot11acnOnly(11) - 802.11ac/n radio - dot11acOnly(12) - 802.11ac radio" + dot11acOnly(12) - 802.11ac radio + dot11ax2g(13) - 802.11ax/n/g/b radio at 2.4GHz band + dot11ax5g(14) - 802.11ax/ac/n/a radio at 5GHz band + dot11ax6g(15), - 802.11ax radio at 6GHz band + dot11axng2gOnly(16) - 802.11ax/n/g radio at 2.4GHz band + dot11axn2gOnly(17) - 802.11ax/n radio at 2.4GHz band + dot11ax2gOnly(18) - 802.11ax radio at 2.4GHz band + dot11axacn5gOnly(19) - 802.11ax/ac/n radio at 5GHz band + dot11axac5gOnly(20) - 802.11ax/ac radio at 5GHz band + dot11ax5gOnly(21) - 802.11ax radio at 5GHz band" SYNTAX INTEGER { other(0), dot11a(1), @@ -388,7 +481,16 @@ FgWcWtpRadioType ::= TEXTUAL-CONVENTION dot11n2GHzOnly(9), dot11n5GHzOnly(10), dot11acnOnly(11), - dot11acOnly(12) } + dot11acOnly(12), + dot11ax2g(13), + dot11ax5g(14), + dot11ax6g(15), + dot11axng2gOnly(16), + dot11axn2gOnly(17), + dot11ax2gOnly(18), + dot11axacn5gOnly(19), + dot11axac5gOnly(20), + dot11ax5gOnly(21) } FgWcWtpChannelWidthType ::= TEXTUAL-CONVENTION STATUS current @@ -398,7 +500,8 @@ FgWcWtpChannelWidthType ::= TEXTUAL-CONVENTION other(0), width20MHz(1), width40MHz(2), - width80MHz(3) } + width80MHz(3), + width160MHz(4) } FgWcWtpRadioBandType ::= TEXTUAL-CONVENTION STATUS current @@ -414,7 +517,7 @@ FgWcWtpRadioChannelNumber ::= TEXTUAL-CONVENTION STATUS current DESCRIPTION "channel number of a WTP radio" - SYNTAX Integer32 (0..200) + SYNTAX Integer32 (0..255) FgWcWtpRadioMode ::= TEXTUAL-CONVENTION STATUS current @@ -467,6 +570,11 @@ fgModel OBJECT IDENTIFIER ::= { fnFortiGateMib 1 } -- fgModel start +ffvmbb OBJECT IDENTIFIER ::= { fgModel 80025 } +ffvmev OBJECT IDENTIFIER ::= { fgModel 80000 } +ffw3980E OBJECT IDENTIFIER ::= { fgModel 39804 } +ffwVM64 OBJECT IDENTIFIER ::= { fgModel 90070 } +ffwVM64KVm OBJECT IDENTIFIER ::= { fgModel 90071 } fg40FI OBJECT IDENTIFIER ::= { fgModel 443 } fg41FI OBJECT IDENTIFIER ::= { fgModel 444 } fg900D OBJECT IDENTIFIER ::= { fgModel 900 } @@ -486,6 +594,8 @@ fgt140E OBJECT IDENTIFIER ::= { fgModel 1005 } fgt140EP OBJECT IDENTIFIER ::= { fgModel 1006 } fgt1500D OBJECT IDENTIFIER ::= { fgModel 15000 } fgt1500DT OBJECT IDENTIFIER ::= { fgModel 15001 } +fgt1800F OBJECT IDENTIFIER ::= { fgModel 15003 } +fgt1801F OBJECT IDENTIFIER ::= { fgModel 15002 } fgt2000E OBJECT IDENTIFIER ::= { fgModel 20000 } fgt200E OBJECT IDENTIFIER ::= { fgModel 2009 } fgt200F OBJECT IDENTIFIER ::= { fgModel 2011 } @@ -494,7 +604,11 @@ fgt201F OBJECT IDENTIFIER ::= { fgModel 2012 } fgt2200E OBJECT IDENTIFIER ::= { fgModel 18000 } fgt2201E OBJECT IDENTIFIER ::= { fgModel 18001 } fgt2500E OBJECT IDENTIFIER ::= { fgModel 25000 } +fgt2600F OBJECT IDENTIFIER ::= { fgModel 26000 } +fgt2601F OBJECT IDENTIFIER ::= { fgModel 26001 } fgt3000D OBJECT IDENTIFIER ::= { fgModel 30000 } +fgt3000F OBJECT IDENTIFIER ::= { fgModel 30003 } +fgt3001F OBJECT IDENTIFIER ::= { fgModel 30004 } fgt300E OBJECT IDENTIFIER ::= { fgModel 3007 } fgt301E OBJECT IDENTIFIER ::= { fgModel 3008 } fgt3100D OBJECT IDENTIFIER ::= { fgModel 31000 } @@ -503,6 +617,8 @@ fgt3300E OBJECT IDENTIFIER ::= { fgModel 30001 } fgt3301E OBJECT IDENTIFIER ::= { fgModel 30002 } fgt3400E OBJECT IDENTIFIER ::= { fgModel 34001 } fgt3401E OBJECT IDENTIFIER ::= { fgModel 34011 } +fgt3500F OBJECT IDENTIFIER ::= { fgModel 35001 } +fgt3501F OBJECT IDENTIFIER ::= { fgModel 35011 } fgt3600E OBJECT IDENTIFIER ::= { fgModel 36001 } fgt3601E OBJECT IDENTIFIER ::= { fgModel 36011 } fgt3700D OBJECT IDENTIFIER ::= { fgModel 37000 } @@ -515,18 +631,27 @@ fgt3HD OBJECT IDENTIFIER ::= { fgModel 3006 } fgt400D OBJECT IDENTIFIER ::= { fgModel 4004 } fgt400E OBJECT IDENTIFIER ::= { fgModel 4007 } fgt400EBP OBJECT IDENTIFIER ::= { fgModel 4009 } +fgt400F OBJECT IDENTIFIER ::= { fgModel 4010 } fgt401E OBJECT IDENTIFIER ::= { fgModel 4008 } +fgt401F OBJECT IDENTIFIER ::= { fgModel 4011 } fgt40F OBJECT IDENTIFIER ::= { fgModel 441 } fgt41F OBJECT IDENTIFIER ::= { fgModel 442 } +fgt4200F OBJECT IDENTIFIER ::= { fgModel 38002 } +fgt4201F OBJECT IDENTIFIER ::= { fgModel 42002 } +fgt4400F OBJECT IDENTIFIER ::= { fgModel 39001 } +fgt4401F OBJECT IDENTIFIER ::= { fgModel 44001 } fgt5001D OBJECT IDENTIFIER ::= { fgModel 50015 } fgt5001E OBJECT IDENTIFIER ::= { fgModel 50016 } fgt5001E1 OBJECT IDENTIFIER ::= { fgModel 50017 } fgt500D OBJECT IDENTIFIER ::= { fgModel 5004 } fgt500E OBJECT IDENTIFIER ::= { fgModel 5005 } fgt501E OBJECT IDENTIFIER ::= { fgModel 5006 } +fgt6000F OBJECT IDENTIFIER ::= { fgModel 60001 } fgt600D OBJECT IDENTIFIER ::= { fgModel 6004 } fgt600E OBJECT IDENTIFIER ::= { fgModel 6005 } +fgt600F OBJECT IDENTIFIER ::= { fgModel 6007 } fgt601E OBJECT IDENTIFIER ::= { fgModel 6006 } +fgt601F OBJECT IDENTIFIER ::= { fgModel 6008 } fgt60E OBJECT IDENTIFIER ::= { fgModel 641 } fgt60EJ OBJECT IDENTIFIER ::= { fgModel 661 } fgt60EPOE OBJECT IDENTIFIER ::= { fgModel 642 } @@ -534,32 +659,40 @@ fgt60EV OBJECT IDENTIFIER ::= { fgModel 663 } fgt60F OBJECT IDENTIFIER ::= { fgModel 644 } fgt61E OBJECT IDENTIFIER ::= { fgModel 640 } fgt61F OBJECT IDENTIFIER ::= { fgModel 645 } +fgt7000E OBJECT IDENTIFIER ::= { fgModel 70001 } +fgt7000F OBJECT IDENTIFIER ::= { fgModel 71201 } +fgt70F OBJECT IDENTIFIER ::= { fgModel 701 } +fgt71F OBJECT IDENTIFIER ::= { fgModel 702 } fgt800D OBJECT IDENTIFIER ::= { fgModel 8004 } fgt80E OBJECT IDENTIFIER ::= { fgModel 842 } fgt80EPOE OBJECT IDENTIFIER ::= { fgModel 841 } fgt80F OBJECT IDENTIFIER ::= { fgModel 845 } fgt80FBP OBJECT IDENTIFIER ::= { fgModel 847 } +fgt80FPOE OBJECT IDENTIFIER ::= { fgModel 850 } fgt81E OBJECT IDENTIFIER ::= { fgModel 843 } fgt81EPOE OBJECT IDENTIFIER ::= { fgModel 844 } fgt81F OBJECT IDENTIFIER ::= { fgModel 846 } +fgt81FPOE OBJECT IDENTIFIER ::= { fgModel 851 } fgt90E OBJECT IDENTIFIER ::= { fgModel 940 } fgt91E OBJECT IDENTIFIER ::= { fgModel 941 } +fgtARM64AWS OBJECT IDENTIFIER ::= { fgModel 90007 } +fgtARM64AZURE OBJECT IDENTIFIER ::= { fgModel 90027 } +fgtARM64GCP OBJECT IDENTIFIER ::= { fgModel 90026 } +fgtARM64KVM OBJECT IDENTIFIER ::= { fgModel 66 } +fgtARM64OCI OBJECT IDENTIFIER ::= { fgModel 90025 } +fgtARM64XEN OBJECT IDENTIFIER ::= { fgModel 90008 } fgtVM64 OBJECT IDENTIFIER ::= { fgModel 30 } fgtVM64ALI OBJECT IDENTIFIER ::= { fgModel 90019 } -fgtVM64ALIONDEMAND OBJECT IDENTIFIER ::= { fgModel 90020 } fgtVM64AWS OBJECT IDENTIFIER ::= { fgModel 45 } fgtVM64AZURE OBJECT IDENTIFIER ::= { fgModel 90081 } fgtVM64FGCAWS OBJECT IDENTIFIER ::= { fgModel 46 } fgtVM64FGCKVM OBJECT IDENTIFIER ::= { fgModel 61 } fgtVM64GCP OBJECT IDENTIFIER ::= { fgModel 65 } -fgtVM64GCPONDEMAND OBJECT IDENTIFIER ::= { fgModel 90018 } fgtVM64HV OBJECT IDENTIFIER ::= { fgModel 70 } fgtVM64IBM OBJECT IDENTIFIER ::= { fgModel 90022 } fgtVM64KVm OBJECT IDENTIFIER ::= { fgModel 60 } fgtVM64OPC OBJECT IDENTIFIER ::= { fgModel 47 } fgtVM64RAXONDEMAND OBJECT IDENTIFIER ::= { fgModel 90021 } -fgtVM64SVM OBJECT IDENTIFIER ::= { fgModel 32 } -fgtVM64VMX OBJECT IDENTIFIER ::= { fgModel 31 } fgtVM64XEN OBJECT IDENTIFIER ::= { fgModel 40 } fgtvmx OBJECT IDENTIFIER ::= { fgModel 80003 } fgv16v OBJECT IDENTIFIER ::= { fgModel 80015 } @@ -584,12 +717,12 @@ fgvmsl OBJECT IDENTIFIER ::= { fgModel 80021 } fgvmul OBJECT IDENTIFIER ::= { fgModel 80020 } fgvmxx OBJECT IDENTIFIER ::= { fgModel 80002 } fgvulv OBJECT IDENTIFIER ::= { fgModel 80019 } -fosVM64 OBJECT IDENTIFIER ::= { fgModel 90000 } -fosVM64HV OBJECT IDENTIFIER ::= { fgModel 90061 } -fosVM64KVM OBJECT IDENTIFIER ::= { fgModel 90060 } -fosVM64XEN OBJECT IDENTIFIER ::= { fgModel 41 } +fr70FB OBJECT IDENTIFIER ::= { fgModel 704 } +fr70FM OBJECT IDENTIFIER ::= { fgModel 705 } fw40FI OBJECT IDENTIFIER ::= { fgModel 447 } fw41FI OBJECT IDENTIFIER ::= { fgModel 448 } +fw81FD OBJECT IDENTIFIER ::= { fgModel 852 } +fw81FP OBJECT IDENTIFIER ::= { fgModel 853 } fwf40F OBJECT IDENTIFIER ::= { fgModel 445 } fwf41F OBJECT IDENTIFIER ::= { fgModel 446 } fwf60E OBJECT IDENTIFIER ::= { fgModel 639 } @@ -598,6 +731,8 @@ fwf60EV OBJECT IDENTIFIER ::= { fgModel 664 } fwf60F OBJECT IDENTIFIER ::= { fgModel 646 } fwf61E OBJECT IDENTIFIER ::= { fgModel 649 } fwf61F OBJECT IDENTIFIER ::= { fgModel 647 } +fwf80F OBJECT IDENTIFIER ::= { fgModel 848 } +fwf81F OBJECT IDENTIFIER ::= { fgModel 849 } -- fgModel end @@ -686,7 +821,8 @@ FgVdEntry ::= SEQUENCE { fgVdEntCpuUsage Gauge32, fgVdEntMemUsage Gauge32, fgVdEntSesCount Gauge32, - fgVdEntSesRate Gauge32 + fgVdEntSesRate Gauge32, + fgVdEntChecksum DisplayString } fgVdEntIndex OBJECT-TYPE @@ -755,6 +891,14 @@ fgVdEntSesRate OBJECT-TYPE "The session setup rate on the virtual domain." ::= { fgVdEntry 8 } +fgVdEntChecksum OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current vdom checksum value" + ::= { fgVdEntry 9 } + -- -- fortinet.fnFortiGateMib.fgVirtualDomain.fgVdTables.fgVdTpTable -- @@ -1011,6 +1155,118 @@ fgSysUpTimeDetail OBJECT-TYPE "The time detail since the network management portion of the system was last re-initialized." ::= { fgSystemInfo 22 } +fgSysRebootReason OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The last reboot reason of the device" + ::= { fgSystemInfo 23 } + +fgSysNpuSesCount OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of active NPU sessions on the device" + ::= { fgSystemInfo 24 } + +fgSysNpuSesRate1 OBJECT-TYPE + SYNTAX Gauge32 + UNITS "Sessions Per Second" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The average NPU session setup rate over the past minute." + ::= { fgSystemInfo 25 } + +fgSysNpuSesRate10 OBJECT-TYPE + SYNTAX Gauge32 + UNITS "Sessions Per Second" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The average NPU session setup rate over the past 10 minutes." + ::= { fgSystemInfo 26 } + +fgSysNpuSesRate30 OBJECT-TYPE + SYNTAX Gauge32 + UNITS "Sessions Per Second" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The average NPU session setup rate over the past 30 minutes." + ::= { fgSystemInfo 27 } + +fgSysNpuSesRate60 OBJECT-TYPE + SYNTAX Gauge32 + UNITS "Sessions Per Second" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The average NPU session setup rate over the past 60 minutes." + ::= { fgSystemInfo 28 } + +fgSysNpuSes6Count OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of active ipv6 NPU sessions on the device" + ::= { fgSystemInfo 29 } + +fgSysNpuSes6Rate1 OBJECT-TYPE + SYNTAX Gauge32 + UNITS "Sessions Per Second" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The average ipv6 NPU session setup rate over the past minute." + ::= { fgSystemInfo 30 } + +fgSysNpuSes6Rate10 OBJECT-TYPE + SYNTAX Gauge32 + UNITS "Sessions Per Second" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The average ipv6 NPU session setup rate over the past 10 minutes." + ::= { fgSystemInfo 31 } + +fgSysNpuSes6Rate30 OBJECT-TYPE + SYNTAX Gauge32 + UNITS "Sessions Per Second" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The average ipv6 NPU session setup rate over the past 30 minutes." + ::= { fgSystemInfo 32 } + +fgSysNpuSes6Rate60 OBJECT-TYPE + SYNTAX Gauge32 + UNITS "Sessions Per Second" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The average ipv6 NPU session setup rate over the past 60 minutes." + ::= { fgSystemInfo 33 } + +fgDataCpuUsage OBJECT-TYPE + SYNTAX Gauge32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current Data Plane CPU usage (percentage)" + ::= { fgSystemInfo 34 } + +fgDataMemUsage OBJECT-TYPE + SYNTAX Gauge32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current Data Plane memory utilization (percentage)" + ::= { fgSystemInfo 35 } + -- -- fortinet.fnFortiGateMib.fgSystem.fgSoftware -- @@ -1163,7 +1419,8 @@ FgProcessorEntry ::= SEQUENCE { fgProcessorPktTxCount Counter64, fgProcessorPktDroppedCount Counter64, fgProcessorUserUsage Gauge32, - fgProcessorSysUsage Gauge32 + fgProcessorSysUsage Gauge32, + fgProcessorPktTxDroppedCount Counter64 } fgProcessorEntIndex OBJECT-TYPE @@ -1263,6 +1520,15 @@ fgProcessorSysUsage OBJECT-TYPE (only valid for processors types that support this statistic)." ::= { fgProcessorEntry 10 } +fgProcessorPktTxDroppedCount OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of Tx packets dropped by this processor + (only valid for processors types that support this statistic)." + ::= { fgProcessorEntry 11 } + -- -- Registrations for processor types, for use with fgProcessorType -- @@ -1324,6 +1590,18 @@ fgProcessorFnNP6LITE OBJECT-IDENTITY "The processor type identifier used for Fortinet NP6LITE security processor." ::= { fgProcessorTypes 9 } +fgProcessorFnNP7 OBJECT-IDENTITY + STATUS current + DESCRIPTION + "The processor type identifier used for Fortinet NP7 security processor." + ::= { fgProcessorTypes 10 } + +fgProcessorFnNP6XLITE OBJECT-IDENTITY + STATUS current + DESCRIPTION + "The processor type identifier used for Fortinet NP6XLITE security processor." + ::= { fgProcessorTypes 11 } + -- -- fortinet.fnFortiGateMib.fgSystem.fgProcessors.fgProcessorsTrapObjects -- @@ -1516,7 +1794,7 @@ fgSIAdvMemCacheActive OBJECT-TYPE MAX-ACCESS read-only STATUS current DESCRIPTION - "The toal amount of buffer or page cache memory that are active. + "The total amount of buffer or page cache memory that are active. This part of the memory is used recently and usually not reclaimed unless absolutely necessary." ::= { fgSysInfoAdvMem 2 } @@ -1974,7 +2252,9 @@ FgLinkMonitorEntry ::= SEQUENCE { fgLinkMonitorBandwidthIn Counter32, fgLinkMonitorBandwidthOut Counter32, fgLinkMonitorBandwidthBi Counter32, - fgLinkMonitorOutofSeq Counter64 + fgLinkMonitorOutofSeq Counter64, + fgLinkMonitorServer DisplayString, + fgLinkMonitorProtocol DisplayString } fgLinkMonitorID OBJECT-TYPE @@ -2081,6 +2361,22 @@ fgLinkMonitorOutofSeq OBJECT-TYPE "The total number of out of sequence packets received." ::= { fgLinkMonitorEntry 13 } +fgLinkMonitorServer OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Link Monitor server." + ::= { fgLinkMonitorEntry 14 } + +fgLinkMonitorProtocol OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Link Monitor protocol." + ::= { fgLinkMonitorEntry 15 } + -- -- fortinet.fnFortiGateMib.fgSystem.fgVWLHealthCheckLink -- @@ -2114,20 +2410,25 @@ fgVWLHealthCheckLinkEntry OBJECT-TYPE ::= { fgVWLHealthCheckLinkTable 1 } FgVWLHealthCheckLinkEntry ::= SEQUENCE { - fgVWLHealthCheckLinkID FnIndex, - fgVWLHealthCheckLinkName DisplayString, - fgVWLHealthCheckLinkSeq Gauge32, - fgVWLHealthCheckLinkState INTEGER, - fgVWLHealthCheckLinkLatency DisplayString, - fgVWLHealthCheckLinkJitter DisplayString, - fgVWLHealthCheckLinkPacketSend Counter64, - fgVWLHealthCheckLinkPacketRecv Counter64, - fgVWLHealthCheckLinkPacketLoss DisplayString, - fgVWLHealthCheckLinkVdom DisplayString, - fgVWLHealthCheckLinkBandwidthIn Counter32, - fgVWLHealthCheckLinkBandwidthOut Counter32, - fgVWLHealthCheckLinkBandwidthBi Counter32, - fgVWLHealthCheckLinkIfName DisplayString + fgVWLHealthCheckLinkID FnIndex, + fgVWLHealthCheckLinkName DisplayString, + fgVWLHealthCheckLinkSeq Gauge32, + fgVWLHealthCheckLinkState INTEGER, + fgVWLHealthCheckLinkLatency DisplayString, + fgVWLHealthCheckLinkJitter DisplayString, + fgVWLHealthCheckLinkPacketSend Counter64, + fgVWLHealthCheckLinkPacketRecv Counter64, + fgVWLHealthCheckLinkPacketLoss DisplayString, + fgVWLHealthCheckLinkVdom DisplayString, + fgVWLHealthCheckLinkBandwidthIn Counter32, + fgVWLHealthCheckLinkBandwidthOut Counter32, + fgVWLHealthCheckLinkBandwidthBi Counter32, + fgVWLHealthCheckLinkIfName DisplayString, + fgVWLHealthCheckLinkUsedBandwidthIn Counter32, + fgVWLHealthCheckLinkUsedBandwidthOut Counter32, + fgVWLHealthCheckLinkUsedBandwidthBi Counter32, + fgVWLHealthCheckLinkMOSCodec DisplayString, + fgVWLHealthCheckLinkMOS DisplayString } fgVWLHealthCheckLinkID OBJECT-TYPE @@ -2215,7 +2516,7 @@ fgVWLHealthCheckLinkBandwidthIn OBJECT-TYPE MAX-ACCESS read-only STATUS current DESCRIPTION - "The available bandwidth in Mbps of incoming traffic detected by a health-check on a specific member link." + "The available bandwidth in kbps of incoming traffic detected by a health-check on a specific member link." ::= { fgVWLHealthCheckLinkEntry 11 } fgVWLHealthCheckLinkBandwidthOut OBJECT-TYPE @@ -2223,7 +2524,7 @@ fgVWLHealthCheckLinkBandwidthOut OBJECT-TYPE MAX-ACCESS read-only STATUS current DESCRIPTION - "The available bandwidth in Mbps of outgoing traffic detected by a health-check on a specific member link." + "The available bandwidth in kbps of outgoing traffic detected by a health-check on a specific member link." ::= { fgVWLHealthCheckLinkEntry 12 } fgVWLHealthCheckLinkBandwidthBi OBJECT-TYPE @@ -2231,7 +2532,7 @@ fgVWLHealthCheckLinkBandwidthBi OBJECT-TYPE MAX-ACCESS read-only STATUS current DESCRIPTION - "The available bandwidth in Mbps of bi-direction traffic detected by a health-check on a specific member link." + "The available bandwidth in kbps of bi-direction traffic detected by a health-check on a specific member link." ::= { fgVWLHealthCheckLinkEntry 13 } fgVWLHealthCheckLinkIfName OBJECT-TYPE @@ -2242,6 +2543,46 @@ fgVWLHealthCheckLinkIfName OBJECT-TYPE "Virtual-wan-link member interface name." ::= { fgVWLHealthCheckLinkEntry 14 } +fgVWLHealthCheckLinkUsedBandwidthIn OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The used bandwidth in kbps of incoming traffic detected by a health-check on a specific member link." + ::= { fgVWLHealthCheckLinkEntry 15 } + +fgVWLHealthCheckLinkUsedBandwidthOut OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The used bandwidth in kbps of outgoing traffic detected by a health-check on a specific member link." + ::= { fgVWLHealthCheckLinkEntry 16 } + +fgVWLHealthCheckLinkUsedBandwidthBi OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The used bandwidth in kbps of bi-direction traffic detected by a health-check on a specific member link." + ::= { fgVWLHealthCheckLinkEntry 17 } + +fgVWLHealthCheckLinkMOSCodec OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The codec used for Mean Opinion Score (MOS) calculation." + ::= { fgVWLHealthCheckLinkEntry 18 } + +fgVWLHealthCheckLinkMOS OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Mean Opinion Score (MOS) in a health-check." + ::= { fgVWLHealthCheckLinkEntry 19 } + -- -- fortinet.fnFortiGateMib.fgSystem.fgDisks -- @@ -2612,7 +2953,8 @@ FgDpdkEngEntry ::= SEQUENCE { fgDpdkEngVnpUsage Gauge32, fgDpdkEngIpsUsage Gauge32, fgDpdkEngTxUsage Gauge32, - fgDpdkEngIdle Gauge32 + fgDpdkEngIdle Gauge32, + fgDpdkEngToCpu Integer32 } fgDpdkEngEntIndex OBJECT-TYPE @@ -2668,6 +3010,14 @@ fgDpdkEngIdle OBJECT-TYPE "The DpdkEng's Idle usage (percentage)." ::= { fgDpdkEngEntry 6 } +fgDpdkEngToCpu OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Dpdk eng index to Cpu Mapping" + ::= { fgDpdkEngEntry 7 } + -- -- fortinet.fnFortiGateMib.fgFirewall @@ -2769,68 +3119,68 @@ fgFwPolByteCountHc OBJECT-TYPE ::= { fgFwPolStatsEntry 6 } -- --- fortinet.fnFortiGateMib.fgFirewall.fgFwPolicies.fgFwPolTables.fgFwPol6StatsTable +-- fortinet.fnFortiGateMib.fgFirewall.fgFwPolicies.fgFwPolTables.fgFwHsPolStatsTable -- -fgFwPol6StatsTable OBJECT-TYPE - SYNTAX SEQUENCE OF FgFwPol6StatsEntry +fgFwHsPolStatsTable OBJECT-TYPE + SYNTAX SEQUENCE OF FgFwHsPolStatsEntry MAX-ACCESS not-accessible STATUS current DESCRIPTION - "Firewall policy6 statistics table. This table has a dependent + "Firewall hyperscale-policy statistics table. This table has a dependent expansion relationship with fgVdTable. Only virtual domains with enabled policies are present in this table." - ::= { fgFwPolTables 2 } + ::= { fgFwPolTables 3 } -fgFwPol6StatsEntry OBJECT-TYPE - SYNTAX FgFwPol6StatsEntry +fgFwHsPolStatsEntry OBJECT-TYPE + SYNTAX FgFwHsPolStatsEntry MAX-ACCESS not-accessible STATUS current DESCRIPTION - "Firewall policy6 statistics on a virtual domain" - INDEX { fgVdEntIndex, fgFwPol6ID } - ::= { fgFwPol6StatsTable 1 } + "Firewall hyperscale-policy statistics on a virtual domain" + INDEX { fgVdEntIndex, fgFwHsPolID } + ::= { fgFwHsPolStatsTable 1 } -FgFwPol6StatsEntry ::= SEQUENCE { - fgFwPol6ID FnIndex, - fgFwPol6PktCount Counter64, - fgFwPol6ByteCount Counter64, - fgFwPol6LastUsed DisplayString +FgFwHsPolStatsEntry ::= SEQUENCE { + fgFwHsPolID FnIndex, + fgFwHsPolPktCount Counter64, + fgFwHsPolByteCount Counter64, + fgFwHsPolLastUsed DisplayString } -fgFwPol6ID OBJECT-TYPE +fgFwHsPolID OBJECT-TYPE SYNTAX FnIndex MAX-ACCESS not-accessible STATUS current DESCRIPTION - "Firewall policy6 ID. Only enabled policies are present in this table. + "Firewall hyperscale-policy ID. Only enabled policies are present in this table. Policy IDs are only unique within a virtual domain." - ::= { fgFwPol6StatsEntry 1 } + ::= { fgFwHsPolStatsEntry 1 } -fgFwPol6PktCount OBJECT-TYPE +fgFwHsPolPktCount OBJECT-TYPE SYNTAX Counter64 MAX-ACCESS read-only STATUS current DESCRIPTION "Number of packets matched to policy (passed or blocked, depending on policy action). Count is from the time the policy became active." - ::= { fgFwPol6StatsEntry 2 } + ::= { fgFwHsPolStatsEntry 2 } -fgFwPol6ByteCount OBJECT-TYPE +fgFwHsPolByteCount OBJECT-TYPE SYNTAX Counter64 MAX-ACCESS read-only STATUS current DESCRIPTION - "Number of bytes in packets matching the policy. See fgFwPol6PktCount." - ::= { fgFwPol6StatsEntry 3 } + "Number of bytes in packets matching the policy. See fgFwHsPolPktCount." + ::= { fgFwHsPolStatsEntry 3 } -fgFwPol6LastUsed OBJECT-TYPE +fgFwHsPolLastUsed OBJECT-TYPE SYNTAX DisplayString MAX-ACCESS read-only STATUS current DESCRIPTION "How many minutes since last used." - ::= { fgFwPol6StatsEntry 4 } + ::= { fgFwHsPolStatsEntry 4 } -- -- fortinet.fnFortiGateMib.fgFirewall.fgFwUsers @@ -2929,6 +3279,189 @@ fgFwUserVdom OBJECT-TYPE "Virtual domain the user account exists in. This index corresponds to the index used in fgVdTable." ::= { fgFwUserEntry 5 } +fgFwAuthUserTables OBJECT IDENTIFIER + ::= { fgFwUsers 3 } + +fgFwAuthUserInfoTable OBJECT-TYPE + SYNTAX SEQUENCE OF FgFwAuthUserInfoEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of authenticated users information for each virtual domain configured on the device." + ::= { fgFwAuthUserTables 1 } + +fgFwAuthUserInfoEntry OBJECT-TYPE + SYNTAX FgFwAuthUserInfoEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry containing information applicable + to a virtual domain that have authenticated users." + INDEX { fgFwAuthUserInfoVdom } + ::= { fgFwAuthUserInfoTable 1 } + +FgFwAuthUserInfoEntry ::= SEQUENCE { + fgFwAuthUserInfoVdom FgVdIndex, + fgFwAuthIpv4UserNumber Integer32, + fgFwAuthIpv6UserNumber Integer32 +} + +fgFwAuthUserInfoVdom OBJECT-TYPE + SYNTAX FgVdIndex + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Virtual domain index that uniquely identify rows in this table." + ::= { fgFwAuthUserInfoEntry 1 } + +fgFwAuthIpv4UserNumber OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of authenticated IPv4 users in this virtual domain." + ::= { fgFwAuthUserInfoEntry 2 } + +fgFwAuthIpv6UserNumber OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of authenticated IPv6 users in this virtual domain." + ::= { fgFwAuthUserInfoEntry 3 } + +fgFwAuthIpv4UserTable OBJECT-TYPE + SYNTAX SEQUENCE OF FgFwAuthIpv4UserEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of authenticated IPv4 users." + ::= { fgFwAuthUserTables 2 } + +fgFwAuthIpv4UserEntry OBJECT-TYPE + SYNTAX FgFwAuthIpv4UserEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry containing information applicable + to an authenticated IPv4 user." + INDEX { fgFwAuthIpv4UserIndex } + ::= { fgFwAuthIpv4UserTable 1 } + +FgFwAuthIpv4UserEntry ::= SEQUENCE { + fgFwAuthIpv4UserIndex FnIndex, + fgFwAuthIpv4UserVdom FgVdIndex, + fgFwAuthIpv4UserName DisplayString, + fgFwAuthIpv4UserType FgFwAuthUserType, + fgFwAuthIpv4UserAddr IpAddress +} + +fgFwAuthIpv4UserIndex OBJECT-TYPE + SYNTAX FnIndex + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index for uniquely identifying the users in fgFwAuthIpv4UserTable." + ::= { fgFwAuthIpv4UserEntry 1 } + +fgFwAuthIpv4UserVdom OBJECT-TYPE + SYNTAX FgVdIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Virtual domain the authenticated user exists in. This index corresponds to the index used in fgVdTable." + ::= { fgFwAuthIpv4UserEntry 2 } + +fgFwAuthIpv4UserName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "User-name of the authenticated user." + ::= { fgFwAuthIpv4UserEntry 3 } + +fgFwAuthIpv4UserType OBJECT-TYPE + SYNTAX FgFwAuthUserType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Type of the authenticated user." + ::= { fgFwAuthIpv4UserEntry 4 } + +fgFwAuthIpv4UserAddr OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "IPv4 address of the authenticated user." + ::= { fgFwAuthIpv4UserEntry 5 } + +fgFwAuthIpv6UserTable OBJECT-TYPE + SYNTAX SEQUENCE OF FgFwAuthIpv6UserEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of authenticated IPv6 users." + ::= { fgFwAuthUserTables 3 } + +fgFwAuthIpv6UserEntry OBJECT-TYPE + SYNTAX FgFwAuthIpv6UserEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry containing information applicable + to an authenticated IPv6 user." + INDEX { fgFwAuthIpv6UserIndex } + ::= { fgFwAuthIpv6UserTable 1 } + +FgFwAuthIpv6UserEntry ::= SEQUENCE { + fgFwAuthIpv6UserIndex FnIndex, + fgFwAuthIpv6UserVdom FgVdIndex, + fgFwAuthIpv6UserName DisplayString, + fgFwAuthIpv6UserType FgFwAuthUserType, + fgFwAuthIpv6UserAddr Ipv6Address +} + +fgFwAuthIpv6UserIndex OBJECT-TYPE + SYNTAX FnIndex + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index for uniquely identifying the users in fgFwAuthIpv4UserTable." + ::= { fgFwAuthIpv6UserEntry 1 } + +fgFwAuthIpv6UserVdom OBJECT-TYPE + SYNTAX FgVdIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Virtual domain the authenticated user exists in. This index corresponds to the index used in fgVdTable." + ::= { fgFwAuthIpv6UserEntry 2 } + +fgFwAuthIpv6UserName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "User-name of the authenticated user." + ::= { fgFwAuthIpv6UserEntry 3 } + +fgFwAuthIpv6UserType OBJECT-TYPE + SYNTAX FgFwAuthUserType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Type of the authenticated user." + ::= { fgFwAuthIpv6UserEntry 4 } + +fgFwAuthIpv6UserAddr OBJECT-TYPE + SYNTAX Ipv6Address + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "IPv6 address of the authenticated user." + ::= { fgFwAuthIpv6UserEntry 5 } + -- -- fortinet.fnFortiGateMib.fgFirewall.fgFwIppools -- @@ -2964,7 +3497,24 @@ FgFwIppStatsEntry ::= SEQUENCE { fgFwIppStatsTotalSessions Gauge32, fgFwIppStatsTcpSessions Gauge32, fgFwIppStatsUdpSessions Gauge32, - fgFwIppStatsOtherSessions Gauge32 + fgFwIppStatsOtherSessions Gauge32, + fgFwIppStatsTotalPBAs Gauge32, + fgFwIppStatsInusePBAs Gauge32, + fgFwIppStatsExpiringPBAs Gauge32, + fgFwIppStatsFreePBAs Gauge32, + fgFwIppStatsFlags DisplayString, + fgFwIppStatsGroupName DisplayString, + fgFwIppStatsBlockSize Gauge32, + fgFwIppStatsPortStart InetPortNumber, + fgFwIppStatsPortEnd InetPortNumber, + fgFwIppStatsStartClientIP IpAddress, + fgFwIppStatsEndClientIP IpAddress, + fgFwIppStatsRscTCP Gauge32, + fgFwIppStatsRscUDP Gauge32, + fgFwIppStatsUsedRscTCP Gauge32, + fgFwIppStatsUsedRscUDP Gauge32, + fgFwIppStatsPercentageTCP Gauge32, + fgFwIppStatsPercentageUDP Gauge32 } fgFwIppStatsName OBJECT-TYPE @@ -3027,10 +3577,182 @@ fgFwIppStatsOtherSessions OBJECT-TYPE SYNTAX Gauge32 MAX-ACCESS read-only STATUS current - DESCRIPTION + DESCRIPTION "Other session number of the ippool." ::= { fgFwIppStatsEntry 8 } +fgFwIppStatsTotalPBAs OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of the PBA." + ::= { fgFwIppStatsEntry 9 } + +fgFwIppStatsInusePBAs OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of the PBA in use." + ::= { fgFwIppStatsEntry 10 } + +fgFwIppStatsExpiringPBAs OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of the expiring PBA." + ::= { fgFwIppStatsEntry 11 } + +fgFwIppStatsFreePBAs OBJECT-TYPE + SYNTAX Gauge32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The free PBA (percentage)." + ::= { fgFwIppStatsEntry 12 } + +fgFwIppStatsFlags OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Flags of the pool." + ::= { fgFwIppStatsEntry 13 } + +fgFwIppStatsGroupName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The pool group name if it is in an IP pool group." + ::= { fgFwIppStatsEntry 14 } + +fgFwIppStatsBlockSize OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "PBA block size." + ::= { fgFwIppStatsEntry 15 } + +fgFwIppStatsPortStart OBJECT-TYPE + SYNTAX InetPortNumber + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Start port." + ::= { fgFwIppStatsEntry 16 } + +fgFwIppStatsPortEnd OBJECT-TYPE + SYNTAX InetPortNumber + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "End port." + ::= { fgFwIppStatsEntry 17 } + +fgFwIppStatsStartClientIP OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The start IP of the client address." + ::= { fgFwIppStatsEntry 18 } + +fgFwIppStatsEndClientIP OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The end IP of the client address." + ::= { fgFwIppStatsEntry 19 } + +fgFwIppStatsRscTCP OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total resource (port or block) for TCP." + ::= { fgFwIppStatsEntry 20 } + +fgFwIppStatsRscUDP OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total resource (port or block) for UDP." + ::= { fgFwIppStatsEntry 21 } + +fgFwIppStatsUsedRscTCP OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Used resource for TCP." + ::= { fgFwIppStatsEntry 22 } + +fgFwIppStatsUsedRscUDP OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Used resource for UDP." + ::= { fgFwIppStatsEntry 23 } + +fgFwIppStatsPercentageTCP OBJECT-TYPE + SYNTAX Gauge32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Percentage used for TCP." + ::= { fgFwIppStatsEntry 24 } + +fgFwIppStatsPercentageUDP OBJECT-TYPE + SYNTAX Gauge32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Percentage used for UDP." + ::= { fgFwIppStatsEntry 25 } + +-- +-- fortinet.fnFortiGateMib.fgFirewall.fgFwIppools.fgFwIppTrapObjects +-- + +fgFwIppTrapObjects OBJECT IDENTIFIER + ::= { fgFwIppools 3 } + +fgFwIppTrapType OBJECT-TYPE + SYNTAX INTEGER { + raise(1), + clear(2) + } + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + "Pool usage trap type, there are 2 different values as below: + raise + clear " + ::= { fgFwIppTrapObjects 1 } + +fgFwTrapPoolUtilization OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + "Pool Usage percent." + ::= { fgFwIppTrapObjects 2 } + +fgFwIppTrapPoolProto OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + "Pool usage protocol udp/tcp." + ::= { fgFwIppTrapObjects 3 } + -- -- fortinet.fnFortiGateMib.fgFirewall.fgFwGtp -- @@ -3541,6 +4263,67 @@ fgFwGtpRtStatsBDroppedMsgFilter OBJECT-TYPE "Number of billing packet dropped by msg-filter in firewall gtp runtime statistics." ::= { fgFwGtpRtStatsBPkts 5 } +-- +-- fortinet.fnFortiGateMib.fgFirewall.fgFwAddresses +-- + +fgFwAddresses OBJECT IDENTIFIER + ::= { fgFirewall 5 } + +fgFwAddrTables OBJECT IDENTIFIER + ::= { fgFwAddresses 2 } + +-- +-- fortinet.fnFortiGateMib.fgFirewall.fgFwAddresses.fgFwAddrTables.fgFwAddrDynEmsTable +-- + +fgFwAddrDynEmsTable OBJECT-TYPE + SYNTAX SEQUENCE OF FgFwAddrDynEmsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Firewall dynamic address table with ems-tag." + ::= { fgFwAddrTables 1 } + +fgFwAddrDynEmsEntry OBJECT-TYPE + SYNTAX FgFwAddrDynEmsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Firewall dynamic address with ems-tag on a virtual domain" + INDEX { fgVdEntIndex, fgFwAddrDynEmsID } + ::= { fgFwAddrDynEmsTable 1 } + +FgFwAddrDynEmsEntry ::= SEQUENCE { + fgFwAddrDynEmsID FnIndex, + fgFwAddrDynEmsName DisplayString, + fgFwAddrDynEmsAddresses Unsigned32 +} + +fgFwAddrDynEmsID OBJECT-TYPE + SYNTAX FnIndex + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "ID of firewall dynamic address." + ::= { fgFwAddrDynEmsEntry 1 } + +fgFwAddrDynEmsName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Name of firewall dynamic address." + ::= { fgFwAddrDynEmsEntry 2 } + +fgFwAddrDynEmsAddresses OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Addresses of firewall dynamic address." + ::= { fgFwAddrDynEmsEntry 3 } + -- -- fortinet.fnFortiGateMib.fgMgmt -- @@ -3679,7 +4462,9 @@ fgIntfEntry OBJECT-TYPE FgIntfEntry ::= SEQUENCE { fgIntfEntVdom FgVdIndex, fgIntfEntEstUpBandwidth Unsigned32, - fgIntfEntEstDownBandwidth Unsigned32 + fgIntfEntEstDownBandwidth Unsigned32, + fgIntfEntMeaUpBandwidth Unsigned32, + fgIntfEntMeaDownBandwidth Unsigned32 } fgIntfEntVdom OBJECT-TYPE @@ -3706,6 +4491,70 @@ fgIntfEntEstDownBandwidth OBJECT-TYPE "Estimated maximum downstream bandwidth (Kbps). Used to estimate link utilization." ::= { fgIntfEntry 3 } +fgIntfEntMeaUpBandwidth OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Measured upstream bandwidth (Kbps)." + ::= { fgIntfEntry 4 } + +fgIntfEntMeaDownBandwidth OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Measured downstream bandwidth (Kbps)." + ::= { fgIntfEntry 5 } + +fgIntfVlanTable OBJECT-TYPE + SYNTAX SEQUENCE OF FgIntfVlanEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of Vlans and values." + ::= { fgIntfTables 2 } + +fgIntfVlanEntry OBJECT-TYPE + SYNTAX FgIntfVlanEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry containing the ID, name, physical interface name of a given vlan." + INDEX { ifIndex } + ::= { fgIntfVlanTable 1 } + +FgIntfVlanEntry ::= SEQUENCE { + fgIntfVlanName DisplayString, + fgIntfVlanID Unsigned32, + fgIntfVlanPhyName DisplayString +} + +fgIntfVlanName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Vlan interface name." + ::= { fgIntfVlanEntry 1 } + +fgIntfVlanID OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Vlan interface ID." + ::= { fgIntfVlanEntry 2 } + +fgIntfVlanPhyName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The physical interface name associated with the vlan." + ::= { fgIntfVlanEntry 3 } + + fgIntfVrrps OBJECT IDENTIFIER ::= { fgIntf 3 } @@ -3935,6 +4784,62 @@ fgIntfBcDrops OBJECT-TYPE "Packet drop counter of a given interface and class-level." ::= { fgIntfBcEntry 6 } +fgIntfBcQTable OBJECT-TYPE + SYNTAX SEQUENCE OF FgIntfBcQEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of all queue type class-levels with packet sent and drop counter." + ::= { fgIntfBcs 4 } + +fgIntfBcQEntry OBJECT-TYPE + SYNTAX FgIntfBcQEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry containing the packet sent and drop counter of a given interface." + INDEX { ifIndex } + ::= { fgIntfBcQTable 1 } + +FgIntfBcQEntry ::= SEQUENCE { + fgIntfBcQPackets Counter64, + fgIntfBcQBytes Counter64, + fgIntfBcQPDrops Counter64, + fgIntfBcQBDrops Counter64 +} + +fgIntfBcQPackets OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Packet sent counter of a given interface and class-level." + ::= { fgIntfBcQEntry 1 } + +fgIntfBcQBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Byte sent counter of a given interface and class-level." + ::= { fgIntfBcQEntry 2 } + +fgIntfBcQPDrops OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Packet drop counter of a given inteface and class-level." + ::= { fgIntfBcQEntry 3 } + +fgIntfBcQBDrops OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Byte drop counter of a given inteface and class-level." + ::= { fgIntfBcQEntry 4 } + fgIntfBcInTable OBJECT-TYPE SYNTAX SEQUENCE OF FgIntfBcInEntry MAX-ACCESS not-accessible @@ -4009,6 +4914,287 @@ fgIntfBcInDrops OBJECT-TYPE "Packet drop counter of a given interface and class-level." ::= { fgIntfBcInEntry 6 } +fgIntfBcCfgTables OBJECT IDENTIFIER + ::= { fgIntfBcs 5 } + +fgIntfBcCfgIfTable OBJECT-TYPE + SYNTAX SEQUENCE OF FgIntfBcCfgIfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Configure values in the interfaces which have egress or ingress shaping profile configured." + ::= { fgIntfBcCfgTables 1 } + +fgIntfBcCfgIfEntry OBJECT-TYPE + SYNTAX FgIntfBcCfgIfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry containing the configure values of a given interface." + INDEX { ifIndex } + ::= { fgIntfBcCfgIfTable 1 } + +FgIntfBcCfgIfEntry ::= SEQUENCE { + fgIntfBcCfgIfName DisplayString, + fgIntfBcCfgIfEgressSProfile DisplayString, + fgIntfBcCfgIfIngressSProfile DisplayString, + fgIntfBcCfgIfEstUpBandwidth Unsigned32, + fgIntfBcCfgIfEstDownBandwidth Unsigned32, + fgIntfBcCfgIfInBandwidth Unsigned32, + fgIntfBcCfgIfOutBandwidth Unsigned32 +} + +fgIntfBcCfgIfName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Name of the interface." + ::= { fgIntfBcCfgIfEntry 1 } + +fgIntfBcCfgIfEgressSProfile OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The egress shaping profile configured in the interface." + ::= { fgIntfBcCfgIfEntry 2 } + +fgIntfBcCfgIfIngressSProfile OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The ingress shaping profile configured in the interface." + ::= { fgIntfBcCfgIfEntry 3 } + +fgIntfBcCfgIfEstUpBandwidth OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Estimated maximum upstream bandwidth." + ::= { fgIntfBcCfgIfEntry 4 } + +fgIntfBcCfgIfEstDownBandwidth OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Estimated maximum downstream bandwidth." + ::= { fgIntfBcCfgIfEntry 5 } + +fgIntfBcCfgIfInBandwidth OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "In bandwidth." + ::= { fgIntfBcCfgIfEntry 6 } + +fgIntfBcCfgIfOutBandwidth OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Out bandwidth." + ::= { fgIntfBcCfgIfEntry 7 } + +fgIntfBcCfgSproTable OBJECT-TYPE + SYNTAX SEQUENCE OF FgIntfBcCfgSproEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Configure values in shaping profiles." + ::= { fgIntfBcCfgTables 2 } + +fgIntfBcCfgSproEntry OBJECT-TYPE + SYNTAX FgIntfBcCfgSproEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry containing the configure values of a shaping profile." + INDEX { fgVdEntIndex, fgIntfBcCfgSproID } + ::= { fgIntfBcCfgSproTable 1 } + +FgIntfBcCfgSproEntry ::= SEQUENCE { + fgIntfBcCfgSproID FnIndex, + fgIntfBcCfgSproName DisplayString, + fgIntfBcCfgSproType INTEGER, + fgIntfBcCfgSproDefaultClassId Unsigned32, + fgIntfBcCfgSproClassNum Unsigned32 +} + +fgIntfBcCfgSproID OBJECT-TYPE + SYNTAX FnIndex + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Shaping profile ID which is created sequentially and uniquely within a virtual domain." + ::= { fgIntfBcCfgSproEntry 1 } + +fgIntfBcCfgSproName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Name of the shaping profile." + ::= { fgIntfBcCfgSproEntry 2 } + +fgIntfBcCfgSproType OBJECT-TYPE + SYNTAX INTEGER { policing(0), queueing(1) } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Type of the shaping profile." + ::= { fgIntfBcCfgSproEntry 3 } + +fgIntfBcCfgSproDefaultClassId OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Default class id of the shaping profile." + ::= { fgIntfBcCfgSproEntry 4 } + +fgIntfBcCfgSproClassNum OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The class number of the shaping profile." + ::= { fgIntfBcCfgSproEntry 5 } + +fgIntfBcCfgSentTable OBJECT-TYPE + SYNTAX SEQUENCE OF FgIntfBcCfgSentEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Configure values in shaping entries of all shaping profiles." + ::= { fgIntfBcCfgTables 3 } + +fgIntfBcCfgSentEntry OBJECT-TYPE + SYNTAX FgIntfBcCfgSentEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry containing the configure values of a shaping entry." + INDEX { fgVdEntIndex, fgIntfBcCfgSproID, fgIntfBcCfgSentClassID } + ::= { fgIntfBcCfgSentTable 1 } + +FgIntfBcCfgSentEntry ::= SEQUENCE { + fgIntfBcCfgSentClassID FnIndex, + fgIntfBcCfgSentClassName DisplayString, + fgIntfBcCfgSentGuaranteedBandwidth Integer32, + fgIntfBcCfgSentMaxBandwidth Integer32 +} + +fgIntfBcCfgSentClassID OBJECT-TYPE + SYNTAX FnIndex + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Class ID which is configured in firewall.traffic-class within a virtual domain." + ::= { fgIntfBcCfgSentEntry 1 } + +fgIntfBcCfgSentClassName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Class name of a given shaping entry." + ::= { fgIntfBcCfgSentEntry 2 } + +fgIntfBcCfgSentGuaranteedBandwidth OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Guaranteed Bandwidth of a given shaping profile and class-level." + ::= { fgIntfBcCfgSentEntry 3 } + +fgIntfBcCfgSentMaxBandwidth OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Max Bandwidth of a given shaping profile and class-level." + ::= { fgIntfBcCfgSentEntry 4 } + +fgIntfBcCfgSpolTable OBJECT-TYPE + SYNTAX SEQUENCE OF FgIntfBcCfgSpolEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Configure values in shaping policies." + ::= { fgIntfBcCfgTables 4 } + +fgIntfBcCfgSpolEntry OBJECT-TYPE + SYNTAX FgIntfBcCfgSpolEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry containing the configure values of a shaping policy." + INDEX { fgVdEntIndex, fgIntfBcCfgSpolID } + ::= { fgIntfBcCfgSpolTable 1 } + +FgIntfBcCfgSpolEntry ::= SEQUENCE { + fgIntfBcCfgSpolID FnIndex, + fgIntfBcCfgSpolSrcaddr DisplayString, + fgIntfBcCfgSpolDstaddr DisplayString, + fgIntfBcCfgSpolSvr DisplayString, + fgIntfBcCfgSpolComment DisplayString, + fgIntfBcCfgSpolClassName DisplayString +} + +fgIntfBcCfgSpolID OBJECT-TYPE + SYNTAX FnIndex + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Shaping policy ID which is only unique within a virtual domain." + ::= { fgIntfBcCfgSpolEntry 1 } + +fgIntfBcCfgSpolSrcaddr OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Src addr of a given shaping policy." + ::= { fgIntfBcCfgSpolEntry 2 } + +fgIntfBcCfgSpolDstaddr OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Dst addr of a given shaping policy." + ::= { fgIntfBcCfgSpolEntry 3 } + +fgIntfBcCfgSpolSvr OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Service of a given shaping policy." + ::= { fgIntfBcCfgSpolEntry 4 } + +fgIntfBcCfgSpolComment OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Comment of a given shaping policy." + ::= { fgIntfBcCfgSpolEntry 5 } + +fgIntfBcCfgSpolClassName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Class name of a given shaping policy." + ::= { fgIntfBcCfgSpolEntry 6 } + -- -- fortinet.fnFortiGateMib.fgAntivirus -- @@ -6778,7 +7964,7 @@ fgVpnTunEntry OBJECT-TYPE STATUS current DESCRIPTION "Tunnel VPN peer info" - INDEX { fgVpnTunEntIndex } + INDEX { fgVpnTunEntIndex, fgVpnTunEntPhase2Index } ::= { fgVpnTunTable 1 } FgVpnTunEntry ::= SEQUENCE { @@ -6802,7 +7988,8 @@ FgVpnTunEntry ::= SEQUENCE { fgVpnTunEntInOctets Counter64, fgVpnTunEntOutOctets Counter64, fgVpnTunEntStatus INTEGER, - fgVpnTunEntVdom FgVdIndex + fgVpnTunEntVdom FgVdIndex, + fgVpnTunEntPhase2Index FnIndex } fgVpnTunEntIndex OBJECT-TYPE @@ -6975,6 +8162,15 @@ fgVpnTunEntVdom OBJECT-TYPE "Virtual domain the tunnel is part of. This index corresponds to the index used by fgVdTable." ::= { fgVpnTunEntry 21 } +fgVpnTunEntPhase2Index OBJECT-TYPE + SYNTAX FnIndex + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index value that uniquely identifies + a Phase2 SA on a VPN tunnel within the fgVpnTunTable" + ::= { fgVpnTunEntry 22 } + -- -- fortinet.fnFortiGateMib.fgVpn.fgVpnTables.fgVpnSslStatsTable -- @@ -7397,7 +8593,7 @@ fgVpn2TunEntry OBJECT-TYPE STATUS current DESCRIPTION "IP tunnel VPN peer info" - INDEX { fgVdEntIndex } + INDEX { fgVpn2TunIndex, fgVpn2TunPhase2Index } ::= { fgVpn2TunTable 1 } FgVpn2TunEntry ::= SEQUENCE { @@ -7427,7 +8623,8 @@ FgVpn2TunEntry ::= SEQUENCE { fgVpn2TunInOctets Counter64, fgVpn2TunOutOctets Counter64, fgVpn2TunStatus INTEGER, - fgVpn2TunVdom FgVdIndex + fgVpn2TunVdom FgVdIndex, + fgVpn2TunPhase2Index FnIndex } fgVpn2TunIndex OBJECT-TYPE @@ -7647,6 +8844,15 @@ fgVpn2TunVdom OBJECT-TYPE "Virtual domain the tunnel is part of. This index corresponds to the index used by fgVdTable." ::= { fgVpn2TunEntry 27 } +fgVpn2TunPhase2Index OBJECT-TYPE + SYNTAX FnIndex + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index value that uniquely identifies + a Phase2 SA on a VPN tunnel within the fgVpn2TunTable" + ::= { fgVpn2TunEntry 28 } + -- -- fortinet.fnFortiGateMib.fgHighAvailability -- @@ -7758,7 +8964,8 @@ FgHaStatsEntry ::= SEQUENCE { fgHaStatsSyncDatimeSucc DateAndTime, fgHaStatsSyncDatimeUnsucc DateAndTime, fgHaStatsGlobalChecksum DisplayString, - fgHaStatsPrimarySerial DisplayString + fgHaStatsPrimarySerial DisplayString, + fgHaStatsAllChecksum DisplayString } fgHaStatsIndex OBJECT-TYPE @@ -7890,6 +9097,14 @@ fgHaStatsPrimarySerial OBJECT-TYPE "Serial number of primary during the last synch attempt (successful of not)" ::= { fgHaStatsEntry 16 } +fgHaStatsAllChecksum OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current HA all checksum value" + ::= { fgHaStatsEntry 17 } + -- -- fortinet.fnFortiGateMib.fgHighAvailability.fgHaTrapObjects -- @@ -8192,7 +9407,7 @@ fgWcWtpProfilePlatform OBJECT-TYPE ::= { fgWcWtpProfileEntry 2 } fgWcWtpProfileDataChannelDtlsPolicy OBJECT-TYPE - SYNTAX BITS { other(0), clear(1), dtls(2), ipsec(3) } + SYNTAX BITS { other(0), clear(1), dtls(2), ipsec(3), ipsecsn(4) } MAX-ACCESS read-only STATUS current DESCRIPTION @@ -8201,7 +9416,8 @@ fgWcWtpProfileDataChannelDtlsPolicy OBJECT-TYPE other(0) - Other method, for example, vendor specific clear(1) - Clear text dtls(2) - DTLS - ipsec(3) - IPsec" + ipsec(3) - IPsec + ipsecsn(4) - IPsec-sn" ::= { fgWcWtpProfileEntry 3 } fgWcWtpProfileCountryString OBJECT-TYPE @@ -9445,7 +10661,7 @@ fgMdmInfoTable OBJECT-TYPE DESCRIPTION "A table containing information applicable to internal LTE modems." - ::= { fgInternalLTEModemsInfo 1 1 } + ::= { fgInternalLTEModemsInfo 1 } -- -- fortinet.fnFortiGateMib.fgInternalLTEModemsInfo.fgMdmInfoTable.fgMdmInfoEntry @@ -9459,7 +10675,7 @@ fgMdmInfoEntry OBJECT-TYPE "An entry containing information applicable to a particular LTE Modem. OIDs from fgMdmVendor are not displayed if a modem is not detected." - INDEX { fgMdmEntIndex 1 } + INDEX { fgMdmEntIndex } ::= { fgMdmInfoTable 1 } FgMdmInfoEntry ::= SEQUENCE { @@ -9726,7 +10942,7 @@ fgSimInfoTable OBJECT-TYPE DESCRIPTION "A table containing information applicable to SIM cards on internal LTE modems." - ::= { fgInternalLTEModemsInfo 2 1 } + ::= { fgInternalLTEModemsInfo 2 } -- -- fortinet.fnFortiGateMib.fgInternalLTEModemsInfo.fgSimInfoTable.fgSimInfoEntry @@ -9834,7 +11050,7 @@ fgSignalInfoTable OBJECT-TYPE DESCRIPTION "A table containing information applicable to signal strength on an internal LTE modems." - ::= { fgInternalLTEModemsInfo 3 1 } + ::= { fgInternalLTEModemsInfo 3 } -- -- fortinet.fnFortiGateMib.fgInternalLTEModemsInfo.fgSignalInfoTable.fgSignalInfoEntry @@ -10001,7 +11217,7 @@ fgTrafficInfoTable OBJECT-TYPE DESCRIPTION "A table containing information applicable to data traffic information on an internal LTE modems." - ::= { fgInternalLTEModemsInfo 4 1 } + ::= { fgInternalLTEModemsInfo 4 } -- -- fortinet.fnFortiGateMib.fgInternalLTEModemsInfo.fgTrafficInfoTable.fgTrafficInfoEntry @@ -10149,7 +11365,7 @@ fgSessInfoTable OBJECT-TYPE DESCRIPTION "A table containing information applicable to data session information on an internal LTE modems." - ::= { fgInternalLTEModemsInfo 5 1 } + ::= { fgInternalLTEModemsInfo 5 } -- -- fortinet.fnFortiGateMib.fgInternalLTEModemsInfo.fgSessInfoTable.fgSessInfoEntry @@ -10558,7 +11774,7 @@ fgGpsInfoTable OBJECT-TYPE DESCRIPTION "A table containing information applicable to GPS information on an internal LTE modems." - ::= { fgInternalLTEModemsInfo 6 1 } + ::= { fgInternalLTEModemsInfo 6 } -- -- fortinet.fnFortiGateMib.fgInternalLTEModemsInfo.fgGpsInfoTable.fgGpsInfoEntry @@ -10645,7 +11861,7 @@ fgDatausageInfoTable OBJECT-TYPE DESCRIPTION "A table containing information applicable to data usage information on an internal LTE modems." - ::= { fgInternalLTEModemsInfo 7 1 } + ::= { fgInternalLTEModemsInfo 7 } -- -- fortinet.fnFortiGateMib.fgInternalLTEModemsInfo.fgDatausageInfoTable.fgDatausageInfoEntry @@ -11124,7 +12340,10 @@ FgSwDeviceEntry ::= SEQUENCE { fgSwDeviceStatus INTEGER, fgSwDeviceJoinTime Gauge32, fgSwDeviceIp IpAddress, - fgSwDeviceFlag DisplayString + fgSwDeviceFlag DisplayString, + fgSwCpu Integer32, + fgSwMemory Integer32, + fgSwDeviceIpv6 Ipv6Address } fgSwDevicePlatform OBJECT-TYPE @@ -11207,6 +12426,30 @@ fgSwDeviceFlag OBJECT-TYPE "Switch device transaction flag (C=config sync, U=upgrading, S=staged, D=delay reboot pending, E=config sync error)." ::= { fgSwDeviceEntry 10 } +fgSwCpu OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Switch CPU usage percentage." + ::= { fgSwDeviceEntry 11 } + +fgSwMemory OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Switch memory usage percentage." + ::= { fgSwDeviceEntry 12 } + +fgSwDeviceIpv6 OBJECT-TYPE + SYNTAX Ipv6Address + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Switch device IPv6 address." + ::= { fgSwDeviceEntry 13 } + -- -- fortinet.fnFortiGateMib.fgSw.fgSwPortInfo -- @@ -11364,6 +12607,235 @@ fgSwPortPOEPower OBJECT-TYPE "Switch port PoE power in mW." ::= { fgSwPortEntry 14 } +-- +-- fortinet.fnFortiGateMib.fgChassis +-- + +fgChassis OBJECT IDENTIFIER + ::= { fnFortiGateMib 25 } + +-- +-- fortinet.fnFortiGateMib.fgChassis.fgChassisInfo +-- + +fgChassisInfo OBJECT IDENTIFIER + ::= { fgChassis 1 } + +fgChassisVersion OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current version of the Fortigate Chassis." + ::= { fgChassisInfo 1 } + +-- +-- fortinet.fnFortiGateMib.fgChassis.fgChassisTrapObjects +-- + +fgChassisTrapObjects OBJECT IDENTIFIER + ::= { fgChassis 2 } + +fgChassisSlotId OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + "Chassis slot Id at current chassis." + ::= { fgChassisTrapObjects 1 } + +fgChassisTrapMessage OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + "SLBC trap message display." + ::= { fgChassisTrapObjects 2 } + +-- +-- fortinet.fnFortiGateMib.fgServiceGroupWorkerBlades +-- + +fgServiceGroupWorkerBlades OBJECT IDENTIFIER + ::= { fnFortiGateMib 26 } + +-- +-- fortinet.fnFortiSwitchMib.fgServiceGroupWorkerBlades.fgSgWbTables +-- + +fgSgWbTables OBJECT IDENTIFIER + ::= { fgServiceGroupWorkerBlades 1 } + +fgSgWorkerBladeTable OBJECT-TYPE + SYNTAX SEQUENCE OF FgSgWorkerBladeEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of all service group worker blades." + ::= { fgSgWbTables 1 } + +fgSgWorkerBladeEntry OBJECT-TYPE + SYNTAX FgSgWorkerBladeEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "System info for a particular worker blade." + INDEX { fgSgWbEntIndex } + ::= { fgSgWorkerBladeTable 1 } + +FgSgWorkerBladeEntry ::= SEQUENCE { + fgSgWbEntIndex FgSgWorkerBladeIndex, + fgSgWbServiceGroupID Integer32, + fgSgWbChassisID Integer32, + fgSgWbSlotID Integer32, + fgSgWbState FgSgWorkerBladeState, + fgSgWbStatusMsg DisplayString, + fgSgWbMaster INTEGER, + fgSgWbSysVersion DisplayString, + fgSgWbSysSerial DisplayString, + fgSgWbSysUpTime TimeTicks, + fgSgWbSysCpuUsage Gauge32, + fgSgWbSysMemUsage Gauge32, + fgSgWbBaseLink DisplayString, + fgSgWbFabricLink DisplayString, + fgSgWbDataHb DisplayString, + fgSgWbMgmtHb DisplayString +} +-- +-- fortinet.fnFortiSwitchMib.fgServiceGroupWorkerBlades.fgSgWbTables.fgSgWorkerBladeTable.fgSgWorkerBladeEntry +-- + +fgSgWbEntIndex OBJECT-TYPE + SYNTAX FgSgWorkerBladeIndex + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Index that uniquely identifies a worker blade in the fgSgWorkerBladeTable." + ::= { fgSgWorkerBladeEntry 1 } + +fgSgWbServiceGroupID OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Service group identifier that this worker blade belongs to." + ::= { fgSgWorkerBladeEntry 2 } + +fgSgWbChassisID OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Chassis identifier of the chassis this worker blade is installed in." + ::= { fgSgWorkerBladeEntry 3 } + +fgSgWbSlotID OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Slot identifier of the slot this worker blade is installed in." + ::= { fgSgWorkerBladeEntry 4 } + +fgSgWbState OBJECT-TYPE + SYNTAX FgSgWorkerBladeState + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "State of this worker blade." + ::= { fgSgWorkerBladeEntry 5 } + +fgSgWbStatusMsg OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..128)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Status message for this worker blade." + ::= { fgSgWorkerBladeEntry 6 } + +fgSgWbMaster OBJECT-TYPE + SYNTAX INTEGER { false(0), true(1) } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates if this worker blade is the service group primary." + ::= { fgSgWorkerBladeEntry 7 } + +fgSgWbSysVersion OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..128)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Firmware version of this worker blade" + ::= { fgSgWorkerBladeEntry 8 } + +fgSgWbSysSerial OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "fnSysSerial serial number of this worker blade." + ::= { fgSgWorkerBladeEntry 9} + +fgSgWbSysUpTime OBJECT-TYPE + SYNTAX TimeTicks + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "MIB-2 system up time of this worker blade. The time (in hundredths + of a second) since the network management portion of the + system was last re-initialized." + ::= { fgSgWorkerBladeEntry 10 } + +fgSgWbSysCpuUsage OBJECT-TYPE + SYNTAX Gauge32 (0..100) + UNITS "%" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current CPU usage (percentage)" + ::= { fgSgWorkerBladeEntry 11 } + +fgSgWbSysMemUsage OBJECT-TYPE + SYNTAX Gauge32 (0..100) + UNITS "%" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current memory utilization (percentage)" + ::= { fgSgWorkerBladeEntry 12 } + +fgSgWbBaseLink OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..128)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Status of base channel link to this worker blade." + ::= { fgSgWorkerBladeEntry 13 } + +fgSgWbFabricLink OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..128)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Status of fabric channel link to this worker blade." + ::= { fgSgWorkerBladeEntry 14 } +fgSgWbDataHb OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..128)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Status of data heartbeat from this worker blade." + ::= { fgSgWorkerBladeEntry 15 } + +fgSgWbMgmtHb OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..128)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Status of management heartbeat from this worker blade." + ::= { fgSgWorkerBladeEntry 16 } + -- -- fortinet.fnFortiGateMib.fgMibConformance -- @@ -11604,6 +13076,20 @@ fgTrapDhcp NOTIFICATION-TYPE "A trap for DHCP or DHCP6 event." ::= { fgTrapPrefix 1301 } +fgTrapPoolUsage NOTIFICATION-TYPE + OBJECTS { fnSysSerial, sysName, fgFwIppTrapType, fgFwIppStatsName, fgFwIppStatsGroupName, fgFwTrapPoolUtilization, fgFwIppTrapPoolProto } + STATUS current + DESCRIPTION + "A trap for ippool." + ::= { fgTrapPrefix 1401 } + +fgTrapSlbc NOTIFICATION-TYPE + OBJECTS { fnSysSerial, sysName, fgChassisSlotId, fgChassisTrapMessage } + STATUS current + DESCRIPTION + "A trap for SLBC event." + ::= { fgTrapPrefix 1501 } + -- -- fortinet.fnFortiGateMib.fgMibConformance -- @@ -11641,7 +13127,16 @@ fgSystemObjectGroup OBJECT-GROUP fgSysSes6Count, fgSysSes6Rate1, fgSysSes6Rate10, fgSysSes6Rate30, fgSysSes6Rate60, fgSysUpTime, - fgSysNeedLogPartitionScan, fgSysUpTimeDetail } + fgSysNeedLogPartitionScan, fgSysUpTimeDetail, + fgSysNpuSesCount, fgSysNpuSesRate1, + fgSysNpuSesRate10, fgSysNpuSesRate30, + fgSysNpuSesRate60, fgSysNpuSes6Count, + fgSysNpuSes6Rate1, fgSysNpuSes6Rate10, + fgSysNpuSes6Rate30, fgSysNpuSes6Rate60, + fgSysNeedLogPartitionScan, fgSysUpTimeDetail, + fgSysRebootReason, + fgDataCpuUsage, fgDataMemUsage + } STATUS current DESCRIPTION "Objects pertaining to the system status of the device." @@ -11670,7 +13165,7 @@ fgHighAvailabilityObjectGroup OBJECT-GROUP fgHaStatsPktCount, fgHaStatsByteCount, fgHaStatsIdsCount, fgHaStatsAvCount, fgHaStatsHostname, fgHaStatsSyncStatus, fgHaStatsSyncDatimeSucc, fgHaStatsSyncDatimeUnsucc, - fgHaStatsGlobalChecksum, fgHaStatsPrimarySerial, + fgHaStatsGlobalChecksum, fgHaStatsPrimarySerial, fgHaStatsAllChecksum, fgHaTrapMemberSerial } STATUS current DESCRIPTION @@ -11726,22 +13221,30 @@ fgVpnObjectGroup OBJECT-GROUP fgVpn2TunVdom } STATUS current - DESCRIPTION + DESCRIPTION "Objects pertaining to Virtual Priavet Networking on FortiGate devices." ::= { fgMibConformance 8 } fgFirewallObjectGroup OBJECT-GROUP - OBJECTS { fgFwPolPktCount, fgFwPolByteCount, fgFwUserNumber, - fgFwPolPktCountHc, fgFwPolByteCountHc, - fgFwUserAuthTimeout, fgFwUserName, fgFwUserAuth, - fgFwUserState, fgFwUserVdom, fgIpSessProto, - fgIpSessFromAddr, fgIpSessFromPort, fgIpSessToAddr, - fgIpSessToPort, fgIpSessExp, fgIpSessVdom, - fgIpSessNumber, fgIp6SessNumber, fgFwPol6PktCount, - fgFwPol6ByteCount, fgFwPolLastUsed, fgFwPol6LastUsed, + OBJECTS { fgFwPolPktCount, fgFwPolByteCount, fgFwUserNumber, + fgFwPolPktCountHc, fgFwPolByteCountHc, + fgFwUserAuthTimeout, fgFwUserName, fgFwUserAuth, + fgFwUserState, fgFwUserVdom, fgIpSessProto, + fgIpSessFromAddr, fgIpSessFromPort, fgIpSessToAddr, + fgIpSessToPort, fgIpSessExp, fgIpSessVdom, + fgIpSessNumber, fgIp6SessNumber, fgFwPolLastUsed, fgFwIppStatsName, fgFwIppStatsType, fgFwIppStatsTotalSessions, fgFwIppStatsTcpSessions, fgFwIppStatsUdpSessions, fgFwIppStatsOtherSessions, + fgFwIppStatsTotalPBAs,fgFwIppStatsInusePBAs, + fgFwIppStatsExpiringPBAs, fgFwIppStatsFreePBAs, + fgFwIppStatsFlags, fgFwIppStatsGroupName, fgFwIppStatsBlockSize, + fgFwIppStatsPortStart, fgFwIppStatsPortEnd, + fgFwIppStatsStartClientIP, fgFwIppStatsEndClientIP, + fgFwIppStatsRscTCP, fgFwIppStatsRscUDP, + fgFwIppStatsUsedRscTCP, fgFwIppStatsUsedRscUDP, + fgFwIppStatsPercentageTCP, fgFwIppStatsPercentageUDP, + fgFwIppTrapType, fgFwIppTrapPoolProto, fgFwTrapPoolUtilization, fgFwGtpStatsRequest, fgFwGtpStatsEchoRequest, fgFwGtpStatsTunnel, fgFwGtpStatsTunnelV0, fgFwGtpStatsPath, fgFwGtpStatsBearer, fgFwGtpStatsFteid, fgFwGtpStatsProfile, fgFwGtpStatsImsi, @@ -11761,7 +13264,14 @@ fgFirewallObjectGroup OBJECT-GROUP fgFwGtpRtStatsDDroppedMalIe, fgFwGtpRtStatsDDroppedGtpInGtp, fgFwGtpRtStatsDDroppedSpoof, fgFwGtpRtStatsDDroppedIpPol, fgFwGtpRtStatsDDroppedMsgFilter, fgFwGtpRtStatsDDroppedMsgRateLimit, fgFwGtpRtStatsDDroppedUnknownVersion, fgFwGtpRtStatsBForwarded, fgFwGtpRtStatsBDroppedSanity, - fgFwGtpRtStatsBDroppedMalMsg, fgFwGtpRtStatsBDroppedMalIe, fgFwGtpRtStatsBDroppedMsgFilter } + fgFwGtpRtStatsBDroppedMalMsg, fgFwGtpRtStatsBDroppedMalIe, fgFwGtpRtStatsBDroppedMsgFilter, + fgFwAddrDynEmsName, fgFwAddrDynEmsAddresses, + fgFwAuthIpv4UserNumber, fgFwAuthIpv6UserNumber, + fgFwAuthIpv4UserVdom, fgFwAuthIpv4UserName, + fgFwAuthIpv4UserType, fgFwAuthIpv4UserAddr, + fgFwAuthIpv6UserVdom, fgFwAuthIpv6UserName, + fgFwAuthIpv6UserType, fgFwAuthIpv6UserAddr, + fgFwHsPolPktCount, fgFwHsPolByteCount, fgFwHsPolLastUsed } STATUS current DESCRIPTION "Objects pertaining to Firewall functionality on FortiGate devices." @@ -11841,7 +13351,7 @@ fgVirtualDomainObjectGroup OBJECT-GROUP OBJECTS { fgVdNumber, fgVdMaxVdoms, fgVdEnabled, fgVdEntName, fgVdEntIndex, fgVdEntOpMode, fgVdTpMgmtAddrType, fgVdTpMgmtAddr, fgVdEntCpuUsage, fgVdEntMemUsage, fgVdEntSesCount, fgVdEntSesRate, - fgVdTpMgmtMask, fgVdEntHaState } + fgVdTpMgmtMask, fgVdEntHaState, fgVdEntChecksum } STATUS current DESCRIPTION "Objects pertaining to Virtual Firewall Domain services on FortiGate devices." @@ -11856,13 +13366,23 @@ fgAdministrationObjectGroup OBJECT-GROUP fgIntfObjectGroup OBJECT-GROUP OBJECTS { fgIntfEntVdom, fgIntfEntEstUpBandwidth, fgIntfEntEstDownBandwidth, + fgIntfEntMeaUpBandwidth, fgIntfEntMeaDownBandwidth, + fgIntfVlanName, fgIntfVlanID, fgIntfVlanPhyName, fgIntfVrrpCount, fgIntfVrrpEntVrId, fgIntfVrrpEntGrpId, fgIntfVrrpEntIfName, fgIntfVrrpEntState, fgIntfVrrpEntVrIp, fgIntfVlanHbCount, fgIntfVlanHbEntIfName, fgIntfVlanHbEntSerial, fgIntfVlanHbEntState, + fgIntfBcCfgIfName, fgIntfBcCfgIfEgressSProfile, fgIntfBcCfgIfIngressSProfile, + fgIntfBcCfgIfEstUpBandwidth, fgIntfBcCfgIfEstDownBandwidth, + fgIntfBcCfgIfInBandwidth, fgIntfBcCfgIfOutBandwidth, + fgIntfBcCfgSproName, fgIntfBcCfgSproType, fgIntfBcCfgSproDefaultClassId, fgIntfBcCfgSproClassNum, + fgIntfBcCfgSentClassName, fgIntfBcCfgSentGuaranteedBandwidth, fgIntfBcCfgSentMaxBandwidth, + fgIntfBcCfgSpolSrcaddr, fgIntfBcCfgSpolDstaddr, fgIntfBcCfgSpolSvr, + fgIntfBcCfgSpolComment, fgIntfBcCfgSpolClassName, fgIntfBcAllocatedBandwidth, fgIntfBcGuaranteedBandwidth, fgIntfBcMaxBandwidth, fgIntfBcCurrentBandwidth, fgIntfBcBytes, fgIntfBcDrops, fgIntfBcInAllocatedBandwidth, fgIntfBcInGuaranteedBandwidth, fgIntfBcInMaxBandwidth, - fgIntfBcInCurrentBandwidth, fgIntfBcInBytes, fgIntfBcInDrops } + fgIntfBcInCurrentBandwidth, fgIntfBcInBytes, fgIntfBcInDrops, + fgIntfBcQPackets, fgIntfBcQBytes, fgIntfBcQPDrops, fgIntfBcQBDrops } STATUS current DESCRIPTION "Objects pertaining to the interface table of FortiGate device." @@ -11872,7 +13392,7 @@ fgProcessorsObjectGroup OBJECT-GROUP OBJECTS { fgProcessorCount, fgProcessorUsage, fgProcessorUsage5sec, fgProcessorType, fgProcessorContainedIn, fgProcessorPktRxCount, fgProcessorPktTxCount, fgProcessorPktDroppedCount, - fgProcessorUserUsage, fgProcessorSysUsage, + fgProcessorUserUsage, fgProcessorSysUsage, fgProcessorPktTxDroppedCount, fgProcessorModuleCount, fgProcModType, fgProcModName, fgProcModDescr, fgProcModProcessorCount, fgProcModMemCapacity, fgProcModMemUsage, fgPerCpuHighDetails, @@ -11892,8 +13412,9 @@ fgNotificationGroup NOTIFICATION-GROUP fgTrapAvEnterConserve, fgTrapAvBypass, fgTrapAvOversizePass, fgTrapAvOversizeBlock, fgTrapFazDisconnect, fgTrapWcApUp, fgTrapWcApDown, fgTrapDeviceNew, - fgTrapPerCpuHigh, fgTrapDhcp, - fgTrapFcSwUp, fgTrapFcSwDown, fgTrapServerLoadBalanceRealServerDown } + fgTrapPerCpuHigh, fgTrapDhcp, fgTrapPoolUsage, + fgTrapFcSwUp, fgTrapFcSwDown, fgTrapServerLoadBalanceRealServerDown, + fgTrapSlbc } STATUS current DESCRIPTION "Notifications that can be generated from a FortiGate device." @@ -12076,7 +13597,7 @@ fgLinkMonitorGroup OBJECT-GROUP fgLinkMonitorLatency, fgLinkMonitorJitter, fgLinkMonitorPacketSend, fgLinkMonitorPacketRecv, fgLinkMonitorPacketLoss, fgLinkMonitorVdom, fgLinkMonitorBandwidthIn, fgLinkMonitorBandwidthOut, fgLinkMonitorBandwidthBi, - fgLinkMonitorOutofSeq + fgLinkMonitorOutofSeq, fgLinkMonitorServer, fgLinkMonitorProtocol } STATUS current DESCRIPTION @@ -12087,7 +13608,7 @@ fgInternalModemInfoGroup OBJECT-GROUP OBJECTS { fgMdmDetected, fgMdmVendor, fgMdmModel, fgMdmRevision, fgMdmMsisdn, fgMdmEsn, fgMdmImei, fgMdmHwRevision, fgMdmMeid, fgMdmSwRev, fgMdmSku, fgMdmFsn, fgMdmPrlVer, - fgMdmFwVer, fgMdmPriFwVer, fgMdmCarrierAbbr, fgMdmActState, fgMdmOpMode, + fgMdmFwVer, fgMdmPriFwVer, fgMdmCarrierAbbr, fgMdmActState, fgMdmOpMode, fgMdmLacTac, fgMdmActBand, fgMdmCellId, fgMdmRssi} STATUS current DESCRIPTION @@ -12155,7 +13676,9 @@ fgVWLHealthCheckLinkGroup OBJECT-GROUP fgVWLHealthCheckLinkState, fgVWLHealthCheckLinkLatency, fgVWLHealthCheckLinkJitter, fgVWLHealthCheckLinkPacketSend, fgVWLHealthCheckLinkPacketRecv, fgVWLHealthCheckLinkPacketLoss, fgVWLHealthCheckLinkVdom, fgVWLHealthCheckLinkBandwidthIn, fgVWLHealthCheckLinkBandwidthOut, - fgVWLHealthCheckLinkBandwidthBi, fgVWLHealthCheckLinkIfName + fgVWLHealthCheckLinkBandwidthBi, fgVWLHealthCheckLinkIfName, fgVWLHealthCheckLinkUsedBandwidthIn, + fgVWLHealthCheckLinkUsedBandwidthOut, fgVWLHealthCheckLinkUsedBandwidthBi, fgVWLHealthCheckLinkMOSCodec, + fgVWLHealthCheckLinkMOS } STATUS current DESCRIPTION @@ -12233,7 +13756,7 @@ fgDhcpObjectGroup OBJECT-GROUP fgDpdkEngsObjectGroup OBJECT-GROUP OBJECTS { fgDpdkEngCount, fgDpdkEngRxUsage, fgDpdkEngVnpUsage, - fgDpdkEngIpsUsage, fgDpdkEngTxUsage, fgDpdkEngIdle} + fgDpdkEngIpsUsage, fgDpdkEngTxUsage, fgDpdkEngIdle, fgDpdkEngToCpu} STATUS current DESCRIPTION "Objects pertaining to the Dpdk Engine table of FortiGate device." @@ -12241,7 +13764,8 @@ fgDpdkEngsObjectGroup OBJECT-GROUP fgSwitchDeviceObjectGroup OBJECT-GROUP OBJECTS { fgSwDeviceSerialNum, fgSwDeviceName, fgSwDeviceVersion, fgSwDeviceAuthorized, - fgSwDeviceStatus, fgSwDeviceJoinTime, fgSwDeviceIp, fgSwDeviceFlag + fgSwDeviceStatus, fgSwDeviceJoinTime, fgSwDeviceIp, fgSwDeviceFlag, + fgSwCpu, fgSwMemory, fgSwDeviceIpv6 } STATUS current DESCRIPTION @@ -12257,6 +13781,24 @@ fgSwitchPortObjectGroup OBJECT-GROUP "Objects pertaining to Switch Ports on FortiGate devices." ::= { fgMibConformance 49 } +fgChassisObjectGroup OBJECT-GROUP + OBJECTS { fgChassisVersion, fgChassisSlotId, fgChassisTrapMessage } + STATUS current + DESCRIPTION + "Objects pertaining to Chassis group." + ::= { fgMibConformance 50 } + +fgServiceGroupWorkerBladesGroup OBJECT-GROUP + OBJECTS { fgSgWbServiceGroupID, fgSgWbChassisID, fgSgWbSlotID, fgSgWbState, + fgSgWbStatusMsg, fgSgWbMaster, fgSgWbSysVersion, fgSgWbSysSerial, + fgSgWbSysUpTime, fgSgWbSysCpuUsage, fgSgWbSysMemUsage, fgSgWbBaseLink, + fgSgWbFabricLink, fgSgWbDataHb, fgSgWbMgmtHb + } + STATUS current + DESCRIPTION + "Objects pertaining to Service Group Worker Blades group." + ::= {fgMibConformance 51 } + fgMIBCompliance MODULE-COMPLIANCE STATUS current DESCRIPTION @@ -12453,6 +13995,14 @@ fgMIBCompliance MODULE-COMPLIANCE DESCRIPTION "Model and feature specific." + GROUP fgChassisObjectGroup + DESCRIPTION + "Model and feature specific." + + GROUP fgServiceGroupWorkerBladesGroup + DESCRIPTION + "Model and feature specific." + ::= { fgMibConformance 100 } fg300MibCompliance MODULE-COMPLIANCE diff --git a/misc/discovery_schema.json b/misc/discovery_schema.json index d6cdd4bc38..a516355866 100644 --- a/misc/discovery_schema.json +++ b/misc/discovery_schema.json @@ -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, diff --git a/tests/data/fortigate_100e.json b/tests/data/fortigate_100e.json index 65709d2f62..9652799478 100644 --- a/tests/data/fortigate_100e.json +++ b/tests/data/fortigate_100e.json @@ -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 } ] }, diff --git a/tests/data/fortigate_1500d-sensors.json b/tests/data/fortigate_1500d-sensors.json index 1a9ff284c1..17e1ae17b7 100644 --- a/tests/data/fortigate_1500d-sensors.json +++ b/tests/data/fortigate_1500d-sensors.json @@ -1641,1806 +1641,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", - "sensor_index": "fgVpnTunEntIndex.1", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.10", - "sensor_index": "fgVpnTunEntIndex.10", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.11", - "sensor_index": "fgVpnTunEntIndex.11", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.12", - "sensor_index": "fgVpnTunEntIndex.12", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.13", - "sensor_index": "fgVpnTunEntIndex.13", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.14", - "sensor_index": "fgVpnTunEntIndex.14", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.15", - "sensor_index": "fgVpnTunEntIndex.15", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.16", - "sensor_index": "fgVpnTunEntIndex.16", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.17", - "sensor_index": "fgVpnTunEntIndex.17", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.18", - "sensor_index": "fgVpnTunEntIndex.18", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.19", - "sensor_index": "fgVpnTunEntIndex.19", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "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": "redacted\\redacted (1.1.1.1)", - "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.20", - "sensor_index": "fgVpnTunEntIndex.20", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.21", - "sensor_index": "fgVpnTunEntIndex.21", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.22", - "sensor_index": "fgVpnTunEntIndex.22", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.23", - "sensor_index": "fgVpnTunEntIndex.23", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.24", - "sensor_index": "fgVpnTunEntIndex.24", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.25", - "sensor_index": "fgVpnTunEntIndex.25", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.26", - "sensor_index": "fgVpnTunEntIndex.26", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.27", - "sensor_index": "fgVpnTunEntIndex.27", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.28", - "sensor_index": "fgVpnTunEntIndex.28", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.29", - "sensor_index": "fgVpnTunEntIndex.29", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.3", - "sensor_index": "fgVpnTunEntIndex.3", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.30", - "sensor_index": "fgVpnTunEntIndex.30", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.31", - "sensor_index": "fgVpnTunEntIndex.31", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.32", - "sensor_index": "fgVpnTunEntIndex.32", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.33", - "sensor_index": "fgVpnTunEntIndex.33", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.34", - "sensor_index": "fgVpnTunEntIndex.34", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.35", - "sensor_index": "fgVpnTunEntIndex.35", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.36", - "sensor_index": "fgVpnTunEntIndex.36", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.37", - "sensor_index": "fgVpnTunEntIndex.37", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.38", - "sensor_index": "fgVpnTunEntIndex.38", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.39", - "sensor_index": "fgVpnTunEntIndex.39", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.4", - "sensor_index": "fgVpnTunEntIndex.4", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.40", - "sensor_index": "fgVpnTunEntIndex.40", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.41", - "sensor_index": "fgVpnTunEntIndex.41", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.42", - "sensor_index": "fgVpnTunEntIndex.42", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.43", - "sensor_index": "fgVpnTunEntIndex.43", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.44", - "sensor_index": "fgVpnTunEntIndex.44", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.45", - "sensor_index": "fgVpnTunEntIndex.45", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.46", - "sensor_index": "fgVpnTunEntIndex.46", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.47", - "sensor_index": "fgVpnTunEntIndex.47", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.48", - "sensor_index": "fgVpnTunEntIndex.48", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.49", - "sensor_index": "fgVpnTunEntIndex.49", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.5", - "sensor_index": "fgVpnTunEntIndex.5", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.50", - "sensor_index": "fgVpnTunEntIndex.50", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.51", - "sensor_index": "fgVpnTunEntIndex.51", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.52", - "sensor_index": "fgVpnTunEntIndex.52", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.53", - "sensor_index": "fgVpnTunEntIndex.53", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.54", - "sensor_index": "fgVpnTunEntIndex.54", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.55", - "sensor_index": "fgVpnTunEntIndex.55", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.56", - "sensor_index": "fgVpnTunEntIndex.56", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.57", - "sensor_index": "fgVpnTunEntIndex.57", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.58", - "sensor_index": "fgVpnTunEntIndex.58", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.59", - "sensor_index": "fgVpnTunEntIndex.59", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.6", - "sensor_index": "fgVpnTunEntIndex.6", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.60", - "sensor_index": "fgVpnTunEntIndex.60", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.61", - "sensor_index": "fgVpnTunEntIndex.61", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.62", - "sensor_index": "fgVpnTunEntIndex.62", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.63", - "sensor_index": "fgVpnTunEntIndex.63", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.64", - "sensor_index": "fgVpnTunEntIndex.64", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.65", - "sensor_index": "fgVpnTunEntIndex.65", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.66", - "sensor_index": "fgVpnTunEntIndex.66", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.67", - "sensor_index": "fgVpnTunEntIndex.67", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.68", - "sensor_index": "fgVpnTunEntIndex.68", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.69", - "sensor_index": "fgVpnTunEntIndex.69", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.7", - "sensor_index": "fgVpnTunEntIndex.7", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.70", - "sensor_index": "fgVpnTunEntIndex.70", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.71", - "sensor_index": "fgVpnTunEntIndex.71", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.72", - "sensor_index": "fgVpnTunEntIndex.72", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.8", - "sensor_index": "fgVpnTunEntIndex.8", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.9", - "sensor_index": "fgVpnTunEntIndex.9", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, { "sensor_deleted": 0, "sensor_class": "state", @@ -3495,20 +1695,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 } ] }, @@ -5114,1806 +3300,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", - "sensor_index": "fgVpnTunEntIndex.1", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.10", - "sensor_index": "fgVpnTunEntIndex.10", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.11", - "sensor_index": "fgVpnTunEntIndex.11", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.12", - "sensor_index": "fgVpnTunEntIndex.12", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.13", - "sensor_index": "fgVpnTunEntIndex.13", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.14", - "sensor_index": "fgVpnTunEntIndex.14", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.15", - "sensor_index": "fgVpnTunEntIndex.15", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.16", - "sensor_index": "fgVpnTunEntIndex.16", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.17", - "sensor_index": "fgVpnTunEntIndex.17", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.18", - "sensor_index": "fgVpnTunEntIndex.18", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.19", - "sensor_index": "fgVpnTunEntIndex.19", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "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": "redacted\\redacted (1.1.1.1)", - "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.20", - "sensor_index": "fgVpnTunEntIndex.20", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.21", - "sensor_index": "fgVpnTunEntIndex.21", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.22", - "sensor_index": "fgVpnTunEntIndex.22", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.23", - "sensor_index": "fgVpnTunEntIndex.23", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.24", - "sensor_index": "fgVpnTunEntIndex.24", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.25", - "sensor_index": "fgVpnTunEntIndex.25", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.26", - "sensor_index": "fgVpnTunEntIndex.26", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.27", - "sensor_index": "fgVpnTunEntIndex.27", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.28", - "sensor_index": "fgVpnTunEntIndex.28", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.29", - "sensor_index": "fgVpnTunEntIndex.29", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.3", - "sensor_index": "fgVpnTunEntIndex.3", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.30", - "sensor_index": "fgVpnTunEntIndex.30", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.31", - "sensor_index": "fgVpnTunEntIndex.31", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.32", - "sensor_index": "fgVpnTunEntIndex.32", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.33", - "sensor_index": "fgVpnTunEntIndex.33", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.34", - "sensor_index": "fgVpnTunEntIndex.34", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.35", - "sensor_index": "fgVpnTunEntIndex.35", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.36", - "sensor_index": "fgVpnTunEntIndex.36", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.37", - "sensor_index": "fgVpnTunEntIndex.37", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.38", - "sensor_index": "fgVpnTunEntIndex.38", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.39", - "sensor_index": "fgVpnTunEntIndex.39", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.4", - "sensor_index": "fgVpnTunEntIndex.4", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.40", - "sensor_index": "fgVpnTunEntIndex.40", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.41", - "sensor_index": "fgVpnTunEntIndex.41", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.42", - "sensor_index": "fgVpnTunEntIndex.42", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.43", - "sensor_index": "fgVpnTunEntIndex.43", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.44", - "sensor_index": "fgVpnTunEntIndex.44", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.45", - "sensor_index": "fgVpnTunEntIndex.45", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.46", - "sensor_index": "fgVpnTunEntIndex.46", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.47", - "sensor_index": "fgVpnTunEntIndex.47", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.48", - "sensor_index": "fgVpnTunEntIndex.48", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.49", - "sensor_index": "fgVpnTunEntIndex.49", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.5", - "sensor_index": "fgVpnTunEntIndex.5", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.50", - "sensor_index": "fgVpnTunEntIndex.50", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.51", - "sensor_index": "fgVpnTunEntIndex.51", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.52", - "sensor_index": "fgVpnTunEntIndex.52", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.53", - "sensor_index": "fgVpnTunEntIndex.53", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.54", - "sensor_index": "fgVpnTunEntIndex.54", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.55", - "sensor_index": "fgVpnTunEntIndex.55", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.56", - "sensor_index": "fgVpnTunEntIndex.56", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.57", - "sensor_index": "fgVpnTunEntIndex.57", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.58", - "sensor_index": "fgVpnTunEntIndex.58", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.59", - "sensor_index": "fgVpnTunEntIndex.59", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.6", - "sensor_index": "fgVpnTunEntIndex.6", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.60", - "sensor_index": "fgVpnTunEntIndex.60", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.61", - "sensor_index": "fgVpnTunEntIndex.61", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.62", - "sensor_index": "fgVpnTunEntIndex.62", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.63", - "sensor_index": "fgVpnTunEntIndex.63", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.64", - "sensor_index": "fgVpnTunEntIndex.64", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.65", - "sensor_index": "fgVpnTunEntIndex.65", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.66", - "sensor_index": "fgVpnTunEntIndex.66", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.67", - "sensor_index": "fgVpnTunEntIndex.67", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.68", - "sensor_index": "fgVpnTunEntIndex.68", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.69", - "sensor_index": "fgVpnTunEntIndex.69", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.7", - "sensor_index": "fgVpnTunEntIndex.7", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.70", - "sensor_index": "fgVpnTunEntIndex.70", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.71", - "sensor_index": "fgVpnTunEntIndex.71", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.72", - "sensor_index": "fgVpnTunEntIndex.72", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.8", - "sensor_index": "fgVpnTunEntIndex.8", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.9", - "sensor_index": "fgVpnTunEntIndex.9", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, { "sensor_deleted": 0, "sensor_class": "state", @@ -6968,20 +3354,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 } ] } diff --git a/tests/data/fortigate_1500d.json b/tests/data/fortigate_1500d.json index b55878b6b3..7f1ac65fb1 100644 --- a/tests/data/fortigate_1500d.json +++ b/tests/data/fortigate_1500d.json @@ -38782,1931 +38782,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", - "sensor_index": "fgVpnTunEntIndex.1", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.10", - "sensor_index": "fgVpnTunEntIndex.10", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.11", - "sensor_index": "fgVpnTunEntIndex.11", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.12", - "sensor_index": "fgVpnTunEntIndex.12", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.13", - "sensor_index": "fgVpnTunEntIndex.13", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.14", - "sensor_index": "fgVpnTunEntIndex.14", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.15", - "sensor_index": "fgVpnTunEntIndex.15", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.16", - "sensor_index": "fgVpnTunEntIndex.16", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.17", - "sensor_index": "fgVpnTunEntIndex.17", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.18", - "sensor_index": "fgVpnTunEntIndex.18", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.19", - "sensor_index": "fgVpnTunEntIndex.19", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "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": "redacted\\redacted (1.1.1.1)", - "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.1", - "sensor_index": "fgVpnTunEntIndex.2.1", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\P2_Motiv (185.52.106.16)", - "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.20", - "sensor_index": "fgVpnTunEntIndex.20", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.21", - "sensor_index": "fgVpnTunEntIndex.21", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.22", - "sensor_index": "fgVpnTunEntIndex.22", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.23", - "sensor_index": "fgVpnTunEntIndex.23", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.24", - "sensor_index": "fgVpnTunEntIndex.24", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.25", - "sensor_index": "fgVpnTunEntIndex.25", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.26", - "sensor_index": "fgVpnTunEntIndex.26", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.27", - "sensor_index": "fgVpnTunEntIndex.27", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.28", - "sensor_index": "fgVpnTunEntIndex.28", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.29", - "sensor_index": "fgVpnTunEntIndex.29", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.3", - "sensor_index": "fgVpnTunEntIndex.3", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.3.1", - "sensor_index": "fgVpnTunEntIndex.3.1", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\IPSEC_Cirrus_SA (217.67.246.172)", - "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.30", - "sensor_index": "fgVpnTunEntIndex.30", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.31", - "sensor_index": "fgVpnTunEntIndex.31", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.32", - "sensor_index": "fgVpnTunEntIndex.32", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.33", - "sensor_index": "fgVpnTunEntIndex.33", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.34", - "sensor_index": "fgVpnTunEntIndex.34", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.35", - "sensor_index": "fgVpnTunEntIndex.35", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.36", - "sensor_index": "fgVpnTunEntIndex.36", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.37", - "sensor_index": "fgVpnTunEntIndex.37", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.38", - "sensor_index": "fgVpnTunEntIndex.38", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.39", - "sensor_index": "fgVpnTunEntIndex.39", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.4", - "sensor_index": "fgVpnTunEntIndex.4", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.4.1", - "sensor_index": "fgVpnTunEntIndex.4.1", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\IPSEC_WSR_NET1 (91.245.240.253)", - "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.4.2", - "sensor_index": "fgVpnTunEntIndex.4.2", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\IPSEC_WSR_NET2 (91.245.240.253)", - "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.40", - "sensor_index": "fgVpnTunEntIndex.40", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.41", - "sensor_index": "fgVpnTunEntIndex.41", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.42", - "sensor_index": "fgVpnTunEntIndex.42", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.43", - "sensor_index": "fgVpnTunEntIndex.43", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.44", - "sensor_index": "fgVpnTunEntIndex.44", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.45", - "sensor_index": "fgVpnTunEntIndex.45", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.46", - "sensor_index": "fgVpnTunEntIndex.46", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.47", - "sensor_index": "fgVpnTunEntIndex.47", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.48", - "sensor_index": "fgVpnTunEntIndex.48", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.49", - "sensor_index": "fgVpnTunEntIndex.49", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.5", - "sensor_index": "fgVpnTunEntIndex.5", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.5.1", - "sensor_index": "fgVpnTunEntIndex.5.1", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\P2_VMZ (194.171.108.86)", - "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.50", - "sensor_index": "fgVpnTunEntIndex.50", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.51", - "sensor_index": "fgVpnTunEntIndex.51", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.52", - "sensor_index": "fgVpnTunEntIndex.52", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.53", - "sensor_index": "fgVpnTunEntIndex.53", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.54", - "sensor_index": "fgVpnTunEntIndex.54", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.55", - "sensor_index": "fgVpnTunEntIndex.55", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.56", - "sensor_index": "fgVpnTunEntIndex.56", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.57", - "sensor_index": "fgVpnTunEntIndex.57", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.58", - "sensor_index": "fgVpnTunEntIndex.58", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.59", - "sensor_index": "fgVpnTunEntIndex.59", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.6", - "sensor_index": "fgVpnTunEntIndex.6", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.60", - "sensor_index": "fgVpnTunEntIndex.60", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.61", - "sensor_index": "fgVpnTunEntIndex.61", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.62", - "sensor_index": "fgVpnTunEntIndex.62", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.63", - "sensor_index": "fgVpnTunEntIndex.63", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.64", - "sensor_index": "fgVpnTunEntIndex.64", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.65", - "sensor_index": "fgVpnTunEntIndex.65", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.66", - "sensor_index": "fgVpnTunEntIndex.66", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.67", - "sensor_index": "fgVpnTunEntIndex.67", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.68", - "sensor_index": "fgVpnTunEntIndex.68", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.69", - "sensor_index": "fgVpnTunEntIndex.69", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.7", - "sensor_index": "fgVpnTunEntIndex.7", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.70", - "sensor_index": "fgVpnTunEntIndex.70", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.71", - "sensor_index": "fgVpnTunEntIndex.71", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.72", - "sensor_index": "fgVpnTunEntIndex.72", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.8", - "sensor_index": "fgVpnTunEntIndex.8", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.9", - "sensor_index": "fgVpnTunEntIndex.9", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, { "sensor_deleted": 0, "sensor_class": "state", @@ -40786,20 +38861,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 } ] }, @@ -42555,1931 +40616,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", - "sensor_index": "fgVpnTunEntIndex.1", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.10", - "sensor_index": "fgVpnTunEntIndex.10", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.11", - "sensor_index": "fgVpnTunEntIndex.11", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.12", - "sensor_index": "fgVpnTunEntIndex.12", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.13", - "sensor_index": "fgVpnTunEntIndex.13", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.14", - "sensor_index": "fgVpnTunEntIndex.14", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.15", - "sensor_index": "fgVpnTunEntIndex.15", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.16", - "sensor_index": "fgVpnTunEntIndex.16", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.17", - "sensor_index": "fgVpnTunEntIndex.17", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.18", - "sensor_index": "fgVpnTunEntIndex.18", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.19", - "sensor_index": "fgVpnTunEntIndex.19", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "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": "redacted\\redacted (1.1.1.1)", - "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.1", - "sensor_index": "fgVpnTunEntIndex.2.1", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\P2_Motiv (185.52.106.16)", - "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.20", - "sensor_index": "fgVpnTunEntIndex.20", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.21", - "sensor_index": "fgVpnTunEntIndex.21", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.22", - "sensor_index": "fgVpnTunEntIndex.22", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.23", - "sensor_index": "fgVpnTunEntIndex.23", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.24", - "sensor_index": "fgVpnTunEntIndex.24", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.25", - "sensor_index": "fgVpnTunEntIndex.25", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.26", - "sensor_index": "fgVpnTunEntIndex.26", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.27", - "sensor_index": "fgVpnTunEntIndex.27", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.28", - "sensor_index": "fgVpnTunEntIndex.28", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.29", - "sensor_index": "fgVpnTunEntIndex.29", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.3", - "sensor_index": "fgVpnTunEntIndex.3", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.3.1", - "sensor_index": "fgVpnTunEntIndex.3.1", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\IPSEC_Cirrus_SA (217.67.246.172)", - "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.30", - "sensor_index": "fgVpnTunEntIndex.30", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.31", - "sensor_index": "fgVpnTunEntIndex.31", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.32", - "sensor_index": "fgVpnTunEntIndex.32", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.33", - "sensor_index": "fgVpnTunEntIndex.33", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.34", - "sensor_index": "fgVpnTunEntIndex.34", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.35", - "sensor_index": "fgVpnTunEntIndex.35", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.36", - "sensor_index": "fgVpnTunEntIndex.36", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.37", - "sensor_index": "fgVpnTunEntIndex.37", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.38", - "sensor_index": "fgVpnTunEntIndex.38", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.39", - "sensor_index": "fgVpnTunEntIndex.39", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.4", - "sensor_index": "fgVpnTunEntIndex.4", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.4.1", - "sensor_index": "fgVpnTunEntIndex.4.1", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\IPSEC_WSR_NET1 (91.245.240.253)", - "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.4.2", - "sensor_index": "fgVpnTunEntIndex.4.2", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\IPSEC_WSR_NET2 (91.245.240.253)", - "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.40", - "sensor_index": "fgVpnTunEntIndex.40", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.41", - "sensor_index": "fgVpnTunEntIndex.41", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.42", - "sensor_index": "fgVpnTunEntIndex.42", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.43", - "sensor_index": "fgVpnTunEntIndex.43", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.44", - "sensor_index": "fgVpnTunEntIndex.44", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.45", - "sensor_index": "fgVpnTunEntIndex.45", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.46", - "sensor_index": "fgVpnTunEntIndex.46", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.47", - "sensor_index": "fgVpnTunEntIndex.47", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.48", - "sensor_index": "fgVpnTunEntIndex.48", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.49", - "sensor_index": "fgVpnTunEntIndex.49", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.5", - "sensor_index": "fgVpnTunEntIndex.5", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.5.1", - "sensor_index": "fgVpnTunEntIndex.5.1", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\P2_VMZ (194.171.108.86)", - "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.50", - "sensor_index": "fgVpnTunEntIndex.50", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.51", - "sensor_index": "fgVpnTunEntIndex.51", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.52", - "sensor_index": "fgVpnTunEntIndex.52", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.53", - "sensor_index": "fgVpnTunEntIndex.53", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.54", - "sensor_index": "fgVpnTunEntIndex.54", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.55", - "sensor_index": "fgVpnTunEntIndex.55", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.56", - "sensor_index": "fgVpnTunEntIndex.56", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.57", - "sensor_index": "fgVpnTunEntIndex.57", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.58", - "sensor_index": "fgVpnTunEntIndex.58", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.59", - "sensor_index": "fgVpnTunEntIndex.59", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.6", - "sensor_index": "fgVpnTunEntIndex.6", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.60", - "sensor_index": "fgVpnTunEntIndex.60", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.61", - "sensor_index": "fgVpnTunEntIndex.61", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.62", - "sensor_index": "fgVpnTunEntIndex.62", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.63", - "sensor_index": "fgVpnTunEntIndex.63", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.64", - "sensor_index": "fgVpnTunEntIndex.64", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.65", - "sensor_index": "fgVpnTunEntIndex.65", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.66", - "sensor_index": "fgVpnTunEntIndex.66", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.67", - "sensor_index": "fgVpnTunEntIndex.67", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.68", - "sensor_index": "fgVpnTunEntIndex.68", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.69", - "sensor_index": "fgVpnTunEntIndex.69", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.7", - "sensor_index": "fgVpnTunEntIndex.7", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.70", - "sensor_index": "fgVpnTunEntIndex.70", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.71", - "sensor_index": "fgVpnTunEntIndex.71", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.72", - "sensor_index": "fgVpnTunEntIndex.72", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.1.1)", - "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.8", - "sensor_index": "fgVpnTunEntIndex.8", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.2.1.20.9", - "sensor_index": "fgVpnTunEntIndex.9", - "sensor_type": "fgVpnTunEntStatus", - "sensor_descr": "redacted\\redacted (1.1.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" - }, { "sensor_deleted": 0, "sensor_class": "state", @@ -44559,20 +40695,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 } ] } diff --git a/tests/data/fortigate_60f3g4g.json b/tests/data/fortigate_60f3g4g.json index 24fd2f172f..5113471407 100644 --- a/tests/data/fortigate_60f3g4g.json +++ b/tests/data/fortigate_60f3g4g.json @@ -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 } ] }, diff --git a/tests/data/fortigate_cluster-60f.json b/tests/data/fortigate_cluster-60f.json index b9dca24fd7..9922dcf3e3 100644 --- a/tests/data/fortigate_cluster-60f.json +++ b/tests/data/fortigate_cluster-60f.json @@ -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 } ] } diff --git a/tests/data/fortigate_fwf60d.json b/tests/data/fortigate_fwf60d.json index d57a2104ed..dc88271e5e 100644 --- a/tests/data/fortigate_fwf60d.json +++ b/tests/data/fortigate_fwf60d.json @@ -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 } ] }, diff --git a/tests/data/fortigate_vm01.json b/tests/data/fortigate_vm01.json new file mode 100644 index 0000000000..dc0a7a0c30 --- /dev/null +++ b/tests/data/fortigate_vm01.json @@ -0,0 +1,4127 @@ +{ + "os": { + "discovery": { + "devices": [ + { + "sysName": null, + "sysObjectID": ".1.3.6.1.4.1.12356.101.1.80001", + "sysDescr": "Zurich LNMS dev FW", + "sysContact": "", + "version": "v6.4.12,build2060,230221 (GA.M)", + "hardware": "FGT_VM64", + "features": null, + "location": "", + "os": "fortigate", + "type": "firewall", + "serial": "FGVMEVSPIYELLJA8", + "icon": "fortinet.svg" + } + ] + }, + "poller": "matches discovery" + }, + "ports": { + "discovery": { + "ports": [ + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "port1", + "ifName": "port1", + "portName": null, + "ifIndex": 1, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "port1", + "ifPhysAddress": null, + "ifLastChange": 0, + "ifVlan": null, + "ifTrunk": null, + "ignore": 0, + "disabled": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "port2", + "ifName": "port2", + "portName": null, + "ifIndex": 2, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "port2", + "ifPhysAddress": null, + "ifLastChange": 0, + "ifVlan": null, + "ifTrunk": null, + "ignore": 0, + "disabled": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "port3", + "ifName": "port3", + "portName": null, + "ifIndex": 3, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "port3", + "ifPhysAddress": null, + "ifLastChange": 0, + "ifVlan": null, + "ifTrunk": null, + "ignore": 0, + "disabled": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "port4", + "ifName": "port4", + "portName": null, + "ifIndex": 4, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "port4", + "ifPhysAddress": null, + "ifLastChange": 0, + "ifVlan": null, + "ifTrunk": null, + "ignore": 0, + "disabled": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "port5", + "ifName": "port5", + "portName": null, + "ifIndex": 5, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "port5", + "ifPhysAddress": null, + "ifLastChange": 0, + "ifVlan": null, + "ifTrunk": null, + "ignore": 0, + "disabled": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "port6", + "ifName": "port6", + "portName": null, + "ifIndex": 6, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "port6", + "ifPhysAddress": null, + "ifLastChange": 0, + "ifVlan": null, + "ifTrunk": null, + "ignore": 0, + "disabled": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "port7", + "ifName": "port7", + "portName": null, + "ifIndex": 7, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "port7", + "ifPhysAddress": null, + "ifLastChange": 0, + "ifVlan": null, + "ifTrunk": null, + "ignore": 0, + "disabled": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "port8", + "ifName": "port8", + "portName": null, + "ifIndex": 8, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "port8", + "ifPhysAddress": null, + "ifLastChange": 0, + "ifVlan": null, + "ifTrunk": null, + "ignore": 0, + "disabled": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "port9", + "ifName": "port9", + "portName": null, + "ifIndex": 9, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "port9", + "ifPhysAddress": null, + "ifLastChange": 0, + "ifVlan": null, + "ifTrunk": null, + "ignore": 0, + "disabled": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "port10", + "ifName": "port10", + "portName": null, + "ifIndex": 10, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "port10", + "ifPhysAddress": null, + "ifLastChange": 0, + "ifVlan": null, + "ifTrunk": null, + "ignore": 0, + "disabled": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ssl.root", + "ifName": "ssl.root", + "portName": null, + "ifIndex": 11, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "tunnel", + "ifAlias": "SSL VPN interface", + "ifPhysAddress": null, + "ifLastChange": 0, + "ifVlan": null, + "ifTrunk": null, + "ignore": 0, + "disabled": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "fortilink", + "ifName": "fortilink", + "portName": null, + "ifIndex": 12, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ieee8023adLag", + "ifAlias": "fortilink", + "ifPhysAddress": null, + "ifLastChange": 0, + "ifVlan": null, + "ifTrunk": null, + "ignore": 0, + "disabled": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ipv4tunnel", + "ifName": "ipv4tunnel", + "portName": null, + "ifIndex": 13, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "tunnel", + "ifAlias": "ipv4tunnel", + "ifPhysAddress": null, + "ifLastChange": 0, + "ifVlan": null, + "ifTrunk": null, + "ignore": 0, + "disabled": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ipv6tunnel", + "ifName": "ipv6tunnel", + "portName": null, + "ifIndex": 14, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "tunnel", + "ifAlias": "ipv6tunnel", + "ifPhysAddress": null, + "ifLastChange": 0, + "ifVlan": null, + "ifTrunk": null, + "ignore": 0, + "disabled": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "v4_printable", + "ifName": "v4_printable", + "portName": null, + "ifIndex": 15, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "tunnel", + "ifAlias": "v4_printable", + "ifPhysAddress": null, + "ifLastChange": 0, + "ifVlan": null, + "ifTrunk": null, + "ignore": 0, + "disabled": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "v6_printable", + "ifName": "v6_printable", + "portName": null, + "ifIndex": 16, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "tunnel", + "ifAlias": "v6_printable", + "ifPhysAddress": null, + "ifLastChange": 0, + "ifVlan": null, + "ifTrunk": null, + "ignore": 0, + "disabled": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + } + ] + }, + "poller": { + "ports": [ + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "port1", + "ifName": "port1", + "portName": null, + "ifIndex": 1, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "port1", + "ifPhysAddress": null, + "ifLastChange": 0, + "ifVlan": null, + "ifTrunk": null, + "ignore": 0, + "disabled": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "port2", + "ifName": "port2", + "portName": null, + "ifIndex": 2, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "port2", + "ifPhysAddress": null, + "ifLastChange": 0, + "ifVlan": null, + "ifTrunk": null, + "ignore": 0, + "disabled": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "port3", + "ifName": "port3", + "portName": null, + "ifIndex": 3, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "port3", + "ifPhysAddress": null, + "ifLastChange": 0, + "ifVlan": null, + "ifTrunk": null, + "ignore": 0, + "disabled": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "port4", + "ifName": "port4", + "portName": null, + "ifIndex": 4, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "port4", + "ifPhysAddress": null, + "ifLastChange": 0, + "ifVlan": null, + "ifTrunk": null, + "ignore": 0, + "disabled": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "port5", + "ifName": "port5", + "portName": null, + "ifIndex": 5, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "port5", + "ifPhysAddress": null, + "ifLastChange": 0, + "ifVlan": null, + "ifTrunk": null, + "ignore": 0, + "disabled": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "port6", + "ifName": "port6", + "portName": null, + "ifIndex": 6, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "port6", + "ifPhysAddress": null, + "ifLastChange": 0, + "ifVlan": null, + "ifTrunk": null, + "ignore": 0, + "disabled": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "port7", + "ifName": "port7", + "portName": null, + "ifIndex": 7, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "port7", + "ifPhysAddress": null, + "ifLastChange": 0, + "ifVlan": null, + "ifTrunk": null, + "ignore": 0, + "disabled": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "port8", + "ifName": "port8", + "portName": null, + "ifIndex": 8, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "port8", + "ifPhysAddress": null, + "ifLastChange": 0, + "ifVlan": null, + "ifTrunk": null, + "ignore": 0, + "disabled": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "port9", + "ifName": "port9", + "portName": null, + "ifIndex": 9, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "port9", + "ifPhysAddress": null, + "ifLastChange": 0, + "ifVlan": null, + "ifTrunk": null, + "ignore": 0, + "disabled": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "port10", + "ifName": "port10", + "portName": null, + "ifIndex": 10, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "port10", + "ifPhysAddress": null, + "ifLastChange": 0, + "ifVlan": null, + "ifTrunk": null, + "ignore": 0, + "disabled": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ssl.root", + "ifName": "ssl.root", + "portName": null, + "ifIndex": 11, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "tunnel", + "ifAlias": "SSL VPN interface", + "ifPhysAddress": null, + "ifLastChange": 0, + "ifVlan": null, + "ifTrunk": null, + "ignore": 0, + "disabled": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "fortilink", + "ifName": "fortilink", + "portName": null, + "ifIndex": 12, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ieee8023adLag", + "ifAlias": "fortilink", + "ifPhysAddress": null, + "ifLastChange": 0, + "ifVlan": null, + "ifTrunk": null, + "ignore": 0, + "disabled": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ipv4tunnel", + "ifName": "ipv4tunnel", + "portName": null, + "ifIndex": 13, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "tunnel", + "ifAlias": "ipv4tunnel", + "ifPhysAddress": null, + "ifLastChange": 0, + "ifVlan": null, + "ifTrunk": null, + "ignore": 0, + "disabled": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ipv6tunnel", + "ifName": "ipv6tunnel", + "portName": null, + "ifIndex": 14, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "tunnel", + "ifAlias": "ipv6tunnel", + "ifPhysAddress": null, + "ifLastChange": 0, + "ifVlan": null, + "ifTrunk": null, + "ignore": 0, + "disabled": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "v4_printable", + "ifName": "v4_printable", + "portName": null, + "ifIndex": 15, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "tunnel", + "ifAlias": "v4_printable", + "ifPhysAddress": null, + "ifLastChange": 0, + "ifVlan": null, + "ifTrunk": null, + "ignore": 0, + "disabled": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "v6_printable", + "ifName": "v6_printable", + "portName": null, + "ifIndex": 16, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "tunnel", + "ifAlias": "v6_printable", + "ifPhysAddress": null, + "ifLastChange": 0, + "ifVlan": null, + "ifTrunk": null, + "ignore": 0, + "disabled": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 0, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 0, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 0, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 0, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + } + ] + } + }, + "processors": { + "discovery": { + "processors": [ + { + "entPhysicalIndex": 0, + "hrDeviceIndex": 0, + "processor_oid": ".1.3.6.1.4.1.12356.101.4.1.3.0", + "processor_index": "0", + "processor_type": "fortigate-fixed", + "processor_usage": 4, + "processor_descr": "System Cpu Usage", + "processor_precision": 1, + "processor_perc_warn": 75 + }, + { + "entPhysicalIndex": 0, + "hrDeviceIndex": 0, + "processor_oid": ".1.3.6.1.4.1.12356.101.4.4.2.1.2.1", + "processor_index": "1", + "processor_type": "fortigate-core", + "processor_usage": 0, + "processor_descr": "CPU Core 1", + "processor_precision": 1, + "processor_perc_warn": 75 + } + ] + }, + "poller": "matches discovery" + }, + "mempools": { + "discovery": { + "mempools": [ + { + "mempool_index": "0", + "entPhysicalIndex": null, + "mempool_type": "fortigate", + "mempool_class": "system", + "mempool_precision": 1024, + "mempool_descr": "Main Memory", + "mempool_perc": 34, + "mempool_perc_oid": ".1.3.6.1.4.1.12356.101.4.1.4.0", + "mempool_used": 715886592, + "mempool_used_oid": null, + "mempool_free": 1389662208, + "mempool_free_oid": null, + "mempool_total": 2105548800, + "mempool_total_oid": null, + "mempool_largestfree": null, + "mempool_lowestfree": null, + "mempool_deleted": 0, + "mempool_perc_warn": 90 + } + ] + }, + "poller": "matches discovery" + }, + "sensors": { + "discovery": { + "sensors": [ + { + "sensor_deleted": 0, + "sensor_class": "count", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.9.2.1.1.9.1", + "sensor_index": "fgIpsAnomalyDetections.1", + "sensor_type": "fortigate", + "sensor_descr": "IPS Anomaly Detected", + "group": "IPS", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "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": "COUNTER", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "count", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.9.2.1.1.3.1", + "sensor_index": "fgIpsCritSevDetections.1", + "sensor_type": "fortigate", + "sensor_descr": "IPS Severity Critical Detected", + "group": "IPS", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "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": "COUNTER", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "count", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.9.2.1.1.4.1", + "sensor_index": "fgIpsHighSevDetections.1", + "sensor_type": "fortigate", + "sensor_descr": "IPS Severity High Detected", + "group": "IPS", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "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": "COUNTER", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "count", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.9.2.1.1.7.1", + "sensor_index": "fgIpsInfoSevDetections.1", + "sensor_type": "fortigate", + "sensor_descr": "IPS Severity Informational Detected", + "group": "IPS", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "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": "COUNTER", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "count", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.9.2.1.1.2.1", + "sensor_index": "fgIpsIntrusionsBlocked.1", + "sensor_type": "fortigate", + "sensor_descr": "IPS Intrusions Blocked", + "group": "IPS", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "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": "COUNTER", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "count", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.9.2.1.1.1.1", + "sensor_index": "fgIpsIntrusionsDetected.1", + "sensor_type": "fortigate", + "sensor_descr": "IPS Intrusions Detected", + "group": "IPS", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "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": "COUNTER", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "count", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.9.2.1.1.6.1", + "sensor_index": "fgIpsLowSevDetections.1", + "sensor_type": "fortigate", + "sensor_descr": "IPS Severity Low Detected", + "group": "IPS", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "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": "COUNTER", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "count", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.9.2.1.1.5.1", + "sensor_index": "fgIpsMedSevDetections.1", + "sensor_type": "fortigate", + "sensor_descr": "IPS Severity Medium Detected", + "group": "IPS", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "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": "COUNTER", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "count", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.9.2.1.1.8.1", + "sensor_index": "fgIpsSignatureDetections.1", + "sensor_type": "fortigate", + "sensor_descr": "IPS Signature Detected", + "group": "IPS", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "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": "COUNTER", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "count", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.3.1.6.1", + "sensor_index": "fgVpnSslStatsActiveTunnels.1", + "sensor_type": "fortigate", + "sensor_descr": "SSL VPN Active tunnels", + "group": "VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "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": null + }, + { + "sensor_deleted": 0, + "sensor_class": "count", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.3.1.2.1", + "sensor_index": "fgVpnSslStatsLoginUsers.1", + "sensor_type": "fortigate", + "sensor_descr": "SSL VPN Logged users", + "group": "VPN", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "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": null + }, + { + "sensor_deleted": 0, + "sensor_class": "count", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.1.1.0", + "sensor_index": "fgVpnTunnelUpCount.0", + "sensor_type": "fortigate", + "sensor_descr": "IPSEC VPN tunnels", + "group": "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": null + }, + { + "sensor_deleted": 0, + "sensor_class": "count", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.10.1.2.1.1.5.1", + "sensor_index": "fgWfActiveXBlocked.1", + "sensor_type": "fortigate", + "sensor_descr": "ActiveX Blocked", + "group": "Webfilter", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "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": "COUNTER", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "count", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.10.1.2.1.1.7.1", + "sensor_index": "fgWfAppletBlocked.1", + "sensor_type": "fortigate", + "sensor_descr": "Applets Blocked", + "group": "Webfilter", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "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": "COUNTER", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "count", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.10.1.2.1.1.6.1", + "sensor_index": "fgWfCookieBlocked.1", + "sensor_type": "fortigate", + "sensor_descr": "Cookies Blocked", + "group": "Webfilter", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "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": "COUNTER", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "count", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.10.1.2.1.1.1.1", + "sensor_index": "fgWfHTTPBlocked.1", + "sensor_type": "fortigate", + "sensor_descr": "HTTP Sessions Blocked", + "group": "Webfilter", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "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": "COUNTER", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "count", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.10.1.2.1.1.2.1", + "sensor_index": "fgWfHTTPSBlocked.1", + "sensor_type": "fortigate", + "sensor_descr": "HTTPS Sessions Blocked", + "group": "Webfilter", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "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": "COUNTER", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "count", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.10.1.2.1.1.4.1", + "sensor_index": "fgWfHTTPSURLBlocked.1", + "sensor_type": "fortigate", + "sensor_descr": "HTTPS URLs Blocked", + "group": "Webfilter", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "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": "COUNTER", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "count", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.10.1.2.1.1.3.1", + "sensor_index": "fgWfHTTPURLBlocked.1", + "sensor_type": "fortigate", + "sensor_descr": "HTTP URLs Blocked", + "group": "Webfilter", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "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": "COUNTER", + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "count", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.1.8.0", + "sensor_index": "fgSysSesCount.0", + "sensor_type": "sessions", + "sensor_descr": "Session count", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 128, + "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": null + }, + { + "sensor_deleted": 0, + "sensor_class": "count", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.1.11.0", + "sensor_index": "fgSysSesRate1.0", + "sensor_type": "sessions", + "sensor_descr": "Sessions/sec 1m avg", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "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": null + }, + { + "sensor_deleted": 0, + "sensor_class": "count", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.1.12.0", + "sensor_index": "fgSysSesRate10.0", + "sensor_type": "sessions", + "sensor_descr": "Sessions/sec 10m avg", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "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": null + }, + { + "sensor_deleted": 0, + "sensor_class": "count", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.1.13.0", + "sensor_index": "fgSysSesRate30.0", + "sensor_type": "sessions", + "sensor_descr": "Sessions/sec 30m avg", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "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": null + }, + { + "sensor_deleted": 0, + "sensor_class": "count", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.4.1.14.0", + "sensor_index": "fgSysSesRate60.0", + "sensor_type": "sessions", + "sensor_descr": "Sessions/sec 60m avg", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "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": null + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.4.2.1.26.1.2", + "sensor_index": "Vdom_1.Ph1_ipv4tunnel.Ph2_ipv4tunnel", + "sensor_type": "fgVpn2TunTable", + "sensor_descr": "ipv4tunnel\\ipv4tunnel (192.168.199.2)", + "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": "fgVpn2TunTable" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.4.2.1.26.2.3", + "sensor_index": "Vdom_1.Ph1_ipv6tunnel.Ph2_extraph2", + "sensor_type": "fgVpn2TunTable", + "sensor_descr": "ipv6tunnel\\extraph2 (fda8:cafe:32ee::2)", + "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": "fgVpn2TunTable" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.4.2.1.26.2.5", + "sensor_index": "Vdom_1.Ph1_ipv6tunnel.Ph2_ipv6tunnel", + "sensor_type": "fgVpn2TunTable", + "sensor_descr": "ipv6tunnel\\ipv6tunnel (fda8:cafe:32ee::2)", + "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": "fgVpn2TunTable" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.4.2.1.26.4.1", + "sensor_index": "Vdom_1.Ph1_v4_printable.Ph2_v4_printable", + "sensor_type": "fgVpn2TunTable", + "sensor_descr": "v4_printable\\v4_printable (32.65.97.126)", + "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": "fgVpn2TunTable" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.4.2.1.26.5.1", + "sensor_index": "Vdom_1.Ph1_v6_printable.Ph2_v6_printable", + "sensor_type": "fgVpn2TunTable", + "sensor_descr": "v6_printable\\v6_printable (2122:3031:3233:3435:3637:3839:4142:4344)", + "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": "fgVpn2TunTable" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12356.101.12.2.3.1.1.1", + "sensor_index": "fgVpnSslState.1", + "sensor_type": "fgVpnSslState", + "sensor_descr": "SSL-VPN Status", + "group": "SSL 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": "fgVpnSslState" + } + ], + "state_indexes": [ + { + "state_name": "fgVpn2TunTable", + "state_descr": "Down", + "state_draw_graph": 1, + "state_value": 1, + "state_generic_value": 2 + }, + { + "state_name": "fgVpn2TunTable", + "state_descr": "Up", + "state_draw_graph": 1, + "state_value": 2, + "state_generic_value": 0 + }, + { + "state_name": "fgVpnSslState", + "state_descr": "Disabled", + "state_draw_graph": 1, + "state_value": 1, + "state_generic_value": 3 + }, + { + "state_name": "fgVpnSslState", + "state_descr": "Enabled", + "state_draw_graph": 1, + "state_value": 2, + "state_generic_value": 0 + } + ] + }, + "poller": "matches discovery" + }, + "wireless": { + "discovery": { + "wireless_sensors": [ + { + "sensor_deleted": 0, + "sensor_class": "ap-count", + "sensor_index": "1", + "sensor_type": "fortigate", + "sensor_descr": "Connected APs", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": 0, + "sensor_prev": null, + "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_oids": "[\".1.3.6.1.4.1.12356.101.14.2.5.0\"]", + "rrd_type": "GAUGE" + }, + { + "sensor_deleted": 0, + "sensor_class": "clients", + "sensor_index": "1", + "sensor_type": "fortigate", + "sensor_descr": "Clients: Total", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": 0, + "sensor_prev": null, + "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_oids": "[\".1.3.6.1.4.1.12356.101.14.2.7.0\"]", + "rrd_type": "GAUGE" + } + ] + }, + "poller": "matches discovery" + } +} diff --git a/tests/snmpsim/fortigate_vm01.snmprec b/tests/snmpsim/fortigate_vm01.snmprec new file mode 100644 index 0000000000..bbf3bafa54 --- /dev/null +++ b/tests/snmpsim/fortigate_vm01.snmprec @@ -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| +1.3.6.1.2.1.1.6.0|4| +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