SNMP custom plugin doesn't apply to all expected hosts

CMK version: 2.3.0p10 MSP
OS version: Ubuntu 22.04 LTS

Error message:
We’ve created an SNMP python plugin to monitor the memory usage of our Fortiweb servers.
It correctly receives data from one of our Fortiwebs but not the other. The plugin is correctly distributed to all sites in /local/lib/python3/cmk_addons/plugins/fortiweb_memory_check/agent_based/

The sites have been restarted after modifying the plugin to the latest version. The plugin is as expected.

Below the script can be found. It detects based on the sysDescr name fortiweb.*, which is fortiweb-us for the working fortiweb and fortiweb-nl for the one where it doesn’t work.

#!/usr/bin/env python3
# This file is explained in the Checkmk User Guide:
# https://docs.checkmk.com/master/en/devel_check_plugins_snmp.html#scaffold

# Location: ~/local/lib/python3/cmk_addons/plugins/fortiweb_memory_check/agent_based

from cmk.agent_based.v2 import (
    CheckPlugin,
    CheckResult,
    startswith,
    DiscoveryResult,
    Result,
    Service,
    SimpleSNMPSection,
    SNMPTree,
    State,
    StringTable,
)

def parse_fortiweb(string_table):
    try:
        used_memory = int(string_table[0][0])
        return {"used_memory": used_memory}
    except (IndexError, ValueError):
        return {}

def discover_fortiweb(section):
    yield Service()

def check_fortiweb(section):
    used_memory = section.get("used_memory")

    if used_memory is None:
        yield Result(state=State.UNKNOWN, summary="No data fetched")
        return

    if used_memory > 90:
        yield Result(state=State.CRIT, summary=f"Memory usage is critical: {used_memory}%")
    elif used_memory > 75:
        yield Result(state=State.WARN, summary=f"Memory usage is high: {used_memory}%")
    else:
        yield Result(state=State.OK, summary=f"Memory usage is OK: {used_memory}%")

snmp_section_fortiweb_memory_check = SimpleSNMPSection(
    name="fortiweb_base_config",
    parse_function=parse_fortiweb,
    detect=startswith(".1.3.6.1.2.1.1.1.0", "fortiweb.*"),
    fetch=SNMPTree(base='.1.3.6.1.4.1.12356.107.2.1', oids=['7.0']),
)

check_plugin__fortiweb_memory_check = CheckPlugin(
    name="fortiweb_memory_check",
    sections=["fortiweb_base_config"],
    service_name="fortiweb_memory_check",
    discovery_function=discover_fortiweb,
    check_function=check_fortiweb,
)

Output with grep looking for the specific OID on the broken system:

OMD[nl01]:~/local/lib/python3/cmk_addons/plugins/fortiweb_memory_check/agent_based$ cmk --debug -vvn FORTIWEB-NL | grep 12356
=> [b'.1.3.6.1.4.1.12356.107.1.50001'] OBJECTID
b'.1.3.6.1.4.1.12356.107.1.50001'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.4.1.12356.107.1.50001'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.4.1.12356.107.1.50001'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.4.1.12356.107.1.50001'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.4.1.12356.107.1.50001'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.4.1.12356.107.1.50001'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.4.1.12356.107.1.50001'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.4.1.12356.107.1.50001'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.4.1.12356.107.1.50001'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.4.1.12356.107.1.50001'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.4.1.12356.107.1.50001'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.4.1.12356.107.1.50001'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.4.1.12356.107.1.50001'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.4.1.12356.107.1.50001'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.4.1.12356.107.1.50001'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.4.1.12356.107.1.50001'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.4.1.12356.107.1.50001'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.4.1.12356.107.1.50001'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.4.1.12356.107.1.50001'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.4.1.12356.107.1.50001'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.4.1.12356.107.1.50001'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.4.1.12356.107.1.50001'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.4.1.12356.107.1.50001'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.4.1.12356.107.1.50001'
.1.3.6.1.2.1.1.2.0 => [b'.1.3.6.1.4.1.12356.107.1.50001'] 'OBJECTID'

Output with grep looking for the specific OID on the working system:

OMD[US01]:~$ cmk --debug -vvn FORTIWEB-US | grep 12356
=> [b'.1.3.6.1.4.1.12356.107.1.50001'] OBJECTID
b'.1.3.6.1.4.1.12356.107.1.50001'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.4.1.12356.107.1.50001'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.4.1.12356.107.1.50001'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.4.1.12356.107.1.50001'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.4.1.12356.107.1.50001'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.4.1.12356.107.1.50001'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.4.1.12356.107.1.50001'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.4.1.12356.107.1.50001'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.4.1.12356.107.1.50001'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.4.1.12356.107.1.50001'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.4.1.12356.107.1.50001'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.4.1.12356.107.1.50001'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.4.1.12356.107.1.50001'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.4.1.12356.107.1.50001'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.4.1.12356.107.1.50001'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.4.1.12356.107.1.50001'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.4.1.12356.107.1.50001'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.4.1.12356.107.1.50001'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.4.1.12356.107.1.50001'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.4.1.12356.107.1.50001'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.4.1.12356.107.1.50001'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.4.1.12356.107.1.50001'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.4.1.12356.107.1.50001'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.4.1.12356.107.1.50001'
Executing BULKWALK (v2c) of ".1.3.6.1.4.1.12356.107.2.1.7" on FORTIWEB-US
.1.3.6.1.4.1.12356.107.2.1.7.0 => [b'42'] 'GAUGE'
.1.3.6.1.2.1.1.2.0 => [b'.1.3.6.1.4.1.12356.107.1.50001'] 'OBJECTID'

** Full Output of “cmk --debug -vvn hostname”:** (If it is a problem with checks or plugins)

OMD[nl01]:/$ cmk --debug -vvn FORTIWEB-NL
value store: synchronizing
Trying to acquire lock on /omd/sites/nl01/tmp/check_mk/counters/FORTIWEB-NL
Got lock on /omd/sites/nl01/tmp/check_mk/counters/FORTIWEB-NL
value store: loading from disk
Releasing lock on /omd/sites/nl01/tmp/check_mk/counters/FORTIWEB-NL
Released lock on /omd/sites/nl01/tmp/check_mk/counters/FORTIWEB-NL
Checkmk version 2.3.0p10
+ FETCHING DATA
  Source: SourceInfo(hostname='FORTIWEB-NL', ipaddress='10.123.2.98', ident='snmp', fetcher_type=<FetcherType.SNMP: 7>, source_type=<SourceType.HOST: 1>)
[cpu_tracking] Start [7fea18e40230]
Read from cache: SNMPFileCache(FORTIWEB-NL, path_template=/omd/sites/nl01/tmp/check_mk/data_source_cache/snmp/{mode}/{hostname}, max_age=MaxAge(checking=0, discovery=90.0, inventory=90.0), simulation=False, use_only_cache=False, file_cache_mode=6)
Not using cache (Too old. Age is 39 sec, allowed is 0 sec)
  SNMP scan:
       Getting OID .1.3.6.1.2.1.1.1.0: Executing SNMP _Mode.GET of .1.3.6.1.2.1.1.1.0 on FORTIWEB-NL
=> [b'fortiweb-nl'] OCTETSTR
b'fortiweb-nl'
       Getting OID .1.3.6.1.2.1.1.2.0: Executing SNMP _Mode.GET of .1.3.6.1.2.1.1.2.0 on FORTIWEB-NL
=> [b'.1.3.6.1.4.1.12356.107.1.50001'] OBJECTID
b'.1.3.6.1.4.1.12356.107.1.50001'
       Getting OID .1.3.6.1.2.1.47.1.1.1.1.*: Executing SNMP _Mode.GET_NEXT of .1.3.6.1.2.1.47.1.1.1.1 on FORTIWEB-NL
=> [b'Fortinet FWB_VM, HW Serial#: FWBVMSTM20000050'] OCTETSTR
b'Fortinet FWB_VM, HW Serial#: FWBVMSTM20000050'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.4.1.12356.107.1.50001'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.4.1.12356.107.1.50001'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'fortiweb-nl'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'fortiweb-nl'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'fortiweb-nl'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'fortiweb-nl'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.4.1.12356.107.1.50001'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.4.1.12356.107.1.50001'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.4.1.12356.107.1.50001'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'fortiweb-nl'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'fortiweb-nl'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'fortiweb-nl'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'fortiweb-nl'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'fortiweb-nl'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'fortiweb-nl'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'fortiweb-nl'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'fortiweb-nl'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'fortiweb-nl'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'fortiweb-nl'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'fortiweb-nl'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'fortiweb-nl'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'fortiweb-nl'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'fortiweb-nl'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.4.1.12356.107.1.50001'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.4.1.12356.107.1.50001'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.4.1.12356.107.1.50001'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.4.1.12356.107.1.50001'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.4.1.12356.107.1.50001'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'fortiweb-nl'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'fortiweb-nl'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'fortiweb-nl'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'fortiweb-nl'
       Getting OID .1.3.6.1.4.1.2036.2.1.1.4.0: Executing SNMP _Mode.GET of .1.3.6.1.4.1.2036.2.1.1.4.0 on FORTIWEB-NL
=> [None] NOSUCHOBJECT
failed.
       Using cached OID .1.3.6.1.2.1.1.1.0: 'fortiweb-nl'
       Getting OID .1.3.6.1.4.1.232.2.2.4.2.0: Executing SNMP _Mode.GET of .1.3.6.1.4.1.232.2.2.4.2.0 on FORTIWEB-NL
=> [None] NOSUCHOBJECT
failed.
       Using cached OID .1.3.6.1.4.1.232.2.2.4.2.0: None
       Using cached OID .1.3.6.1.4.1.232.2.2.4.2.0: None
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.4.1.12356.107.1.50001'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'fortiweb-nl'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.4.1.12356.107.1.50001'
       Getting OID .1.3.6.1.2.1.2.2.1.*: Executing SNMP _Mode.GET_NEXT of .1.3.6.1.2.1.2.2.1 on FORTIWEB-NL
=> [b'1'] INTEGER32
b'1'
       Getting OID .1.3.6.1.4.1.674.*: Executing SNMP _Mode.GET_NEXT of .1.3.6.1.4.1.674 on FORTIWEB-NL
