Simple snmp-plugin is not working yet

Hi,

I am using checkmk v2.1 enterprise on Debian Linux. I am trying to create a custom plugin for a device named RZp, which should get and evaluate some values by snmp. When executing cmk -v --snmpwalk --extraoid .1.3.6.1.3 RZp all the relevant values are listed.

I created the file /omd/sites/sitename/local/lib/check_mk/base/plugins/agent_based/rzp.py with the following contents:

from .agent_based_api.v1 import *
from pprint import pprint

def check_temp(item, section):
    print("check")
    yield Result(State.OK, summary="OK")

def discover_temp(section):
    print("discover")
    yield Service()

register.check_plugin(
    name = "rzp_check_temp",
    sections = ['rzp'],
    service_name = "Temperatur %s",
    discovery_function = discover_temp,
    check_function = check_temp,
)

register.snmp_section(
    name = "rzp",
    detect = startswith(".1.3.6.1.2.1.1.1.0", "RZ-Products GmbH, DCM Agent"), # sysDescr
    fetch = SNMPTree(
        base = '.1.3.6.1.3.1.0',
        oids = [
            '0', # doorOpen
            '2', # firePre
            '3', # fireMain
            '4', # ups
            '5', # coolLeft
            '6', # coolRight
            '7', # pump
            '16', # powerA
            '17', # powerB
            '20', # temp
            '21', # humid

        ],
    ),
)

When executing cmk -I -plugins rzp RZpI expected the debug print messages to appear, but nothing happens. At least no error occurs, but how can I enable debugging in the check- and discover-method to make sure the necessary values are at least handed to the methods?

Best regards,
UT2019

I think your

detect = startswith(".1.3.6.1.2.1.1.1.0", "RZ-Products GmbH, DCM Agent"), # sysDescr

dosent match. You can try cmk -vvII <hostname> to see what cmk really finds.

Then there is a second issue. In your register.check_plugin you define a service with item (service_name = "Temperatur %s",), but in your function discover_temp you do no return an item name. You sould change this to

yield Service(item="your item name")

And one more.

yield Result(State.OK, summary="OK")

is missing the state= parameter.

yield Result(state=State.OK, summary="OK")

Thank you for your reply!

Okay, it seems I made several things wrong. I changed the script as you recommended to:

from .agent_based_api.v1 import *
from pprint import pprint

def check_temp(item, section):
    print("check")
    yield Result(state=State.OK, summary="OK")

def discover_temp(section):
    print("discover")
    yield Service(item="Temperatur %s")

register.check_plugin(
    name = "rzp",
    sections = ['rzp'],
    service_name = "Temperatur %s",
    discovery_function = discover_temp,
    check_function = check_temp,
)

register.snmp_section(
    name = "rzp",
    detect = startswith(".1.3.6.1.2.1.1.1.0", "RZ-Products"), # sysDescr
    fetch = SNMPTree(
        base = '.1.3.6.1.3.1.0',
        oids = [
            '0', # doorOpen
            '2', # firePre
            '3', # fireMain
            '4', # ups
            '5', # coolLeft
            '6', # coolRight
            '7', # pump
            '16', # powerA
            '17', # powerB
            '20', # temp
            '21', # humid
        ],
    ),
)

But it still doesn’t work. cmk -I --plugins rzp RZp doesn’t show any output although I would expect to see the print-outputs.

Why do you think the detect = startswith(".1.3.6.1.2.1.1.1.0", "RZ-Products GmbH, DCM Agent") does not work? Here is the output of cmk -vvII RZp which shows Getting OID .1.3.6.1.2.1.1.1.0: Executing SNMP GET of .1.3.6.1.2.1.1.1.0 on RZp => [b'RZ-Products GmbH, DCM Agent, Version 3.1'] OCTETSTR which should match?

Complete output (some duplicate lines removed because of size limit):

OMD[sitename]:~$ cmk -vvII RZp
Discovering services and host labels on: RZp
RZp:
+ FETCHING DATA
  Source: SourceType.HOST/FetcherType.SNMP
[cpu_tracking] Start [7fa50b7e8bb0]
[SNMPFetcher] Fetch with cache settings: SNMPFileCache(RZp, base_path=/omd/sites/sitename/tmp/check_mk/data_source_cache/snmp, max_age=MaxAge(checking=0, discovery=120, inventory=120), disabled=False, use_outdated=False, simulation=False)
Not using cache (Too old. Age is 247273 sec, allowed is 120 sec)
[SNMPFetcher] Execute data source
  SNMP scan:
       Getting OID .1.3.6.1.2.1.1.1.0: Executing SNMP GET of .1.3.6.1.2.1.1.1.0 on RZp
=> [b'RZ-Products GmbH, DCM Agent, Version 3.1'] OCTETSTR
b'RZ-Products GmbH, DCM Agent, Version 3.1'
       Getting OID .1.3.6.1.2.1.1.2.0: Executing SNMP GET of .1.3.6.1.2.1.1.2.0 on RZp
=> [b'.1.3.6.1.3.1.0.0'] OBJECTID
b'.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Getting OID .1.3.6.1.4.1.232.2.2.4.2.0: Executing SNMP GET of .1.3.6.1.4.1.232.2.2.4.2.0 on RZp
=> [None] NOSUCHINSTANCE
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.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       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.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Getting OID .1.3.6.1.4.1.674.*: Executing SNMP GETNEXT of .1.3.6.1.4.1.674 on RZp
=> [None] ENDOFMIBVIEW
failed.
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Getting OID .1.3.6.1.2.1.2.2.1.*: Executing SNMP GETNEXT of .1.3.6.1.2.1.2.2.1 on RZp
=> [None] OCTETSTR
failed.
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       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: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Getting OID .1.3.6.1.2.1.31.1.1.1.6.*: Executing SNMP GETNEXT of .1.3.6.1.2.1.31.1.1.1.6 on RZp
=> [None] OCTETSTR
failed.
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Getting OID .1.3.6.1.4.1.6302.2.1.1.1.0: Executing SNMP GET of .1.3.6.1.4.1.6302.2.1.1.1.0 on RZp
=> [None] NOSUCHINSTANCE
failed.
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       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
       Getting OID .1.3.6.1.2.1.25.1.1.0: Executing SNMP GET of .1.3.6.1.2.1.25.1.1.0 on RZp
=> [None] NOSUCHINSTANCE
failed.
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Getting OID .1.3.6.1.4.1.2036.2.1.1.4.0: Executing SNMP GET of .1.3.6.1.4.1.2036.2.1.1.4.0 on RZp
=> [None] NOSUCHINSTANCE
failed.
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       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.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Getting OID .1.3.6.1.2.1.47.1.1.1.1.*: Executing SNMP GETNEXT of .1.3.6.1.2.1.47.1.1.1.1 on RZp
=> [None] OCTETSTR
failed.
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       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.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.4.1.674.*: None
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Getting OID .1.3.6.1.4.1.30155.2.1.1.0: Executing SNMP GET of .1.3.6.1.4.1.30155.2.1.1.0 on RZp
=> [None] NOSUCHINSTANCE
failed.
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.2.2.1.*: None
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.4.1.674.*: None
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Getting OID .1.3.6.1.4.1.14848.2.1.1.1.0: Executing SNMP GET of .1.3.6.1.4.1.14848.2.1.1.1.0 on RZp
=> [None] NOSUCHINSTANCE
failed.
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       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: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.25.1.1.0: None
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.25.1.1.0: None
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       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.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Getting OID .1.3.6.1.2.1.105.1.3.1.1.*: Executing SNMP GETNEXT of .1.3.6.1.2.1.105.1.3.1.1 on RZp
=> [None] OCTETSTR
failed.
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.4.1.6302.2.1.1.1.0: None
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       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.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.4.1.674.*: None
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.4.1.674.*: None
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       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: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       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.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
   SNMP scan found                    hr_mem rzp snmp_info snmp_os snmp_uptime
Trying to acquire lock on /omd/sites/sitename/tmp/check_mk/snmp_scan_cache/RZp.ip-address
Got lock on /omd/sites/sitename/tmp/check_mk/snmp_scan_cache/RZp.ip-address
Releasing lock on /omd/sites/sitename/tmp/check_mk/snmp_scan_cache/RZp.ip-address
Released lock on /omd/sites/sitename/tmp/check_mk/snmp_scan_cache/RZp.ip-address
hr_mem: Fetching data (SNMP walk cache cleared)
Executing WALK of ".1.3.6.1.2.1.25.2.3.1.2" on RZp
Executing SNMP GET of .1.3.6.1.2.1.25.2.3.1.2 on RZp
=> [None] NOSUCHINSTANCE
Executing WALK of ".1.3.6.1.2.1.25.2.3.1.3" on RZp
Executing SNMP GET of .1.3.6.1.2.1.25.2.3.1.3 on RZp
=> [None] NOSUCHINSTANCE
Executing WALK of ".1.3.6.1.2.1.25.2.3.1.4" on RZp
Executing SNMP GET of .1.3.6.1.2.1.25.2.3.1.4 on RZp
=> [None] NOSUCHINSTANCE
Executing WALK of ".1.3.6.1.2.1.25.2.3.1.5" on RZp
Executing SNMP GET of .1.3.6.1.2.1.25.2.3.1.5 on RZp
=> [None] NOSUCHINSTANCE
Executing WALK of ".1.3.6.1.2.1.25.2.3.1.6" on RZp
Executing SNMP GET of .1.3.6.1.2.1.25.2.3.1.6 on RZp
=> [None] NOSUCHINSTANCE
rzp: Fetching data (SNMP walk cache cleared)
Executing WALK of ".1.3.6.1.3.1.0" on RZp
.1.3.6.1.3.1.0.0 => [b'1'] 'OCTETSTR'
.1.3.6.1.3.1.0.1 => [b'1'] 'OCTETSTR'
.1.3.6.1.3.1.0.2 => [b'1'] 'OCTETSTR'
.1.3.6.1.3.1.0.3 => [b'1'] 'OCTETSTR'
.1.3.6.1.3.1.0.4 => [b'1'] 'OCTETSTR'
.1.3.6.1.3.1.0.5 => [b'1'] 'OCTETSTR'
.1.3.6.1.3.1.0.6 => [b'1'] 'OCTETSTR'
.1.3.6.1.3.1.0.7 => [b'1'] 'OCTETSTR'
.1.3.6.1.3.1.0.8 => [b'1'] 'OCTETSTR'
.1.3.6.1.3.1.0.9 => [b'1'] 'OCTETSTR'
.1.3.6.1.3.1.0.10 => [b'1'] 'OCTETSTR'
.1.3.6.1.3.1.0.11 => [b'1'] 'OCTETSTR'
.1.3.6.1.3.1.0.12 => [b'1'] 'OCTETSTR'
.1.3.6.1.3.1.0.13 => [b'1'] 'OCTETSTR'
.1.3.6.1.3.1.0.14 => [b'1'] 'OCTETSTR'
.1.3.6.1.3.1.0.15 => [b'1'] 'OCTETSTR'
.1.3.6.1.3.1.0.16 => [b'1'] 'OCTETSTR'
.1.3.6.1.3.1.0.17 => [b'1'] 'OCTETSTR'
.1.3.6.1.3.1.0.18 => [b'41.0'] 'OCTETSTR'
.1.3.6.1.3.1.0.19 => [b'44.0'] 'OCTETSTR'
.1.3.6.1.3.1.0.20 => [b'28.93'] 'OCTETSTR'
.1.3.6.1.3.1.0.21 => [b'28.96'] 'OCTETSTR'
.1.3.6.1.3.1.0.22 => [b'238.0'] 'OCTETSTR'
.1.3.6.1.3.1.0.23 => [b'238.0'] 'OCTETSTR'
.1.3.6.1.3.1.0.24 => [b'299.0'] 'OCTETSTR'
.1.3.6.1.3.1.0.25 => [b'1'] 'OCTETSTR'
Executing WALK of ".1.3.6.1.3.1.0.2" on RZp
Executing SNMP GET of .1.3.6.1.3.1.0.2 on RZp
=> [<netsnmp.client.Varbind object at 0x7fa50b766a60>] OCTETSTR
.1.3.6.1.3.1.0.2 => [b'1'] 'OCTETSTR'
Executing WALK of ".1.3.6.1.3.1.0.3" on RZp
Executing SNMP GET of .1.3.6.1.3.1.0.3 on RZp
=> [<netsnmp.client.Varbind object at 0x7fa50b766b80>] OCTETSTR
.1.3.6.1.3.1.0.3 => [b'1'] 'OCTETSTR'
Executing WALK of ".1.3.6.1.3.1.0.4" on RZp
Executing SNMP GET of .1.3.6.1.3.1.0.4 on RZp
=> [<netsnmp.client.Varbind object at 0x7fa50b563b80>] OCTETSTR
.1.3.6.1.3.1.0.4 => [b'1'] 'OCTETSTR'
Executing WALK of ".1.3.6.1.3.1.0.5" on RZp
Executing SNMP GET of .1.3.6.1.3.1.0.5 on RZp
=> [<netsnmp.client.Varbind object at 0x7fa50b563040>] OCTETSTR
.1.3.6.1.3.1.0.5 => [b'1'] 'OCTETSTR'
Executing WALK of ".1.3.6.1.3.1.0.6" on RZp
Executing SNMP GET of .1.3.6.1.3.1.0.6 on RZp
=> [<netsnmp.client.Varbind object at 0x7fa50b5630a0>] OCTETSTR
.1.3.6.1.3.1.0.6 => [b'1'] 'OCTETSTR'
Executing WALK of ".1.3.6.1.3.1.0.7" on RZp
Executing SNMP GET of .1.3.6.1.3.1.0.7 on RZp
=> [<netsnmp.client.Varbind object at 0x7fa50b563100>] OCTETSTR
.1.3.6.1.3.1.0.7 => [b'1'] 'OCTETSTR'
Executing WALK of ".1.3.6.1.3.1.0.16" on RZp
Executing SNMP GET of .1.3.6.1.3.1.0.16 on RZp
=> [<netsnmp.client.Varbind object at 0x7fa50b563160>] OCTETSTR
.1.3.6.1.3.1.0.16 => [b'1'] 'OCTETSTR'
Executing WALK of ".1.3.6.1.3.1.0.17" on RZp
Executing SNMP GET of .1.3.6.1.3.1.0.17 on RZp
=> [<netsnmp.client.Varbind object at 0x7fa50b5631c0>] OCTETSTR
.1.3.6.1.3.1.0.17 => [b'1'] 'OCTETSTR'
Executing WALK of ".1.3.6.1.3.1.0.20" on RZp
Executing SNMP GET of .1.3.6.1.3.1.0.20 on RZp
=> [<netsnmp.client.Varbind object at 0x7fa50b563220>] OCTETSTR
.1.3.6.1.3.1.0.20 => [b'28.93'] 'OCTETSTR'
Executing WALK of ".1.3.6.1.3.1.0.21" on RZp
Executing SNMP GET of .1.3.6.1.3.1.0.21 on RZp
=> [<netsnmp.client.Varbind object at 0x7fa50b563280>] OCTETSTR
.1.3.6.1.3.1.0.21 => [b'28.96'] 'OCTETSTR'
[cpu_tracking] Stop [7fa50b7e8bb0 - Snapshot(process=posix.times_result(user=0.3800000000000001, system=0.020000000000000018, children_user=0.0, children_system=0.0, elapsed=4.910000003874302))]
  Source: SourceType.HOST/FetcherType.PIGGYBACK