=> [None] OCTETSTR
failed.
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.4.1.12356.107.1.50001'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.4.1.12356.107.1.50001'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.4.1.12356.107.1.50001'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'fortiweb-nl'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.4.1.12356.107.1.50001'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'fortiweb-nl'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'fortiweb-nl'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'fortiweb-nl'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.4.1.12356.107.1.50001'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.4.1.12356.107.1.50001'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.4.1.12356.107.1.50001'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'fortiweb-nl'
       Using cached OID .1.3.6.1.4.1.232.2.2.4.2.0: None
       Using cached OID .1.3.6.1.4.1.232.2.2.4.2.0: None
       Using cached OID .1.3.6.1.4.1.232.2.2.4.2.0: None
       Using cached OID .1.3.6.1.4.1.232.2.2.4.2.0: None
       Using cached OID .1.3.6.1.2.1.1.1.0: 'fortiweb-nl'
       Using cached OID .1.3.6.1.2.1.2.2.1.*: '1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.4.1.12356.107.1.50001'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'fortiweb-nl'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.4.1.12356.107.1.50001'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'fortiweb-nl'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.4.1.12356.107.1.50001'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.4.1.12356.107.1.50001'
   SNMP scan found                    hr_mem if if_fortigate inv_if snmp_extended_info snmp_uptime
Trying to acquire lock on /omd/sites/nl01/tmp/check_mk/snmp_scan_cache/FORTIWEB-NL.10.123.2.98
Got lock on /omd/sites/nl01/tmp/check_mk/snmp_scan_cache/FORTIWEB-NL.10.123.2.98
Releasing lock on /omd/sites/nl01/tmp/check_mk/snmp_scan_cache/FORTIWEB-NL.10.123.2.98
Released lock on /omd/sites/nl01/tmp/check_mk/snmp_scan_cache/FORTIWEB-NL.10.123.2.98
hr_mem: Fetching data (SNMP walk cache is enabled: Use any locally cached information)
Executing BULKWALK (v2c) of ".1.3.6.1.2.1.25.2.3.1.2" on FORTIWEB-NL
Executing SNMP _Mode.GET of .1.3.6.1.2.1.25.2.3.1.2 on FORTIWEB-NL
=> [None] NOSUCHOBJECT
Executing BULKWALK (v2c) of ".1.3.6.1.2.1.25.2.3.1.3" on FORTIWEB-NL
Executing SNMP _Mode.GET of .1.3.6.1.2.1.25.2.3.1.3 on FORTIWEB-NL
=> [None] NOSUCHOBJECT
Executing BULKWALK (v2c) of ".1.3.6.1.2.1.25.2.3.1.4" on FORTIWEB-NL
Executing SNMP _Mode.GET of .1.3.6.1.2.1.25.2.3.1.4 on FORTIWEB-NL
=> [None] NOSUCHOBJECT
Executing BULKWALK (v2c) of ".1.3.6.1.2.1.25.2.3.1.5" on FORTIWEB-NL
Executing SNMP _Mode.GET of .1.3.6.1.2.1.25.2.3.1.5 on FORTIWEB-NL
=> [None] NOSUCHOBJECT
Executing BULKWALK (v2c) of ".1.3.6.1.2.1.25.2.3.1.6" on FORTIWEB-NL
Executing SNMP _Mode.GET of .1.3.6.1.2.1.25.2.3.1.6 on FORTIWEB-NL
=> [None] NOSUCHOBJECT
if: Fetching data (SNMP walk cache is enabled: Use any locally cached information)
Executing BULKWALK (v2c) of ".1.3.6.1.2.1.2.2.1.1" on FORTIWEB-NL
.1.3.6.1.2.1.2.2.1.1.1 => [b'1'] 'INTEGER32'
.1.3.6.1.2.1.2.2.1.1.2 => [b'2'] 'INTEGER32'
.1.3.6.1.2.1.2.2.1.1.3 => [b'3'] 'INTEGER32'
.1.3.6.1.2.1.2.2.1.1.4 => [b'4'] 'INTEGER32'
.1.3.6.1.2.1.2.2.1.1.5 => [b'5'] 'INTEGER32'
.1.3.6.1.2.1.2.2.1.1.6 => [b'6'] 'INTEGER32'
.1.3.6.1.2.1.2.2.1.1.7 => [b'7'] 'INTEGER32'
.1.3.6.1.2.1.2.2.1.1.8 => [b'8'] 'INTEGER32'
.1.3.6.1.2.1.2.2.1.1.9 => [b'9'] 'INTEGER32'
.1.3.6.1.2.1.2.2.1.1.10 => [b'10'] 'INTEGER32'
.1.3.6.1.2.1.2.2.1.1.11 => [b'11'] 'INTEGER32'
Executing BULKWALK (v2c) of ".1.3.6.1.2.1.2.2.1.2" on FORTIWEB-NL
.1.3.6.1.2.1.2.2.1.2.1 => [b'port1'] 'OCTETSTR'
.1.3.6.1.2.1.2.2.1.2.2 => [b'port2'] 'OCTETSTR'
.1.3.6.1.2.1.2.2.1.2.3 => [b'port3'] 'OCTETSTR'
.1.3.6.1.2.1.2.2.1.2.4 => [b'port4'] 'OCTETSTR'
.1.3.6.1.2.1.2.2.1.2.5 => [b'port5'] 'OCTETSTR'
.1.3.6.1.2.1.2.2.1.2.6 => [b'port6'] 'OCTETSTR'
.1.3.6.1.2.1.2.2.1.2.7 => [b'port7'] 'OCTETSTR'
.1.3.6.1.2.1.2.2.1.2.8 => [b'port8'] 'OCTETSTR'
.1.3.6.1.2.1.2.2.1.2.9 => [b'port9'] 'OCTETSTR'
.1.3.6.1.2.1.2.2.1.2.10 => [b'port10'] 'OCTETSTR'
.1.3.6.1.2.1.2.2.1.2.11 => [b'Slimstock-DMZ'] 'OCTETSTR'
Executing BULKWALK (v2c) of ".1.3.6.1.2.1.2.2.1.3" on FORTIWEB-NL
.1.3.6.1.2.1.2.2.1.3.1 => [b'6'] 'INTEGER'
.1.3.6.1.2.1.2.2.1.3.2 => [b'6'] 'INTEGER'
.1.3.6.1.2.1.2.2.1.3.3 => [b'6'] 'INTEGER'
.1.3.6.1.2.1.2.2.1.3.4 => [b'6'] 'INTEGER'
.1.3.6.1.2.1.2.2.1.3.5 => [b'6'] 'INTEGER'
.1.3.6.1.2.1.2.2.1.3.6 => [b'6'] 'INTEGER'
.1.3.6.1.2.1.2.2.1.3.7 => [b'6'] 'INTEGER'
.1.3.6.1.2.1.2.2.1.3.8 => [b'6'] 'INTEGER'
.1.3.6.1.2.1.2.2.1.3.9 => [b'6'] 'INTEGER'
.1.3.6.1.2.1.2.2.1.3.10 => [b'6'] 'INTEGER'
.1.3.6.1.2.1.2.2.1.3.11 => [b'135'] 'INTEGER'
Executing BULKWALK (v2c) of ".1.3.6.1.2.1.2.2.1.5" on FORTIWEB-NL
.1.3.6.1.2.1.2.2.1.5.1 => [b'1895825408'] 'GAUGE'
.1.3.6.1.2.1.2.2.1.5.2 => [b'1895825408'] 'GAUGE'
.1.3.6.1.2.1.2.2.1.5.3 => [b'0'] 'GAUGE'
.1.3.6.1.2.1.2.2.1.5.4 => [b'1895825408'] 'GAUGE'
.1.3.6.1.2.1.2.2.1.5.5 => [b'1895825408'] 'GAUGE'
.1.3.6.1.2.1.2.2.1.5.6 => [b'0'] 'GAUGE'
.1.3.6.1.2.1.2.2.1.5.7 => [b'0'] 'GAUGE'
.1.3.6.1.2.1.2.2.1.5.8 => [b'0'] 'GAUGE'
.1.3.6.1.2.1.2.2.1.5.9 => [b'0'] 'GAUGE'
.1.3.6.1.2.1.2.2.1.5.10 => [b'0'] 'GAUGE'
.1.3.6.1.2.1.2.2.1.5.11 => [b'0'] 'GAUGE'
Executing BULKWALK (v2c) of ".1.3.6.1.2.1.2.2.1.8" on FORTIWEB-NL
.1.3.6.1.2.1.2.2.1.8.1 => [b'1'] 'INTEGER'
.1.3.6.1.2.1.2.2.1.8.2 => [b'1'] 'INTEGER'
.1.3.6.1.2.1.2.2.1.8.3 => [b'2'] 'INTEGER'
.1.3.6.1.2.1.2.2.1.8.4 => [b'1'] 'INTEGER'
.1.3.6.1.2.1.2.2.1.8.5 => [b'1'] 'INTEGER'
.1.3.6.1.2.1.2.2.1.8.6 => [b'2'] 'INTEGER'
.1.3.6.1.2.1.2.2.1.8.7 => [b'2'] 'INTEGER'
.1.3.6.1.2.1.2.2.1.8.8 => [b'2'] 'INTEGER'
.1.3.6.1.2.1.2.2.1.8.9 => [b'2'] 'INTEGER'
.1.3.6.1.2.1.2.2.1.8.10 => [b'2'] 'INTEGER'
.1.3.6.1.2.1.2.2.1.8.11 => [b'2'] 'INTEGER'
Executing BULKWALK (v2c) of ".1.3.6.1.2.1.2.2.1.10" on FORTIWEB-NL
.1.3.6.1.2.1.2.2.1.10.1 => [b'2560451928'] 'COUNTER'
.1.3.6.1.2.1.2.2.1.10.2 => [b'2677248139'] 'COUNTER'
.1.3.6.1.2.1.2.2.1.10.3 => [b'0'] 'COUNTER'
.1.3.6.1.2.1.2.2.1.10.4 => [b'4180758826'] 'COUNTER'
.1.3.6.1.2.1.2.2.1.10.5 => [b'1895604072'] 'COUNTER'
.1.3.6.1.2.1.2.2.1.10.6 => [b'0'] 'COUNTER'
.1.3.6.1.2.1.2.2.1.10.7 => [b'0'] 'COUNTER'
.1.3.6.1.2.1.2.2.1.10.8 => [b'0'] 'COUNTER'
.1.3.6.1.2.1.2.2.1.10.9 => [b'0'] 'COUNTER'
.1.3.6.1.2.1.2.2.1.10.10 => [b'0'] 'COUNTER'
.1.3.6.1.2.1.2.2.1.10.11 => [b'0'] 'COUNTER'
Executing BULKWALK (v2c) of ".1.3.6.1.2.1.2.2.1.11" on FORTIWEB-NL
.1.3.6.1.2.1.2.2.1.11.1 => [b'432154604'] 'COUNTER'
.1.3.6.1.2.1.2.2.1.11.2 => [b'32754308'] 'COUNTER'
.1.3.6.1.2.1.2.2.1.11.3 => [b'0'] 'COUNTER'
.1.3.6.1.2.1.2.2.1.11.4 => [b'2222420211'] 'COUNTER'
.1.3.6.1.2.1.2.2.1.11.5 => [b'2684546880'] 'COUNTER'
.1.3.6.1.2.1.2.2.1.11.6 => [b'0'] 'COUNTER'
.1.3.6.1.2.1.2.2.1.11.7 => [b'0'] 'COUNTER'
.1.3.6.1.2.1.2.2.1.11.8 => [b'0'] 'COUNTER'
.1.3.6.1.2.1.2.2.1.11.9 => [b'0'] 'COUNTER'
.1.3.6.1.2.1.2.2.1.11.10 => [b'0'] 'COUNTER'
.1.3.6.1.2.1.2.2.1.11.11 => [b'0'] 'COUNTER'
Executing BULKWALK (v2c) of ".1.3.6.1.2.1.2.2.1.12" on FORTIWEB-NL
.1.3.6.1.2.1.2.2.1.12.1 => [b'0'] 'COUNTER'
.1.3.6.1.2.1.2.2.1.12.2 => [b'0'] 'COUNTER'
.1.3.6.1.2.1.2.2.1.12.3 => [b'0'] 'COUNTER'
.1.3.6.1.2.1.2.2.1.12.4 => [b'0'] 'COUNTER'
.1.3.6.1.2.1.2.2.1.12.5 => [b'0'] 'COUNTER'
.1.3.6.1.2.1.2.2.1.12.6 => [b'0'] 'COUNTER'
.1.3.6.1.2.1.2.2.1.12.7 => [b'0'] 'COUNTER'
.1.3.6.1.2.1.2.2.1.12.8 => [b'0'] 'COUNTER'
.1.3.6.1.2.1.2.2.1.12.9 => [b'0'] 'COUNTER'
.1.3.6.1.2.1.2.2.1.12.10 => [b'0'] 'COUNTER'
.1.3.6.1.2.1.2.2.1.12.11 => [b'0'] 'COUNTER'
Executing BULKWALK (v2c) of ".1.3.6.1.2.1.2.2.1.13" on FORTIWEB-NL
.1.3.6.1.2.1.2.2.1.13.1 => [b'397'] 'COUNTER'
.1.3.6.1.2.1.2.2.1.13.2 => [b'32754296'] 'COUNTER'
.1.3.6.1.2.1.2.2.1.13.3 => [b'0'] 'COUNTER'
.1.3.6.1.2.1.2.2.1.13.4 => [b'15466'] 'COUNTER'
.1.3.6.1.2.1.2.2.1.13.5 => [b'3727'] 'COUNTER'
.1.3.6.1.2.1.2.2.1.13.6 => [b'0'] 'COUNTER'
.1.3.6.1.2.1.2.2.1.13.7 => [b'0'] 'COUNTER'
.1.3.6.1.2.1.2.2.1.13.8 => [b'0'] 'COUNTER'
.1.3.6.1.2.1.2.2.1.13.9 => [b'0'] 'COUNTER'
.1.3.6.1.2.1.2.2.1.13.10 => [b'0'] 'COUNTER'
.1.3.6.1.2.1.2.2.1.13.11 => [b'0'] 'COUNTER'
Executing BULKWALK (v2c) of ".1.3.6.1.2.1.2.2.1.14" on FORTIWEB-NL
.1.3.6.1.2.1.2.2.1.14.1 => [b'0'] 'COUNTER'
.1.3.6.1.2.1.2.2.1.14.2 => [b'0'] 'COUNTER'
.1.3.6.1.2.1.2.2.1.14.3 => [b'0'] 'COUNTER'
.1.3.6.1.2.1.2.2.1.14.4 => [b'0'] 'COUNTER'
.1.3.6.1.2.1.2.2.1.14.5 => [b'0'] 'COUNTER'
.1.3.6.1.2.1.2.2.1.14.6 => [b'0'] 'COUNTER'
.1.3.6.1.2.1.2.2.1.14.7 => [b'0'] 'COUNTER'
.1.3.6.1.2.1.2.2.1.14.8 => [b'0'] 'COUNTER'
.1.3.6.1.2.1.2.2.1.14.9 => [b'0'] 'COUNTER'
.1.3.6.1.2.1.2.2.1.14.10 => [b'0'] 'COUNTER'
.1.3.6.1.2.1.2.2.1.14.11 => [b'0'] 'COUNTER'
Executing BULKWALK (v2c) of ".1.3.6.1.2.1.2.2.1.16" on FORTIWEB-NL
.1.3.6.1.2.1.2.2.1.16.1 => [b'1585476227'] 'COUNTER'
.1.3.6.1.2.1.2.2.1.16.2 => [b'1030050'] 'COUNTER'
.1.3.6.1.2.1.2.2.1.16.3 => [b'0'] 'COUNTER'
.1.3.6.1.2.1.2.2.1.16.4 => [b'1091690738'] 'COUNTER'
.1.3.6.1.2.1.2.2.1.16.5 => [b'1525100604'] 'COUNTER'
.1.3.6.1.2.1.2.2.1.16.6 => [b'0'] 'COUNTER'
.1.3.6.1.2.1.2.2.1.16.7 => [b'0'] 'COUNTER'
.1.3.6.1.2.1.2.2.1.16.8 => [b'0'] 'COUNTER'
.1.3.6.1.2.1.2.2.1.16.9 => [b'0'] 'COUNTER'
.1.3.6.1.2.1.2.2.1.16.10 => [b'0'] 'COUNTER'
.1.3.6.1.2.1.2.2.1.16.11 => [b'0'] 'COUNTER'
Executing BULKWALK (v2c) of ".1.3.6.1.2.1.2.2.1.17" on FORTIWEB-NL
.1.3.6.1.2.1.2.2.1.17.1 => [b'591944619'] 'COUNTER'
.1.3.6.1.2.1.2.2.1.17.2 => [b'14715'] 'COUNTER'
.1.3.6.1.2.1.2.2.1.17.3 => [b'0'] 'COUNTER'
.1.3.6.1.2.1.2.2.1.17.4 => [b'2683179801'] 'COUNTER'
.1.3.6.1.2.1.2.2.1.17.5 => [b'2682938459'] 'COUNTER'
.1.3.6.1.2.1.2.2.1.17.6 => [b'0'] 'COUNTER'
.1.3.6.1.2.1.2.2.1.17.7 => [b'0'] 'COUNTER'
.1.3.6.1.2.1.2.2.1.17.8 => [b'0'] 'COUNTER'
.1.3.6.1.2.1.2.2.1.17.9 => [b'0'] 'COUNTER'
.1.3.6.1.2.1.2.2.1.17.10 => [b'0'] 'COUNTER'
.1.3.6.1.2.1.2.2.1.17.11 => [b'0'] 'COUNTER'
Executing BULKWALK (v2c) of ".1.3.6.1.2.1.2.2.1.18" on FORTIWEB-NL
.1.3.6.1.2.1.2.2.1.18.1 => [b'0'] 'COUNTER'
.1.3.6.1.2.1.2.2.1.18.2 => [b'0'] 'COUNTER'
.1.3.6.1.2.1.2.2.1.18.3 => [b'0'] 'COUNTER'
.1.3.6.1.2.1.2.2.1.18.4 => [b'0'] 'COUNTER'
.1.3.6.1.2.1.2.2.1.18.5 => [b'0'] 'COUNTER'
.1.3.6.1.2.1.2.2.1.18.6 => [b'0'] 'COUNTER'
.1.3.6.1.2.1.2.2.1.18.7 => [b'0'] 'COUNTER'
.1.3.6.1.2.1.2.2.1.18.8 => [b'0'] 'COUNTER'
.1.3.6.1.2.1.2.2.1.18.9 => [b'0'] 'COUNTER'
.1.3.6.1.2.1.2.2.1.18.10 => [b'0'] 'COUNTER'
.1.3.6.1.2.1.2.2.1.18.11 => [b'0'] 'COUNTER'
Executing BULKWALK (v2c) of ".1.3.6.1.2.1.2.2.1.19" on FORTIWEB-NL
.1.3.6.1.2.1.2.2.1.19.1 => [b'0'] 'COUNTER'
.1.3.6.1.2.1.2.2.1.19.2 => [b'0'] 'COUNTER'
.1.3.6.1.2.1.2.2.1.19.3 => [b'0'] 'COUNTER'
.1.3.6.1.2.1.2.2.1.19.4 => [b'0'] 'COUNTER'
.1.3.6.1.2.1.2.2.1.19.5 => [b'0'] 'COUNTER'
.1.3.6.1.2.1.2.2.1.19.6 => [b'0'] 'COUNTER'
.1.3.6.1.2.1.2.2.1.19.7 => [b'0'] 'COUNTER'
.1.3.6.1.2.1.2.2.1.19.8 => [b'0'] 'COUNTER'
.1.3.6.1.2.1.2.2.1.19.9 => [b'0'] 'COUNTER'
.1.3.6.1.2.1.2.2.1.19.10 => [b'0'] 'COUNTER'
.1.3.6.1.2.1.2.2.1.19.11 => [b'0'] 'COUNTER'
Executing BULKWALK (v2c) of ".1.3.6.1.2.1.2.2.1.20" on FORTIWEB-NL
.1.3.6.1.2.1.2.2.1.20.1 => [b'0'] 'COUNTER'
.1.3.6.1.2.1.2.2.1.20.2 => [b'0'] 'COUNTER'
.1.3.6.1.2.1.2.2.1.20.3 => [b'0'] 'COUNTER'
.1.3.6.1.2.1.2.2.1.20.4 => [b'0'] 'COUNTER'
.1.3.6.1.2.1.2.2.1.20.5 => [b'0'] 'COUNTER'
.1.3.6.1.2.1.2.2.1.20.6 => [b'0'] 'COUNTER'
.1.3.6.1.2.1.2.2.1.20.7 => [b'0'] 'COUNTER'
.1.3.6.1.2.1.2.2.1.20.8 => [b'0'] 'COUNTER'
.1.3.6.1.2.1.2.2.1.20.9 => [b'0'] 'COUNTER'
.1.3.6.1.2.1.2.2.1.20.10 => [b'0'] 'COUNTER'
.1.3.6.1.2.1.2.2.1.20.11 => [b'0'] 'COUNTER'
Executing BULKWALK (v2c) of ".1.3.6.1.2.1.2.2.1.21" on FORTIWEB-NL
.1.3.6.1.2.1.2.2.1.21.1 => [b'0'] 'GAUGE'
.1.3.6.1.2.1.2.2.1.21.2 => [b'0'] 'GAUGE'
.1.3.6.1.2.1.2.2.1.21.3 => [b'0'] 'GAUGE'
.1.3.6.1.2.1.2.2.1.21.4 => [b'0'] 'GAUGE'
.1.3.6.1.2.1.2.2.1.21.5 => [b'0'] 'GAUGE'
.1.3.6.1.2.1.2.2.1.21.6 => [b'0'] 'GAUGE'
.1.3.6.1.2.1.2.2.1.21.7 => [b'0'] 'GAUGE'
.1.3.6.1.2.1.2.2.1.21.8 => [b'0'] 'GAUGE'
.1.3.6.1.2.1.2.2.1.21.9 => [b'0'] 'GAUGE'
.1.3.6.1.2.1.2.2.1.21.10 => [b'0'] 'GAUGE'
.1.3.6.1.2.1.2.2.1.21.11 => [b'0'] 'GAUGE'
Executing BULKWALK (v2c) of ".1.3.6.1.2.1.2.2.1.6" on FORTIWEB-NL
.1.3.6.1.2.1.2.2.1.6.1 => [b'\x00PV\xb9\x86\xab'] 'OCTETSTR'
.1.3.6.1.2.1.2.2.1.6.2 => [b'\x00\t\x0f\xa0\x04\x02'] 'OCTETSTR'
.1.3.6.1.2.1.2.2.1.6.3 => [b'\x00\t\x0f\xa0\x04\x03'] 'OCTETSTR'
.1.3.6.1.2.1.2.2.1.6.4 => [b'\x00\t\x0f\xa0\x04\x04'] 'OCTETSTR'
.1.3.6.1.2.1.2.2.1.6.5 => [b'\x00\t\x0f\xa0\x04\x05'] 'OCTETSTR'
.1.3.6.1.2.1.2.2.1.6.6 => [b'\x00\t\x0f\xa0\x04\x06'] 'OCTETSTR'
.1.3.6.1.2.1.2.2.1.6.7 => [b'\x00\t\x0f\xa0\x04\x07'] 'OCTETSTR'
.1.3.6.1.2.1.2.2.1.6.8 => [b'\x00\t\x0f\xa0\x04\x08'] 'OCTETSTR'
.1.3.6.1.2.1.2.2.1.6.9 => [b'\x00\t\x0f\xa0\x04\t'] 'OCTETSTR'
.1.3.6.1.2.1.2.2.1.6.10 => [b'\x00\t\x0f\xa0\x04\n'] 'OCTETSTR'
.1.3.6.1.2.1.2.2.1.6.11 => [b'\x00\t\x0f\xa0\x04\x03'] 'OCTETSTR'
if_fortigate: Fetching data (SNMP walk cache is enabled: Use any locally cached information)
Already fetched OID: .1.3.6.1.2.1.2.2.1.1
Already fetched OID: .1.3.6.1.2.1.2.2.1.2
Already fetched OID: .1.3.6.1.2.1.2.2.1.3
Already fetched OID: .1.3.6.1.2.1.2.2.1.5
Already fetched OID: .1.3.6.1.2.1.2.2.1.8
Executing BULKWALK (v2c) of ".1.3.6.1.2.1.31.1.1.1.6" on FORTIWEB-NL
.1.3.6.1.2.1.31.1.1.1.6.1 => [b'71279928664'] 'COUNTER64'
.1.3.6.1.2.1.31.1.1.1.6.2 => [b'11267182731'] 'COUNTER64'
.1.3.6.1.2.1.31.1.1.1.6.3 => [b'0'] 'COUNTER64'
.1.3.6.1.2.1.31.1.1.1.6.4 => [b'1640563298662'] 'COUNTER64'
.1.3.6.1.2.1.31.1.1.1.6.5 => [b'38905709373413'] 'COUNTER64'
.1.3.6.1.2.1.31.1.1.1.6.6 => [b'0'] 'COUNTER64'
.1.3.6.1.2.1.31.1.1.1.6.7 => [b'0'] 'COUNTER64'
.1.3.6.1.2.1.31.1.1.1.6.8 => [b'0'] 'COUNTER64'
.1.3.6.1.2.1.31.1.1.1.6.9 => [b'0'] 'COUNTER64'
.1.3.6.1.2.1.31.1.1.1.6.10 => [b'0'] 'COUNTER64'
.1.3.6.1.2.1.31.1.1.1.6.11 => [b'0'] 'COUNTER64'
Executing BULKWALK (v2c) of ".1.3.6.1.2.1.31.1.1.1.7" on FORTIWEB-NL
.1.3.6.1.2.1.31.1.1.1.7.1 => [b'0'] 'COUNTER64'
.1.3.6.1.2.1.31.1.1.1.7.2 => [b'0'] 'COUNTER64'
.1.3.6.1.2.1.31.1.1.1.7.3 => [b'0'] 'COUNTER64'
.1.3.6.1.2.1.31.1.1.1.7.4 => [b'0'] 'COUNTER64'
.1.3.6.1.2.1.31.1.1.1.7.5 => [b'0'] 'COUNTER64'
.1.3.6.1.2.1.31.1.1.1.7.6 => [b'0'] 'COUNTER64'
.1.3.6.1.2.1.31.1.1.1.7.7 => [b'0'] 'COUNTER64'
.1.3.6.1.2.1.31.1.1.1.7.8 => [b'0'] 'COUNTER64'
.1.3.6.1.2.1.31.1.1.1.7.9 => [b'0'] 'COUNTER64'
.1.3.6.1.2.1.31.1.1.1.7.10 => [b'0'] 'COUNTER64'
.1.3.6.1.2.1.31.1.1.1.7.11 => [b'0'] 'COUNTER64'
Executing BULKWALK (v2c) of ".1.3.6.1.2.1.31.1.1.1.8" on FORTIWEB-NL
.1.3.6.1.2.1.31.1.1.1.8.1 => [b'0'] 'COUNTER64'
.1.3.6.1.2.1.31.1.1.1.8.2 => [b'0'] 'COUNTER64'
.1.3.6.1.2.1.31.1.1.1.8.3 => [b'0'] 'COUNTER64'
.1.3.6.1.2.1.31.1.1.1.8.4 => [b'0'] 'COUNTER64'
.1.3.6.1.2.1.31.1.1.1.8.5 => [b'0'] 'COUNTER64'
.1.3.6.1.2.1.31.1.1.1.8.6 => [b'0'] 'COUNTER64'
.1.3.6.1.2.1.31.1.1.1.8.7 => [b'0'] 'COUNTER64'
.1.3.6.1.2.1.31.1.1.1.8.8 => [b'0'] 'COUNTER64'
.1.3.6.1.2.1.31.1.1.1.8.9 => [b'0'] 'COUNTER64'
.1.3.6.1.2.1.31.1.1.1.8.10 => [b'0'] 'COUNTER64'
.1.3.6.1.2.1.31.1.1.1.8.11 => [b'0'] 'COUNTER64'
Executing BULKWALK (v2c) of ".1.3.6.1.2.1.31.1.1.1.9" on FORTIWEB-NL
.1.3.6.1.2.1.31.1.1.1.9.1 => [b'0'] 'COUNTER64'
.1.3.6.1.2.1.31.1.1.1.9.2 => [b'0'] 'COUNTER64'
.1.3.6.1.2.1.31.1.1.1.9.3 => [b'0'] 'COUNTER64'
.1.3.6.1.2.1.31.1.1.1.9.4 => [b'0'] 'COUNTER64'
.1.3.6.1.2.1.31.1.1.1.9.5 => [b'0'] 'COUNTER64'
.1.3.6.1.2.1.31.1.1.1.9.6 => [b'0'] 'COUNTER64'
.1.3.6.1.2.1.31.1.1.1.9.7 => [b'0'] 'COUNTER64'
.1.3.6.1.2.1.31.1.1.1.9.8 => [b'0'] 'COUNTER64'
.1.3.6.1.2.1.31.1.1.1.9.9 => [b'0'] 'COUNTER64'
.1.3.6.1.2.1.31.1.1.1.9.10 => [b'0'] 'COUNTER64'
.1.3.6.1.2.1.31.1.1.1.9.11 => [b'0'] 'COUNTER64'
Already fetched OID: .1.3.6.1.2.1.2.2.1.13
Already fetched OID: .1.3.6.1.2.1.2.2.1.14
Executing BULKWALK (v2c) of ".1.3.6.1.2.1.31.1.1.1.10" on FORTIWEB-NL
.1.3.6.1.2.1.31.1.1.1.10.1 => [b'246398612099'] 'COUNTER64'
.1.3.6.1.2.1.31.1.1.1.10.2 => [b'1030050'] 'COUNTER64'
.1.3.6.1.2.1.31.1.1.1.10.3 => [b'0'] 'COUNTER64'
.1.3.6.1.2.1.31.1.1.1.10.4 => [b'38260660363506'] 'COUNTER64'
.1.3.6.1.2.1.31.1.1.1.10.5 => [b'2200548361825'] 'COUNTER64'
.1.3.6.1.2.1.31.1.1.1.10.6 => [b'0'] 'COUNTER64'
.1.3.6.1.2.1.31.1.1.1.10.7 => [b'0'] 'COUNTER64'
.1.3.6.1.2.1.31.1.1.1.10.8 => [b'0'] 'COUNTER64'
.1.3.6.1.2.1.31.1.1.1.10.9 => [b'0'] 'COUNTER64'
.1.3.6.1.2.1.31.1.1.1.10.10 => [b'0'] 'COUNTER64'
.1.3.6.1.2.1.31.1.1.1.10.11 => [b'0'] 'COUNTER64'
Executing BULKWALK (v2c) of ".1.3.6.1.2.1.31.1.1.1.11" on FORTIWEB-NL
.1.3.6.1.2.1.31.1.1.1.11.1 => [b'0'] 'COUNTER64'
.1.3.6.1.2.1.31.1.1.1.11.2 => [b'0'] 'COUNTER64'
.1.3.6.1.2.1.31.1.1.1.11.3 => [b'0'] 'COUNTER64'
.1.3.6.1.2.1.31.1.1.1.11.4 => [b'0'] 'COUNTER64'
.1.3.6.1.2.1.31.1.1.1.11.5 => [b'0'] 'COUNTER64'
.1.3.6.1.2.1.31.1.1.1.11.6 => [b'0'] 'COUNTER64'
.1.3.6.1.2.1.31.1.1.1.11.7 => [b'0'] 'COUNTER64'
.1.3.6.1.2.1.31.1.1.1.11.8 => [b'0'] 'COUNTER64'
.1.3.6.1.2.1.31.1.1.1.11.9 => [b'0'] 'COUNTER64'
.1.3.6.1.2.1.31.1.1.1.11.10 => [b'0'] 'COUNTER64'
.1.3.6.1.2.1.31.1.1.1.11.11 => [b'0'] 'COUNTER64'
Executing BULKWALK (v2c) of ".1.3.6.1.2.1.31.1.1.1.12" on FORTIWEB-NL
.1.3.6.1.2.1.31.1.1.1.12.1 => [b'0'] 'COUNTER64'
.1.3.6.1.2.1.31.1.1.1.12.2 => [b'0'] 'COUNTER64'
.1.3.6.1.2.1.31.1.1.1.12.3 => [b'0'] 'COUNTER64'
.1.3.6.1.2.1.31.1.1.1.12.4 => [b'0'] 'COUNTER64'
.1.3.6.1.2.1.31.1.1.1.12.5 => [b'0'] 'COUNTER64'
.1.3.6.1.2.1.31.1.1.1.12.6 => [b'0'] 'COUNTER64'
.1.3.6.1.2.1.31.1.1.1.12.7 => [b'0'] 'COUNTER64'
.1.3.6.1.2.1.31.1.1.1.12.8 => [b'0'] 'COUNTER64'
.1.3.6.1.2.1.31.1.1.1.12.9 => [b'0'] 'COUNTER64'
.1.3.6.1.2.1.31.1.1.1.12.10 => [b'0'] 'COUNTER64'
.1.3.6.1.2.1.31.1.1.1.12.11 => [b'0'] 'COUNTER64'
Executing BULKWALK (v2c) of ".1.3.6.1.2.1.31.1.1.1.13" on FORTIWEB-NL
.1.3.6.1.2.1.31.1.1.1.13.1 => [b'0'] 'COUNTER64'
.1.3.6.1.2.1.31.1.1.1.13.2 => [b'0'] 'COUNTER64'
.1.3.6.1.2.1.31.1.1.1.13.3 => [b'0'] 'COUNTER64'
.1.3.6.1.2.1.31.1.1.1.13.4 => [b'0'] 'COUNTER64'
.1.3.6.1.2.1.31.1.1.1.13.5 => [b'0'] 'COUNTER64'
.1.3.6.1.2.1.31.1.1.1.13.6 => [b'0'] 'COUNTER64'
.1.3.6.1.2.1.31.1.1.1.13.7 => [b'0'] 'COUNTER64'
.1.3.6.1.2.1.31.1.1.1.13.8 => [b'0'] 'COUNTER64'
.1.3.6.1.2.1.31.1.1.1.13.9 => [b'0'] 'COUNTER64'
.1.3.6.1.2.1.31.1.1.1.13.10 => [b'0'] 'COUNTER64'
.1.3.6.1.2.1.31.1.1.1.13.11 => [b'0'] 'COUNTER64'
Already fetched OID: .1.3.6.1.2.1.2.2.1.19
Already fetched OID: .1.3.6.1.2.1.2.2.1.20
Already fetched OID: .1.3.6.1.2.1.2.2.1.21
Executing BULKWALK (v2c) of ".1.3.6.1.2.1.31.1.1.1.1" on FORTIWEB-NL
.1.3.6.1.2.1.31.1.1.1.1.1 => [b'port1'] 'OCTETSTR'
.1.3.6.1.2.1.31.1.1.1.1.2 => [b'port2'] 'OCTETSTR'
.1.3.6.1.2.1.31.1.1.1.1.3 => [b'port3'] 'OCTETSTR'
.1.3.6.1.2.1.31.1.1.1.1.4 => [b'port4'] 'OCTETSTR'
.1.3.6.1.2.1.31.1.1.1.1.5 => [b'port5'] 'OCTETSTR'
.1.3.6.1.2.1.31.1.1.1.1.6 => [b'port6'] 'OCTETSTR'
.1.3.6.1.2.1.31.1.1.1.1.7 => [b'port7'] 'OCTETSTR'
.1.3.6.1.2.1.31.1.1.1.1.8 => [b'port8'] 'OCTETSTR'
.1.3.6.1.2.1.31.1.1.1.1.9 => [b'port9'] 'OCTETSTR'
.1.3.6.1.2.1.31.1.1.1.1.10 => [b'port10'] 'OCTETSTR'
.1.3.6.1.2.1.31.1.1.1.1.11 => [b'Slimstock-DMZ'] 'OCTETSTR'
Already fetched OID: .1.3.6.1.2.1.2.2.1.6
Executing BULKWALK (v2c) of ".1.3.6.1.2.1.31.1.1.1.15" on FORTIWEB-NL
.1.3.6.1.2.1.31.1.1.1.15.1 => [b'0'] 'GAUGE'
.1.3.6.1.2.1.31.1.1.1.15.2 => [b'0'] 'GAUGE'
.1.3.6.1.2.1.31.1.1.1.15.3 => [b'0'] 'GAUGE'
.1.3.6.1.2.1.31.1.1.1.15.4 => [b'0'] 'GAUGE'
.1.3.6.1.2.1.31.1.1.1.15.5 => [b'0'] 'GAUGE'
.1.3.6.1.2.1.31.1.1.1.15.6 => [b'0'] 'GAUGE'
.1.3.6.1.2.1.31.1.1.1.15.7 => [b'0'] 'GAUGE'
.1.3.6.1.2.1.31.1.1.1.15.8 => [b'0'] 'GAUGE'
.1.3.6.1.2.1.31.1.1.1.15.9 => [b'0'] 'GAUGE'
.1.3.6.1.2.1.31.1.1.1.15.10 => [b'0'] 'GAUGE'
.1.3.6.1.2.1.31.1.1.1.15.11 => [b'0'] 'GAUGE'
inv_if: Fetching data (SNMP walk cache is enabled: Use any locally cached information)
Already fetched OID: .1.3.6.1.2.1.2.2.1.1
Already fetched OID: .1.3.6.1.2.1.2.2.1.2
Executing BULKWALK (v2c) of ".1.3.6.1.2.1.31.1.1.1.18" on FORTIWEB-NL
.1.3.6.1.2.1.31.1.1.1.18.1 => [b'port1'] 'OCTETSTR'
.1.3.6.1.2.1.31.1.1.1.18.2 => [b'port2'] 'OCTETSTR'
.1.3.6.1.2.1.31.1.1.1.18.3 => [b'port3'] 'OCTETSTR'
.1.3.6.1.2.1.31.1.1.1.18.4 => [b'port4'] 'OCTETSTR'
.1.3.6.1.2.1.31.1.1.1.18.5 => [b'port5'] 'OCTETSTR'
.1.3.6.1.2.1.31.1.1.1.18.6 => [b'port6'] 'OCTETSTR'
.1.3.6.1.2.1.31.1.1.1.18.7 => [b'port7'] 'OCTETSTR'
.1.3.6.1.2.1.31.1.1.1.18.8 => [b'port8'] 'OCTETSTR'
.1.3.6.1.2.1.31.1.1.1.18.9 => [b'port9'] 'OCTETSTR'
.1.3.6.1.2.1.31.1.1.1.18.10 => [b'port10'] 'OCTETSTR'
.1.3.6.1.2.1.31.1.1.1.18.11 => [b'Slimstock-DMZ'] 'OCTETSTR'
Already fetched OID: .1.3.6.1.2.1.2.2.1.3
Already fetched OID: .1.3.6.1.2.1.2.2.1.5
Already fetched OID: .1.3.6.1.2.1.31.1.1.1.15
Already fetched OID: .1.3.6.1.2.1.2.2.1.8
Executing BULKWALK (v2c) of ".1.3.6.1.2.1.2.2.1.7" on FORTIWEB-NL
.1.3.6.1.2.1.2.2.1.7.1 => [b'1'] 'INTEGER'
.1.3.6.1.2.1.2.2.1.7.2 => [b'1'] 'INTEGER'
.1.3.6.1.2.1.2.2.1.7.3 => [b'2'] 'INTEGER'
.1.3.6.1.2.1.2.2.1.7.4 => [b'1'] 'INTEGER'
.1.3.6.1.2.1.2.2.1.7.5 => [b'1'] 'INTEGER'
.1.3.6.1.2.1.2.2.1.7.6 => [b'2'] 'INTEGER'
.1.3.6.1.2.1.2.2.1.7.7 => [b'2'] 'INTEGER'
.1.3.6.1.2.1.2.2.1.7.8 => [b'2'] 'INTEGER'
.1.3.6.1.2.1.2.2.1.7.9 => [b'2'] 'INTEGER'
.1.3.6.1.2.1.2.2.1.7.10 => [b'2'] 'INTEGER'
.1.3.6.1.2.1.2.2.1.7.11 => [b'2'] 'INTEGER'
Already fetched OID: .1.3.6.1.2.1.2.2.1.6
Executing BULKWALK (v2c) of ".1.3.6.1.2.1.2.2.1.9" on FORTIWEB-NL
.1.3.6.1.2.1.2.2.1.9.1 => [b'0'] 'TICKS'
.1.3.6.1.2.1.2.2.1.9.2 => [b'0'] 'TICKS'
.1.3.6.1.2.1.2.2.1.9.3 => [b'0'] 'TICKS'
.1.3.6.1.2.1.2.2.1.9.4 => [b'0'] 'TICKS'
.1.3.6.1.2.1.2.2.1.9.5 => [b'0'] 'TICKS'
.1.3.6.1.2.1.2.2.1.9.6 => [b'0'] 'TICKS'
.1.3.6.1.2.1.2.2.1.9.7 => [b'0'] 'TICKS'
.1.3.6.1.2.1.2.2.1.9.8 => [b'0'] 'TICKS'
.1.3.6.1.2.1.2.2.1.9.9 => [b'0'] 'TICKS'
.1.3.6.1.2.1.2.2.1.9.10 => [b'0'] 'TICKS'
.1.3.6.1.2.1.2.2.1.9.11 => [b'0'] 'TICKS'
snmp_extended_info: Fetching data (SNMP walk cache is enabled: Use any locally cached information)
Executing BULKWALK (v2c) of ".1.3.6.1.2.1.47.1.1.1.1.2" on FORTIWEB-NL
.1.3.6.1.2.1.47.1.1.1.1.2.1 => [b'Fortinet FWB_VM, HW Serial#: FWBVMSTM20000050'] 'OCTETSTR'
.1.3.6.1.2.1.47.1.1.1.1.2.2 => [b''] 'OCTETSTR'
.1.3.6.1.2.1.47.1.1.1.1.2.3 => [b''] 'OCTETSTR'
.1.3.6.1.2.1.47.1.1.1.1.2.4 => [b''] 'OCTETSTR'
.1.3.6.1.2.1.47.1.1.1.1.2.5 => [b''] 'OCTETSTR'
.1.3.6.1.2.1.47.1.1.1.1.2.6 => [b''] 'OCTETSTR'
.1.3.6.1.2.1.47.1.1.1.1.2.7 => [b''] 'OCTETSTR'
.1.3.6.1.2.1.47.1.1.1.1.2.8 => [b''] 'OCTETSTR'
.1.3.6.1.2.1.47.1.1.1.1.2.9 => [b''] 'OCTETSTR'
.1.3.6.1.2.1.47.1.1.1.1.2.10 => [b''] 'OCTETSTR'
.1.3.6.1.2.1.47.1.1.1.1.2.11 => [b''] 'OCTETSTR'
.1.3.6.1.2.1.47.1.1.1.1.2.12 => [b''] 'OCTETSTR'
.1.3.6.1.2.1.47.1.1.1.1.2.13 => [b''] 'OCTETSTR'
.1.3.6.1.2.1.47.1.1.1.1.2.14 => [b''] 'OCTETSTR'
.1.3.6.1.2.1.47.1.1.1.1.2.15 => [b''] 'OCTETSTR'
.1.3.6.1.2.1.47.1.1.1.1.2.16 => [b''] 'OCTETSTR'
Executing BULKWALK (v2c) of ".1.3.6.1.2.1.47.1.1.1.1.4" on FORTIWEB-NL
.1.3.6.1.2.1.47.1.1.1.1.4.1 => [b'0'] 'INTEGER'
.1.3.6.1.2.1.47.1.1.1.1.4.2 => [b'0'] 'INTEGER'
.1.3.6.1.2.1.47.1.1.1.1.4.3 => [b'0'] 'INTEGER'
.1.3.6.1.2.1.47.1.1.1.1.4.4 => [b'0'] 'INTEGER'
.1.3.6.1.2.1.47.1.1.1.1.4.5 => [b'0'] 'INTEGER'
.1.3.6.1.2.1.47.1.1.1.1.4.6 => [b'0'] 'INTEGER'
.1.3.6.1.2.1.47.1.1.1.1.4.7 => [b'0'] 'INTEGER'
.1.3.6.1.2.1.47.1.1.1.1.4.8 => [b'0'] 'INTEGER'
.1.3.6.1.2.1.47.1.1.1.1.4.9 => [b'0'] 'INTEGER'
.1.3.6.1.2.1.47.1.1.1.1.4.10 => [b'0'] 'INTEGER'
.1.3.6.1.2.1.47.1.1.1.1.4.11 => [b'0'] 'INTEGER'
.1.3.6.1.2.1.47.1.1.1.1.4.12 => [b'0'] 'INTEGER'
.1.3.6.1.2.1.47.1.1.1.1.4.13 => [b'0'] 'INTEGER'
.1.3.6.1.2.1.47.1.1.1.1.4.14 => [b'0'] 'INTEGER'
.1.3.6.1.2.1.47.1.1.1.1.4.15 => [b'0'] 'INTEGER'
.1.3.6.1.2.1.47.1.1.1.1.4.16 => [b'0'] 'INTEGER'
Executing BULKWALK (v2c) of ".1.3.6.1.2.1.47.1.1.1.1.5" on FORTIWEB-NL
.1.3.6.1.2.1.47.1.1.1.1.5.1 => [b'3'] 'INTEGER'
.1.3.6.1.2.1.47.1.1.1.1.5.2 => [b'2'] 'INTEGER'
.1.3.6.1.2.1.47.1.1.1.1.5.3 => [b'2'] 'INTEGER'
.1.3.6.1.2.1.47.1.1.1.1.5.4 => [b'2'] 'INTEGER'
.1.3.6.1.2.1.47.1.1.1.1.5.5 => [b'2'] 'INTEGER'
.1.3.6.1.2.1.47.1.1.1.1.5.6 => [b'2'] 'INTEGER'
.1.3.6.1.2.1.47.1.1.1.1.5.7 => [b'2'] 'INTEGER'
.1.3.6.1.2.1.47.1.1.1.1.5.8 => [b'2'] 'INTEGER'
.1.3.6.1.2.1.47.1.1.1.1.5.9 => [b'2'] 'INTEGER'
.1.3.6.1.2.1.47.1.1.1.1.5.10 => [b'2'] 'INTEGER'
.1.3.6.1.2.1.47.1.1.1.1.5.11 => [b'2'] 'INTEGER'
.1.3.6.1.2.1.47.1.1.1.1.5.12 => [b'2'] 'INTEGER'
.1.3.6.1.2.1.47.1.1.1.1.5.13 => [b'2'] 'INTEGER'
.1.3.6.1.2.1.47.1.1.1.1.5.14 => [b'2'] 'INTEGER'
.1.3.6.1.2.1.47.1.1.1.1.5.15 => [b'2'] 'INTEGER'
.1.3.6.1.2.1.47.1.1.1.1.5.16 => [b'2'] 'INTEGER'
Executing BULKWALK (v2c) of ".1.3.6.1.2.1.47.1.1.1.1.7" on FORTIWEB-NL
.1.3.6.1.2.1.47.1.1.1.1.7.1 => [b'FWB_VM'] 'OCTETSTR'
.1.3.6.1.2.1.47.1.1.1.1.7.2 => [b''] 'OCTETSTR'
.1.3.6.1.2.1.47.1.1.1.1.7.3 => [b''] 'OCTETSTR'
.1.3.6.1.2.1.47.1.1.1.1.7.4 => [b''] 'OCTETSTR'
.1.3.6.1.2.1.47.1.1.1.1.7.5 => [b''] 'OCTETSTR'
.1.3.6.1.2.1.47.1.1.1.1.7.6 => [b''] 'OCTETSTR'
.1.3.6.1.2.1.47.1.1.1.1.7.7 => [b''] 'OCTETSTR'
.1.3.6.1.2.1.47.1.1.1.1.7.8 => [b''] 'OCTETSTR'
.1.3.6.1.2.1.47.1.1.1.1.7.9 => [b''] 'OCTETSTR'
.1.3.6.1.2.1.47.1.1.1.1.7.10 => [b''] 'OCTETSTR'
.1.3.6.1.2.1.47.1.1.1.1.7.11 => [b''] 'OCTETSTR'
.1.3.6.1.2.1.47.1.1.1.1.7.12 => [b''] 'OCTETSTR'
.1.3.6.1.2.1.47.1.1.1.1.7.13 => [b''] 'OCTETSTR'
.1.3.6.1.2.1.47.1.1.1.1.7.14 => [b''] 'OCTETSTR'
.1.3.6.1.2.1.47.1.1.1.1.7.15 => [b''] 'OCTETSTR'
.1.3.6.1.2.1.47.1.1.1.1.7.16 => [b''] 'OCTETSTR'
Executing BULKWALK (v2c) of ".1.3.6.1.2.1.47.1.1.1.1.10" on FORTIWEB-NL
.1.3.6.1.2.1.47.1.1.1.1.10.1 => [b'FWB_VM 7.03,build0111(GA),220912'] 'OCTETSTR'
.1.3.6.1.2.1.47.1.1.1.1.10.2 => [b''] 'OCTETSTR'
.1.3.6.1.2.1.47.1.1.1.1.10.3 => [b''] 'OCTETSTR'
.1.3.6.1.2.1.47.1.1.1.1.10.4 => [b''] 'OCTETSTR'
.1.3.6.1.2.1.47.1.1.1.1.10.5 => [b''] 'OCTETSTR'
.1.3.6.1.2.1.47.1.1.1.1.10.6 => [b''] 'OCTETSTR'
.1.3.6.1.2.1.47.1.1.1.1.10.7 => [b''] 'OCTETSTR'
.1.3.6.1.2.1.47.1.1.1.1.10.8 => [b''] 'OCTETSTR'
.1.3.6.1.2.1.47.1.1.1.1.10.9 => [b''] 'OCTETSTR'
.1.3.6.1.2.1.47.1.1.1.1.10.10 => [b''] 'OCTETSTR'
.1.3.6.1.2.1.47.1.1.1.1.10.11 => [b''] 'OCTETSTR'
.1.3.6.1.2.1.47.1.1.1.1.10.12 => [b''] 'OCTETSTR'
.1.3.6.1.2.1.47.1.1.1.1.10.13 => [b''] 'OCTETSTR'
.1.3.6.1.2.1.47.1.1.1.1.10.14 => [b''] 'OCTETSTR'
.1.3.6.1.2.1.47.1.1.1.1.10.15 => [b''] 'OCTETSTR'
.1.3.6.1.2.1.47.1.1.1.1.10.16 => [b''] 'OCTETSTR'
Executing BULKWALK (v2c) of ".1.3.6.1.2.1.47.1.1.1.1.11" on FORTIWEB-NL
.1.3.6.1.2.1.47.1.1.1.1.11.1 => [b'FWBVMSTM20000050'] 'OCTETSTR'
.1.3.6.1.2.1.47.1.1.1.1.11.2 => [b''] 'OCTETSTR'
.1.3.6.1.2.1.47.1.1.1.1.11.3 => [b''] 'OCTETSTR'
.1.3.6.1.2.1.47.1.1.1.1.11.4 => [b''] 'OCTETSTR'
.1.3.6.1.2.1.47.1.1.1.1.11.5 => [b''] 'OCTETSTR'
.1.3.6.1.2.1.47.1.1.1.1.11.6 => [b''] 'OCTETSTR'
.1.3.6.1.2.1.47.1.1.1.1.11.7 => [b''] 'OCTETSTR'
.1.3.6.1.2.1.47.1.1.1.1.11.8 => [b''] 'OCTETSTR'
.1.3.6.1.2.1.47.1.1.1.1.11.9 => [b''] 'OCTETSTR'
.1.3.6.1.2.1.47.1.1.1.1.11.10 => [b''] 'OCTETSTR'
.1.3.6.1.2.1.47.1.1.1.1.11.11 => [b''] 'OCTETSTR'
.1.3.6.1.2.1.47.1.1.1.1.11.12 => [b''] 'OCTETSTR'
.1.3.6.1.2.1.47.1.1.1.1.11.13 => [b''] 'OCTETSTR'
.1.3.6.1.2.1.47.1.1.1.1.11.14 => [b''] 'OCTETSTR'
.1.3.6.1.2.1.47.1.1.1.1.11.15 => [b''] 'OCTETSTR'
.1.3.6.1.2.1.47.1.1.1.1.11.16 => [b''] 'OCTETSTR'
Executing BULKWALK (v2c) of ".1.3.6.1.2.1.47.1.1.1.1.12" on FORTIWEB-NL
.1.3.6.1.2.1.47.1.1.1.1.12.1 => [b'Fortinet'] 'OCTETSTR'
.1.3.6.1.2.1.47.1.1.1.1.12.2 => [b''] 'OCTETSTR'
.1.3.6.1.2.1.47.1.1.1.1.12.3 => [b''] 'OCTETSTR'
.1.3.6.1.2.1.47.1.1.1.1.12.4 => [b''] 'OCTETSTR'
.1.3.6.1.2.1.47.1.1.1.1.12.5 => [b''] 'OCTETSTR'
.1.3.6.1.2.1.47.1.1.1.1.12.6 => [b''] 'OCTETSTR'
.1.3.6.1.2.1.47.1.1.1.1.12.7 => [b''] 'OCTETSTR'
.1.3.6.1.2.1.47.1.1.1.1.12.8 => [b''] 'OCTETSTR'
.1.3.6.1.2.1.47.1.1.1.1.12.9 => [b''] 'OCTETSTR'
.1.3.6.1.2.1.47.1.1.1.1.12.10 => [b''] 'OCTETSTR'
.1.3.6.1.2.1.47.1.1.1.1.12.11 => [b''] 'OCTETSTR'
.1.3.6.1.2.1.47.1.1.1.1.12.12 => [b''] 'OCTETSTR'
.1.3.6.1.2.1.47.1.1.1.1.12.13 => [b''] 'OCTETSTR'
.1.3.6.1.2.1.47.1.1.1.1.12.14 => [b''] 'OCTETSTR'
.1.3.6.1.2.1.47.1.1.1.1.12.15 => [b''] 'OCTETSTR'
.1.3.6.1.2.1.47.1.1.1.1.12.16 => [b''] 'OCTETSTR'
Executing BULKWALK (v2c) of ".1.3.6.1.2.1.47.1.1.1.1.13" on FORTIWEB-NL
.1.3.6.1.2.1.47.1.1.1.1.13.1 => [b'FWB_VM'] 'OCTETSTR'
.1.3.6.1.2.1.47.1.1.1.1.13.2 => [b''] 'OCTETSTR'
.1.3.6.1.2.1.47.1.1.1.1.13.3 => [b''] 'OCTETSTR'
.1.3.6.1.2.1.47.1.1.1.1.13.4 => [b''] 'OCTETSTR'
.1.3.6.1.2.1.47.1.1.1.1.13.5 => [b''] 'OCTETSTR'
.1.3.6.1.2.1.47.1.1.1.1.13.6 => [b''] 'OCTETSTR'
.1.3.6.1.2.1.47.1.1.1.1.13.7 => [b''] 'OCTETSTR'
.1.3.6.1.2.1.47.1.1.1.1.13.8 => [b''] 'OCTETSTR'
.1.3.6.1.2.1.47.1.1.1.1.13.9 => [b''] 'OCTETSTR'
.1.3.6.1.2.1.47.1.1.1.1.13.10 => [b''] 'OCTETSTR'
.1.3.6.1.2.1.47.1.1.1.1.13.11 => [b''] 'OCTETSTR'
.1.3.6.1.2.1.47.1.1.1.1.13.12 => [b''] 'OCTETSTR'
.1.3.6.1.2.1.47.1.1.1.1.13.13 => [b''] 'OCTETSTR'
.1.3.6.1.2.1.47.1.1.1.1.13.14 => [b''] 'OCTETSTR'
.1.3.6.1.2.1.47.1.1.1.1.13.15 => [b''] 'OCTETSTR'
.1.3.6.1.2.1.47.1.1.1.1.13.16 => [b''] 'OCTETSTR'
snmp_info: Fetching data (SNMP walk cache is enabled: Use any locally cached information)
Executing BULKWALK (v2c) of ".1.3.6.1.2.1.1.1" on FORTIWEB-NL
.1.3.6.1.2.1.1.1.0 => [b'fortiweb-nl'] 'OCTETSTR'
Executing BULKWALK (v2c) of ".1.3.6.1.2.1.1.2" on FORTIWEB-NL
.1.3.6.1.2.1.1.2.0 => [b'.1.3.6.1.4.1.12356.107.1.50001'] 'OBJECTID'
Executing BULKWALK (v2c) of ".1.3.6.1.2.1.1.4" on FORTIWEB-NL
.1.3.6.1.2.1.1.4.0 => [b''] 'OCTETSTR'
Executing BULKWALK (v2c) of ".1.3.6.1.2.1.1.5" on FORTIWEB-NL
.1.3.6.1.2.1.1.5.0 => [b'FortiWeb'] 'OCTETSTR'
Executing BULKWALK (v2c) of ".1.3.6.1.2.1.1.6" on FORTIWEB-NL
.1.3.6.1.2.1.1.6.0 => [b'Rotterdam'] 'OCTETSTR'
snmp_uptime: Fetching data (SNMP walk cache is enabled: Use any locally cached information)
Executing BULKWALK (v2c) of ".1.3.6.1.2.1.1.3" on FORTIWEB-NL
.1.3.6.1.2.1.1.3.0 => [b'1182526958'] 'TICKS'
Executing BULKWALK (v2c) of ".1.3.6.1.2.1.25.1.1" on FORTIWEB-NL
Executing SNMP _Mode.GET of .1.3.6.1.2.1.25.1.1 on FORTIWEB-NL
=> [None] NOSUCHOBJECT
Write data to cache file /omd/sites/nl01/tmp/check_mk/data_source_cache/snmp/checking/FORTIWEB-NL
Trying to acquire lock on /omd/sites/nl01/tmp/check_mk/data_source_cache/snmp/checking/FORTIWEB-NL
Got lock on /omd/sites/nl01/tmp/check_mk/data_source_cache/snmp/checking/FORTIWEB-NL
Releasing lock on /omd/sites/nl01/tmp/check_mk/data_source_cache/snmp/checking/FORTIWEB-NL
Released lock on /omd/sites/nl01/tmp/check_mk/data_source_cache/snmp/checking/FORTIWEB-NL
[cpu_tracking] Stop [7fea18e40230 - Snapshot(process=posix.times_result(user=0.050000000000000266, system=0.010000000000000009, children_user=0.0, children_system=0.0, elapsed=0.32999999821186066))]
  Source: SourceInfo(hostname='FORTIWEB-NL', ipaddress='10.123.2.98', ident='piggyback', fetcher_type=<FetcherType.PIGGYBACK: 4>, source_type=<SourceType.HOST: 1>)