[cpu_tracking] Start [7fa50b563460]
[PiggybackFetcher] Fetch with cache settings: NoCache(RZp, base_path=/omd/sites/sitename/tmp/check_mk/data_source_cache/piggyback, max_age=MaxAge(checking=0, discovery=120, inventory=120), disabled=True, use_outdated=False, simulation=False)
Not using cache (Cache usage disabled)
[PiggybackFetcher] Execute data source
No piggyback files for 'RZp'. Skip processing.
No piggyback files for 'ip-address'. Skip processing.
Not using cache (Cache usage disabled)
[cpu_tracking] Stop [7fa50b563460 - Snapshot(process=posix.times_result(user=0.0, system=0.0, children_user=0.0, children_system=0.0, elapsed=0.009999997913837433))]
+ PARSE FETCHER RESULTS
  Source: SourceType.HOST/FetcherType.SNMP
  -> Not adding sections: IndexError('list index out of range')
  Source: SourceType.HOST/FetcherType.PIGGYBACK
No persisted sections
  -> Add sections: []
Received no piggyback data
Received no piggyback data
+ ANALYSE DISCOVERED HOST LABELS
Trying host label discovery with:
Trying host label discovery with:
SUCCESS - Found no host labels
+ ANALYSE DISCOVERED SERVICES
+ EXECUTING DISCOVERY PLUGINS (0)
  Trying discovery with:
SUCCESS - Found no services
OMD[sitename]:~$

Best regards,
UT2019

This is still not correct, here you sould set the name of your temperature sensor i.e. “Chassis”. This will replace the %s in service_name = "Temperatur %s". If you do not need a name for your temp sensor, remove the %s in service_name and the item="Temperature %s" in the discover function. Also remove then the parameter item form the check function.

For the detect function. Looks like this works. From the cmk -vvII RPz

   SNMP scan found                    hr_mem rzp snmp_info snmp_os snmp_uptime

Here you can see the plugins CMK has found.

Can you do the cmk -vvII with the --debug option please (cmk --debug -vvII RZp) and an snmpwalk on the cli over the OID .1.3.6.1.3.1.0.

This is the shortened output with --debug option:

OMD[sitename]:~$ cmk --debug -vvII RZp
Discovering services and host labels on: RZp
RZp:
+ FETCHING DATA
  Source: SourceType.HOST/FetcherType.SNMP
[cpu_tracking] Start [7f88716404f0]
[SNMPFetcher] Fetch with cache settings: SNMPFileCache(RZp, base_path=/omd/sites/sitename/tmp/check_mk/data_source_cache/snmp, max_age=MaxAge(checking=0, discovery=120, inventory=120), disabled=False, use_outdated=False, simulation=False)
Not using cache (Too old. Age is 148 sec, allowed is 120 sec)
[SNMPFetcher] Execute data source
  SNMP scan:
       Getting OID .1.3.6.1.2.1.1.1.0: Executing SNMP GET of .1.3.6.1.2.1.1.1.0 on RZp
=> [b'RZ-Products GmbH, DCM Agent, Version 3.1'] OCTETSTR
b'RZ-Products GmbH, DCM Agent, Version 3.1'
       Getting OID .1.3.6.1.2.1.1.2.0: Executing SNMP GET of .1.3.6.1.2.1.1.2.0 on RZp
=> [b'.1.3.6.1.3.1.0.0'] OBJECTID
b'.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Getting OID .1.3.6.1.4.1.232.2.2.4.2.0: Executing SNMP GET of .1.3.6.1.4.1.232.2.2.4.2.0 on RZp
=> [None] NOSUCHINSTANCE
failed.
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Getting OID .1.3.6.1.4.1.674.*: Executing SNMP GETNEXT of .1.3.6.1.4.1.674 on RZp
=> [None] ENDOFMIBVIEW
failed.
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Getting OID .1.3.6.1.2.1.25.1.1.0: Executing SNMP GET of .1.3.6.1.2.1.25.1.1.0 on RZp
=> [None] NOSUCHINSTANCE
failed.
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Getting OID .1.3.6.1.2.1.105.1.3.1.1.*: Executing SNMP GETNEXT of .1.3.6.1.2.1.105.1.3.1.1 on RZp
=> [None] OCTETSTR
failed.
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.25.1.1.0: None
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Getting OID .1.3.6.1.2.1.47.1.1.1.1.*: Executing SNMP GETNEXT of .1.3.6.1.2.1.47.1.1.1.1 on RZp
=> [None] OCTETSTR
failed.
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Getting OID .1.3.6.1.2.1.2.2.1.*: Executing SNMP GETNEXT of .1.3.6.1.2.1.2.2.1 on RZp
=> [None] OCTETSTR
failed.
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       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: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Getting OID .1.3.6.1.4.1.14848.2.1.1.1.0: Executing SNMP GET of .1.3.6.1.4.1.14848.2.1.1.1.0 on RZp
=> [None] NOSUCHINSTANCE
failed.
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Getting OID .1.3.6.1.4.1.30155.2.1.1.0: Executing SNMP GET of .1.3.6.1.4.1.30155.2.1.1.0 on RZp
=> [None] NOSUCHINSTANCE
failed.
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Getting OID .1.3.6.1.4.1.6302.2.1.1.1.0: Executing SNMP GET of .1.3.6.1.4.1.6302.2.1.1.1.0 on RZp
=> [None] NOSUCHINSTANCE
failed.
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.25.1.1.0: None
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Getting OID .1.3.6.1.4.1.2036.2.1.1.4.0: Executing SNMP GET of .1.3.6.1.4.1.2036.2.1.1.4.0 on RZp
=> [None] NOSUCHINSTANCE
failed.
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Getting OID .1.3.6.1.2.1.31.1.1.1.6.*: Executing SNMP GETNEXT of .1.3.6.1.2.1.31.1.1.1.6 on RZp
=> [None] OCTETSTR
failed.
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.4.1.6302.2.1.1.1.0: None
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.4.1.674.*: None
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       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.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.4.1.674.*: None
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       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.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       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.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       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.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.4.1.674.*: None
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.2.2.1.*: None
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       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.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       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.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       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.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       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: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       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.674.*: None
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.2.0: '.1.3.6.1.3.1.0.0'
       Using cached OID .1.3.6.1.2.1.1.1.0: 'RZ-Products GmbH, DCM Agent, Version 3.1'
   SNMP scan found                    hr_mem rzp snmp_info snmp_os snmp_uptime