[cpu_tracking] Start [7fea19c1f770]
Read from cache: NoCache(FORTIWEB-NL, path_template=/dev/null, max_age=MaxAge(checking=0.0, discovery=0.0, inventory=0.0), simulation=False, use_only_cache=False, file_cache_mode=1)
No piggyback files for 'FORTIWEB-NL'. Skip processing.
No piggyback files for '10.123.2.98'. Skip processing.
Get piggybacked data
[cpu_tracking] Stop [7fea19c1f770 - Snapshot(process=posix.times_result(user=0.009999999999999787, system=0.0, children_user=0.0, children_system=0.0, elapsed=0.0))]
[cpu_tracking] Start [7fea1976eb70]
+ PARSE FETCHER RESULTS
  HostKey(hostname='FORTIWEB-NL', source_type=<SourceType.HOST: 1>)  -> Add sections: ['hr_mem', 'if', 'if_fortigate', 'inv_if', 'snmp_extended_info', 'snmp_info', 'snmp_uptime']
  HostKey(hostname='FORTIWEB-NL', source_type=<SourceType.HOST: 1>)  -> Add sections: []
Received no piggyback data
Interface 01         [port1], (up), MAC: 00:50:56:B9:86:AB, Speed: 1.9 GBit/s, In: 0.00 B/s (0%), Out: 1.11 kB/s (<0.01%)
Interface 02         [port2], (up), MAC: 00:09:0F:A0:04:02, Speed: 1.9 GBit/s, In: 0.00 B/s (0%), Out: 0.00 B/s (0%)
Interface 04         [port4], (up), MAC: 00:09:0F:A0:04:04, Speed: 1.9 GBit/s, In: 14.4 kB/s (<0.01%), Out: 252 kB/s (0.11%)
Interface 05         [port5], (up), MAC: 00:09:0F:A0:04:05, Speed: 1.9 GBit/s, In: 244 kB/s (0.10%), Out: 26.4 kB/s (0.01%)
SNMP Infofortiweb-nl, FortiWeb, Rotterdam,
Uptime               Up since 2024-03-23 18:12:50, Uptime: 136 days 20 hours
+ EXECUTING INVENTORY PLUGINS
 allnet_ip_sensoric: skipped (no data)
 allnet_ip_sensoric: skipped (no data)
 aruba_wlc_aps: skipped (no data)
 aruba_wlc_aps: skipped (no data)
 azure_app_gateway: skipped (no data)
 azure_app_gateway: skipped (no data)
 check_mk: skipped (no data)
 check_mk: skipped (no data)
 checkmk_agent_plugins: skipped (no data)
 checkmk_agent_plugins: skipped (no data)
 cisco_meraki_org_device_info: skipped (no data)
 cisco_meraki_org_device_info: skipped (no data)
 cisco_meraki_power_supplies: skipped (no data)
 cisco_meraki_power_supplies: skipped (no data)
 dell_hw_info: skipped (no data)
 dell_hw_info: skipped (no data)
 docker_node_info: skipped (no data)
 docker_node_info: skipped (no data)
 esx_systeminfo: skipped (no data)
 esx_systeminfo: skipped (no data)
 fireeye_sys_status: skipped (no data)
 fireeye_sys_status: skipped (no data)
 fritz: skipped (no data)
 fritz: skipped (no data)
 hp_proliant_da_phydrv: skipped (no data)
 hp_proliant_da_phydrv: skipped (no data)
 hp_proliant_mem: skipped (no data)
 hp_proliant_mem: skipped (no data)
 hp_proliant_systeminfo: skipped (no data)
 hp_proliant_systeminfo: skipped (no data)
 ibm_mq_channels: skipped (no data)
 ibm_mq_channels: skipped (no data)
 ibm_mq_managers: skipped (no data)
 ibm_mq_managers: skipped (no data)
 ibm_mq_queues: skipped (no data)
 ibm_mq_queues: skipped (no data)
 infoblox_osinfo: skipped (no data)
 infoblox_osinfo: skipped (no data)
 infoblox_systeminfo: skipped (no data)
 infoblox_systeminfo: skipped (no data)
 inv_cisco_vlans: skipped (no data)
 inv_cisco_vlans: skipped (no data)
 inv_esx_vsphere_hostsystem: skipped (no data)
 inv_esx_vsphere_hostsystem: skipped (no data)
 inv_if: ok
 inv_if: skipped (no data)
 aix_baselevel: skipped (no data)
 aix_baselevel: skipped (no data)
 aix_lparstat_inventory: skipped (no data)
 aix_lparstat_inventory: skipped (no data)
 aix_packages: skipped (no data)
 aix_packages: skipped (no data)
 aix_service_packs: skipped (no data)
 aix_service_packs: skipped (no data)
 azure_load_balancer: skipped (no data)
 azure_load_balancer: skipped (no data)
 inventory_checkmk: skipped (no data)
 inventory_checkmk: skipped (no data)
 checkpoint_vpn_tunnels: skipped (no data)
 checkpoint_vpn_tunnels: skipped (no data)
 citrix_controller: skipped (no data)
 citrix_controller: skipped (no data)
 citrix_state: skipped (no data)
 citrix_state: skipped (no data)
 couchbase_nodes_ports: skipped (no data)
 couchbase_nodes_ports: skipped (no data)
 dmidecode: skipped (no data)
 dmidecode: skipped (no data)
 docker_container_labels: skipped (no data)
 docker_container_labels: skipped (no data)
 docker_container_network: skipped (no data)
 docker_container_network: skipped (no data)
 inventory_docker_container_node_name: skipped (no data)
 inventory_docker_container_node_name: skipped (no data)
 docker_node_images: skipped (no data)
 docker_node_images: skipped (no data)
 docker_node_network: skipped (no data)
 docker_node_network: skipped (no data)
 enviromux_micro_information: skipped (no data)
 enviromux_micro_information: skipped (no data)
 inventory_esx_vsphere_clusters: skipped (no data)
 inventory_esx_vsphere_clusters: skipped (no data)
 inventory_esx_vsphere_virtual_machines: skipped (no data)
 inventory_esx_vsphere_virtual_machines: skipped (no data)
 fortiauthenticator_system: skipped (no data)
 fortiauthenticator_system: skipped (no data)
 fortigate_ha: skipped (no data)
 fortigate_ha: skipped (no data)
 fortimail_system: skipped (no data)
 fortimail_system: skipped (no data)
 fortinet_firewall_network_interfaces: skipped (no data)
 fortinet_firewall_network_interfaces: skipped (no data)
 fortisandbox_software: skipped (no data)
 fortisandbox_software: skipped (no data)
 fortisandbox_system: skipped (no data)
 fortisandbox_system: skipped (no data)
 ipmi_firmware: skipped (no data)
 ipmi_firmware: skipped (no data)
 kube_cluster: skipped (no data)
 kube_cluster: skipped (no data)
 kube_cronjob: skipped (no data)
 kube_cronjob: skipped (no data)
 kube_daemonset: skipped (no data)
 kube_daemonset: skipped (no data)
 kube_deployment: skipped (no data)
 kube_deployment: skipped (no data)
 kube_namespace: skipped (no data)
 kube_namespace: skipped (no data)
 kube_node: skipped (no data)
 kube_node: skipped (no data)
 kube_pod: skipped (no data)
 kube_pod: skipped (no data)
 kube_statefulset: skipped (no data)
 kube_statefulset: skipped (no data)
 kyocera_printer: skipped (no data)
 kyocera_printer: skipped (no data)
 lnx_block_devices: skipped (no data)
 lnx_block_devices: skipped (no data)
 lnx_ip_r: skipped (no data)
 lnx_ip_r: skipped (no data)
 lnx_packages: skipped (no data)
 lnx_packages: skipped (no data)
 lnx_sysctl: skipped (no data)
 lnx_sysctl: skipped (no data)
 lnx_video: skipped (no data)
 lnx_video: skipped (no data)
 mobileiron_inventory: skipped (no data)
 mobileiron_inventory: skipped (no data)
 mssql_clusters: skipped (no data)
 mssql_clusters: skipped (no data)
 oracle_systemparameter: skipped (no data)
 oracle_systemparameter: skipped (no data)
 primekey: skipped (no data)
 primekey: skipped (no data)
 snmp_extended_info: ok
 snmp_extended_info: skipped (no data)
 solaris_addresses: skipped (no data)
 solaris_addresses: skipped (no data)
 solaris_pkginfo: skipped (no data)
 solaris_pkginfo: skipped (no data)
 solaris_cpus: skipped (no data)
 solaris_cpus: skipped (no data)
 solaris_routes: skipped (no data)
 solaris_routes: skipped (no data)
 win_bios: skipped (no data)
 win_bios: skipped (no data)
 win_disks: skipped (no data)
 win_disks: skipped (no data)
 win_exefiles: skipped (no data)
 win_exefiles: skipped (no data)
 win_ip_r: skipped (no data)
 win_ip_r: skipped (no data)
 win_networkadapter: skipped (no data)
 win_networkadapter: skipped (no data)
 win_reg_uninstall: skipped (no data)
 win_reg_uninstall: skipped (no data)
 win_video: skipped (no data)
 win_video: skipped (no data)
 win_wmi_software: skipped (no data)
 win_wmi_software: skipped (no data)
 win_wmi_updates: skipped (no data)
 win_wmi_updates: skipped (no data)
 juniper_info: skipped (no data)
 juniper_info: skipped (no data)
 lnx_cpuinfo: skipped (no data)
 lnx_cpuinfo: skipped (no data)
 lnx_distro: skipped (no data)
 lnx_distro: skipped (no data)
 lnx_if: skipped (no data)
 lnx_if: skipped (no data)
 lnx_uname: skipped (no data)
 lnx_uname: skipped (no data)
 lparstat_aix: skipped (no data)
 lparstat_aix: skipped (no data)
 mem: skipped (no data)
 mem: skipped (no data)
 mem_used: skipped (no data)
 mem_used: skipped (no data)
 mssql_instance: skipped (no data)
 mssql_instance: skipped (no data)
 netapp_api_disk: skipped (no data)
 netapp_api_disk: skipped (no data)
 netapp_api_info: skipped (no data)
 netapp_api_info: skipped (no data)
 oracle_dataguard_stats: skipped (no data)
 oracle_dataguard_stats: skipped (no data)
 oracle_instance: skipped (no data)
 oracle_instance: skipped (no data)
 oracle_performance: skipped (no data)
 oracle_performance: skipped (no data)
 oracle_recovery_area: skipped (no data)
 oracle_recovery_area: skipped (no data)
 oracle_tablespaces: skipped (no data)
 oracle_tablespaces: skipped (no data)
 perle_chassis: skipped (no data)
 perle_chassis: skipped (no data)
 perle_chassis_slots: skipped (no data)
 perle_chassis_slots: skipped (no data)
 perle_psmu: skipped (no data)
 perle_psmu: skipped (no data)
 prtconf: skipped (no data)
 prtconf: skipped (no data)
 snmp_quantum_storage_info: skipped (no data)
 snmp_quantum_storage_info: skipped (no data)
 snmp_info: ok
 snmp_info: skipped (no data)
 solaris_prtdiag: skipped (no data)
 solaris_prtdiag: skipped (no data)
 solaris_uname: skipped (no data)
 solaris_uname: skipped (no data)
 suseconnect: skipped (no data)
 suseconnect: skipped (no data)
 win_computersystem: skipped (no data)
 win_computersystem: skipped (no data)
 win_computersystemproduct: skipped (no data)
 win_computersystemproduct: skipped (no data)
 win_cpuinfo: skipped (no data)
 win_cpuinfo: skipped (no data)
 win_os: skipped (no data)
 win_os: skipped (no data)
 win_system: skipped (no data)
 win_system: skipped (no data)
 winperf_if: skipped (no data)
 winperf_if: skipped (no data)
 robotmk: skipped (no data)
 robotmk: skipped (no data)
 netapp_ontap_info: skipped (no data)
 netapp_ontap_info: skipped (no data)
 netapp_ontap_disk: skipped (no data)
 netapp_ontap_disk: skipped (no data)
Trying to acquire lock on /omd/sites/nl01/tmp/check_mk/status_data/FORTIWEB-NL
Got lock on /omd/sites/nl01/tmp/check_mk/status_data/FORTIWEB-NL
Releasing lock on /omd/sites/nl01/tmp/check_mk/status_data/FORTIWEB-NL
Released lock on /omd/sites/nl01/tmp/check_mk/status_data/FORTIWEB-NL
Trying to acquire lock on /omd/sites/nl01/tmp/check_mk/status_data/FORTIWEB-NL.gz
Got lock on /omd/sites/nl01/tmp/check_mk/status_data/FORTIWEB-NL.gz
Releasing lock on /omd/sites/nl01/tmp/check_mk/status_data/FORTIWEB-NL.gz
Released lock on /omd/sites/nl01/tmp/check_mk/status_data/FORTIWEB-NL.gz
No piggyback files for 'FORTIWEB-NL'. Skip processing.
No piggyback files for '10.123.2.98'. Skip processing.
[cpu_tracking] Stop [7fea1976eb70 - Snapshot(process=posix.times_result(user=0.1200000000000001, system=0.0, children_user=0.0, children_system=0.0, elapsed=0.28999999910593033))]
[snmp] Success, [piggyback] Success (but no data found for this host), execution time 0.6 sec | execution_time=0.620 user_time=0.180 system_time=0.010 children_user_time=0.000 children_system_time=0.000 cmk_time_snmp=0.270 cmk_time_agent=0.000