Trying to acquire lock on /omd/sites/sitename/tmp/check_mk/snmp_scan_cache/RZp.ip-address
Got lock on /omd/sites/sitename/tmp/check_mk/snmp_scan_cache/RZp.ip-address
Releasing lock on /omd/sites/sitename/tmp/check_mk/snmp_scan_cache/RZp.ip-address
Released lock on /omd/sites/sitename/tmp/check_mk/snmp_scan_cache/RZp.ip-address
hr_mem: Fetching data (SNMP walk cache cleared)
Executing WALK of ".1.3.6.1.2.1.25.2.3.1.2" on RZp
Executing SNMP GET of .1.3.6.1.2.1.25.2.3.1.2 on RZp
=> [None] NOSUCHINSTANCE
Executing WALK of ".1.3.6.1.2.1.25.2.3.1.3" on RZp
Executing SNMP GET of .1.3.6.1.2.1.25.2.3.1.3 on RZp
=> [None] NOSUCHINSTANCE
Executing WALK of ".1.3.6.1.2.1.25.2.3.1.4" on RZp
Executing SNMP GET of .1.3.6.1.2.1.25.2.3.1.4 on RZp
=> [None] NOSUCHINSTANCE
Executing WALK of ".1.3.6.1.2.1.25.2.3.1.5" on RZp
Executing SNMP GET of .1.3.6.1.2.1.25.2.3.1.5 on RZp
=> [None] NOSUCHINSTANCE
Executing WALK of ".1.3.6.1.2.1.25.2.3.1.6" on RZp
Executing SNMP GET of .1.3.6.1.2.1.25.2.3.1.6 on RZp
=> [None] NOSUCHINSTANCE
rzp: Fetching data (SNMP walk cache cleared)
Executing WALK of ".1.3.6.1.3.1.0" on RZp
.1.3.6.1.3.1.0.0 => [b'1'] 'OCTETSTR'
.1.3.6.1.3.1.0.1 => [b'1'] 'OCTETSTR'
.1.3.6.1.3.1.0.2 => [b'1'] 'OCTETSTR'
.1.3.6.1.3.1.0.3 => [b'1'] 'OCTETSTR'
.1.3.6.1.3.1.0.4 => [b'1'] 'OCTETSTR'
.1.3.6.1.3.1.0.5 => [b'1'] 'OCTETSTR'
.1.3.6.1.3.1.0.6 => [b'1'] 'OCTETSTR'
.1.3.6.1.3.1.0.7 => [b'1'] 'OCTETSTR'
.1.3.6.1.3.1.0.8 => [b'1'] 'OCTETSTR'
.1.3.6.1.3.1.0.9 => [b'1'] 'OCTETSTR'
.1.3.6.1.3.1.0.10 => [b'1'] 'OCTETSTR'
.1.3.6.1.3.1.0.11 => [b'1'] 'OCTETSTR'
.1.3.6.1.3.1.0.12 => [b'1'] 'OCTETSTR'
.1.3.6.1.3.1.0.13 => [b'1'] 'OCTETSTR'
.1.3.6.1.3.1.0.14 => [b'1'] 'OCTETSTR'
.1.3.6.1.3.1.0.15 => [b'1'] 'OCTETSTR'
.1.3.6.1.3.1.0.16 => [b'1'] 'OCTETSTR'
.1.3.6.1.3.1.0.17 => [b'1'] 'OCTETSTR'
.1.3.6.1.3.1.0.18 => [b'41.0'] 'OCTETSTR'
.1.3.6.1.3.1.0.19 => [b'44.0'] 'OCTETSTR'
.1.3.6.1.3.1.0.20 => [b'29.34'] 'OCTETSTR'
.1.3.6.1.3.1.0.21 => [b'26.28'] 'OCTETSTR'
.1.3.6.1.3.1.0.22 => [b'238.0'] 'OCTETSTR'
.1.3.6.1.3.1.0.23 => [b'238.0'] 'OCTETSTR'
.1.3.6.1.3.1.0.24 => [b'303.0'] 'OCTETSTR'
.1.3.6.1.3.1.0.25 => [b'1'] 'OCTETSTR'
Executing WALK of ".1.3.6.1.3.1.0.2" on RZp
Executing SNMP GET of .1.3.6.1.3.1.0.2 on RZp
=> [<netsnmp.client.Varbind object at 0x7f8871c4b520>] OCTETSTR
.1.3.6.1.3.1.0.2 => [b'1'] 'OCTETSTR'
Executing WALK of ".1.3.6.1.3.1.0.3" on RZp
Executing SNMP GET of .1.3.6.1.3.1.0.3 on RZp
=> [<netsnmp.client.Varbind object at 0x7f8871c4b8e0>] OCTETSTR
.1.3.6.1.3.1.0.3 => [b'1'] 'OCTETSTR'
Executing WALK of ".1.3.6.1.3.1.0.4" on RZp
Executing SNMP GET of .1.3.6.1.3.1.0.4 on RZp
=> [<netsnmp.client.Varbind object at 0x7f8871c4b940>] OCTETSTR
.1.3.6.1.3.1.0.4 => [b'1'] 'OCTETSTR'
Executing WALK of ".1.3.6.1.3.1.0.5" on RZp
Executing SNMP GET of .1.3.6.1.3.1.0.5 on RZp
=> [<netsnmp.client.Varbind object at 0x7f8871c4b310>] OCTETSTR
.1.3.6.1.3.1.0.5 => [b'1'] 'OCTETSTR'
Executing WALK of ".1.3.6.1.3.1.0.6" on RZp
Executing SNMP GET of .1.3.6.1.3.1.0.6 on RZp
=> [<netsnmp.client.Varbind object at 0x7f8871c4bb50>] OCTETSTR
.1.3.6.1.3.1.0.6 => [b'1'] 'OCTETSTR'
Executing WALK of ".1.3.6.1.3.1.0.7" on RZp
Executing SNMP GET of .1.3.6.1.3.1.0.7 on RZp
=> [<netsnmp.client.Varbind object at 0x7f8871c4b280>] OCTETSTR
.1.3.6.1.3.1.0.7 => [b'1'] 'OCTETSTR'
Executing WALK of ".1.3.6.1.3.1.0.16" on RZp
Executing SNMP GET of .1.3.6.1.3.1.0.16 on RZp
=> [<netsnmp.client.Varbind object at 0x7f8871c4b9a0>] OCTETSTR
.1.3.6.1.3.1.0.16 => [b'1'] 'OCTETSTR'
Executing WALK of ".1.3.6.1.3.1.0.17" on RZp
Executing SNMP GET of .1.3.6.1.3.1.0.17 on RZp
=> [<netsnmp.client.Varbind object at 0x7f8871c4bd90>] OCTETSTR
.1.3.6.1.3.1.0.17 => [b'1'] 'OCTETSTR'
Executing WALK of ".1.3.6.1.3.1.0.20" on RZp
Executing SNMP GET of .1.3.6.1.3.1.0.20 on RZp
=> [<netsnmp.client.Varbind object at 0x7f8871c4b0a0>] OCTETSTR
.1.3.6.1.3.1.0.20 => [b'29.34'] 'OCTETSTR'
Executing WALK of ".1.3.6.1.3.1.0.21" on RZp
Executing SNMP GET of .1.3.6.1.3.1.0.21 on RZp
=> [<netsnmp.client.Varbind object at 0x7f8871c4b700>] OCTETSTR
.1.3.6.1.3.1.0.21 => [b'26.28'] 'OCTETSTR'
[cpu_tracking] Stop [7f88716404f0 - Snapshot(process=posix.times_result(user=0.3800000000000001, system=0.01999999999999999, children_user=0.0, children_system=0.0, elapsed=4.869999997317791))]
  Source: SourceType.HOST/FetcherType.PIGGYBACK
[cpu_tracking] Start [7f8871c4b370]
[PiggybackFetcher] Fetch with cache settings: NoCache(RZp, base_path=/omd/sites/sitename/tmp/check_mk/data_source_cache/piggyback, max_age=MaxAge(checking=0, discovery=120, inventory=120), disabled=True, use_outdated=False, simulation=False)
Not using cache (Cache usage disabled)
[PiggybackFetcher] Execute data source
No piggyback files for 'RZp'. Skip processing.
No piggyback files for 'ip-address'. Skip processing.
Not using cache (Cache usage disabled)
[cpu_tracking] Stop [7f8871c4b370 - Snapshot(process=posix.times_result(user=0.0, system=0.0, children_user=0.0, children_system=0.0, elapsed=0.0))]
+ PARSE FETCHER RESULTS
  Source: SourceType.HOST/FetcherType.SNMP
  -> Not adding sections: IndexError('list index out of range')
  Source: SourceType.HOST/FetcherType.PIGGYBACK
No persisted sections
  -> Add sections: []
Received no piggyback data
Received no piggyback data
+ ANALYSE DISCOVERED HOST LABELS
Trying host label discovery with:
Trying host label discovery with:
SUCCESS - Found no host labels
+ ANALYSE DISCOVERED SERVICES
+ EXECUTING DISCOVERY PLUGINS (0)
  Trying discovery with:
SUCCESS - Found no services
OMD[sitename]:~$

This is the snmpwalk command:

OMD[sitename]:~$ cmk -v --snmpwalk --extraoid .1.3.6.1.3.1.0 RZp
RZp:
Walk on ".1.3.6.1.2.1"...
5 variables.
Walk on ".1.3.6.1.3.1.0"...
26 variables.
Walk on ".1.3.6.1.4.1"...
0 variables.
Wrote fetched data to /omd/sites/sitename/var/check_mk/snmpwalks/RZp.

…and this is the fetched data written to the file “RZp” mentioned above:

.1.3.6.1.2.1.1.1.0 RZ-Products GmbH, DCM Agent, Version 3.1
.1.3.6.1.2.1.1.2.0 .1.3.6.1.3.1.0.0
.1.3.6.1.2.1.1.4.0 RZ-Products GmbH
.1.3.6.1.2.1.1.5.0 local.local
.1.3.6.1.2.1.1.6.0
.1.3.6.1.3.1.0.0 1
.1.3.6.1.3.1.0.1 1
.1.3.6.1.3.1.0.2 1
.1.3.6.1.3.1.0.3 1
.1.3.6.1.3.1.0.4 1
.1.3.6.1.3.1.0.5 1
.1.3.6.1.3.1.0.6 1
.1.3.6.1.3.1.0.7 1
.1.3.6.1.3.1.0.8 1
.1.3.6.1.3.1.0.9 1
.1.3.6.1.3.1.0.10 1
.1.3.6.1.3.1.0.11 1
.1.3.6.1.3.1.0.12 1
.1.3.6.1.3.1.0.13 1
.1.3.6.1.3.1.0.14 1
.1.3.6.1.3.1.0.15 1
.1.3.6.1.3.1.0.16 1
.1.3.6.1.3.1.0.17 1
.1.3.6.1.3.1.0.18 41.0
.1.3.6.1.3.1.0.19 44.0
.1.3.6.1.3.1.0.20 28.95
.1.3.6.1.3.1.0.21 26.01
.1.3.6.1.3.1.0.22 238.0
.1.3.6.1.3.1.0.23 238.0
.1.3.6.1.3.1.0.24 301.0
.1.3.6.1.3.1.0.25 1

In the debug output is one error

  -> Not adding sections: IndexError('list index out of range')

There is one thing in the output that is a bit strange. Here CMK will fetch the OIDs from your script. First it will fetch .1.3.6.1.3.1.0 (not .1.3.6.1.3.1.0.0) and than each seperate OID as requested by your script. Usually it sould only request the OIDs as configured in your script and not the base OIDs.

...
rzp: Fetching data (SNMP walk cache cleared)
Executing WALK of ".1.3.6.1.3.1.0" on RZp
.1.3.6.1.3.1.0.0 => [b'1'] 'OCTETSTR'
.1.3.6.1.3.1.0.1 => [b'1'] 'OCTETSTR'
.1.3.6.1.3.1.0.2 => [b'1'] 'OCTETSTR'
.1.3.6.1.3.1.0.3 => [b'1'] 'OCTETSTR'
.1.3.6.1.3.1.0.4 => [b'1'] 'OCTETSTR'
.1.3.6.1.3.1.0.5 => [b'1'] 'OCTETSTR'
.1.3.6.1.3.1.0.6 => [b'1'] 'OCTETSTR'
.1.3.6.1.3.1.0.7 => [b'1'] 'OCTETSTR'
.1.3.6.1.3.1.0.8 => [b'1'] 'OCTETSTR'
.1.3.6.1.3.1.0.9 => [b'1'] 'OCTETSTR'
.1.3.6.1.3.1.0.10 => [b'1'] 'OCTETSTR'
.1.3.6.1.3.1.0.11 => [b'1'] 'OCTETSTR'
.1.3.6.1.3.1.0.12 => [b'1'] 'OCTETSTR'
.1.3.6.1.3.1.0.13 => [b'1'] 'OCTETSTR'
.1.3.6.1.3.1.0.14 => [b'1'] 'OCTETSTR'
.1.3.6.1.3.1.0.15 => [b'1'] 'OCTETSTR'
.1.3.6.1.3.1.0.16 => [b'1'] 'OCTETSTR'
.1.3.6.1.3.1.0.17 => [b'1'] 'OCTETSTR'
.1.3.6.1.3.1.0.18 => [b'41.0'] 'OCTETSTR'
.1.3.6.1.3.1.0.19 => [b'44.0'] 'OCTETSTR'
.1.3.6.1.3.1.0.20 => [b'29.34'] 'OCTETSTR'
.1.3.6.1.3.1.0.21 => [b'26.28'] 'OCTETSTR'
.1.3.6.1.3.1.0.22 => [b'238.0'] 'OCTETSTR'
.1.3.6.1.3.1.0.23 => [b'238.0'] 'OCTETSTR'
.1.3.6.1.3.1.0.24 => [b'303.0'] 'OCTETSTR'
.1.3.6.1.3.1.0.25 => [b'1'] 'OCTETSTR'
Executing WALK of ".1.3.6.1.3.1.0.2" on RZp
Executing SNMP GET of .1.3.6.1.3.1.0.2 on RZp
=> [<netsnmp.client.Varbind object at 0x7f8871c4b520>] OCTETSTR
.1.3.6.1.3.1.0.2 => [b'1'] 'OCTETSTR'
...