As always, any help is greatly appreciated!

Hello Jesse,

In SimpleSNMPSection change the line from

detect=startswith(".1.3.6.1.2.1.1.1.0", "fortiweb.*"),

to

detect=startswith(".1.3.6.1.2.1.1.1.0", "fortiweb"),

According to the documentation, it does not say that “startswith” also handles RegEx, for RegEx there is the “matches” function. The “.*” in the string from startswith is actually redundant, because startswith only checks whether the string found behind the OID starts with the specified string anyway.
However, this would not explain why -us is found and -nl is not.

Alternatively, check for FortiWeb Devices:

detect=startswith(".1.3.6.1.2.1.1.2.0", ".1.3.6.1.4.1.12356.107"),

Also you can execute

cmk -vI --debug --detect-plugins=<plugin> <host>

on both hosts to check if the plugin detects correctly.

Kind reagrds, Marc

2 Likes

Hi MarcS,

Thank for the reply!
We didn’t really think it would be caused by the .* as indeed, the FORTIWEB-US did work. But lo and behold, after removing the .* it does work now for the other Fortiweb servers as well.
For our troubleshooting we’ve indeed been using the command

cmk -vI --debug --detect-plugins=<plugin> <host>

So we can rest easily now, as our issue is resolved :)!

2 Likes

This was exactly what I thought. I checked the code of the startswith function and it sends the given pattern “fortiweb.*” through re.escape() before searching, so it actually searches for fortiweb, followed by a literal dot and a literal asterisk. I also wonder why it worked at all :sweat_smile:

2 Likes

We had originally for our testing purposes created the script with:
detect=startswith(“.1.3.6.1.2.1.1.1.0”, “fortiweb-us”),

After this one worked as expected we’ve changed the value to fortiweb.*
We’ve synchronized the script to all our ditstributed sites, and manually checked whether they were updated. cmk -R was performed on every server just to be sure after syncing a new version of the script. I believe it’s noted in the documentation that scripts are loaded/refreshed only after a reboot. It kept working for the US but not NL fortiweb.

1 Like

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed. Contact an admin if you think this should be re-opened.