Can you try to remove the '0', # doorOpen OID?

#######

I have used your SNMP walk as stored walk and tested with your script. Looks ok so far.

OMD[build]:~$ cmk -II rpz
discover
OMD[build]:~$ cmk  rpz
check

if i tweak your script a bit, i get

OMD[build]:~$ cmk  -v rpz
...
SNMP Info            RZ-Products GmbH, DCM Agent, Version 3.1, local.local, , RZ-Products GmbH
Temperatur           28.95°C
...
from cmk.base.plugins.agent_based.agent_based_api.v1 import (
    register,
    Service,
    SNMPTree,
    Result,
    State,
    startswith,
)


def check_temp(section):
    # print("check")
    yield Result(state=State.OK, summary=f"{section[0][9]}°C")


def discover_temp(section):
    # print("discover")
    yield Service()


register.check_plugin(
    name="rzp",
    sections=['rzp'],
    service_name="Temperatur",
    discovery_function=discover_temp,
    check_function=check_temp,
)

register.snmp_section(
    name="rzp",
    detect=startswith(".1.3.6.1.2.1.1.1.0", "RZ-Products"),  # sysDescr
    fetch=SNMPTree(
        base='.1.3.6.1.3.1.0',
        oids=[
            '0',  # doorOpen
            '2',  # firePre
            '3',  # fireMain
            '4',  # ups
            '5',  # coolLeft
            '6',  # coolRight
            '7',  # pump
            '16',  # powerA
            '17',  # powerB
            '20',  # temp
            '21',  # humid
        ],
    ),
)

I am using CMK 2.2.0p5, but this sould make no diefference.

As soon as I remove the ‘0’, #doorOpen OID both the inventory and the check are working!

OMD[sitename]:~$ cmk -II RZp
discover
[['1', '1', '1', '1', '1', '1', '1', '1', '28.05', '35.58']]
OMD[sitename]:~$ cmk RZp
check
[snmp] Success, execution time 2.1 sec | execution_time=2.150 user_time=0.020 system_time=0.000 children_user_time=0.000 children_system_time=0.000 cmk_time_snmp=2.130 cmk_time_agent=0.000

So is this a misconfiguration on my side? The script tweaked by you is working with the doorOpen-OID?

I implemented some of the actual checks with my very little checkmk-/python-knowledge and it seems to be working fine, although the implementation is probably not following best practices I guess. Only thing which is not working is the doorOpen OID.

from .agent_based_api.v1 import *

def check_fire_pre(section):
    fire_pre = int(section["fire_pre"])
    if(fire_pre != 1):
        yield Result(state=State.CRIT, summary="Brandfrüherkennung Voralarm hat ausgelöst")
    else:
        yield Result(state=State.OK, summary="Brandfrüherkennung Voralarm ist nicht aktiv")

def check_fire_main(section):
    fire_main = int(section["fire_main"])
    if(fire_main != 1):
        yield Result(state=State.CRIT, summary="Brandfrüherkennung Hauptalarm hat ausgelöst")
    else:
        yield Result(state=State.OK, summary="Brandfrüherkennung Hauptalarm ist nicht aktiv")

def check_ups(section):
    ups = int(section["ups"])
    if(ups != 1):
        yield Result(state=State.CRIT, summary="USV ist gestört")
    else:
        yield Result(state=State.OK, summary="USV ist nicht gestört")

def check_cool_left(section):
    cool_left = int(section["cool_left"])
    if(cool_left != 1):
        yield Result(state=State.CRIT, summary="Klimagerät 1 (links) ist gestört")
    else:
        yield Result(state=State.OK, summary="Klimagerät 1 (links) ist nicht gestört")

def check_cool_right(section):
    cool_right = int(section["cool_right"])
    if(cool_right != 1):
        yield Result(state=State.CRIT, summary="Klimagerät 2 (rechts) ist gestört")
    else:
        yield Result(state=State.OK, summary="Klimagerät 2 (rechts) ist nicht gestört")

def check_pump(section):
    pump = int(section["pump"])
    if(pump != 1):
        yield Result(state=State.CRIT, summary="Kondensatpumpe ist gestört")
    else:
        yield Result(state=State.OK, summary="Kondensatpumpe ist nicht gestört")

def check_power_a(section):
    power_a = int(section["power_a"])
    if(power_a != 1):
        yield Result(state=State.CRIT, summary="Netzteil A ist gestört")
    else:
        yield Result(state=State.OK, summary="Netzteil A ist nicht gestört")

def check_power_b(section):
    power_b = int(section["power_b"])
    if(power_b != 1):
        yield Result(state=State.CRIT, summary="Netzteil B ist gestört")
    else:
        yield Result(state=State.OK, summary="Netzteil B ist nicht gestört")

def check_temp(section):
    temp = float(section["temp"])

    minTemp = 1
    maxTemp = 50
    warnHigh = 29
    critHigh = 33
    warnLow = 19
    critLow = 15

    yield Metric("Temperatur", temp, levels=(warnHigh, critHigh), boundaries=(minTemp, maxTemp))

    if(temp >= critHigh):
        yield Result(state=State.CRIT, summary=f"Temperatur ist zu hoch: {temp}°C")
    elif(temp >= warnHigh):
        yield Result(state=State.WARN, summary=f"Temperatur ist leicht erhöht: {temp}°C")
    elif(temp <= critLow):
        yield Result(state=State.CRIT, summary=f"Temperatur ist zu niedrig: {temp}°C")
    elif(temp <= warnLow):
        yield Result(state=State.WARN, summary=f"Temperatur ist etwas zu niedrig: {temp}°C")
    else:
        yield Result(state=State.OK, summary=f"Temperatur ist normal: {temp}°C")

def check_humid(section):
    humid = float(section["humid"])

    minHumid = 1
    maxHumid = 100
    warnHigh = 55
    critHigh = 65
    warnLow = 24
    critLow = 19

    yield Metric("Luftfeuchtigkeit", humid, levels=(warnHigh, critHigh), boundaries=(minHumid, maxHumid))

    if(humid >= critHigh):
        yield Result(state=State.CRIT, summary=f"Luftfeuchtigkeit ist zu hoch: {humid}%")
    elif(humid >= warnHigh):
        yield Result(state=State.WARN, summary=f"Luftfeuchtigkeit ist leicht erhöht: {humid}%")
    elif(humid <= critLow):
        yield Result(state=State.CRIT, summary=f"Luftfeuchtigkeit ist zu niedrig: {humid}%")
    elif(humid <= warnLow):
        yield Result(state=State.WARN, summary=f"Luftfeuchtigkeit ist etwas zu niedrig: {humid}%")
    else:
        yield Result(state=State.OK, summary=f"Luftfeuchtigkeit ist normal: {humid}%")

def discover_generic(section):
    yield Service()

register.check_plugin(
    name = "rzp_fire_pre",
    sections = ['rzp_data'],
    service_name = "Brandfrüherkennung Voralarm",
    discovery_function = discover_generic,
    check_function = check_fire_pre,
)

register.check_plugin(
    name = "rzp_fire_main",
    sections = ['rzp_data'],
    service_name = "Brandfrüherkennung Hauptalarm",
    discovery_function = discover_generic,
    check_function = check_fire_main,
)

register.check_plugin(
    name = "rzp_ups",
    sections = ['rzp_data'],
    service_name = "USV",
    discovery_function = discover_generic,
    check_function = check_ups,
)

register.check_plugin(
    name = "rzp_cool_left",
    sections = ['rzp_data'],
    service_name = "Klimagerät 1 (links)",
    discovery_function = discover_generic,
    check_function = check_cool_left,
)

register.check_plugin(
    name = "rzp_cool_right",
    sections = ['rzp_data'],
    service_name = "Klimagerät 2 (rechts)",
    discovery_function = discover_generic,
    check_function = check_cool_right,
)

register.check_plugin(
    name = "rzp_pump",
    sections = ['rzp_data'],
    service_name = "Kondensatpumpe",
    discovery_function = discover_generic,
    check_function = check_pump,
)

register.check_plugin(
    name = "rzp_power_a",
    sections = ['rzp_data'],
    service_name = "Netzteil A",
    discovery_function = discover_generic,
    check_function = check_power_a,
)

register.check_plugin(
    name = "rzp_power_b",
    sections = ['rzp_data'],
    service_name = "Netzteil B",
    discovery_function = discover_generic,
    check_function = check_power_b,
)

register.check_plugin(
    name = "rzp_temp",
    sections = ['rzp_data'],
    service_name = "Temperatur",
    discovery_function = discover_generic,
    check_function = check_temp,
)

register.check_plugin(
    name = "rzp_humid",
    sections = ['rzp_data'],
    service_name = "rel. Luftfeuchtigkeit",
    discovery_function = discover_generic,
    check_function = check_humid,
)

def parse_rzp_data(string_table):
    section = {}
#    section["doorOpen"] = string_table[0][0]
    section["fire_pre"] = string_table[0][0]
    section["fire_main"] = string_table[0][1]
    section["ups"] = string_table[0][2]
    section["cool_left"] = string_table[0][3]
    section["cool_right"] = string_table[0][4]
    section["pump"] = string_table[0][5]
    section["power_a"] = string_table[0][6]
    section["power_b"] = string_table[0][7]
    section["temp"] = string_table[0][8]
    section["humid"] = string_table[0][9]
    return section

register.snmp_section(
    name = "rzp_data",
    detect = contains(".1.3.6.1.2.1.1.1.0", "RZ-Products GmbH, DCM Agent"), # sysDescr
    fetch = SNMPTree(
        base = '.1.3.6.1.3.1.0',
        oids = [
#            '0', # doorOpen
            '2', # firePre
            '3', # fireMain
            '4', # ups
            '5', # coolLeft
            '6', # coolRight
            '7', # pump
            '16', # powerA
            '17', # powerB
            '20', # temp
            '21', # humid
        ],
    ),
    parse_function = parse_rzp_data,
)

I dont thik so. This is the first device I have seen that is using “0” in the OIDs all other devices i have seen starting with “1”. I am not sure if “0” allowd by the SNMP standards. On the other hand I think this is an issue with CMK. If you have a support contract i would recommend to open a case with CMK.

Strangely it works if I move the “0” OID from the beginning to the end:

register.snmp_section(
    name = "rzp_data",
    detect = contains(".1.3.6.1.2.1.1.1.0", "RZ-Products GmbH, DCM Agent"), # sysDescr
    fetch = SNMPTree(
        base = '.1.3.6.1.3.1.0',
        oids = [
#            '0', # does not work, leads to [snmp] IndexError('list index out of range')(!!), Got no information from host(!!)
            '2', # firePre
            '3', # fireMain
            '4', # ups
            '5', # coolLeft
            '6', # coolRight
            '7', # pump
            '16', # powerA
            '17', # powerB
            '20', # temp
            '21', # humid
            '0', # doorOpen
        ],
    ),
    parse_function = parse_rzp_data,
)

We do have the enterprise edition but no support contract. It seems to be a bug, but I can live with it as long as the plugin is working as expected.

If any other newbie (like me) is interested here’s the whole py-file again (although it contains many copy/paste, which for sure can be improved when knowing the syntax better than me):

from .agent_based_api.v1 import *

def check_fire_pre(section):
    fire_pre = int(section["fire_pre"])
    if(fire_pre != 1):
        yield Result(state=State.CRIT, summary="Brandfrüherkennung Voralarm hat ausgelöst")
    else:
        yield Result(state=State.OK, summary="Brandfrüherkennung Voralarm ist nicht aktiv")

def check_fire_main(section):
    fire_main = int(section["fire_main"])
    if(fire_main != 1):
        yield Result(state=State.CRIT, summary="Brandfrüherkennung Hauptalarm hat ausgelöst")
    else:
        yield Result(state=State.OK, summary="Brandfrüherkennung Hauptalarm ist nicht aktiv")

def check_ups(section):
    ups = int(section["ups"])
    if(ups != 1):
        yield Result(state=State.CRIT, summary="USV ist gestört")
    else:
        yield Result(state=State.OK, summary="USV ist nicht gestört")

def check_cool_left(section):
    cool_left = int(section["cool_left"])
    if(cool_left != 1):
        yield Result(state=State.CRIT, summary="Klimagerät 1 (links) ist gestört")
    else:
        yield Result(state=State.OK, summary="Klimagerät 1 (links) ist nicht gestört")

def check_cool_right(section):
    cool_right = int(section["cool_right"])
    if(cool_right != 1):
        yield Result(state=State.CRIT, summary="Klimagerät 2 (rechts) ist gestört")
    else:
        yield Result(state=State.OK, summary="Klimagerät 2 (rechts) ist nicht gestört")

def check_pump(section):
    pump = int(section["pump"])
    if(pump != 1):
        yield Result(state=State.CRIT, summary="Kondensatpumpe ist gestört")
    else:
        yield Result(state=State.OK, summary="Kondensatpumpe ist nicht gestört")

def check_power_a(section):
    power_a = int(section["power_a"])
    if(power_a != 1):
        yield Result(state=State.CRIT, summary="Netzteil A ist gestört")
    else:
        yield Result(state=State.OK, summary="Netzteil A ist nicht gestört")

def check_power_b(section):
    power_b = int(section["power_b"])
    if(power_b != 1):
        yield Result(state=State.CRIT, summary="Netzteil B ist gestört")
    else:
        yield Result(state=State.OK, summary="Netzteil B ist nicht gestört")

def check_temp(section):
    temp = float(section["temp"])

    minTemp = 1 # minimum temperature possible
    maxTemp = 50 # maximum temperature possible
    warnHigh = 30 # warn if temperature is equal to or higher than this value
    critHigh = 33 # alarm if temperature is equal to or higher than this value
    warnLow = 19 # warn if temperature is equal to or lower than this value
    critLow = 15 # alarm if temperature is equal to or lower than this value

    yield Metric("Temperatur", temp, levels=(warnHigh, critHigh), boundaries=(minTemp, maxTemp))

    if(temp >= critHigh):
        yield Result(state=State.CRIT, summary=f"Temperatur ist zu hoch: {temp} °C")
    elif(temp >= warnHigh):
        yield Result(state=State.WARN, summary=f"Temperatur ist leicht erhöht: {temp} °C")
    elif(temp <= critLow):
        yield Result(state=State.CRIT, summary=f"Temperatur ist zu niedrig: {temp} °C")
    elif(temp <= warnLow):
        yield Result(state=State.WARN, summary=f"Temperatur ist etwas zu niedrig: {temp} °C")
    else:
        yield Result(state=State.OK, summary=f"Temperatur ist normal: {temp} °C")

def check_humid(section):
    humid = float(section["humid"])

    minHumid = 1 # minimum humidity possible
    maxHumid = 100 # maximum humidity possible
    warnHigh = 55 # warn if humidity is equal to or higher than this value
    critHigh = 65 # alarm if humidity is equal to or higher than this value
    warnLow = 24 # warn if humidity is equal to or lower than this value
    critLow = 19 # alarm if humidity is equal to or lower than this value

    yield Metric("Luftfeuchtigkeit", humid, levels=(warnHigh, critHigh), boundaries=(minHumid, maxHumid))

    if(humid >= critHigh):
        yield Result(state=State.CRIT, summary=f"Luftfeuchtigkeit ist zu hoch: {humid} %")
    elif(humid >= warnHigh):
        yield Result(state=State.WARN, summary=f"Luftfeuchtigkeit ist leicht erhöht: {humid} %")
    elif(humid <= critLow):
        yield Result(state=State.CRIT, summary=f"Luftfeuchtigkeit ist zu niedrig: {humid} %")
    elif(humid <= warnLow):
        yield Result(state=State.WARN, summary=f"Luftfeuchtigkeit ist etwas zu niedrig: {humid} %")
    else:
        yield Result(state=State.OK, summary=f"Luftfeuchtigkeit ist normal: {humid} %")

def check_door_open(section):
    door_open = int(section["door_open"])
    if(door_open != 1):
        yield Result(state=State.CRIT, summary="Türen sind offen, Löschanlage ist blockiert")
    else:
        yield Result(state=State.OK, summary="Türen sind geschlossen, Löschanlage ist aktiv")

def discover_generic(section):
    yield Service()

register.check_plugin(
    name = "rzp_fire_pre",
    sections = ['rzp_data'],
    service_name = "Brandfrüherkennung Voralarm",
    discovery_function = discover_generic,
    check_function = check_fire_pre,
)

register.check_plugin(
    name = "rzp_fire_main",
    sections = ['rzp_data'],
    service_name = "Brandfrüherkennung Hauptalarm",
    discovery_function = discover_generic,
    check_function = check_fire_main,
)

register.check_plugin(
    name = "rzp_ups",
    sections = ['rzp_data'],
    service_name = "USV",
    discovery_function = discover_generic,
    check_function = check_ups,
)

register.check_plugin(
    name = "rzp_cool_left",
    sections = ['rzp_data'],
    service_name = "Klimagerät 1 (links)",
    discovery_function = discover_generic,
    check_function = check_cool_left,
)

register.check_plugin(
    name = "rzp_cool_right",
    sections = ['rzp_data'],
    service_name = "Klimagerät 2 (rechts)",
    discovery_function = discover_generic,
    check_function = check_cool_right,
)

register.check_plugin(
    name = "rzp_pump",
    sections = ['rzp_data'],
    service_name = "Kondensatpumpe",
    discovery_function = discover_generic,
    check_function = check_pump,
)

register.check_plugin(
    name = "rzp_power_a",
    sections = ['rzp_data'],
    service_name = "Netzteil A",
    discovery_function = discover_generic,
    check_function = check_power_a,
)

register.check_plugin(
    name = "rzp_power_b",
    sections = ['rzp_data'],
    service_name = "Netzteil B",
    discovery_function = discover_generic,
    check_function = check_power_b,
)

register.check_plugin(
    name = "rzp_temp",
    sections = ['rzp_data'],
    service_name = "Temperatur",
    discovery_function = discover_generic,
    check_function = check_temp,
)

register.check_plugin(
    name = "rzp_humid",
    sections = ['rzp_data'],
    service_name = "rel. Luftfeuchtigkeit",
    discovery_function = discover_generic,
    check_function = check_humid,
)

register.check_plugin(
    name = "rzp_door_open",
    sections = ['rzp_data'],
    service_name = "Tür(en) offen, Löschanlage blockiert",
    discovery_function = discover_generic,
    check_function = check_door_open,
)

def parse_rzp_data(string_table):
    section = {}
    section["fire_pre"] = string_table[0][0]
    section["fire_main"] = string_table[0][1]
    section["ups"] = string_table[0][2]
    section["cool_left"] = string_table[0][3]
    section["cool_right"] = string_table[0][4]
    section["pump"] = string_table[0][5]
    section["power_a"] = string_table[0][6]
    section["power_b"] = string_table[0][7]
    section["temp"] = string_table[0][8]
    section["humid"] = string_table[0][9]
    section["door_open"] = string_table[0][10]
    return section

register.snmp_section(
    name = "rzp_data",
    detect = contains(".1.3.6.1.2.1.1.1.0", "RZ-Products GmbH, DCM Agent"), # sysDescr
    fetch = SNMPTree(
        base = '.1.3.6.1.3.1.0',
        oids = [
#            '0', # does not work, leads to [snmp] IndexError('list index out of range')(!!), Got no information from host(!!)
            '2', # firePre
            '3', # fireMain
            '4', # ups
            '5', # coolLeft
            '6', # coolRight
            '7', # pump
            '16', # powerA
            '17', # powerB
            '20', # temp
            '21', # humid
            '0', # doorOpen
        ],
    ),
    parse_function = parse_rzp_data,
)

@ thl-cmk Thank you again for your great support!